* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2017-11-26 23:23 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-11-26 23:23 UTC (permalink / raw
To: gentoo-commits
commit: a85a26d0ffbc5c997dcd0d9d1cabe28865bda8db
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 12:46:16 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 23:21:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85a26d0
net-misc/ifenslave: [QA] Consistent whitespace in metadata.xml
net-misc/ifenslave/metadata.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-misc/ifenslave/metadata.xml b/net-misc/ifenslave/metadata.xml
index c57573a31de..35e7aadeca9 100644
--- a/net-misc/ifenslave/metadata.xml
+++ b/net-misc/ifenslave/metadata.xml
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>robbat2@gentoo.org</email>
- <name>Robin H. Johnson</name>
- </maintainer>
+ <maintainer type="person">
+ <email>robbat2@gentoo.org</email>
+ <name>Robin H. Johnson</name>
+ </maintainer>
<maintainer type="person">
<email>prometheanfire@gentoo.org</email>
</maintainer>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2020-09-19 23:19 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2020-09-19 23:19 UTC (permalink / raw
To: gentoo-commits
commit: 213ecf6cd6f7d590c37fea936a910cc2d21625bc
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 19 23:18:46 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 23:18:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213ecf6c
net-misc/ifenslave: Port to EAPI 7
Closes: https://bugs.gentoo.org/742131
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild b/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
index 8199a0f5a18..a5a85b6fa34 100644
--- a/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
+++ b/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
MY_PN="ifenslave-2.6" # this is NOT an error
DEBIAN_PV="17"
@@ -12,36 +12,36 @@ DEBIANPKG_BASE="mirror://debian/pool/main/${MY_PN:0:1}/${MY_PN}"
inherit toolchain-funcs linux-info
DESCRIPTION="Attach and detach slave interfaces to a bonding device"
-HOMEPAGE="http://sf.net/projects/bonding/"
-SRC_URI="${DEBIANPKG_BASE}/${DEBIANPKG_TARBALL}
+HOMEPAGE="https://sf.net/projects/bonding/"
+SRC_URI="
+ ${DEBIANPKG_BASE}/${DEBIANPKG_TARBALL}
${DEBIANPKG_BASE}/${DEBIANPKG_PATCH}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~mips ppc sparc x86"
-IUSE=""
-RDEPEND=""
-DEPEND="sys-devel/gcc
- >=sys-kernel/linux-headers-2.4.22
- ${RDEPEND}"
+DEPEND=">=sys-kernel/linux-headers-2.4.22"
CONFIG_CHECK="~BONDING"
WARNING_BONDING="CONFIG_BONDING is required to get bond devices in the kernel"
+src_configure() {
+ tc-export CC
+}
+
src_compile() {
- $(tc-getCC) ${CFLAGS} ${LDFLAGS} ${PN}.c -o ${PN} || die "Failed to compile!"
+ emake ifenslave
}
src_install() {
into /
- dosbin ${PN}
- into
+ dosbin ifenslave
# there really is no better documentation than the sourcecode :-)
- dodoc ${PN}.c
+ dodoc ifenslave.c
- doman "${WORKDIR}/debian/${PN}.8"
+ doman "${WORKDIR}"/debian/ifenslave.8
}
pkg_preinst() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2025-07-29 5:42 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-07-29 5:42 UTC (permalink / raw
To: gentoo-commits
commit: be4b4c9c691eb69ea8c650f3416d4e575612ca51
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 29 04:15:59 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 29 05:42:06 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4b4c9c
net-misc/ifenslave: explain why a variable is "NOT an error"
Explain the mysterious MY_PN comment which is "NOT an error" (it indeed
isn't, but why isn't it?) after some research: Debian's 2.x is a rewrite,
not using C, but ifupdown hooks instead. We don't want that.
(That said, ifenslave seems obsolete to me, netifrc supports bonding
for a long time..)
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild b/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
index a5a85b6fa342..440f7a5f6524 100644
--- a/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
+++ b/net-misc/ifenslave/ifenslave-1.1.0-r6.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-MY_PN="ifenslave-2.6" # this is NOT an error
+# This is NOT an error, Debian's 2.x is a rewrite using ifupdown instead.
+MY_PN="ifenslave-2.6"
DEBIAN_PV="17"
DEBIANPKG_TARBALL="${MY_PN}_${PV}.orig.tar.gz"
DEBIANPKG_PATCH="${MY_PN}_${PV}-${DEBIAN_PV}.debian.tar.gz"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2025-09-06 16:45 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2025-09-06 16:45 UTC (permalink / raw
To: gentoo-commits
commit: ea13db04e4144c1079322ff4fa018d327cd7ea6a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 6 16:44:58 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 6 16:44:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea13db04
net-misc/ifenslave: Stabilize 1.1.0-r7 x86, #962413
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
index fcf354c448fe..d19e21bd2f3e 100644
--- a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
+++ b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~sparc x86"
DEPEND=">=sys-kernel/linux-headers-2.4.22"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2025-09-06 17:39 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-09-06 17:39 UTC (permalink / raw
To: gentoo-commits
commit: 47ad81199af85b1a9fd0471620eb8761a746922c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 6 17:38:41 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 6 17:38:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ad8119
net-misc/ifenslave: Stabilize 1.1.0-r7 amd64, #962413
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
index d19e21bd2f3e..4eb50a23eba8 100644
--- a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
+++ b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~sparc x86"
DEPEND=">=sys-kernel/linux-headers-2.4.22"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/
@ 2025-09-07 14:56 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-09-07 14:56 UTC (permalink / raw
To: gentoo-commits
commit: c7deaee7e0a6d034545f3f1b9fadc719330b8555
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 7 14:56:28 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 7 14:56:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7deaee7
net-misc/ifenslave: Stabilize 1.1.0-r7 ppc, #962413
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
index 4eb50a23eba8..44081f5c0d82 100644
--- a/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
+++ b/net-misc/ifenslave/ifenslave-1.1.0-r7.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~mips ppc ~sparc x86"
DEPEND=">=sys-kernel/linux-headers-2.4.22"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-09-07 14:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-06 17:39 [gentoo-commits] repo/gentoo:master commit in: net-misc/ifenslave/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2025-09-07 14:56 Arthur Zamarin
2025-09-06 16:45 Michał Górny
2025-07-29 5:42 Sam James
2020-09-19 23:19 David Seifert
2017-11-26 23:23 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox