diff options
author | 2018-07-19 12:46:13 -0700 | |
---|---|---|
committer | 2018-07-19 12:46:16 -0700 | |
commit | 146587afa4aa2ef82c750b5dd0f41028c392b514 (patch) | |
tree | 5cf3dfa4a7dbba8dbabaeac3bd357d629c8fe432 /sys-apps | |
parent | dev-ruby/slim: add missing test dependency on redcarpet (diff) | |
download | gentoo-146587afa4aa2ef82c750b5dd0f41028c392b514.tar.gz gentoo-146587afa4aa2ef82c750b5dd0f41028c392b514.tar.bz2 gentoo-146587afa4aa2ef82c750b5dd0f41028c392b514.zip |
sys-apps/portage: pym -> lib in 9999
Reported-py: Thomas Deutschmann <whissi@gentoo.org>
Package-Manager: Portage-2.3.43, Repoman-2.3.10
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/portage/portage-9999.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild index fb6671b35c85..1e2fe5ea47f9 100644 --- a/sys-apps/portage/portage-9999.ebuild +++ b/sys-apps/portage/portage-9999.ebuild @@ -96,7 +96,7 @@ python_prepare_all() { if use gentoo-dev; then einfo "Disabling --dynamic-deps by default for gentoo-dev..." sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \ - -i pym/_emerge/create_depgraph_params.py || \ + -i lib/_emerge/create_depgraph_params.py || \ die "failed to patch create_depgraph_params.py" einfo "Enabling additional FEATURES for gentoo-dev..." @@ -112,7 +112,7 @@ python_prepare_all() { if ! use ipc ; then einfo "Disabling ipc..." sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ - -i pym/_emerge/AbstractEbuildProcess.py || \ + -i lib/_emerge/AbstractEbuildProcess.py || \ die "failed to patch AbstractEbuildProcess.py" fi @@ -135,7 +135,7 @@ python_prepare_all() { -e "s|^\(MOVE_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/mv\"\)|\\1${EPREFIX}\\2|" \ -e "s|^\(PRELINK_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/sbin/prelink\"\)|\\1${EPREFIX}\\2|" \ -e "s|^\(EPREFIX[[:space:]]*=[[:space:]]*\"\).*|\\1${EPREFIX}\"|" \ - -i pym/portage/const.py || \ + -i lib/portage/const.py || \ die "Failed to patch portage.const.EPREFIX" einfo "Prefixing shebangs ..." |