Re: [gentoo-portage-dev] [PATCH v2] Support disabling stripping for binary packages

2018-11-05 Thread Zac Medico
On 11/05/2018 11:58 AM, Michał Górny wrote: > Similarly to FEATURES=binpkg-docompress, implement > FEATURES=binpkg-dostrip that controls whether stripping occurs before or > after building the binary package. > > This makes it possible to build binary packages with some debug > information that

[gentoo-portage-dev] [PATCH] isolated-functions.sh: Do not define any aliases.

2018-11-05 Thread Ulrich Müller
save_IFS and restore_IFS are the only aliases that Portage defines, and they are used exactly once. Rewrite __source_all_bashrcs() not to depend on them, and remove their definitions. The intention is to drop the expand_aliases shell option at some time in the future. Signed-off-by: Ulrich

[gentoo-portage-dev] [PATCH] Support disabling stripping for binary packages

2018-11-05 Thread Michał Górny
Similarly to FEATURES=binpkg-docompress, implement FEATURES=binpkg-dostrip that controls whether stripping occurs before or after building the binary package. This makes it possible to build binary packages with some debug information that is stripped upon installing. Afterwards, the binary

[gentoo-portage-dev] [PATCH v2] Support disabling stripping for binary packages

2018-11-05 Thread Michał Górny
Similarly to FEATURES=binpkg-docompress, implement FEATURES=binpkg-dostrip that controls whether stripping occurs before or after building the binary package. This makes it possible to build binary packages with some debug information that is stripped upon installing. Afterwards, the binary

Re: [gentoo-portage-dev] [PATCH] isolated-functions.sh: Do not define any aliases.

2018-11-05 Thread Zac Medico
On 11/05/2018 12:12 PM, Ulrich Müller wrote: > save_IFS and restore_IFS are the only aliases that Portage defines, > and they are used exactly once. Rewrite __source_all_bashrcs() not to > depend on them, and remove their definitions. > > The intention is to drop the expand_aliases shell option