public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux
@ 2019-08-16 18:46 Mike Gilbert
  2019-08-18 18:50 ` Zac Medico
  2019-08-19  2:42 ` Zac Medico
  0 siblings, 2 replies; 3+ messages in thread
From: Mike Gilbert @ 2019-08-16 18:46 UTC (permalink / raw
  To: gentoo-portage-dev

This should ensure that /bin/ip is available during early stage builds.

Package-Manager: Portage-2.3.71_p6, Repoman-2.3.17_p5
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
---
 sys-apps/portage/portage-2.3.71.ebuild | 5 ++++-
 sys-apps/portage/portage-9999.ebuild   | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/sys-apps/portage/portage-2.3.71.ebuild b/sys-apps/portage/portage-2.3.71.ebuild
index 969ce20d8767..4a0a61a97b5f 100644
--- a/sys-apps/portage/portage-2.3.71.ebuild
+++ b/sys-apps/portage/portage-2.3.71.ebuild
@@ -54,7 +54,10 @@ RDEPEND="
 	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
 	elibc_musl? ( >=sys-apps/sandbox-2.2 )
 	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
-	kernel_linux? ( sys-apps/util-linux )
+	kernel_linux? (
+		sys-apps/iproute2
+		sys-apps/util-linux
+	)
 	>=app-misc/pax-utils-0.1.17
 	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
 	xattr? ( kernel_linux? (
diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild
index e7c1e8c638fe..8f7a65da1eb8 100644
--- a/sys-apps/portage/portage-9999.ebuild
+++ b/sys-apps/portage/portage-9999.ebuild
@@ -54,7 +54,10 @@ RDEPEND="
 	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
 	elibc_musl? ( >=sys-apps/sandbox-2.2 )
 	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
-	kernel_linux? ( sys-apps/util-linux )
+	kernel_linux? (
+		sys-apps/iproute2
+		sys-apps/util-linux
+	)
 	>=app-misc/pax-utils-0.1.17
 	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
 	xattr? ( kernel_linux? (
-- 
2.23.0.rc2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux
  2019-08-16 18:46 [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux Mike Gilbert
@ 2019-08-18 18:50 ` Zac Medico
  2019-08-19  2:42 ` Zac Medico
  1 sibling, 0 replies; 3+ messages in thread
From: Zac Medico @ 2019-08-18 18:50 UTC (permalink / raw
  To: gentoo-portage-dev, Mike Gilbert


[-- Attachment #1.1: Type: text/plain, Size: 1762 bytes --]

On 8/16/19 11:46 AM, Mike Gilbert wrote:
> This should ensure that /bin/ip is available during early stage builds.
> 
> Package-Manager: Portage-2.3.71_p6, Repoman-2.3.17_p5
> Signed-off-by: Mike Gilbert <floppym@gentoo.org>
> ---
>  sys-apps/portage/portage-2.3.71.ebuild | 5 ++++-
>  sys-apps/portage/portage-9999.ebuild   | 5 ++++-
>  2 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/sys-apps/portage/portage-2.3.71.ebuild b/sys-apps/portage/portage-2.3.71.ebuild
> index 969ce20d8767..4a0a61a97b5f 100644
> --- a/sys-apps/portage/portage-2.3.71.ebuild
> +++ b/sys-apps/portage/portage-2.3.71.ebuild
> @@ -54,7 +54,10 @@ RDEPEND="
>  	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
>  	elibc_musl? ( >=sys-apps/sandbox-2.2 )
>  	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
> -	kernel_linux? ( sys-apps/util-linux )
> +	kernel_linux? (
> +		sys-apps/iproute2
> +		sys-apps/util-linux
> +	)
>  	>=app-misc/pax-utils-0.1.17
>  	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
>  	xattr? ( kernel_linux? (
> diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild
> index e7c1e8c638fe..8f7a65da1eb8 100644
> --- a/sys-apps/portage/portage-9999.ebuild
> +++ b/sys-apps/portage/portage-9999.ebuild
> @@ -54,7 +54,10 @@ RDEPEND="
>  	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
>  	elibc_musl? ( >=sys-apps/sandbox-2.2 )
>  	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
> -	kernel_linux? ( sys-apps/util-linux )
> +	kernel_linux? (
> +		sys-apps/iproute2
> +		sys-apps/util-linux
> +	)
>  	>=app-misc/pax-utils-0.1.17
>  	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
>  	xattr? ( kernel_linux? (
> 

Looks good. Please merge.
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux
  2019-08-16 18:46 [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux Mike Gilbert
  2019-08-18 18:50 ` Zac Medico
@ 2019-08-19  2:42 ` Zac Medico
  1 sibling, 0 replies; 3+ messages in thread
From: Zac Medico @ 2019-08-19  2:42 UTC (permalink / raw
  To: gentoo-portage-dev, Mike Gilbert


[-- Attachment #1.1: Type: text/plain, Size: 1933 bytes --]

On 8/16/19 11:46 AM, Mike Gilbert wrote:
> This should ensure that /bin/ip is available during early stage builds.
> 
> Package-Manager: Portage-2.3.71_p6, Repoman-2.3.17_p5
> Signed-off-by: Mike Gilbert <floppym@gentoo.org>
> ---
>  sys-apps/portage/portage-2.3.71.ebuild | 5 ++++-
>  sys-apps/portage/portage-9999.ebuild   | 5 ++++-
>  2 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/sys-apps/portage/portage-2.3.71.ebuild b/sys-apps/portage/portage-2.3.71.ebuild
> index 969ce20d8767..4a0a61a97b5f 100644
> --- a/sys-apps/portage/portage-2.3.71.ebuild
> +++ b/sys-apps/portage/portage-2.3.71.ebuild
> @@ -54,7 +54,10 @@ RDEPEND="
>  	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
>  	elibc_musl? ( >=sys-apps/sandbox-2.2 )
>  	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
> -	kernel_linux? ( sys-apps/util-linux )
> +	kernel_linux? (
> +		sys-apps/iproute2
> +		sys-apps/util-linux
> +	)
>  	>=app-misc/pax-utils-0.1.17
>  	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
>  	xattr? ( kernel_linux? (
> diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild
> index e7c1e8c638fe..8f7a65da1eb8 100644
> --- a/sys-apps/portage/portage-9999.ebuild
> +++ b/sys-apps/portage/portage-9999.ebuild
> @@ -54,7 +54,10 @@ RDEPEND="
>  	elibc_glibc? ( >=sys-apps/sandbox-2.2 )
>  	elibc_musl? ( >=sys-apps/sandbox-2.2 )
>  	elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
> -	kernel_linux? ( sys-apps/util-linux )
> +	kernel_linux? (
> +		sys-apps/iproute2
> +		sys-apps/util-linux
> +	)
>  	>=app-misc/pax-utils-0.1.17
>  	selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
>  	xattr? ( kernel_linux? (
> 

Merged:

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f12ee75995848414886424f745d36c7f62f68d0

I'm about to do a 2.3.72 release, so I won't bother with a revbump for
this dep change.
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-08-19  2:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-16 18:46 [gentoo-portage-dev] [PATCH] sys-apps/portage: depend on iproute2 on Linux Mike Gilbert
2019-08-18 18:50 ` Zac Medico
2019-08-19  2:42 ` Zac Medico

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox