Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to refresh manifest before build #161

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ebuildtester/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def _tweak_settings(self):

# Disable the usersandbox feature, it's not working well inside a
# docker container.
self.execute("echo FEATURES=\\\"{}\\\" "
">> /etc/portage/make.conf".format(features))
self.execute(f"echo FEATURES=\\\"{features}\\\" "
">> /etc/portage/make.conf")

self.execute(("echo MAKEOPTS=\\\"-j%d\\\" " %
(options.options.threads)) +
Expand Down
5 changes: 5 additions & 0 deletions ebuildtester/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def parse_commandline(args):
help="The package atom(s) to install",
nargs="+",
action="append")
parser.add_argument(
"--refresh-manifest",
help="Refresh the package manifest before installing",
action="store_true"
)
parser.add_argument(
"--binhost",
help="Binhost URI")
Expand Down