[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2024-01-07 Thread Sam James
commit: ae91de64d73dcba407c178a53252d2b547ee40c8
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  7 09:44:40 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  7 09:44:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae91de64

net-misc/netifrc: add 0.7.8

Bug: https://bugs.gentoo.org/844178
Bug: https://bugs.gentoo.org/921538
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.8.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index c29f94aa754b..a773790b0ce4 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1 +1,2 @@
 DIST netifrc-0.7.7.tar.bz2 75823 BLAKE2B 
e2d99ac347e9a449b39981b1aa1585ff83d05af1bafe09f7e2e25954360df1e76f53ce4a5c8e08777ba45baf697a307697576835df4c4b4ae010ab84dbe8bb2b
 SHA512 
995f89beece9e7ff0b558b466c06a476f22d3161f31622a232c382d81e74399aeb0a39cb4a95080829120c527a1a93757425671e2ca3639d8637e5e905ad3e80
+DIST netifrc-0.7.8.tar.bz2 76239 BLAKE2B 
501a2bcfaa2753187425cba31f01b2a644ae4d01da76e4bd3722b815b1fa743905728fd66ac9d56c915dba767723bd5df2c417706c8a0150628e61b6e0b86ffb
 SHA512 
d483453058d3e8c3cb22e8eedea69e12ac5fe94449d35a2cd842d7e32603174a470a8a4e883ebf24a0f09374dbf1f4c0c0db5094ae2d2191bcc1c9c8356170ad

diff --git a/net-misc/netifrc/netifrc-0.7.8.ebuild 
b/net-misc/netifrc/netifrc-0.7.8.ebuild
new file mode 100644
index ..40e121512a2c
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.8.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="
+   https://anongit.gentoo.org/git/proj/netifrc.git
+   https://github.com/gentoo/${PN}
+   "
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2 GPL-2"
+SLOT="0"
+IUSE="+dhcp"
+
+RDEPEND="
+   sys-apps/gentoo-functions
+   >=sys-apps/openrc-0.15
+   dhcp? (
+   || (
+   net-misc/dhcpcd
+   net-misc/dhcp[client]
+   sys-apps/busybox
+   )
+   )
+"
+BDEPEND="
+   kernel_linux? ( virtual/pkgconfig )
+"
+
+src_prepare() {
+   if [[ ${PV} ==  ]] ; then
+   local ver="git-${EGIT_VERSION:0:6}"
+   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
+   einfo "Producing ChangeLog from Git history"
+   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
+
+   emake "${MAKE_ARGS[@]}" all
+}
+
+src_install() {
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
+}
+
+pkg_postinst() {
+   udev_reload
+
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}
+
+pkg_postrm() {
+   udev_reload
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-12-31 Thread Sam James
commit: 30cd0c6969bfc2c42d3e58daa3a2d6c0d5ed33d9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 00:06:33 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:08:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cd0c69

net-misc/netifrc: drop 0.7.5, 0.7.6, 0.7.6-r1

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest|  2 -
 net-misc/netifrc/netifrc-0.7.5.ebuild| 74 --
 net-misc/netifrc/netifrc-0.7.6-r1.ebuild | 91 
 net-misc/netifrc/netifrc-0.7.6.ebuild| 78 ---
 4 files changed, 245 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 8c1bd2bdd95b..c29f94aa754b 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,3 +1 @@
-DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4
-DIST netifrc-0.7.6.tar.gz 86771 BLAKE2B 
814e97630a84a2f9531aa81754f3ea20a561f19d055e4a6652a1374925c4ff6e7279e161a817e3c50059b2c40b7b1a7602bad3dbcb68836882e4fe5ad754
 SHA512 
ec8d44254106a38b16c52ef33a5064db40db565cef7b7499d38c7636f2b9c01305329d77ac6298621f3b55a1401345c108374a691ae41129b8fe9d5a7e35
 DIST netifrc-0.7.7.tar.bz2 75823 BLAKE2B 
e2d99ac347e9a449b39981b1aa1585ff83d05af1bafe09f7e2e25954360df1e76f53ce4a5c8e08777ba45baf697a307697576835df4c4b4ae010ab84dbe8bb2b
 SHA512 
995f89beece9e7ff0b558b466c06a476f22d3161f31622a232c382d81e74399aeb0a39cb4a95080829120c527a1a93757425671e2ca3639d8637e5e905ad3e80

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
deleted file mode 100644
index 5f51fbe7ef3f..
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
-   inherit git-r3
-else
-   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-
-LICENSE="BSD-2 GPL-2"
-SLOT="0"
-IUSE="+dhcp"
-
-RDEPEND="sys-apps/gentoo-functions
-   >=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
-BDEPEND="kernel_linux? ( virtual/pkgconfig )"
-
-src_prepare() {
-   if [[ ${PV} == "" ]] ; then
-   local ver="git-${EGIT_VERSION:0:6}"
-   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
-   einfo "Producing ChangeLog from Git history"
-   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
-   fi
-
-   default
-}
-
-src_compile() {
-   MAKE_ARGS=(
-   PREFIX="${EPREFIX}"
-   UPREFIX="${EPREFIX}/usr"
-   UDEVDIR="${EPREFIX}$(get_udevdir)"
-   LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   PF="${PF}"
-   )
-
-   emake "${MAKE_ARGS[@]}" all
-}
-
-src_install() {
-   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
-   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
-
-   # Install the service file
-   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-   systemd_newunit "${T}/net_at.service" 'net@.service'
-
-   local UNIT_DIR="$(systemd_get_systemunitdir)"
-   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
-   dosym net@.service "${UNIT_DIR}/net@lo.service"
-}
-
-pkg_postinst() {
-   udev_reload
-   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
-   elog "The network configuration scripts will use dhcp by"
-   elog "default to set up your interfaces."
-   elog "If you need to set up something more complete, see"
-   elog "${EROOT}/usr/share/doc/${P}/README"
-   fi
-}

diff --git a/net-misc/netifrc/netifrc-0.7.6-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
deleted file mode 100644
index 54f749377303..
--- a/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
-
-if 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-10-19 Thread Sam James
commit: b3068dae27987ad0a46602001efc433f03459e35
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 20 00:21:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 20 00:50:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3068dae

net-misc/netifrc: add 0.7.7

Bug: https://bugs.gentoo.org/881039
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.7.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 912e655ee1ab..8c1bd2bdd95b 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,2 +1,3 @@
 DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4
 DIST netifrc-0.7.6.tar.gz 86771 BLAKE2B 
814e97630a84a2f9531aa81754f3ea20a561f19d055e4a6652a1374925c4ff6e7279e161a817e3c50059b2c40b7b1a7602bad3dbcb68836882e4fe5ad754
 SHA512 
ec8d44254106a38b16c52ef33a5064db40db565cef7b7499d38c7636f2b9c01305329d77ac6298621f3b55a1401345c108374a691ae41129b8fe9d5a7e35
+DIST netifrc-0.7.7.tar.bz2 75823 BLAKE2B 
e2d99ac347e9a449b39981b1aa1585ff83d05af1bafe09f7e2e25954360df1e76f53ce4a5c8e08777ba45baf697a307697576835df4c4b4ae010ab84dbe8bb2b
 SHA512 
995f89beece9e7ff0b558b466c06a476f22d3161f31622a232c382d81e74399aeb0a39cb4a95080829120c527a1a93757425671e2ca3639d8637e5e905ad3e80

diff --git a/net-misc/netifrc/netifrc-0.7.7.ebuild 
b/net-misc/netifrc/netifrc-0.7.7.ebuild
new file mode 100644
index ..a05e5bb7a079
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.7.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="
+   https://anongit.gentoo.org/git/proj/netifrc.git
+   https://github.com/gentoo/${PN}
+   "
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2 GPL-2"
+SLOT="0"
+IUSE="+dhcp"
+
+RDEPEND="
+   sys-apps/gentoo-functions
+   >=sys-apps/openrc-0.15
+   dhcp? (
+   || (
+   net-misc/dhcpcd
+   net-misc/dhcp[client]
+   sys-apps/busybox
+   )
+   )
+"
+BDEPEND="
+   kernel_linux? ( virtual/pkgconfig )
+"
+
+src_prepare() {
+   if [[ ${PV} ==  ]] ; then
+   local ver="git-${EGIT_VERSION:0:6}"
+   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
+   einfo "Producing ChangeLog from Git history"
+   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
+
+   emake "${MAKE_ARGS[@]}" all
+}
+
+src_install() {
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
+}
+
+pkg_postinst() {
+   udev_reload
+
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}
+
+pkg_postrm() {
+   udev_reload
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-10-03 Thread Patrick McLean
commit: 7666992380a6ea303e04eec4457e1b11c2cda310
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Oct  3 20:40:51 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Oct  3 20:40:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76669923

net-misc/netifrc: revbump, add busybox to dhcp (bug #846488), bug #861686

Closes: https://bugs.gentoo.org/846488
Closes: https://bugs.gentoo.org/861686
Signed-off-by: Patrick McLean  gentoo.org>

 .../{netifrc-.ebuild => netifrc-0.7.6-r1.ebuild}| 17 +++--
 net-misc/netifrc/netifrc-.ebuild| 17 +++--
 2 files changed, 30 insertions(+), 4 deletions(-)

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
similarity index 92%
copy from net-misc/netifrc/netifrc-.ebuild
copy to net-misc/netifrc/netifrc-0.7.6-r1.ebuild
index 71acc5378ef6..54f749377303 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
@@ -26,9 +26,17 @@ IUSE="+dhcp"
 RDEPEND="
sys-apps/gentoo-functions
>=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )
+   dhcp? (
+   || (
+   net-misc/dhcpcd
+   net-misc/dhcp[client]
+   sys-apps/busybox
+   )
+   )
+"
+BDEPEND="
+   kernel_linux? ( virtual/pkgconfig )
 "
-BDEPEND="kernel_linux? ( virtual/pkgconfig )"
 
 src_prepare() {
if [[ ${PV} ==  ]] ; then
@@ -69,6 +77,7 @@ src_install() {
 
 pkg_postinst() {
udev_reload
+
if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."
@@ -76,3 +85,7 @@ pkg_postinst() {
elog "${EROOT}/usr/share/doc/${P}/README"
fi
 }
+
+pkg_postrm() {
+   udev_reload
+}

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 71acc5378ef6..54f749377303 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -26,9 +26,17 @@ IUSE="+dhcp"
 RDEPEND="
sys-apps/gentoo-functions
>=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )
+   dhcp? (
+   || (
+   net-misc/dhcpcd
+   net-misc/dhcp[client]
+   sys-apps/busybox
+   )
+   )
+"
+BDEPEND="
+   kernel_linux? ( virtual/pkgconfig )
 "
-BDEPEND="kernel_linux? ( virtual/pkgconfig )"
 
 src_prepare() {
if [[ ${PV} ==  ]] ; then
@@ -69,6 +77,7 @@ src_install() {
 
 pkg_postinst() {
udev_reload
+
if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."
@@ -76,3 +85,7 @@ pkg_postinst() {
elog "${EROOT}/usr/share/doc/${P}/README"
fi
 }
+
+pkg_postrm() {
+   udev_reload
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-10-03 Thread Patrick McLean
commit: d4e845c1fcbeff27e643cd72d89132d9fa44a33c
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Oct  3 20:33:10 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Oct  3 20:33:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e845c1

net-misc/netifrc: update LICENSE

Closes: https://bugs.gentoo.org/912725
Signed-off-by: Patrick McLean  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 net-misc/netifrc/netifrc-0.7.6.ebuild | 2 +-
 net-misc/netifrc/netifrc-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index d05ac157d52b..5f51fbe7ef3f 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -17,7 +17,7 @@ else
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
-LICENSE="BSD-2"
+LICENSE="BSD-2 GPL-2"
 SLOT="0"
 IUSE="+dhcp"
 

diff --git a/net-misc/netifrc/netifrc-0.7.6.ebuild 
b/net-misc/netifrc/netifrc-0.7.6.ebuild
index 177d61a18ee9..71acc5378ef6 100644
--- a/net-misc/netifrc/netifrc-0.7.6.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.6.ebuild
@@ -19,7 +19,7 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
-LICENSE="BSD-2"
+LICENSE="BSD-2 GPL-2"
 SLOT="0"
 IUSE="+dhcp"
 

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 177d61a18ee9..71acc5378ef6 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -19,7 +19,7 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
-LICENSE="BSD-2"
+LICENSE="BSD-2 GPL-2"
 SLOT="0"
 IUSE="+dhcp"
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-09-10 Thread Sam James
commit: 2a0d8e2a1376e25311c361e3c3704811139ae251
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 10 15:23:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 10 15:23:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a0d8e2a

net-misc/netifrc: update HOMEPAGE

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 net-misc/netifrc/netifrc-0.7.6.ebuild | 2 +-
 net-misc/netifrc/netifrc-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 7181e1758d64..d05ac157d52b 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
 
 if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;

diff --git a/net-misc/netifrc/netifrc-0.7.6.ebuild 
b/net-misc/netifrc/netifrc-0.7.6.ebuild
index f0edbfcf57dd..177d61a18ee9 100644
--- a/net-misc/netifrc/netifrc-0.7.6.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.6.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
 
 if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index f0edbfcf57dd..177d61a18ee9 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
 
 if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-09-10 Thread Sam James
commit: 878d23322e0a0d119242da7dd193cf34a92e9985
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 10 15:20:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 10 15:20:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=878d2332

net-misc/netifrc: add 0.7.6

Bug: https://bugs.gentoo.org/889922
Bug: https://bugs.gentoo.org/893290
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest  |  1 +
 .../{netifrc-.ebuild => netifrc-0.7.6.ebuild}  | 18 +++---
 net-misc/netifrc/netifrc-.ebuild   | 18 +++---
 3 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 784257b264ae..32fcb8793c28 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,3 +1,4 @@
 DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8
 DIST netifrc-0.7.4.tar.bz2 75487 BLAKE2B 
3ac3114ee4fb538c620284d02d3c1a0adc905f349ab40e7ff7065a4837113a36824b3962511160d997fc3a85701d55d569d8ac6b6b00c4665281d5b765827f76
 SHA512 
4934e2b7247a65847eed3a0f982c1c3996c486d7cb1cb401c29d8a6ea36eb94930a64e1cb84ff6ffdfb305e75f369fe6834062fcbb5e1d77d9f336d6592f3dff
 DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4
+DIST netifrc-0.7.6.tar.gz 86771 BLAKE2B 
814e97630a84a2f9531aa81754f3ea20a561f19d055e4a6652a1374925c4ff6e7279e161a817e3c50059b2c40b7b1a7602bad3dbcb68836882e4fe5ad754
 SHA512 
ec8d44254106a38b16c52ef33a5064db40db565cef7b7499d38c7636f2b9c01305329d77ac6298621f3b55a1401345c108374a691ae41129b8fe9d5a7e35

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-0.7.6.ebuild
similarity index 86%
copy from net-misc/netifrc/netifrc-.ebuild
copy to net-misc/netifrc/netifrc-0.7.6.ebuild
index 67e26c8b1ccf..f0edbfcf57dd 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.6.ebuild
@@ -1,16 +1,18 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
 HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
 
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="
+   https://anongit.gentoo.org/git/proj/netifrc.git
+   https://github.com/gentoo/${PN}
+   "
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
@@ -21,13 +23,15 @@ LICENSE="BSD-2"
 SLOT="0"
 IUSE="+dhcp"
 
-RDEPEND="sys-apps/gentoo-functions
+RDEPEND="
+   sys-apps/gentoo-functions
>=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
+   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )
+"
 BDEPEND="kernel_linux? ( virtual/pkgconfig )"
 
 src_prepare() {
-   if [[ ${PV} == "" ]] ; then
+   if [[ ${PV} ==  ]] ; then
local ver="git-${EGIT_VERSION:0:6}"
sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
einfo "Producing ChangeLog from Git history"

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 67e26c8b1ccf..f0edbfcf57dd 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -1,16 +1,18 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
 HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
 
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="
+   https://anongit.gentoo.org/git/proj/netifrc.git
+   https://github.com/gentoo/${PN}
+   "
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
@@ -21,13 +23,15 @@ LICENSE="BSD-2"
 SLOT="0"
 IUSE="+dhcp"
 
-RDEPEND="sys-apps/gentoo-functions
+RDEPEND="
+   sys-apps/gentoo-functions
>=sys-apps/openrc-0.15
-   dhcp? ( || ( 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-09-10 Thread Sam James
commit: 7cc04099f300d2fe4d8953c7089835038a4fc87b
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 10 15:21:20 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 10 15:21:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc04099

net-misc/netifrc: drop 0.7.3, 0.7.3-r1, 0.7.4

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest|  2 -
 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 74 
 net-misc/netifrc/netifrc-0.7.3.ebuild| 71 --
 net-misc/netifrc/netifrc-0.7.4.ebuild| 74 
 4 files changed, 221 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 32fcb8793c28..912e655ee1ab 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,4 +1,2 @@
-DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8
-DIST netifrc-0.7.4.tar.bz2 75487 BLAKE2B 
3ac3114ee4fb538c620284d02d3c1a0adc905f349ab40e7ff7065a4837113a36824b3962511160d997fc3a85701d55d569d8ac6b6b00c4665281d5b765827f76
 SHA512 
4934e2b7247a65847eed3a0f982c1c3996c486d7cb1cb401c29d8a6ea36eb94930a64e1cb84ff6ffdfb305e75f369fe6834062fcbb5e1d77d9f336d6592f3dff
 DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4
 DIST netifrc-0.7.6.tar.gz 86771 BLAKE2B 
814e97630a84a2f9531aa81754f3ea20a561f19d055e4a6652a1374925c4ff6e7279e161a817e3c50059b2c40b7b1a7602bad3dbcb68836882e4fe5ad754
 SHA512 
ec8d44254106a38b16c52ef33a5064db40db565cef7b7499d38c7636f2b9c01305329d77ac6298621f3b55a1401345c108374a691ae41129b8fe9d5a7e35

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
deleted file mode 100644
index 7181e1758d64..
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
-   inherit git-r3
-else
-   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="+dhcp"
-
-RDEPEND="sys-apps/gentoo-functions
-   >=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
-BDEPEND="kernel_linux? ( virtual/pkgconfig )"
-
-src_prepare() {
-   if [[ ${PV} == "" ]] ; then
-   local ver="git-${EGIT_VERSION:0:6}"
-   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
-   einfo "Producing ChangeLog from Git history"
-   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
-   fi
-
-   default
-}
-
-src_compile() {
-   MAKE_ARGS=(
-   PREFIX="${EPREFIX}"
-   UPREFIX="${EPREFIX}/usr"
-   UDEVDIR="${EPREFIX}$(get_udevdir)"
-   LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   PF="${PF}"
-   )
-
-   emake "${MAKE_ARGS[@]}" all
-}
-
-src_install() {
-   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
-   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
-
-   # Install the service file
-   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-   systemd_newunit "${T}/net_at.service" 'net@.service'
-
-   local UNIT_DIR="$(systemd_get_systemunitdir)"
-   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
-   dosym net@.service "${UNIT_DIR}/net@lo.service"
-}
-
-pkg_postinst() {
-   udev_reload
-   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
-   elog "The network configuration scripts will use dhcp by"
-   elog "default to set up your interfaces."
-   elog "If you need to set up something more complete, see"
-   elog "${EROOT}/usr/share/doc/${P}/README"
-   fi
-}

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
deleted file mode 100644
index d06417b6031a..
--- 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-09-09 Thread Sam James
commit: f838eb7b741a7c937c1b2c46a65b8d00f280fbab
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 10 05:54:03 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 10 05:54:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f838eb7b

net-misc/netifrc: Stabilize 0.7.5 sparc, #907274

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 2539ed1b0faa..7181e1758d64 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-09-09 Thread Sam James
commit: 37895aeb6859e9b0c6ebebfda4923bd7a4646c69
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 10 05:53:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 10 05:54:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37895aeb

net-misc/netifrc: Stabilize 0.7.5 arm, #907274

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index eca56e57582a..2539ed1b0faa 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-06-06 Thread Sam James
commit: 80a608270dea81ebf0b571ced5ad4adbbd69a252
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  6 18:46:37 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun  6 21:07:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a60827

net-misc/netifrc: stable 0.7.5 for hppa, bug #907274

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 0bcee6d3b742..eca56e57582a 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-06-01 Thread Jakov Smolić
commit: f6abbd45fc17e4a80522ea945a48abf40c233af3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Jun  1 06:58:21 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Jun  1 06:58:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6abbd45

net-misc/netifrc: Stabilize 0.7.5 ppc, #907274

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index e31fe4b745c9..925bb58c1442 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-06-01 Thread Jakov Smolić
commit: 99dcc201f5bf551bddf448ffc56078b77924f7b6
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Jun  1 06:58:27 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Jun  1 06:58:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99dcc201

net-misc/netifrc: Stabilize 0.7.5 ppc64, #907274

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 925bb58c1442..0bcee6d3b742 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-31 Thread Joonas Niilola
commit: 240d772a9faa7e879afd7ec364d9158a371ac6da
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May 31 06:15:46 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May 31 06:15:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=240d772a

net-misc/netifrc: Stabilize 0.7.5 x86, #907274

Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index f91715c40d48..e31fe4b745c9 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-31 Thread Joonas Niilola
commit: 8c7d9a3dbcc7301156178bb49bf2438d6da88afb
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May 31 06:15:20 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May 31 06:15:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c7d9a3d

net-misc/netifrc: Stabilize 0.7.5 amd64, #907274

Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 553db211752f..f91715c40d48 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-30 Thread Arthur Zamarin
commit: 3fd23e5ac243105ac34922712bc45232bb65274c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May 30 16:51:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May 30 16:51:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd23e5a

net-misc/netifrc: Stabilize 0.7.5 arm64, #907274

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-misc/netifrc/netifrc-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
index 67e26c8b1ccf..553db211752f 100644
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-28 Thread Sam James
commit: 8e06d1c29d162400b8e7507ffe7bb9667f8fe30d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 27 10:28:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 29 00:41:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e06d1c2

net-misc/netifrc: stable 0.7.4 for sparc, bug #906089

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.4.ebuild 
b/net-misc/netifrc/netifrc-0.7.4.ebuild
index 1eba7e691d7e..d2c47b241e5c 100644
--- a/net-misc/netifrc/netifrc-0.7.4.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-28 Thread Mike Gilbert
commit: 806b3ffeb1a34891e0daa469b8494e9abe92ef6f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon May 29 00:24:33 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 29 00:24:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=806b3ffe

net-misc/netifrc: add 0.7.5

Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.5.ebuild | 74 +++
 2 files changed, 75 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 9fd9fa8dc33b..784257b264ae 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,2 +1,3 @@
 DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8
 DIST netifrc-0.7.4.tar.bz2 75487 BLAKE2B 
3ac3114ee4fb538c620284d02d3c1a0adc905f349ab40e7ff7065a4837113a36824b3962511160d997fc3a85701d55d569d8ac6b6b00c4665281d5b765827f76
 SHA512 
4934e2b7247a65847eed3a0f982c1c3996c486d7cb1cb401c29d8a6ea36eb94930a64e1cb84ff6ffdfb305e75f369fe6834062fcbb5e1d77d9f336d6592f3dff
+DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
new file mode 100644
index ..67e26c8b1ccf
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.5.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="+dhcp"
+
+RDEPEND="sys-apps/gentoo-functions
+   >=sys-apps/openrc-0.15
+   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
+BDEPEND="kernel_linux? ( virtual/pkgconfig )"
+
+src_prepare() {
+   if [[ ${PV} == "" ]] ; then
+   local ver="git-${EGIT_VERSION:0:6}"
+   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
+   einfo "Producing ChangeLog from Git history"
+   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
+
+   emake "${MAKE_ARGS[@]}" all
+}
+
+src_install() {
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
+}
+
+pkg_postinst() {
+   udev_reload
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-28 Thread Mike Gilbert
commit: 021067d14cb7b5c72b2361570dcb50c41ec7f25b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon May 29 00:21:34 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 29 00:21:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=021067d1

net-misc/netifrc: sync live ebuild

Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/netifrc/netifrc-.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index b9264c7f7cf7..67e26c8b1ccf 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -14,15 +14,16 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"
 SLOT="0"
-IUSE=""
+IUSE="+dhcp"
 
 RDEPEND="sys-apps/gentoo-functions
-   >=sys-apps/openrc-0.15"
+   >=sys-apps/openrc-0.15
+   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
 BDEPEND="kernel_linux? ( virtual/pkgconfig )"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-16 Thread Sam James
commit: 0059b28e029951c91277e3f64867714bdd82c482
Author: Sam James  gentoo  org>
AuthorDate: Wed May 17 01:40:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 17 01:40:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0059b28e

net-misc/netifrc: Stabilize 0.7.4 amd64, #906089

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.4.ebuild 
b/net-misc/netifrc/netifrc-0.7.4.ebuild
index 37defe11d639..1eba7e691d7e 100644
--- a/net-misc/netifrc/netifrc-0.7.4.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-05-16 Thread Sam James
commit: a59289fa2bc00ece646d4b262de2bdd3540a0b3f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue May 16 19:41:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 16 20:02:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a59289fa

net-misc/netifrc: stable 0.7.4 for hppa, bug #906089

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.4.ebuild 
b/net-misc/netifrc/netifrc-0.7.4.ebuild
index e67405ca29c9..37defe11d639 100644
--- a/net-misc/netifrc/netifrc-0.7.4.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-04-16 Thread Sam James
commit: 04e95bd55dcb4d638c5b8814c994904308926598
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 17 04:39:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 17 04:41:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04e95bd5

net-misc/netifrc: add 0.7.4

Closes: https://bugs.gentoo.org/904422
Closes: https://bugs.gentoo.org/893290
Closes: https://bugs.gentoo.org/890238
Closes: https://bugs.gentoo.org/889922
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.4.ebuild | 74 +++
 2 files changed, 75 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 8fc1d881195e..9fd9fa8dc33b 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1 +1,2 @@
 DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8
+DIST netifrc-0.7.4.tar.bz2 75487 BLAKE2B 
3ac3114ee4fb538c620284d02d3c1a0adc905f349ab40e7ff7065a4837113a36824b3962511160d997fc3a85701d55d569d8ac6b6b00c4665281d5b765827f76
 SHA512 
4934e2b7247a65847eed3a0f982c1c3996c486d7cb1cb401c29d8a6ea36eb94930a64e1cb84ff6ffdfb305e75f369fe6834062fcbb5e1d77d9f336d6592f3dff

diff --git a/net-misc/netifrc/netifrc-0.7.4.ebuild 
b/net-misc/netifrc/netifrc-0.7.4.ebuild
new file mode 100644
index ..e67405ca29c9
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.4.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="+dhcp"
+
+RDEPEND="sys-apps/gentoo-functions
+   >=sys-apps/openrc-0.15
+   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
+BDEPEND="kernel_linux? ( virtual/pkgconfig )"
+
+src_prepare() {
+   if [[ ${PV} == "" ]] ; then
+   local ver="git-${EGIT_VERSION:0:6}"
+   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
+   einfo "Producing ChangeLog from Git history"
+   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
+
+   emake "${MAKE_ARGS[@]}" all
+}
+
+src_install() {
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
+}
+
+pkg_postinst() {
+   udev_reload
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-04-16 Thread Sam James
commit: 3b9d798226876ef706fef6a62932a7d8c8a9bcd1
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 17 04:40:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 17 04:41:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9d7982

net-misc/netifrc: Stabilize 0.7.3-r1 ppc, #891003

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 92a6b054af99..7181e1758d64 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-04-16 Thread Sam James
commit: 59913aa22594ba0e65c766710bfc9e69725d6384
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 17 04:40:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 17 04:41:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59913aa2

net-misc/netifrc: Stabilize 0.7.3-r1 arm64, #891003

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index ff724447c4e8..293ede44e2ff 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-04-16 Thread Sam James
commit: fc087e04c98349d620827e4174134e2a39aea328
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 17 04:40:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 17 04:41:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc087e04

net-misc/netifrc: Stabilize 0.7.3-r1 amd64, #891003

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 18a94a9a3dac..ff724447c4e8 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-04-16 Thread Sam James
commit: 219e00572adbcdf81c98411150deed90ac3215a0
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 17 04:40:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 17 04:41:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219e0057

net-misc/netifrc: Stabilize 0.7.3-r1 arm, #891003

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 293ede44e2ff..92a6b054af99 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-03-08 Thread Sam James
commit: 2fade410a3b92ed53a8f4d6038a4697b735a6b99
Author: Matoro Mahri  users  noreply  github  
com>
AuthorDate: Thu Mar  9 00:10:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar  9 01:07:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fade410

net-misc/netifrc: Stabilize 0.7.3-r1 hppa, #891003

Signed-off-by: Matoro Mahri  users.noreply.github.com>
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 69f99ae7f0d5..18a94a9a3dac 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-03-08 Thread Sam James
commit: efe0029a99179d4f67874d9d4857ff0aa958ab26
Author: Matoro Mahri  users  noreply  github  
com>
AuthorDate: Wed Mar  8 14:57:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar  9 01:07:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe0029a

net-misc/netifrc: Stabilize 0.7.3-r1 sparc, #891003

Signed-off-by: Matoro Mahri  users.noreply.github.com>
Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 0f04017a43cb..69f99ae7f0d5 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-02-05 Thread Sam James
commit: 9cc14ca42f4db792ee10b2b3ba388e2cf7d50a2b
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb  5 21:12:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb  6 02:06:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cc14ca4

net-misc/netifrc: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-misc/netifrc/metadata.xml b/net-misc/netifrc/metadata.xml
index 4f718879b413..9ed8aae32de1 100644
--- a/net-misc/netifrc/metadata.xml
+++ b/net-misc/netifrc/metadata.xml
@@ -11,4 +11,7 @@

Allow interfaces to configure via DHCP

+   
+   gentoo/netifrc
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-02-05 Thread Sam James
commit: b3903e072c7dfec6d5a666728807534d1d37e90f
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb  5 21:12:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb  6 02:06:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3903e07

net-misc/netifrc: add gentoo upstream metadata

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-misc/netifrc/metadata.xml b/net-misc/netifrc/metadata.xml
index 9ed8aae32de1..077b99cdc01d 100644
--- a/net-misc/netifrc/metadata.xml
+++ b/net-misc/netifrc/metadata.xml
@@ -12,6 +12,7 @@
Allow interfaces to configure via DHCP


+   proj/netifrc
gentoo/netifrc

 



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-02-02 Thread Mike Gilbert
commit: b37c9d8e54c8823568f4bfeca0df20b87e96e99f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Feb  2 17:28:06 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Feb  2 17:29:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37c9d8e

net-misc/netifrc: drop obsolete udev blocker

Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 --
 net-misc/netifrc/netifrc-.ebuild | 4 +---
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 76b8ecc7d9ce..0f04017a43cb 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -21,10 +21,8 @@ LICENSE="BSD-2"
 SLOT="0"
 IUSE="+dhcp"
 
-DEPEND="!=sys-apps/openrc-0.15"
 BDEPEND="kernel_linux? ( virtual/pkgconfig )"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-02-02 Thread Mike Gilbert
commit: 869d632e91cd0e6369a053a7cc4adbc6030cd8f5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Feb  2 17:23:58 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Feb  2 17:29:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869d632e

net-misc/netifrc: convert MAKE_ARGS to an array

Always pass PREFIX/UPREFIX to override the broken Makefile logic.

Closes: https://bugs.gentoo.org/892946
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 24 ++--
 net-misc/netifrc/netifrc-.ebuild | 26 +++---
 2 files changed, 29 insertions(+), 21 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 33d349ea52b6..76b8ecc7d9ce 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -40,25 +40,29 @@ src_prepare() {
 }
 
 src_compile() {
-   MAKE_ARGS="${MAKE_ARGS}
-   UDEVDIR=${EPREFIX}$(get_udevdir)
-   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
 
-   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
-
-   emake ${MAKE_ARGS} all
+   emake "${MAKE_ARGS[@]}" all
 }
 
 src_install() {
-   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
 
# Install the service file
-   LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   UNIT_DIR="$(systemd_get_systemunitdir)"
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
systemd_newunit "${T}/net_at.service" 'net@.service'
-   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
 }
 
 pkg_postinst() {

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 31f53c53facc..c91d452c9918 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -39,25 +39,29 @@ src_prepare() {
 }
 
 src_compile() {
-   MAKE_ARGS="${MAKE_ARGS}
-   UDEVDIR=${EPREFIX}$(get_udevdir)
-   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+   MAKE_ARGS=(
+   PREFIX="${EPREFIX}"
+   UPREFIX="${EPREFIX}/usr"
+   UDEVDIR="${EPREFIX}$(get_udevdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   PF="${PF}"
+   )
 
-   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
-
-   emake ${MAKE_ARGS} all
+   emake "${MAKE_ARGS[@]}" all
 }
 
 src_install() {
-   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
 
# Install the service file
-   LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   UNIT_DIR="$(systemd_get_systemunitdir)"
+   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
systemd_newunit "${T}/net_at.service" 'net@.service'
-   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+
+   local UNIT_DIR="$(systemd_get_systemunitdir)"
+   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
+   dosym net@.service "${UNIT_DIR}/net@lo.service"
 }
 
 pkg_postinst() {



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-01-22 Thread Arthur Zamarin
commit: 2f0dd6b38f867883776311be6d20e5f4b77fa900
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 22 17:52:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 22 17:52:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0dd6b3

net-misc/netifrc: Stabilize 0.7.3-r1 x86, #891003

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 8ce072c3b03f..33d349ea52b6 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2023-01-15 Thread Sam James
commit: c08e98b07ed38a8b750511d7700562407818d1f1
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 16 00:30:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 16 00:30:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08e98b0

net-misc/netifrc: Stabilize 0.7.3-r1 ppc64, #891003

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index daf90d2df7ed..8ce072c3b03f 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/, net-misc/netifrc/files/

2023-01-15 Thread Sam James
commit: 5870586a8e70d00fa5d5f6831ee77bbb0ec8e252
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 15 22:35:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 15 22:40:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5870586a

net-misc/netifrc: drop 0.7.1-r1, 0.7.1-r2, 0.7.2

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/Manifest  |  3 -
 .../files/netifrc-0.7.1-dhcpcd_args_tempfile.patch | 65 ---
 .../netifrc-0.7.1-dhcpcd_pidfile_location.patch| 50 ---
 net-misc/netifrc/netifrc-0.7.1-r1.ebuild   | 75 --
 net-misc/netifrc/netifrc-0.7.1-r2.ebuild   | 73 -
 net-misc/netifrc/netifrc-0.7.2.ebuild  | 70 
 6 files changed, 336 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 9ca3a9ffe611..8fc1d881195e 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,4 +1 @@
-DIST netifrc-0.7.1-patches-01.tar.xz 3356 BLAKE2B 
35d34456af5fcb8ac35c80db13484b7b4712543e95441e6be4274934627216879ae6c8421ca2ef0b67a92ab39befb03a4b171a51a54e0e14c10bb6323cfaa4e9
 SHA512 
340cf6184196ee9648565cd2c652cd56eaab4f3f765baff889f736cca05a5ca12a63de5d864c0f9fedc9337f88fd25dac0224118dab39ce7542cd0977f40db6f
-DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057
-DIST netifrc-0.7.2.tar.gz 84332 BLAKE2B 
ba379f34a7986f75f73f291ad69dff2b58036eb439ba8610f5fbddc3d1df9430e0560683477544f11bcd4fb2dd662ed09ab0797a9ce9f734f4b5dcf5db8006c8
 SHA512 
1d588b638331b3822e9c7ff7f6118a540f20366a662ebf4d05c4c1794536fcb5ee25b57e8cf7b631d9073c3b405d5b9ac460443d5184216d805f956df07e
 DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8

diff --git a/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch 
b/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch
deleted file mode 100644
index 6ad40c860f96..
--- a/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From 586579d5c9fad63eb8780c556f34b80d0302e6b9 Mon Sep 17 00:00:00 2001
-From: Lars Wendler 
-Date: Fri, 22 May 2020 10:09:22 +0200
-Subject: [PATCH] net/dhcpcd.sh: Put user args into a temp file
-
-So we still use the correct PID even if the user has changed his
-configuration between start and stop.
-
-Signed-off-by: Lars Wendler 

- net/dhcpcd.sh | 20 ++--
- 1 file changed, 14 insertions(+), 6 deletions(-)
-
-diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh
-index c0639e0..dcc6817 100644
 a/net/dhcpcd.sh
-+++ b/net/dhcpcd.sh
-@@ -16,11 +16,14 @@ _config_vars="$_config_vars dhcp dhcpcd"
- 
- dhcpcd_start()
- {
--  # check for pidfile after we gathered the user's opts because they can
-+  # check for pidfile after we gathered the user's args because they can
-   # alter the pidfile's name (#718114)
--  local args= opt= pidfile= opts= new=true
-+  # Save the args into a file so dhcpcd_stop can later re-use the very
-+  # same args later.
-+  local args= opt= pidfile= opts= new=true 
argsfile=/run/netifrc_dhcpcd_${IFACE}_args
-   eval args=\$dhcpcd_${IFVAR}
-   [ -z "${args}" ] && args=${dhcpcd}
-+  echo "${args}" > ${argsfile}
-   pidfile="$(dhcpcd -P ${args} ${IFACE})"
- 
-   # Get our options
-@@ -78,12 +81,16 @@ dhcpcd_start()
- 
- dhcpcd_stop()
- {
--  local args= pidfile= opts= sig=SIGTERM
-+  local args= pidfile= opts= sig=SIGTERM 
argsfile=/run/netifrc_dhcpcd_${IFACE}_args
- 
--  # check for pidfile after we gathered the user's opts because they can
-+  # check for pidfile after we gathered the user's args because they can
-   # alter the pidfile's name (#718114)
--  eval args=\$dhcpcd_${IFVAR}
--  [ -z "${args}" ] && args=${dhcpcd}
-+  if [ -f "${argsfile}" ] ; then
-+  args="$(cat ${argsfile})"
-+  else
-+  eval args=\$dhcpcd_${IFVAR}
-+  [ -z "${args}" ] && args=${dhcpcd}
-+  fi
-   pidfile="$(dhcpcd -P ${args} ${IFACE})"
-   [ ! -f "${pidfile}" ] && return 0
- 
-@@ -94,5 +101,6 @@ dhcpcd_stop()
-   *" release "*) dhcpcd -k "${IFACE}" ;;
-   *) dhcpcd -x "${IFACE}" ;;
-   esac
-+  [ -f "${argsfile}" ] && rm -f "${argsfile}"
-   eend $?
- }
--- 
-2.27.0.rc0
-

diff --git a/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_pidfile_location.patch 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2022-05-20 Thread Lars Wendler
commit: dedd765a52e9d3519f50a28d02f7499380dbbcf3
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri May 20 06:31:33 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri May 20 06:31:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dedd765a

net-misc/netifrc: Re-add udev_reload call

Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
index 64bea176c13c..daf90d2df7ed 100644
--- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -62,6 +62,7 @@ src_install() {
 }
 
 pkg_postinst() {
+   udev_reload
if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2022-05-19 Thread Ben Kohler
commit: 087ced48f64bcc4a34a60cb09fc2db9360fad564
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu May 19 17:22:11 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu May 19 17:23:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087ced48

net-misc/netifrc: depend on a dhcp client by default

Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/netifrc/metadata.xml|  3 ++
 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 71 
 2 files changed, 74 insertions(+)

diff --git a/net-misc/netifrc/metadata.xml b/net-misc/netifrc/metadata.xml
index 19c1e2b9b47a..4f718879b413 100644
--- a/net-misc/netifrc/metadata.xml
+++ b/net-misc/netifrc/metadata.xml
@@ -8,4 +8,7 @@
This package contains the Gentoo network interface management
scripts, which were separated from OpenRC.

+   
+   Allow interfaces to configure via DHCP
+   
 

diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
new file mode 100644
index ..64bea176c13c
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="+dhcp"
+
+DEPEND="!"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   UNIT_DIR="$(systemd_get_systemunitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2022-05-13 Thread Robin H. Johnson
commit: 96fa623d6c5297f48e16a2bc855c2507449e
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri May 13 22:10:52 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri May 13 22:11:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96fa

net-misc/netifrc: pkg_postinst needs udev_reload

Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://bugs.gentoo.org/843908

 net-misc/netifrc/netifrc-0.7.3.ebuild | 1 +
 net-misc/netifrc/netifrc-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index ac56715aca1e..d06417b6031a 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -61,6 +61,7 @@ src_install() {
 }
 
 pkg_postinst() {
+   udev_reload
if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 4503bec9c25e..31f53c53facc 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -61,6 +61,7 @@ src_install() {
 }
 
 pkg_postinst() {
+   udev_reload
if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-11 Thread Sam James
commit: 1a16c9f680a663b7787d64472917db605b724de1
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr 11 13:12:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 11 13:12:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a16c9f6

net-misc/netifrc: Stabilize 0.7.3 ppc, #780573

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 2282a9b7889..5aa4ea9667c 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-09 Thread Sam James
commit: 6f96a34f688b1ff35d81ed532ab92ac2522b2c18
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  9 22:18:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  9 22:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f96a34f

net-misc/netifrc: Stabilize 0.7.3 arm64, #780573

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 1b16790471c..2282a9b7889 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-09 Thread Sergei Trofimovich
commit: e03d8b1c973fdc8c9d4410ece1da6fd5046b2e04
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Apr  9 10:21:20 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Apr  9 15:39:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e03d8b1c

net-misc/netifrc: stable 0.7.3 for hppa, bug #780573

Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 7bff1a892a2..1b16790471c 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-07 Thread Sam James
commit: 9abc9b94b570b32ac9d4bd2f284a710b78ad2f36
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr  7 22:43:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr  7 22:43:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abc9b94

net-misc/netifrc: Stabilize 0.7.3 arm, #780573

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 93dd90a89df..7bff1a892a2 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-07 Thread Sergei Trofimovich
commit: 296b3a30ba1390b244e84a5da65e0c6b72d2bf2d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Apr  7 08:58:08 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Apr  7 09:20:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296b3a30

net-misc/netifrc: stable 0.7.3 for sparc, bug #780573

Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 1288e244346..93dd90a89df 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-07 Thread Sam James
commit: 18752b48e4f984a10a5b164a08cc3b6d6705042e
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr  7 06:24:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr  7 06:24:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18752b48

net-misc/netifrc: Stabilize 0.7.3 ppc64, #780573

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index ffdbd0585cd..1288e244346 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-06 Thread Thomas Deutschmann
commit: 5181bd6ce94d69d8a25de2ff765c6e100925b825
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  6 12:25:23 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  6 12:25:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5181bd6c

net-misc/netifrc: amd64 stable (bug #780573)

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index de1c83b9ed7..ffdbd0585cd 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-04-06 Thread Thomas Deutschmann
commit: 1420eee64a7c778508ee8267a4ff9c31daaf52ca
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  6 12:24:15 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  6 12:24:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1420eee6

net-misc/netifrc: x86 stable (bug #780573)

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/netifrc/netifrc-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
index 0e9cf97453c..de1c83b9ed7 100644
--- a/net-misc/netifrc/netifrc-0.7.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-02-10 Thread Lars Wendler
commit: a9ab150177f8010b0476284b6119b31c10c1fabf
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Feb 10 13:11:50 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Feb 10 13:11:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ab1501

net-misc/netifrc: Bump to version 0.7.3

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.3.ebuild | 70 +++
 2 files changed, 71 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index d14f97e5fca..9ca3a9ffe61 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,3 +1,4 @@
 DIST netifrc-0.7.1-patches-01.tar.xz 3356 BLAKE2B 
35d34456af5fcb8ac35c80db13484b7b4712543e95441e6be4274934627216879ae6c8421ca2ef0b67a92ab39befb03a4b171a51a54e0e14c10bb6323cfaa4e9
 SHA512 
340cf6184196ee9648565cd2c652cd56eaab4f3f765baff889f736cca05a5ca12a63de5d864c0f9fedc9337f88fd25dac0224118dab39ce7542cd0977f40db6f
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057
 DIST netifrc-0.7.2.tar.gz 84332 BLAKE2B 
ba379f34a7986f75f73f291ad69dff2b58036eb439ba8610f5fbddc3d1df9430e0560683477544f11bcd4fb2dd662ed09ab0797a9ce9f734f4b5dcf5db8006c8
 SHA512 
1d588b638331b3822e9c7ff7f6118a540f20366a662ebf4d05c4c1794536fcb5ee25b57e8cf7b631d9073c3b405d5b9ac460443d5184216d805f956df07e
+DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 
075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd
 SHA512 
a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8

diff --git a/net-misc/netifrc/netifrc-0.7.3.ebuild 
b/net-misc/netifrc/netifrc-0.7.3.ebuild
new file mode 100644
index 000..0e9cf97453c
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="!"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   UNIT_DIR="$(systemd_get_systemunitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-01-05 Thread Lars Wendler
commit: d737dda953ab699ae5216e83b6b5ae369149088a
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jan  5 18:32:40 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jan  5 18:32:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d737dda9

net-misc/netifrc: Bump to version 0.7.2

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.7.2.ebuild | 70 +++
 2 files changed, 71 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 894075b75f1..d14f97e5fca 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,2 +1,3 @@
 DIST netifrc-0.7.1-patches-01.tar.xz 3356 BLAKE2B 
35d34456af5fcb8ac35c80db13484b7b4712543e95441e6be4274934627216879ae6c8421ca2ef0b67a92ab39befb03a4b171a51a54e0e14c10bb6323cfaa4e9
 SHA512 
340cf6184196ee9648565cd2c652cd56eaab4f3f765baff889f736cca05a5ca12a63de5d864c0f9fedc9337f88fd25dac0224118dab39ce7542cd0977f40db6f
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057
+DIST netifrc-0.7.2.tar.gz 84332 BLAKE2B 
ba379f34a7986f75f73f291ad69dff2b58036eb439ba8610f5fbddc3d1df9430e0560683477544f11bcd4fb2dd662ed09ab0797a9ce9f734f4b5dcf5db8006c8
 SHA512 
1d588b638331b3822e9c7ff7f6118a540f20366a662ebf4d05c4c1794536fcb5ee25b57e8cf7b631d9073c3b405d5b9ac460443d5184216d805f956df07e

diff --git a/net-misc/netifrc/netifrc-0.7.2.ebuild 
b/net-misc/netifrc/netifrc-0.7.2.ebuild
new file mode 100644
index 000..0e9cf97453c
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="!"${S}"/ChangeLog
+   fi
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   UNIT_DIR="$(systemd_get_systemunitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2021-01-05 Thread Lars Wendler
commit: 1e113ea4ee9aefeda5879557ce11af9457433841
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jan  5 15:12:55 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jan  5 15:20:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e113ea4

net-misc/netifrc: Revbump to fix a couple of outstanding issues

- Don't run dhcpcd on interface stop if it is not installed
- Removed support for very old dhcpcd versions (1.x - 3.x)
- ppp-2.4.9 renamed "rp-pppoe" plugin to "pppoe" (we now support both)

Bug: https://bugs.gentoo.org/760093
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/Manifest|  1 +
 net-misc/netifrc/netifrc-0.7.1-r2.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 5d0a546d5f8..894075b75f1 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1 +1,2 @@
+DIST netifrc-0.7.1-patches-01.tar.xz 3356 BLAKE2B 
35d34456af5fcb8ac35c80db13484b7b4712543e95441e6be4274934627216879ae6c8421ca2ef0b67a92ab39befb03a4b171a51a54e0e14c10bb6323cfaa4e9
 SHA512 
340cf6184196ee9648565cd2c652cd56eaab4f3f765baff889f736cca05a5ca12a63de5d864c0f9fedc9337f88fd25dac0224118dab39ce7542cd0977f40db6f
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057

diff --git a/net-misc/netifrc/netifrc-0.7.1-r2.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r2.ebuild
new file mode 100644
index 000..a4939169d56
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.7.1-r2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   SRC_URI+=" https://dev.gentoo.org/~polynomial-c/${P}-patches-01.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="!"${S}"/ChangeLog
+   fi
+
+   eapply "${WORKDIR}"/patches
+
+   default
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
+
+   # Install the service file
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   UNIT_DIR="$(systemd_get_systemunitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-12-12 Thread Aaron Bauman
commit: b90fc7b7dd3e0b95b98587fea0fb89668dbb3b6b
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Dec 12 23:03:34 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Dec 12 23:03:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90fc7b7

net-misc/netifrc: drop old

Signed-off-by: Aaron Bauman  gentoo.org>

 net-misc/netifrc/Manifest |  1 -
 net-misc/netifrc/netifrc-0.5.1.ebuild | 71 ---
 net-misc/netifrc/netifrc-0.7.1.ebuild | 71 ---
 3 files changed, 143 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index e425418827c..5d0a546d5f8 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,2 +1 @@
-DIST netifrc-0.5.1.tar.bz2 78749 BLAKE2B 
cecbf4b64cc8e93483326ef0646d2abfdb837c0351cc210ea0134e654cd44f90cba0390014412f6b45ff4d337d3aaeb5e739553231305846351452aebac870e1
 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
deleted file mode 100644
index 032ac9cfd40..000
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
-   inherit git-r3
-else
-   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="kernel_linux? ( virtual/pkgconfig )
-   !"${S}"/ChangeLog
-   fi
-
-   # Allow user patches to be applied without modifying the ebuild
-   epatch_user
-}
-
-src_compile() {
-   MAKE_ARGS="${MAKE_ARGS}
-   UDEVDIR=${EPREFIX}$(get_udevdir)
-   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
-
-   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
-
-   emake ${MAKE_ARGS} all
-}
-
-src_install() {
-   emake ${MAKE_ARGS} DESTDIR="${D}" install
-   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
-
-   # Install the service file
-   LIBEXECDIR=${EPREFIX}/lib/${PN}
-   UNIT_DIR="$(systemd_get_unitdir)"
-   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-   systemd_newunit "${T}/net_at.service" 'net@.service'
-   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
-}
-
-pkg_postinst() {
-   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
-   elog "The network configuration scripts will use dhcp by"
-   elog "default to set up your interfaces."
-   elog "If you need to set up something more complete, see"
-   elog "${EROOT}/usr/share/doc/${P}/README"
-   fi
-}

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
deleted file mode 100644
index 6e2ab1bd5d2..000
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
-   inherit git-r3
-else
-   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="kernel_linux? ( virtual/pkgconfig )
-   !"${S}"/ChangeLog
-   fi
-
-   # Allow user patches to be applied without modifying the ebuild
-   epatch_user
-}
-
-src_compile() {
-   MAKE_ARGS="${MAKE_ARGS}
-   UDEVDIR=${EPREFIX}$(get_udevdir)
-   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
-
-   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
-
-   

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-12-12 Thread Sergei Trofimovich
commit: 5e778f2a7ba89e760302142219cb0f8395ff89e9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Dec 12 21:13:40 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Dec 12 21:25:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e778f2a

net-misc/netifrc: stable 0.7.1-r1 for hppa, bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index e7cd11a3ac1..41edf1341cc 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-12-02 Thread Sam James
commit: 17d9494ac241eaf5353af369f0752d467d7943f3
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  3 04:19:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  3 04:19:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d9494a

net-misc/netifrc: Stabilize 0.7.1-r1 arm, #757222

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index bd38f1e7802..e7cd11a3ac1 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-12-02 Thread Sam James
commit: 779e30a1cb0a05be0aca23543f0b162c5ac06304
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec  2 09:43:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec  2 09:43:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779e30a1

net-misc/netifrc: Stabilize 0.7.1-r1 arm64, #757222

Signed-off-by: Sam James  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index 16953a94658..bd38f1e7802 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-29 Thread Agostino Sarubbo
commit: 8152536429d105ce3051eae438a17f16e0c15b20
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Nov 29 08:23:58 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Nov 29 08:23:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81525364

net-misc/netifrc: s390 stable wrt bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index d3b07183afc..16953a94658 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-29 Thread Agostino Sarubbo
commit: 6fd561f598b906591b75a6495020ac3c80f743c9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Nov 29 08:21:34 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Nov 29 08:21:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fd561f5

net-misc/netifrc: ppc64 stable wrt bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index 538c6a381cc..d3b07183afc 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-29 Thread Agostino Sarubbo
commit: fd25f21520f9d7560604daf4538e0fe4dd8f25f6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Nov 29 08:18:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Nov 29 08:20:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd25f215

net-misc/netifrc: ppc stable wrt bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index 85f2c5e33ae..538c6a381cc 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-29 Thread Agostino Sarubbo
commit: b23792d6ad304f3224675fb2eb25779bfbffe640
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Nov 29 08:13:47 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Nov 29 08:13:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23792d6

net-misc/netifrc: amd64 stable wrt bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index 78862ef6cc8..85f2c5e33ae 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-28 Thread Sergei Trofimovich
commit: 7a234446aace921b1273fba4cb4af376a6fb62f1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov 28 23:31:38 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Nov 29 00:13:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a234446

net-misc/netifrc: stable 0.7.1-r1 for sparc, bug #757222

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index 4fc9c170622..78862ef6cc8 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-11-27 Thread Thomas Deutschmann
commit: f59ce19da1c8d70fd78ed278dc07bfdb83dac197
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Nov 27 16:48:02 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Nov 27 16:48:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f59ce19d

net-misc/netifrc: x86 stable (bug #757222)

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
index a5c2b998bd7..4fc9c170622 100644
--- a/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-09-07 Thread Lars Wendler
commit: 5c5352e5cb5d7e88ab5823c068093840d662a8ce
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 09:01:49 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 09:14:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5352e5

net-misc/netifrc: Bumped live ebuild to EAPI-7

- Added https EGIT_REPO_URI
- Added missing quoting

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/netifrc-.ebuild | 21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index fa0a59bb5e6..4503bec9c25 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -1,15 +1,15 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-inherit eutils systemd udev
+inherit systemd udev
 
 DESCRIPTION="Gentoo Network Interface Management Scripts"
 HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
 
 if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
#EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
inherit git-r3
 else
@@ -21,11 +21,11 @@ LICENSE="BSD-2"
 SLOT="0"
 IUSE=""
 
-DEPEND="kernel_linux? ( virtual/pkgconfig )
-   !"${S}"/ChangeLog
fi
 
-   # Allow user patches to be applied without modifying the ebuild
-   epatch_user
+   default
 }
 
 src_compile() {
@@ -44,7 +43,7 @@ src_compile() {
UDEVDIR=${EPREFIX}$(get_udevdir)
LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
 
-   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+   use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
 
emake ${MAKE_ARGS} all
 }
@@ -54,15 +53,15 @@ src_install() {
dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
 
# Install the service file
-   LIBEXECDIR=${EPREFIX}/lib/${PN}
-   UNIT_DIR="$(systemd_get_unitdir)"
+   LIBEXECDIR="${EPREFIX}/lib/${PN}"
+   UNIT_DIR="$(systemd_get_systemunitdir)"
sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
systemd_newunit "${T}/net_at.service" 'net@.service'
dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
 }
 
 pkg_postinst() {
-   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
elog "The network configuration scripts will use dhcp by"
elog "default to set up your interfaces."
elog "If you need to set up something more complete, see"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/, net-misc/netifrc/files/

2020-09-07 Thread Lars Wendler
commit: 3ce621fb7f763b91ef3c15b81515ca65f241
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 09:09:20 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 09:14:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce621fb

net-misc/netifrc: Removed old

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/netifrc/Manifest  |  9 ---
 .../files/netifrc-0.4.0-interface-types.patch  | 26 
 net-misc/netifrc/netifrc-0.2.2.ebuild  | 65 ---
 net-misc/netifrc/netifrc-0.2.3.ebuild  | 65 ---
 net-misc/netifrc/netifrc-0.2.4.ebuild  | 65 ---
 net-misc/netifrc/netifrc-0.3.0.ebuild  | 69 
 net-misc/netifrc/netifrc-0.3.1.ebuild  | 70 -
 net-misc/netifrc/netifrc-0.4.0-r1.ebuild   | 73 --
 net-misc/netifrc/netifrc-0.4.0.ebuild  | 70 -
 net-misc/netifrc/netifrc-0.5.0.ebuild  | 71 -
 net-misc/netifrc/netifrc-0.6.0.ebuild  | 71 -
 net-misc/netifrc/netifrc-0.6.1.ebuild  | 71 -
 12 files changed, 725 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 8683dda61dc..e425418827c 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,11 +1,2 @@
-DIST netifrc-0.2.2.tar.bz2 61115 BLAKE2B 
e968fd8c5e86e38a2de1ca18608a87cc1a69d5d333595f5efc0afe6a79b19f90cf725b3f56defd4762e2451df06eb49a2ec75feda5f5f60874984c659d5df578
 SHA512 
c31b5f5ccd5e76a568ba5acf143eea5413c5911fa7a14a00a983a71cbe737fc40e814686f4916377ac5404b35805503463c2cb371943a76a27124247fd9f9fe3
-DIST netifrc-0.2.3.tar.bz2 61427 BLAKE2B 
2531c2a54f2b0ccc84368f4c489f13db09913bdedbb042009bcd60f87284a786de8e942915053076745f2940078b0ebdfba3e2fd3861b0c9e8ecfc033535f46e
 SHA512 
fb3c555956e83831ae6bb0e73c8e1e0a6f3d9c806d148aa2f3e9dc92edc48a19bc65743eea1dc8ada924081eb2cedc5e02b14d8614145f08b1728e973cfd412d
-DIST netifrc-0.2.4.tar.bz2 61828 BLAKE2B 
77efc7fc187a301d82f3ecc36f152e929de64c2792b3b884bb260afc12664eaf4b8a88fbde4d7fd33c5443f0c85b9473777411957916303d077cd99a8b984bca
 SHA512 
a8dd7d1d79e91eb37c938a7b06c835d667d5b39ad5e7bdbd6a1b18d17ac6f828935a83ca119d49b9903e9fe7ca48f0c003b28a6c52252f9f0217b96ec2c2df41
-DIST netifrc-0.3.0.tar.bz2 68461 BLAKE2B 
c304f04bac2df3091ca407d834f5121f31687aa73b70cf426a5c639c8f3057493b027c3d50c1627ad4520cb68b44df427586e48066cff84bffdb918589f4
 SHA512 
e28c00e5318c17e46bbdbcd471252729b73a4a0af930a4bf6213d30441650390b6bb83678cfd1fbeddd8102f947016a18976538dcf316cfab08461adf301686c
-DIST netifrc-0.3.1.tar.bz2 69213 BLAKE2B 
c327117df6e10cc8485d8e67a6d01ad3030a0624ecef9e8352628c784747dd0e2d6b7ab81f198816802c0320aaaf8ed1d0d109ac6e889d248d9130f34055ae03
 SHA512 
de7d9291c3303e077c86e1fd42c6d9319308f0b51f28a034f9ed830aa504d2830ce96816a391811bcfadd07500e9c439acd4c436d7a3e47e58178b53465b
-DIST netifrc-0.4.0.tar.bz2 75517 BLAKE2B 
2ae5169b040268d299ed6a043c169b132378ccb8a60b01142942ed8a5b8f51ef10b5ff9f674f626dabc53198712766b53ddbf8ee41dd87af8b5512e041143cb7
 SHA512 
a6b525a8f084a3cc9e4afa452617c001a225475689ed5ecb86703178eb252b70eb2dfc294789e29c6001098087a7ca2238ff9c8763accf3a66d39cff86614e85
-DIST netifrc-0.5.0.tar.bz2 78738 BLAKE2B 
b0627aaf0ee0526cfbb6af3c8cb82476ee910d19d16ee4a3ebf736fce0e91c2a7a44bf2400b0854bbfc2cc0f3f0bc84ef917760326c2a73a59a60314c5a8f7d8
 SHA512 
2348c0df590d6060de3756a5111ac2916047e21ce56d43fc0b8d99946f93ca02ce300abcd9243e1e4cbcd5ab89ea6ed0869785cdb5297a669aeb6812788933b0
 DIST netifrc-0.5.1.tar.bz2 78749 BLAKE2B 
cecbf4b64cc8e93483326ef0646d2abfdb837c0351cc210ea0134e654cd44f90cba0390014412f6b45ff4d337d3aaeb5e739553231305846351452aebac870e1
 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
-DIST netifrc-0.6.0.tar.bz2 83349 BLAKE2B 
d9be118aa2aa13891091f7b5060d06ce0bc1eb9740c5adec04b985785e7bd7afe77bc03751d178b8e09c967b04581b12cfbf50aa49b7226ab580081e420f22bc
 SHA512 
de47d146619bd716a0eda8149063691d9d71a895579ac50d3fea60bf0e48c516d6b37aed81c33083dc6e7d4bb74841bb6b143c23972669de9d76b8f7df7a5d23
-DIST netifrc-0.6.1.tar.gz 79791 BLAKE2B 
e38236d189ce0e40eaa5ba7b94e2e74e444bbd185fbacf515c65ca1f0ff441525cdc44696e12ff33e4ae1f80f2766a91866cfef8f9b737d34e1c59290248f49b
 SHA512 
798a882f87f153c31b415d77a06a2beca94a958ea982aca20bbc2cf6a7d800aedbd99a577734ea41d6a75807b13d640dd7fa5a51aa5a27055e9c552634ac7bdb
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057

diff --git 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/files/, net-misc/netifrc/

2020-09-07 Thread Lars Wendler
commit: 9e4296e80802f9fae11aed270f15903bbd2acc89
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 09:06:29 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 09:14:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4296e8

net-misc/netifrc: Revbump fixing issue with >=net-misc/dhcpcd-9.0.0

Committed as revbump due to maintainer timeout...

Closes: https://bugs.gentoo.org/718114
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 .../files/netifrc-0.7.1-dhcpcd_args_tempfile.patch | 65 +++
 .../netifrc-0.7.1-dhcpcd_pidfile_location.patch| 50 +++
 net-misc/netifrc/netifrc-0.7.1-r1.ebuild   | 75 ++
 3 files changed, 190 insertions(+)

diff --git a/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch 
b/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch
new file mode 100644
index 000..6ad40c860f9
--- /dev/null
+++ b/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_args_tempfile.patch
@@ -0,0 +1,65 @@
+From 586579d5c9fad63eb8780c556f34b80d0302e6b9 Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Fri, 22 May 2020 10:09:22 +0200
+Subject: [PATCH] net/dhcpcd.sh: Put user args into a temp file
+
+So we still use the correct PID even if the user has changed his
+configuration between start and stop.
+
+Signed-off-by: Lars Wendler 
+---
+ net/dhcpcd.sh | 20 ++--
+ 1 file changed, 14 insertions(+), 6 deletions(-)
+
+diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh
+index c0639e0..dcc6817 100644
+--- a/net/dhcpcd.sh
 b/net/dhcpcd.sh
+@@ -16,11 +16,14 @@ _config_vars="$_config_vars dhcp dhcpcd"
+ 
+ dhcpcd_start()
+ {
+-  # check for pidfile after we gathered the user's opts because they can
++  # check for pidfile after we gathered the user's args because they can
+   # alter the pidfile's name (#718114)
+-  local args= opt= pidfile= opts= new=true
++  # Save the args into a file so dhcpcd_stop can later re-use the very
++  # same args later.
++  local args= opt= pidfile= opts= new=true 
argsfile=/run/netifrc_dhcpcd_${IFACE}_args
+   eval args=\$dhcpcd_${IFVAR}
+   [ -z "${args}" ] && args=${dhcpcd}
++  echo "${args}" > ${argsfile}
+   pidfile="$(dhcpcd -P ${args} ${IFACE})"
+ 
+   # Get our options
+@@ -78,12 +81,16 @@ dhcpcd_start()
+ 
+ dhcpcd_stop()
+ {
+-  local args= pidfile= opts= sig=SIGTERM
++  local args= pidfile= opts= sig=SIGTERM 
argsfile=/run/netifrc_dhcpcd_${IFACE}_args
+ 
+-  # check for pidfile after we gathered the user's opts because they can
++  # check for pidfile after we gathered the user's args because they can
+   # alter the pidfile's name (#718114)
+-  eval args=\$dhcpcd_${IFVAR}
+-  [ -z "${args}" ] && args=${dhcpcd}
++  if [ -f "${argsfile}" ] ; then
++  args="$(cat ${argsfile})"
++  else
++  eval args=\$dhcpcd_${IFVAR}
++  [ -z "${args}" ] && args=${dhcpcd}
++  fi
+   pidfile="$(dhcpcd -P ${args} ${IFACE})"
+   [ ! -f "${pidfile}" ] && return 0
+ 
+@@ -94,5 +101,6 @@ dhcpcd_stop()
+   *" release "*) dhcpcd -k "${IFACE}" ;;
+   *) dhcpcd -x "${IFACE}" ;;
+   esac
++  [ -f "${argsfile}" ] && rm -f "${argsfile}"
+   eend $?
+ }
+-- 
+2.27.0.rc0
+

diff --git a/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_pidfile_location.patch 
b/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_pidfile_location.patch
new file mode 100644
index 000..154e7a7696a
--- /dev/null
+++ b/net-misc/netifrc/files/netifrc-0.7.1-dhcpcd_pidfile_location.patch
@@ -0,0 +1,50 @@
+From c29dffb14e321d927196a9b39b545004e632d3c4 Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Thu, 21 May 2020 18:35:32 +0200
+Subject: [PATCH] net/dhcpcd.sh: fetch pidfile location from dhcpcd
+
+There's a -P switch for this but we also need to take into account the
+-4 and -6 switches as they both alter the pidfile's name.
+
+Bug: https://bugs.gentoo.org/718114
+Signed-off-by: Lars Wendler 
+---
+ net/dhcpcd.sh | 13 +++--
+ 1 file changed, 11 insertions(+), 2 deletions(-)
+
+diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh
+index 0a306b8..c0639e0 100644
+--- a/net/dhcpcd.sh
 b/net/dhcpcd.sh
+@@ -16,9 +16,12 @@ _config_vars="$_config_vars dhcp dhcpcd"
+ 
+ dhcpcd_start()
+ {
+-  local args= opt= opts= pidfile="/run/dhcpcd-${IFACE}.pid" new=true
++  # check for pidfile after we gathered the user's opts because they can
++  # alter the pidfile's name (#718114)
++  local args= opt= pidfile= opts= new=true
+   eval args=\$dhcpcd_${IFVAR}
+   [ -z "${args}" ] && args=${dhcpcd}
++  pidfile="$(dhcpcd -P ${args} ${IFACE})"
+ 
+   # Get our options
+   eval opts=\$dhcp_${IFVAR}
+@@ -75,7 +78,13 @@ dhcpcd_start()
+ 
+ dhcpcd_stop()
+ {
+-  local pidfile="/run/dhcpcd-${IFACE}.pid" opts= sig=SIGTERM
++  local args= pidfile= opts= 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-04-01 Thread Mart Raudsepp
commit: d2c017aa3404753ec0bf7656b1ddb4841bb73c40
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Apr  1 20:44:37 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Apr  1 20:59:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c017aa

net-misc/netifrc: arm64 (bug #710308)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 1d4150067e4..dca6df25173 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-23 Thread Sergei Trofimovich
commit: 19ecb8c589331c0c226f475265cfd0ee9a6f5435
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Mar 23 17:07:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Mar 23 18:07:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ecb8c5

net-misc/netifrc: stable 0.7.1 for hppa, bug #710308

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 3008002e4e9..87a586c35fd 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-14 Thread Sergei Trofimovich
commit: 14f961347656d26b96992735aba7e4d5ee503aa6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Mar 14 19:24:12 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Mar 14 19:24:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f96134

net-misc/netifrc: stable 0.7.1 for ia64, bug #710308

Package-Manager: Portage-2.3.93, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index e8e8051aeb3..3008002e4e9 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-12 Thread Agostino Sarubbo
commit: a93a902a87b264f88b656f84692c31be1e544527
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 12 16:24:21 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 12 16:24:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93a902a

net-misc/netifrc: ppc64 stable wrt bug #710308

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 3641b0ccf93..e8e8051aeb3 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-12 Thread Agostino Sarubbo
commit: 50247b9ecb61551a37493f32436a03a08557b3c2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 12 16:23:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 12 16:23:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50247b9e

net-misc/netifrc: ppc stable wrt bug #710308

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index d08f261752e..3641b0ccf93 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-12 Thread Agostino Sarubbo
commit: fc8813cf23e552f6d561147eebcf2aa4b34e4ba0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 12 16:22:25 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 12 16:22:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8813cf

net-misc/netifrc: arm stable wrt bug #710308

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 98bc8b8407f..d08f261752e 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-11 Thread Sergei Trofimovich
commit: 97341e8d4cf107c842ad089e2faa01399a4b8673
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 11 06:34:01 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 11 07:21:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97341e8d

net-misc/netifrc: stable 0.7.1 for sparc, bug #710308

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 48fd37f78b5..98bc8b8407f 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-03-10 Thread Sergey Popov
commit: aa86b0f6586ffcb7359cb0786ac0669f96596db1
Author: Sergey Popov  gentoo  org>
AuthorDate: Tue Mar 10 08:36:09 2020 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Tue Mar 10 08:39:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa86b0f6

net-misc/netifrc: amd64/x86 stable wrt bug #710308

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Sergey Popov  gentoo.org>

 net-misc/netifrc/netifrc-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
index 2718eb87d9b..48fd37f78b5 100644
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.7.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2020-01-04 Thread Robin H. Johnson
commit: 7289053524cb088c87ea7a9c88ad5a631978d03f
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Jan  4 08:15:40 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Jan  4 08:16:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72890535

net-misc/netifrc: bump

Major changes:
- init.d/net.lo: add a configurable presence timeout
- net/veth: new functionality
Fixes:
- net/wireguard: sync
- net/ppp: support ppp-2.4.8
- *: lots of shellcheck fixes

Package-Manager: Portage-2.3.83, Repoman-2.3.18
Closes: https://bugs.gentoo.org/704722
Signed-off-by: Robin H. Johnson  gentoo.org>

 net-misc/netifrc/Manifest   | 1 +
 net-misc/netifrc/netifrc-0.2.2.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.2.3.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.2.4.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.3.0.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.3.1.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.4.0-r1.ebuild| 2 +-
 net-misc/netifrc/netifrc-0.4.0.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.5.0.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.5.1.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.6.0.ebuild   | 2 +-
 net-misc/netifrc/netifrc-0.6.1.ebuild   | 2 +-
 net-misc/netifrc/{netifrc-0.6.1.ebuild => netifrc-0.7.1.ebuild} | 2 +-
 net-misc/netifrc/netifrc-.ebuild| 8 
 14 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index b9ecac544a5..8683dda61dc 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -8,3 +8,4 @@ DIST netifrc-0.5.0.tar.bz2 78738 BLAKE2B 
b0627aaf0ee0526cfbb6af3c8cb82476ee910d1
 DIST netifrc-0.5.1.tar.bz2 78749 BLAKE2B 
cecbf4b64cc8e93483326ef0646d2abfdb837c0351cc210ea0134e654cd44f90cba0390014412f6b45ff4d337d3aaeb5e739553231305846351452aebac870e1
 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 DIST netifrc-0.6.0.tar.bz2 83349 BLAKE2B 
d9be118aa2aa13891091f7b5060d06ce0bc1eb9740c5adec04b985785e7bd7afe77bc03751d178b8e09c967b04581b12cfbf50aa49b7226ab580081e420f22bc
 SHA512 
de47d146619bd716a0eda8149063691d9d71a895579ac50d3fea60bf0e48c516d6b37aed81c33083dc6e7d4bb74841bb6b143c23972669de9d76b8f7df7a5d23
 DIST netifrc-0.6.1.tar.gz 79791 BLAKE2B 
e38236d189ce0e40eaa5ba7b94e2e74e444bbd185fbacf515c65ca1f0ff441525cdc44696e12ff33e4ae1f80f2766a91866cfef8f9b737d34e1c59290248f49b
 SHA512 
798a882f87f153c31b415d77a06a2beca94a958ea982aca20bbc2cf6a7d800aedbd99a577734ea41d6a75807b13d640dd7fa5a51aa5a27055e9c552634ac7bdb
+DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057

diff --git a/net-misc/netifrc/netifrc-0.2.2.ebuild 
b/net-misc/netifrc/netifrc-0.2.2.ebuild
index 98895e5ae18..bcc60b8da12 100644
--- a/net-misc/netifrc/netifrc-0.2.2.ebuild
+++ b/net-misc/netifrc/netifrc-0.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/net-misc/netifrc/netifrc-0.2.3.ebuild 
b/net-misc/netifrc/netifrc-0.2.3.ebuild
index 1eb72875a92..b319f4a06c1 100644
--- a/net-misc/netifrc/netifrc-0.2.3.ebuild
+++ b/net-misc/netifrc/netifrc-0.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/net-misc/netifrc/netifrc-0.2.4.ebuild 
b/net-misc/netifrc/netifrc-0.2.4.ebuild
index 1e3fc7439d9..a2917e7c6a1 100644
--- a/net-misc/netifrc/netifrc-0.2.4.ebuild
+++ b/net-misc/netifrc/netifrc-0.2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/net-misc/netifrc/netifrc-0.3.0.ebuild 
b/net-misc/netifrc/netifrc-0.3.0.ebuild
index 40dbf027890..d592a9dd0ce 100644
--- a/net-misc/netifrc/netifrc-0.3.0.ebuild
+++ b/net-misc/netifrc/netifrc-0.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/net-misc/netifrc/netifrc-0.3.1.ebuild 
b/net-misc/netifrc/netifrc-0.3.1.ebuild
index eb0df4590b7..08120d91360 100644
--- a/net-misc/netifrc/netifrc-0.3.1.ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2019-05-04 Thread Mikle Kolyada
commit: d83fba53d92ebda85366fff5808e38fe3c748439
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat May  4 14:44:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat May  4 14:44:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d83fba53

net-misc/netifrc: Add ~riscv keyword

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-misc/netifrc/netifrc-0.5.1.ebuild | 4 ++--
 net-misc/netifrc/netifrc-0.6.0.ebuild | 4 ++--
 net-misc/netifrc/netifrc-0.6.1.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 275f19dc927..a653bab00d2 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv 
s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"

diff --git a/net-misc/netifrc/netifrc-0.6.0.ebuild 
b/net-misc/netifrc/netifrc-0.6.0.ebuild
index ccf27f251b5..ea0bb835f87 100644
--- a/net-misc/netifrc/netifrc-0.6.0.ebuild
+++ b/net-misc/netifrc/netifrc-0.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"

diff --git a/net-misc/netifrc/netifrc-0.6.1.ebuild 
b/net-misc/netifrc/netifrc-0.6.1.ebuild
index a331f4480a9..d9e3257be44 100644
--- a/net-misc/netifrc/netifrc-0.6.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-09-16 Thread Mikle Kolyada
commit: f85a0ac2021822aef31edc0aa66c6599826f2b93
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 18:25:39 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 18:25:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85a0ac2

net-misc/netifrc: m68k stable wrt bug #591826

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 7d558a3cdb6..275f19dc927 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-07-10 Thread Louis Sautier
commit: 9eade6b5c2e5377edbf2d71d687a3d1103b173dc
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul 10 22:37:56 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul 10 22:37:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eade6b5

net-misc/netifrc: don't install non-existent ChangeLog

Remove it until somebody fixes this properly by re-adding it in the
source tarball.

Bug: https://bugs.gentoo.org/660878
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 net-misc/netifrc/netifrc-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.6.1.ebuild 
b/net-misc/netifrc/netifrc-0.6.1.ebuild
index b7337968c42..a331f4480a9 100644
--- a/net-misc/netifrc/netifrc-0.6.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.6.1.ebuild
@@ -51,7 +51,7 @@ src_compile() {
 
 src_install() {
emake ${MAKE_ARGS} DESTDIR="${D}" install
-   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
 
# Install the service file
LIBEXECDIR=${EPREFIX}/lib/${PN}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-07-10 Thread Jason Donenfeld
commit: c5bb14c231b0549af194ba00390fdc059f7ed953
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Tue Jul 10 21:46:45 2018 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Tue Jul 10 21:46:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5bb14c2

net-misc/netifrc: version bump

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.6.1.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 1604fe398eb..b9ecac544a5 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -7,3 +7,4 @@ DIST netifrc-0.4.0.tar.bz2 75517 BLAKE2B 
2ae5169b040268d299ed6a043c169b132378ccb
 DIST netifrc-0.5.0.tar.bz2 78738 BLAKE2B 
b0627aaf0ee0526cfbb6af3c8cb82476ee910d19d16ee4a3ebf736fce0e91c2a7a44bf2400b0854bbfc2cc0f3f0bc84ef917760326c2a73a59a60314c5a8f7d8
 SHA512 
2348c0df590d6060de3756a5111ac2916047e21ce56d43fc0b8d99946f93ca02ce300abcd9243e1e4cbcd5ab89ea6ed0869785cdb5297a669aeb6812788933b0
 DIST netifrc-0.5.1.tar.bz2 78749 BLAKE2B 
cecbf4b64cc8e93483326ef0646d2abfdb837c0351cc210ea0134e654cd44f90cba0390014412f6b45ff4d337d3aaeb5e739553231305846351452aebac870e1
 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 DIST netifrc-0.6.0.tar.bz2 83349 BLAKE2B 
d9be118aa2aa13891091f7b5060d06ce0bc1eb9740c5adec04b985785e7bd7afe77bc03751d178b8e09c967b04581b12cfbf50aa49b7226ab580081e420f22bc
 SHA512 
de47d146619bd716a0eda8149063691d9d71a895579ac50d3fea60bf0e48c516d6b37aed81c33083dc6e7d4bb74841bb6b143c23972669de9d76b8f7df7a5d23
+DIST netifrc-0.6.1.tar.gz 79791 BLAKE2B 
e38236d189ce0e40eaa5ba7b94e2e74e444bbd185fbacf515c65ca1f0ff441525cdc44696e12ff33e4ae1f80f2766a91866cfef8f9b737d34e1c59290248f49b
 SHA512 
798a882f87f153c31b415d77a06a2beca94a958ea982aca20bbc2cf6a7d800aedbd99a577734ea41d6a75807b13d640dd7fa5a51aa5a27055e9c552634ac7bdb

diff --git a/net-misc/netifrc/netifrc-0.6.1.ebuild 
b/net-misc/netifrc/netifrc-0.6.1.ebuild
new file mode 100644
index 000..b7337968c42
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.6.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="kernel_linux? ( virtual/pkgconfig )
+   !"${S}"/ChangeLog
+   fi
+
+   # Allow user patches to be applied without modifying the ebuild
+   epatch_user
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
+
+   # Install the service file
+   LIBEXECDIR=${EPREFIX}/lib/${PN}
+   UNIT_DIR="$(systemd_get_unitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-05-01 Thread Mikle Kolyada
commit: 412e7df957582bf8e782d4e2e2dcb878550fd4f0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue May  1 20:51:29 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue May  1 20:51:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=412e7df9

net-misc/netifrc: s390 stable wrt bug #591826

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 1d058b50dbe..7d558a3cdb6 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-03-22 Thread Mikle Kolyada
commit: cf6bd4e9556608ef3082e217ea17fcd4a83923f7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar 22 17:09:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar 22 17:10:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6bd4e9

net-misc/netifrc: sh stable wrt bug #591826

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 1716e35bf68..1d058b50dbe 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-11-27 Thread Robin H. Johnson
commit: 56c4748dce0925382fc68822034d76f1634348c7
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Nov 27 20:29:43 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Nov 27 21:00:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56c4748d

net-misc/netifrc: bump.

New functionality & improvements:
- Wireless: 'iw' module to replace older 'iwconfig' module.
  (Brian Evans  gentoo.org>)
- iproute2: VXLAN & GRETAP support (iplink_$IFVAR)
  (Sergey Popov  gentoo.org>)
- Bonding: ARP IP targets (Marc Schiffbauer  gentoo.org>)
- wpa_supplicant: better matching of wired connections
  (Henning Schild  hennsch.de>)
- IPv6: clearer message for Tentative duplicate address detection (DAD).
- Refactor veinfo printing of iproute2 commands.

Fixes:
- Avoid moduleslist race condition (Hagbard Celine  
gmail.com>)
- Delete IPv6 tunnel correctly (stkchp  tkch.net>)

Bug: https://bugs.gentoo.org/638836
Bug: https://bugs.gentoo.org/637474
Bug: https://bugs.gentoo.org/636846
Bug: https://github.com/gentoo/netifrc/pull/24
Bug: https://github.com/gentoo/netifrc/pull/26
Bug: https://github.com/gentoo/netifrc/pull/25
Bug: https://github.com/gentoo/netifrc/pull/27
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-misc/netifrc/Manifest | 17 +
 net-misc/netifrc/netifrc-0.6.0.ebuild | 71 +++
 2 files changed, 80 insertions(+), 8 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 06179c4861e..1604fe398eb 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,8 +1,9 @@
-DIST netifrc-0.2.2.tar.bz2 61115 SHA256 
24c2748bec768691799d97c540061d46960756b390475107539e104868f36a4d SHA512 
c31b5f5ccd5e76a568ba5acf143eea5413c5911fa7a14a00a983a71cbe737fc40e814686f4916377ac5404b35805503463c2cb371943a76a27124247fd9f9fe3
 WHIRLPOOL 
43010906bdd64e9631688f8f8a948d08ca4b42c9188c4941f406361e9455b712097596d4fbf86c3643bdb9d32a2c29367bc950edc025ebdcc771fbe30b87c080
-DIST netifrc-0.2.3.tar.bz2 61427 SHA256 
c108d34caf555e411a80b56f08ef03693512e076e1a91c320d3aadd080ebc4b7 SHA512 
fb3c555956e83831ae6bb0e73c8e1e0a6f3d9c806d148aa2f3e9dc92edc48a19bc65743eea1dc8ada924081eb2cedc5e02b14d8614145f08b1728e973cfd412d
 WHIRLPOOL 
67e0492f1cabd0ca7630dfe38816dc64ec368615a8ac026e63bfdeff70bb72a01027212c3cf6aba720cca34ff10df8570542a718eff6bf7d95104bcfd33f4654
-DIST netifrc-0.2.4.tar.bz2 61828 SHA256 
9b53eb3c8e6e80cd4073a34f911a28055c28b9f7a9f119a397002b0de7ac0691 SHA512 
a8dd7d1d79e91eb37c938a7b06c835d667d5b39ad5e7bdbd6a1b18d17ac6f828935a83ca119d49b9903e9fe7ca48f0c003b28a6c52252f9f0217b96ec2c2df41
 WHIRLPOOL 
dcc538f9cced599ba1689b96bf6a412c590a1557cdde7027ac2b5066977594352660f32c5d30ddc24a4c6fd870d62ea6f7f98e44a89a534fe37b1e8787ec1e04
-DIST netifrc-0.3.0.tar.bz2 68461 SHA256 
9b0bd794a7714c06d2baa11553af018f694c2c71d121e657630d9c9ee94cafc6 SHA512 
e28c00e5318c17e46bbdbcd471252729b73a4a0af930a4bf6213d30441650390b6bb83678cfd1fbeddd8102f947016a18976538dcf316cfab08461adf301686c
 WHIRLPOOL 
aa868e8b9dccb6d2ba48f37318adae57cf8314d1b45d9ad1fdc5d6b85b0b432b7b3f5b784d9d3ae824612699947b6bd47810c4cf44daf25aef52673a1fa2120c
-DIST netifrc-0.3.1.tar.bz2 69213 SHA256 
a92a96b6f065981ee1c0232a507f3695230eeb7fb6172ec9048c2538b36cfea8 SHA512 
de7d9291c3303e077c86e1fd42c6d9319308f0b51f28a034f9ed830aa504d2830ce96816a391811bcfadd07500e9c439acd4c436d7a3e47e58178b53465b
 WHIRLPOOL 
b2b0384880abb52a6d31a640688ecbdf17e4ba02aed9660e63c99c80eed315384459984abe1ef527526bed5a142e2c13275b7e7f68332fc6d9368bd98dcdd461
-DIST netifrc-0.4.0.tar.bz2 75517 SHA256 
cc5c10d567530f64ca8c4fb8dcfc8218d102144f83393e1db769a5a5374c00df SHA512 
a6b525a8f084a3cc9e4afa452617c001a225475689ed5ecb86703178eb252b70eb2dfc294789e29c6001098087a7ca2238ff9c8763accf3a66d39cff86614e85
 WHIRLPOOL 
cdaa38a549106a3f73db88aa6376f77d71868cf774a1bb346276a52f6503ccc28f0049d12cbad6e068ab9af87b0fc37e69caa43f31efcbeb4e1a548a6b069c16
-DIST netifrc-0.5.0.tar.bz2 78738 SHA256 
2937cd4fd0f0a6eee050b00cc0b32ba37d2793eee09de21e0366d4e0886f8257 SHA512 
2348c0df590d6060de3756a5111ac2916047e21ce56d43fc0b8d99946f93ca02ce300abcd9243e1e4cbcd5ab89ea6ed0869785cdb5297a669aeb6812788933b0
 WHIRLPOOL 
32bca5ecc6a3f6b75e541778b9d0548102c69cc86fb9d61458bc36f458766470489f5bf86b9373e8db598ee0883c65e6986efa2a37d1873484297df9aad73015
-DIST netifrc-0.5.1.tar.bz2 78749 SHA256 
11a6ff3dc1fb5673d8acd128b6b8cb53a4194df23c5dec170d57f8e6b8b7b1b9 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 WHIRLPOOL 
32ff62ba508a4f4c69c562709b1134f663b7027c3175bbe6aeca8c64c74293dfc1af2037e30e48405a4a8b96726c7621c4b37e7239463298a24e69d69b664ed9
+DIST netifrc-0.2.2.tar.bz2 61115 BLAKE2B 
e968fd8c5e86e38a2de1ca18608a87cc1a69d5d333595f5efc0afe6a79b19f90cf725b3f56defd4762e2451df06eb49a2ec75feda5f5f60874984c659d5df578
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-02-24 Thread Michael Weber
commit: 39ac4609d2dde71e14606e90f4a68bde392949d3
Author: Michael Weber  gentoo  org>
AuthorDate: Fri Feb 24 22:59:36 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri Feb 24 23:13:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ac4609

net-misc/netifrc: arm64 stable (bug 591826).

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index c315911bec..9d92a785fe 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-01-20 Thread Agostino Sarubbo
commit: cd5c0d97197feece4005c96299afdf9b31cd5086
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jan 20 11:02:37 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jan 20 11:04:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5c0d97

net-misc/netifrc: ppc64 stable wrt bug #591826

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 755fda8..c315911 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-01-17 Thread Agostino Sarubbo
commit: 3864ee444e6fd3f2e99fb9e56ae86282ae1d6f83
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jan 17 14:20:13 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jan 17 14:24:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3864ee44

net-misc/netifrc: ia64 stable wrt bug #591826

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index d52873c..755fda8 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-01-15 Thread Agostino Sarubbo
commit: fad4f8739712006dcbb3c21e54cf3735071fbb42
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 15 15:46:07 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 15 15:49:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad4f873

net-misc/netifrc: ppc stable wrt bug #591826

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 3b43c8c..d52873c 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-01-14 Thread Jeroen Roovers
commit: f422dd03e709ef77109601c1fb706d2bd093733d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Jan 14 12:41:24 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Jan 14 12:43:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f422dd03

net-misc/netifrc: Stable for HPPA (bug #591826).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index f8adf4e..3b43c8c 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2017-01-11 Thread Agostino Sarubbo
commit: 4f493b375bf50dba44be81ef854efdb65c851409
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 11 10:34:02 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 11 10:34:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f493b37

net-misc/netifrc: sparc stable wrt bug #591826

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/netifrc/netifrc-0.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 26c01ff..f8adf4e 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-12-23 Thread Markus Meier
commit: c7ddd9773c47cbbcaf48ccbc6a7bc971a9430486
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Dec 23 15:07:32 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Dec 23 15:07:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ddd977

net-misc/netifrc: arm stable, bug #591826

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index c5c0886..26c01ff 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-12-06 Thread Thomas Deutschmann
commit: 1f10e749259d90f57695f1ec761089ed8d1e67b8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  6 12:58:21 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  6 12:58:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f10e749

net-misc/netifrc: amd64/x86 stable, bug #591826

Package-Manager: portage-2.3.2

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 1cbf5d6..c5c0886 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-12-05 Thread Tobias Klausmann
commit: 07176c37338e4bbbf5d6ed780479485453678aa4
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Dec  5 17:28:54 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Dec  5 22:53:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07176c37

net-misc/netifrc-0.5.1-r0: stable on alpha

Gentoo-Bug: 591826

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 6640e57..1cbf5d6 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-11-27 Thread Thomas Deutschmann
commit: 3d9602bfc8ec715934645250101e0926e9bcd57c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Nov 27 23:08:12 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Nov 27 23:31:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9602bf

net-misc/netifrc: Update RDEPEND

 - Block on =sys-apps/openrc-0.15 which
   is the first version providing the "#!/sbin/openrc-run" shebang we now
   depend on.

Gentoo-Bug: https://bugs.gentoo.org/599096

Package-Manager: portage-2.3.2

 net-misc/netifrc/netifrc-0.4.0-r1.ebuild | 3 ++-
 net-misc/netifrc/netifrc-0.5.0.ebuild| 3 ++-
 net-misc/netifrc/netifrc-0.5.1.ebuild| 3 ++-
 net-misc/netifrc/netifrc-.ebuild | 5 +++--
 4 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild 
b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
index fd2badc..2ccf45e 100644
--- a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
@@ -25,7 +25,8 @@ IUSE=""
 DEPEND="kernel_linux? ( virtual/pkgconfig )
!=sys-apps/openrc-0.15
+   !=sys-apps/openrc-0.15
+   !=sys-apps/openrc-0.15
+   !=sys-apps/openrc-0.15
+   !

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-11-16 Thread Tobias Klausmann
commit: e33945b85e6bfa9d39d557a590e41116908c17f6
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Nov 16 09:10:03 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Nov 16 09:10:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e33945b8

net-misc/netifrc-0.4.0-r1: stable on alpha

Gentoo-Bug: 591826

 net-misc/netifrc/netifrc-0.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild 
b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
index 7ff1ade..fd2badc 100644
--- a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-11-13 Thread Markus Meier
commit: 413ac537cedabfcad3b286d2135dd7b778bdd7d0
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Nov 13 08:45:54 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Nov 13 08:45:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413ac537

net-misc/netifrc: arm stable, bug #591826

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 net-misc/netifrc/netifrc-0.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild 
b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
index ef5f141..7ff1ade 100644
--- a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
+++ b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-10-26 Thread Robin H. Johnson
commit: 4c0a28f13b29e9ad0e793aea9bcec2ae5139ed29
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Oct 26 20:14:33 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Oct 26 20:14:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0a28f1

net-misc/netifrc: bump, fixes #598078

Package-Manager: portage-2.3.2

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.5.1.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 8946cc7..06179c4 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -5,3 +5,4 @@ DIST netifrc-0.3.0.tar.bz2 68461 SHA256 
9b0bd794a7714c06d2baa11553af018f694c2c71
 DIST netifrc-0.3.1.tar.bz2 69213 SHA256 
a92a96b6f065981ee1c0232a507f3695230eeb7fb6172ec9048c2538b36cfea8 SHA512 
de7d9291c3303e077c86e1fd42c6d9319308f0b51f28a034f9ed830aa504d2830ce96816a391811bcfadd07500e9c439acd4c436d7a3e47e58178b53465b
 WHIRLPOOL 
b2b0384880abb52a6d31a640688ecbdf17e4ba02aed9660e63c99c80eed315384459984abe1ef527526bed5a142e2c13275b7e7f68332fc6d9368bd98dcdd461
 DIST netifrc-0.4.0.tar.bz2 75517 SHA256 
cc5c10d567530f64ca8c4fb8dcfc8218d102144f83393e1db769a5a5374c00df SHA512 
a6b525a8f084a3cc9e4afa452617c001a225475689ed5ecb86703178eb252b70eb2dfc294789e29c6001098087a7ca2238ff9c8763accf3a66d39cff86614e85
 WHIRLPOOL 
cdaa38a549106a3f73db88aa6376f77d71868cf774a1bb346276a52f6503ccc28f0049d12cbad6e068ab9af87b0fc37e69caa43f31efcbeb4e1a548a6b069c16
 DIST netifrc-0.5.0.tar.bz2 78738 SHA256 
2937cd4fd0f0a6eee050b00cc0b32ba37d2793eee09de21e0366d4e0886f8257 SHA512 
2348c0df590d6060de3756a5111ac2916047e21ce56d43fc0b8d99946f93ca02ce300abcd9243e1e4cbcd5ab89ea6ed0869785cdb5297a669aeb6812788933b0
 WHIRLPOOL 
32bca5ecc6a3f6b75e541778b9d0548102c69cc86fb9d61458bc36f458766470489f5bf86b9373e8db598ee0883c65e6986efa2a37d1873484297df9aad73015
+DIST netifrc-0.5.1.tar.bz2 78749 SHA256 
11a6ff3dc1fb5673d8acd128b6b8cb53a4194df23c5dec170d57f8e6b8b7b1b9 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 WHIRLPOOL 
32ff62ba508a4f4c69c562709b1134f663b7027c3175bbe6aeca8c64c74293dfc1af2037e30e48405a4a8b96726c7621c4b37e7239463298a24e69d69b664ed9

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
new file mode 100644
index ..918a70a
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+   #EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="kernel_linux? ( virtual/pkgconfig )
+   !"${S}"/ChangeLog
+   fi
+
+   # Allow user patches to be applied without modifying the ebuild
+   epatch_user
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
+
+   # Install the service file
+   LIBEXECDIR=${EPREFIX}/lib/${PN}
+   UNIT_DIR="$(systemd_get_unitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-10-24 Thread Robin H. Johnson
commit: 573e4e7200e4d2c23a24ddbe2eb302150aa8b4a4
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Oct 24 23:29:05 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Oct 24 23:44:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573e4e72

net-misc/netifrc: bump, MANY fixes.

This release of netifrc should hopefully represent the next stable
candidate. The 0.3.x and 0.4.x series had some bugs that should not be
in stable.

One specific change to note, is that if an address or route is already
configured on an interface, prior to starting the interface service, the
interface will now start successfully, whereas it would previously fail.
If the parameters on the existing route and new route are slightly
different, this may lead to non-deterministic behavior.

Bugs fixed:
420941, 588872: l2tp/dummy/hsr support.
487208: support busybox better, no scope=host on loopback.
488250, 488260, 488262: better IPv6 address handling.
489398: more reliable interface startup
507346: resolvconf-gentoo renamed to openresolv
524156: DHCP classless static routes for udhcpc
525958: Better POSIX sh support
540728, 547906: macchanger 1.7 support
545364: Switch to /run instead of /var/run
575128: newer udev support
596234: New iproute keywords: noprefixroute mngtmpaddr
596844: metric_SSID support

Package-Manager: portage-2.3.2
Signed-off-by: Robin H. Johnson  gentoo.org>

 net-misc/netifrc/Manifest |  1 +
 net-misc/netifrc/netifrc-0.5.0.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 6e887b7..8946cc7 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -4,3 +4,4 @@ DIST netifrc-0.2.4.tar.bz2 61828 SHA256 
9b53eb3c8e6e80cd4073a34f911a28055c28b9f7
 DIST netifrc-0.3.0.tar.bz2 68461 SHA256 
9b0bd794a7714c06d2baa11553af018f694c2c71d121e657630d9c9ee94cafc6 SHA512 
e28c00e5318c17e46bbdbcd471252729b73a4a0af930a4bf6213d30441650390b6bb83678cfd1fbeddd8102f947016a18976538dcf316cfab08461adf301686c
 WHIRLPOOL 
aa868e8b9dccb6d2ba48f37318adae57cf8314d1b45d9ad1fdc5d6b85b0b432b7b3f5b784d9d3ae824612699947b6bd47810c4cf44daf25aef52673a1fa2120c
 DIST netifrc-0.3.1.tar.bz2 69213 SHA256 
a92a96b6f065981ee1c0232a507f3695230eeb7fb6172ec9048c2538b36cfea8 SHA512 
de7d9291c3303e077c86e1fd42c6d9319308f0b51f28a034f9ed830aa504d2830ce96816a391811bcfadd07500e9c439acd4c436d7a3e47e58178b53465b
 WHIRLPOOL 
b2b0384880abb52a6d31a640688ecbdf17e4ba02aed9660e63c99c80eed315384459984abe1ef527526bed5a142e2c13275b7e7f68332fc6d9368bd98dcdd461
 DIST netifrc-0.4.0.tar.bz2 75517 SHA256 
cc5c10d567530f64ca8c4fb8dcfc8218d102144f83393e1db769a5a5374c00df SHA512 
a6b525a8f084a3cc9e4afa452617c001a225475689ed5ecb86703178eb252b70eb2dfc294789e29c6001098087a7ca2238ff9c8763accf3a66d39cff86614e85
 WHIRLPOOL 
cdaa38a549106a3f73db88aa6376f77d71868cf774a1bb346276a52f6503ccc28f0049d12cbad6e068ab9af87b0fc37e69caa43f31efcbeb4e1a548a6b069c16
+DIST netifrc-0.5.0.tar.bz2 78738 SHA256 
2937cd4fd0f0a6eee050b00cc0b32ba37d2793eee09de21e0366d4e0886f8257 SHA512 
2348c0df590d6060de3756a5111ac2916047e21ce56d43fc0b8d99946f93ca02ce300abcd9243e1e4cbcd5ab89ea6ed0869785cdb5297a669aeb6812788933b0
 WHIRLPOOL 
32bca5ecc6a3f6b75e541778b9d0548102c69cc86fb9d61458bc36f458766470489f5bf86b9373e8db598ee0883c65e6986efa2a37d1873484297df9aad73015

diff --git a/net-misc/netifrc/netifrc-0.5.0.ebuild 
b/net-misc/netifrc/netifrc-0.5.0.ebuild
new file mode 100644
index ..918a70a
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.5.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+   #EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="kernel_linux? ( virtual/pkgconfig )
+   !"${S}"/ChangeLog
+   fi
+
+   # Allow user patches to be applied without modifying the ebuild
+   epatch_user
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
+
+   # Install the service file
+   

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-10-24 Thread Robin H. Johnson
commit: febad4b67e45e1d0840bb5565cc29da66003c5f9
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Oct 24 21:41:55 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Oct 24 21:41:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=febad4b6

net-misc/netifrc: restore openrc dep: bug #536282.

Netifrc uses start-stop-daemon for many of the modules, and it's only
available if openrc is installed.

X-Gentoo-Bug: 536282
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=536282
Signed-off-by: Robin H. Johnson  gentoo.org>

 net-misc/netifrc/netifrc-0.3.0.ebuild| 3 ++-
 net-misc/netifrc/netifrc-0.3.1.ebuild| 3 ++-
 net-misc/netifrc/netifrc-0.4.0-r1.ebuild | 3 ++-
 net-misc/netifrc/netifrc-0.4.0.ebuild| 3 ++-
 net-misc/netifrc/netifrc-.ebuild | 3 ++-
 5 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/net-misc/netifrc/netifrc-0.3.0.ebuild 
b/net-misc/netifrc/netifrc-0.3.0.ebuild
index 0a9d2da..eeaf277 100644
--- a/net-misc/netifrc/netifrc-0.3.0.ebuild
+++ b/net-misc/netifrc/netifrc-0.3.0.ebuild
@@ -24,7 +24,8 @@ IUSE=""
 
 DEPEND="kernel_linux? ( virtual/pkgconfig )
!

[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/files/, net-misc/netifrc/

2016-10-24 Thread Pacho Ramos
commit: d036d526b38b8b7586d78938188a29ba8883d75e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Oct 24 13:24:00 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Oct 24 13:32:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d036d526

net-misc/netifrc: Fix missing interface types (#588872)

Package-Manager: portage-2.3.2

 .../files/netifrc-0.4.0-interface-types.patch  | 26 
 net-misc/netifrc/netifrc-0.4.0-r1.ebuild   | 72 ++
 2 files changed, 98 insertions(+)

diff --git a/net-misc/netifrc/files/netifrc-0.4.0-interface-types.patch 
b/net-misc/netifrc/files/netifrc-0.4.0-interface-types.patch
new file mode 100644
index ..5f00dc1
--- /dev/null
+++ b/net-misc/netifrc/files/netifrc-0.4.0-interface-types.patch
@@ -0,0 +1,26 @@
+From 18dd0598b29d2158529466f1e7097bf894e584dc Mon Sep 17 00:00:00 2001
+From: Andrey Volkov 
+Date: Fri, 15 Jul 2016 13:23:56 +0500
+Subject: Fix missing interface types
+
+(cherry picked from commit c8fe42141c95f5446dabf5c0b1f049151e51c2ad)
+---
+ net/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/net/Makefile b/net/Makefile
+index a03c171..ce73c1e 100644
+--- a/net/Makefile
 b/net/Makefile
+@@ -13,7 +13,7 @@ SRCS-Linux=  iwconfig.sh.in udhcpc.sh.in
+ INC-Linux=adsl.sh apipa.sh arping.sh bonding.sh br2684ctl.sh bridge.sh \
+   ccwgroup.sh clip.sh ethtool.sh iproute2.sh ifplugd.sh ip6to4.sh 
\
+   ipppd.sh iwconfig.sh netplugd.sh pppd.sh pump.sh tuntap.sh 
udhcpc.sh \
+-  vlan.sh macvlan.sh ip6rd.sh firewalld.sh
++  vlan.sh macvlan.sh ip6rd.sh firewalld.sh dummy.sh hsr.sh l2tp.sh
+ 
+ SRCS-NetBSD= ifwatchd.sh.in
+ INC-NetBSD=   ifwatchd.sh
+-- 
+cgit v0.12
+

diff --git a/net-misc/netifrc/netifrc-0.4.0-r1.ebuild 
b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
new file mode 100644
index ..b86adf9
--- /dev/null
+++ b/net-misc/netifrc/netifrc-0.4.0-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils systemd udev
+
+DESCRIPTION="Gentoo Network Interface Management Scripts"
+HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+   #EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate
+   inherit git-r3
+else
+   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="kernel_linux? ( virtual/pkgconfig )
+   !"${S}"/ChangeLog
+   fi
+
+   epatch "${FILESDIR}"/${P}-interface-types.patch #588872
+
+   # Allow user patches to be applied without modifying the ebuild
+   epatch_user
+}
+
+src_compile() {
+   MAKE_ARGS="${MAKE_ARGS}
+   UDEVDIR=${EPREFIX}$(get_udevdir)
+   LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
+
+   use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+
+   emake ${MAKE_ARGS} all
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
+
+   # Install the service file
+   LIBEXECDIR=${EPREFIX}/lib/${PN}
+   UNIT_DIR="$(systemd_get_unitdir)"
+   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
+   systemd_newunit "${T}/net_at.service" 'net@.service'
+   dosym "${UNIT_DIR#${EPREFIX}}/net@.service" 
"${UNIT_DIR#${EPREFIX}}/net@lo.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
+   elog "The network configuration scripts will use dhcp by"
+   elog "default to set up your interfaces."
+   elog "If you need to set up something more complete, see"
+   elog "${EROOT}/usr/share/doc/${P}/README"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2016-07-14 Thread Robin H. Johnson
commit: 4beaa97be5a69103c3847bc18baa7d46912e41de
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Jul 14 19:48:21 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Jul 14 19:48:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4beaa97b

net-misc/netifrc: new release.

Package-Manager: portage-2.2.28

 net-misc/netifrc/Manifest  | 1 +
 net-misc/netifrc/{netifrc-.ebuild => netifrc-0.4.0.ebuild} | 2 +-
 net-misc/netifrc/netifrc-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 5be696d..6e887b7 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -3,3 +3,4 @@ DIST netifrc-0.2.3.tar.bz2 61427 SHA256 
c108d34caf555e411a80b56f08ef03693512e076
 DIST netifrc-0.2.4.tar.bz2 61828 SHA256 
9b53eb3c8e6e80cd4073a34f911a28055c28b9f7a9f119a397002b0de7ac0691 SHA512 
a8dd7d1d79e91eb37c938a7b06c835d667d5b39ad5e7bdbd6a1b18d17ac6f828935a83ca119d49b9903e9fe7ca48f0c003b28a6c52252f9f0217b96ec2c2df41
 WHIRLPOOL 
dcc538f9cced599ba1689b96bf6a412c590a1557cdde7027ac2b5066977594352660f32c5d30ddc24a4c6fd870d62ea6f7f98e44a89a534fe37b1e8787ec1e04
 DIST netifrc-0.3.0.tar.bz2 68461 SHA256 
9b0bd794a7714c06d2baa11553af018f694c2c71d121e657630d9c9ee94cafc6 SHA512 
e28c00e5318c17e46bbdbcd471252729b73a4a0af930a4bf6213d30441650390b6bb83678cfd1fbeddd8102f947016a18976538dcf316cfab08461adf301686c
 WHIRLPOOL 
aa868e8b9dccb6d2ba48f37318adae57cf8314d1b45d9ad1fdc5d6b85b0b432b7b3f5b784d9d3ae824612699947b6bd47810c4cf44daf25aef52673a1fa2120c
 DIST netifrc-0.3.1.tar.bz2 69213 SHA256 
a92a96b6f065981ee1c0232a507f3695230eeb7fb6172ec9048c2538b36cfea8 SHA512 
de7d9291c3303e077c86e1fd42c6d9319308f0b51f28a034f9ed830aa504d2830ce96816a391811bcfadd07500e9c439acd4c436d7a3e47e58178b53465b
 WHIRLPOOL 
b2b0384880abb52a6d31a640688ecbdf17e4ba02aed9660e63c99c80eed315384459984abe1ef527526bed5a142e2c13275b7e7f68332fc6d9368bd98dcdd461
+DIST netifrc-0.4.0.tar.bz2 75517 SHA256 
cc5c10d567530f64ca8c4fb8dcfc8218d102144f83393e1db769a5a5374c00df SHA512 
a6b525a8f084a3cc9e4afa452617c001a225475689ed5ecb86703178eb252b70eb2dfc294789e29c6001098087a7ca2238ff9c8763accf3a66d39cff86614e85
 WHIRLPOOL 
cdaa38a549106a3f73db88aa6376f77d71868cf774a1bb346276a52f6503ccc28f0049d12cbad6e068ab9af87b0fc37e69caa43f31efcbeb4e1a548a6b069c16

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-0.4.0.ebuild
similarity index 96%
copy from net-misc/netifrc/netifrc-.ebuild
copy to net-misc/netifrc/netifrc-0.4.0.ebuild
index 68e2afb..59199ba 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-0.4.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
#EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate
inherit git-r3
 else
-   SRC_URI="https://dev.gentoo.org/~robbat2/dist/${P}.tar.bz2;
+   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 

diff --git a/net-misc/netifrc/netifrc-.ebuild 
b/net-misc/netifrc/netifrc-.ebuild
index 68e2afb..59199ba 100644
--- a/net-misc/netifrc/netifrc-.ebuild
+++ b/net-misc/netifrc/netifrc-.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
#EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate
inherit git-r3
 else
-   SRC_URI="https://dev.gentoo.org/~robbat2/dist/${P}.tar.bz2;
+   SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi