public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2015-10-12 18:27 Bernard Cafarelli
  0 siblings, 0 replies; 16+ messages in thread
From: Bernard Cafarelli @ 2015-10-12 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     12699b3517c0a38a0b02638df65acad1a0e5b417
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 12 11:40:35 2015 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 18:22:18 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12699b35

net-misc/dibbler: version bump

Package-Manager: portage-2.2.23

 net-misc/dibbler/Manifest             |  1 +
 net-misc/dibbler/dibbler-1.0.1.ebuild | 52 +++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/net-misc/dibbler/Manifest b/net-misc/dibbler/Manifest
index e8f71fb..92042ee 100644
--- a/net-misc/dibbler/Manifest
+++ b/net-misc/dibbler/Manifest
@@ -1,3 +1,4 @@
 DIST dibbler-0.8.4.tar.gz 4292008 SHA256 90382709200b6f1c4d403aceeedb52fd5633cfb71c7df3742062ddfe8b71c013 SHA512 7d0323abd42d0ab57fcaecb30c1354a831f2b8b8b300a9a20678062ef52743b5724569d1885f3866d517abbfae48651966734d47a6c5f43d19fd65332ebeca6c WHIRLPOOL f1d9c2219daebe3f69fbcde956a164902fa2b6ba1448d95a00aaada0423a995d013256fc35fbc8c860efd11f28b0dd42f97de4761a31f0b7662dec23bb36b25a
 DIST dibbler-1.0.0.tar.gz 4372693 SHA256 51283702a1e56c1bfe56fb95469ec7b1fc56ecb8e9a2c6d296b81d43bec14048 SHA512 38eae78e5d5dab2484c6467eb91e7e8eed62067a1f375a9a0e0ed3639c1bd9db7230bc7a33ee41ffd785d031994c6bec4a6b2eb75bb5c0d4645c7e669f568434 WHIRLPOOL 80a9deb26802b0d26a108abffb09a9b3e81faf1e2fda1f25f5a71b855741ee967b82486e0f7e79f9d1560abd43dfe6934e2d69c486c6302f0154972041e98d46
 DIST dibbler-1.0.0RC2.tar.gz 4331108 SHA256 206a27421db7ae5298805d00f9adcafcf6aef7496a5fb23640f6fa99a6ee2d68 SHA512 b0384629a4139bc95609eaf19df6d0c57daebfd0ecd063981271153e3c3cd1658376fd8a473a6568f8b782e58c08c44a101209b49ea3ac39436a3aac4cb27259 WHIRLPOOL 6377ad56bbe61eb7e88f0e92814fd4cbceb4518419b0ec74bceaa7fd09d8de8b00061d73d8d2dead2c3b4389b058ab968586d8373e9b47f1eede0e18b91784f4
+DIST dibbler-1.0.1.tar.gz 4375118 SHA256 27869877e060c039cbc24a5f6a9dd69006bf67de0ffdf29a645a80aef6e476a1 SHA512 2369d4a3ca50a1c60bd5a47bf4168d4c113e2fdcb1ae4d937a3bf226c057142f2e81f6c46bf4e1dfa9ca0d2e92f7f857572a4bfb0d0dd721c35efe762e6c3ea0 WHIRLPOOL dafc1663b487bc62068ef86be6261484729cf8da966f5572b1e459fb3a902c9474d9a8bea361dba683111f9f7994b86a3a7484333c77c9f977ec54169653898d

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
new file mode 100644
index 0000000..93b9c87
--- /dev/null
+++ b/net-misc/dibbler/dibbler-1.0.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+inherit eutils readme.gentoo systemd
+
+DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
+HOMEPAGE="http://klub.com.pl/dhcpv6/"
+SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~mips ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( || (
+		dev-texlive/texlive-latexextra
+		dev-tex/floatflt )
+	)"
+RDEPEND=""
+
+DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
+to suit your needs. They are stored in /etc/dibbler"
+
+src_prepare() {
+	epatch_user
+}
+
+src_compile() {
+	emake
+	# devel documentation is broken and users should consult the online version
+	# http://klub.com.pl/dhcpv6/doxygen/
+	use doc && emake -C doc/ user
+}
+
+src_install() {
+	readme.gentoo_create_doc
+
+	dosbin dibbler-{client,relay,server}
+	doman doc/man/*.8
+
+	insinto /etc/dibbler
+	doins doc/examples/*.conf
+	dodir /var/lib/dibbler
+
+	dodoc AUTHORS CHANGELOG RELNOTES TODO
+	use doc && dodoc doc/dibbler-user.pdf
+
+	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
+	systemd_dounit "${FILESDIR}"/dibbler-client.service
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2016-05-13  8:41 Agostino Sarubbo
  0 siblings, 0 replies; 16+ messages in thread
From: Agostino Sarubbo @ 2016-05-13  8:41 UTC (permalink / raw
  To: gentoo-commits

commit:     4eebe0c6c4c89cb2e5b47e1cf316b3a4056b824e
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 08:38:57 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri May 13 08:41:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eebe0c6

net-misc/dibbler: amd64 stable wrt bug #579940

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
index 93b9c87..e680fe4 100644
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~x86"
+KEYWORDS="amd64 ~hppa ~mips ~x86"
 IUSE="doc"
 
 DEPEND="doc? ( || (


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2016-08-04  8:57 Jeroen Roovers
  0 siblings, 0 replies; 16+ messages in thread
From: Jeroen Roovers @ 2016-08-04  8:57 UTC (permalink / raw
  To: gentoo-commits

commit:     18fe31e6d01ed3f2732137faa0f841b696d99ace
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  4 08:55:11 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug  4 08:55:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18fe31e6

net-misc/dibbler: Stable for HPPA (bug #579940).

Package-Manager: portage-2.3.0
RepoMan-Options: --ignore-arches

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

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
index b6697b5..67716f0 100644
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~mips x86"
+KEYWORDS="amd64 hppa ~mips x86"
 IUSE="doc"
 
 DEPEND="doc? ( || (


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2017-01-30 19:42 Bernard Cafarelli
  0 siblings, 0 replies; 16+ messages in thread
From: Bernard Cafarelli @ 2017-01-30 19:42 UTC (permalink / raw
  To: gentoo-commits

commit:     e4dbaaebd3b5284fc48a7cb113e3a2b22d4d2037
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 30 19:40:25 2017 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Jan 30 19:40:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4dbaaeb

net-misc/dibbler: drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/dibbler/Manifest                 |  3 --
 net-misc/dibbler/dibbler-0.8.4.ebuild     | 52 -----------------------------
 net-misc/dibbler/dibbler-1.0.0.ebuild     | 52 -----------------------------
 net-misc/dibbler/dibbler-1.0.0_rc2.ebuild | 54 -------------------------------
 4 files changed, 161 deletions(-)

diff --git a/net-misc/dibbler/Manifest b/net-misc/dibbler/Manifest
index 92042ee..25d8e90 100644
--- a/net-misc/dibbler/Manifest
+++ b/net-misc/dibbler/Manifest
@@ -1,4 +1 @@
-DIST dibbler-0.8.4.tar.gz 4292008 SHA256 90382709200b6f1c4d403aceeedb52fd5633cfb71c7df3742062ddfe8b71c013 SHA512 7d0323abd42d0ab57fcaecb30c1354a831f2b8b8b300a9a20678062ef52743b5724569d1885f3866d517abbfae48651966734d47a6c5f43d19fd65332ebeca6c WHIRLPOOL f1d9c2219daebe3f69fbcde956a164902fa2b6ba1448d95a00aaada0423a995d013256fc35fbc8c860efd11f28b0dd42f97de4761a31f0b7662dec23bb36b25a
-DIST dibbler-1.0.0.tar.gz 4372693 SHA256 51283702a1e56c1bfe56fb95469ec7b1fc56ecb8e9a2c6d296b81d43bec14048 SHA512 38eae78e5d5dab2484c6467eb91e7e8eed62067a1f375a9a0e0ed3639c1bd9db7230bc7a33ee41ffd785d031994c6bec4a6b2eb75bb5c0d4645c7e669f568434 WHIRLPOOL 80a9deb26802b0d26a108abffb09a9b3e81faf1e2fda1f25f5a71b855741ee967b82486e0f7e79f9d1560abd43dfe6934e2d69c486c6302f0154972041e98d46
-DIST dibbler-1.0.0RC2.tar.gz 4331108 SHA256 206a27421db7ae5298805d00f9adcafcf6aef7496a5fb23640f6fa99a6ee2d68 SHA512 b0384629a4139bc95609eaf19df6d0c57daebfd0ecd063981271153e3c3cd1658376fd8a473a6568f8b782e58c08c44a101209b49ea3ac39436a3aac4cb27259 WHIRLPOOL 6377ad56bbe61eb7e88f0e92814fd4cbceb4518419b0ec74bceaa7fd09d8de8b00061d73d8d2dead2c3b4389b058ab968586d8373e9b47f1eede0e18b91784f4
 DIST dibbler-1.0.1.tar.gz 4375118 SHA256 27869877e060c039cbc24a5f6a9dd69006bf67de0ffdf29a645a80aef6e476a1 SHA512 2369d4a3ca50a1c60bd5a47bf4168d4c113e2fdcb1ae4d937a3bf226c057142f2e81f6c46bf4e1dfa9ca0d2e92f7f857572a4bfb0d0dd721c35efe762e6c3ea0 WHIRLPOOL dafc1663b487bc62068ef86be6261484729cf8da966f5572b1e459fb3a902c9474d9a8bea361dba683111f9f7994b86a3a7484333c77c9f977ec54169653898d

diff --git a/net-misc/dibbler/dibbler-0.8.4.ebuild b/net-misc/dibbler/dibbler-0.8.4.ebuild
deleted file mode 100644
index 3cd1994..00000000
--- a/net-misc/dibbler/dibbler-0.8.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit eutils readme.gentoo systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa ~mips x86"
-IUSE="doc"
-
-DEPEND="doc? ( || (
-		dev-texlive/texlive-latexextra
-		dev-tex/floatflt )
-	)"
-RDEPEND=""
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_prepare() {
-	epatch_user
-}
-
-src_compile() {
-	emake
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	dodir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}

diff --git a/net-misc/dibbler/dibbler-1.0.0.ebuild b/net-misc/dibbler/dibbler-1.0.0.ebuild
deleted file mode 100644
index 8325020..00000000
--- a/net-misc/dibbler/dibbler-1.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit eutils readme.gentoo systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa ~mips x86"
-IUSE="doc"
-
-DEPEND="doc? ( || (
-		dev-texlive/texlive-latexextra
-		dev-tex/floatflt )
-	)"
-RDEPEND=""
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_prepare() {
-	epatch_user
-}
-
-src_compile() {
-	emake
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	dodir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}

diff --git a/net-misc/dibbler/dibbler-1.0.0_rc2.ebuild b/net-misc/dibbler/dibbler-1.0.0_rc2.ebuild
deleted file mode 100644
index aec55a1..00000000
--- a/net-misc/dibbler/dibbler-1.0.0_rc2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit eutils readme.gentoo systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P/_rc/RC}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~x86"
-IUSE="doc"
-
-DEPEND="doc? ( || (
-		dev-texlive/texlive-latexextra
-		dev-tex/floatflt )
-	)"
-RDEPEND=""
-
-S=${WORKDIR}/${P/_rc/RC}
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_prepare() {
-	epatch_user
-}
-
-src_compile() {
-	emake
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	dodir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2017-06-19 18:12 Alexis Ballier
  0 siblings, 0 replies; 16+ messages in thread
From: Alexis Ballier @ 2017-06-19 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     32e54f103673d39de0945e129bd5a021ff548c2c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 18:00:13 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 18:12:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e54f10

net-misc/dibbler: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
index 99c3552e420..6e7824899da 100644
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.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
 
 EAPI="5"
@@ -10,7 +10,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ~mips x86"
+KEYWORDS="amd64 ~arm64 hppa ~mips x86"
 IUSE="doc"
 
 DEPEND="doc? ( || (


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2020-01-29 21:43 Bernard Cafarelli
  0 siblings, 0 replies; 16+ messages in thread
From: Bernard Cafarelli @ 2020-01-29 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     fb5b26d018a97862abb5d839627d773797bc0458
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 29 21:42:44 2020 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Wed Jan 29 21:43:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5b26d0

net-misc/dibbler: ebuild enhancements, add resolvconf support

EAPI bump, use new eclass for README, use keepdir for /var/lib/dibbler

Closes: https://bugs.gentoo.org/670516
Closes: https://bugs.gentoo.org/693874
Closes: https://bugs.gentoo.org/706808
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r1.ebuild | 61 ++++++++++++++++++++++++++++++++
 net-misc/dibbler/metadata.xml            |  3 ++
 2 files changed, 64 insertions(+)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r1.ebuild b/net-misc/dibbler/dibbler-1.0.1-r1.ebuild
new file mode 100644
index 00000000000..bf028c2ee5e
--- /dev/null
+++ b/net-misc/dibbler/dibbler-1.0.1-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
+HOMEPAGE="http://klub.com.pl/dhcpv6/"
+SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
+IUSE="doc resolvconf"
+
+RDEPEND="virtual/resolvconf"
+DEPEND="${RDEPEND}
+	doc? (
+		|| (
+			dev-texlive/texlive-latexextra
+			dev-tex/floatflt
+		)
+	)"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
+DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
+to suit your needs. They are stored in /etc/dibbler"
+
+src_configure() {
+	econf $(use_enable resolvconf)
+}
+
+src_compile() {
+	default
+	# devel documentation is broken and users should consult the online version
+	# http://klub.com.pl/dhcpv6/doxygen/
+	use doc && emake -C doc/ user
+}
+
+src_install() {
+	default
+	readme.gentoo_create_doc
+
+	dosbin dibbler-{client,relay,server}
+	doman doc/man/*.8
+
+	insinto /etc/dibbler
+	doins doc/examples/*.conf
+	keepdir /var/lib/dibbler
+
+	dodoc AUTHORS CHANGELOG RELNOTES TODO
+	use doc && dodoc doc/dibbler-user.pdf
+
+	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
+	systemd_dounit "${FILESDIR}"/dibbler-client.service
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}

diff --git a/net-misc/dibbler/metadata.xml b/net-misc/dibbler/metadata.xml
index 7d273a80ff6..d88cf30d7ac 100644
--- a/net-misc/dibbler/metadata.xml
+++ b/net-misc/dibbler/metadata.xml
@@ -5,4 +5,7 @@
 		<email>voyageur@gentoo.org</email>
 		<name>Bernard Cafarelli</name>
 	</maintainer>
+	<use>
+		<flag name="resolvconf">Use resolvconf to handle /etc/resolv.conf updates</flag>
+	</use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2020-01-30 20:33 Bernard Cafarelli
  0 siblings, 0 replies; 16+ messages in thread
From: Bernard Cafarelli @ 2020-01-30 20:33 UTC (permalink / raw
  To: gentoo-commits

commit:     77d158b0e5af33e17bbab8c0400b8bf68e446a8f
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 20:33:10 2020 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 20:33:22 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d158b0

net-misc/dibbler: fix unconditional dep on virtual/resolvconf

Closes: https://bugs.gentoo.org/707386
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 net-misc/dibbler/{dibbler-1.0.1-r1.ebuild => dibbler-1.0.1-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r1.ebuild b/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
similarity index 96%
rename from net-misc/dibbler/dibbler-1.0.1-r1.ebuild
rename to net-misc/dibbler/dibbler-1.0.1-r2.ebuild
index bf028c2ee5e..9490ae32650 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
 IUSE="doc resolvconf"
 
-RDEPEND="virtual/resolvconf"
+RDEPEND="resolvconf? ( virtual/resolvconf )"
 DEPEND="${RDEPEND}
 	doc? (
 		|| (


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2020-07-24 11:10 Ulrich Müller
  0 siblings, 0 replies; 16+ messages in thread
From: Ulrich Müller @ 2020-07-24 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     614b88e4b7254e0cc6cded0c2f92a18af153e14c
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 19 13:08:25 2020 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Jul 24 10:53:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=614b88e4

net-misc/dibbler: Update dependencies.

Following removal of dev-tex/floatflt.

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r2.ebuild | 7 +------
 net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 7 +------
 net-misc/dibbler/dibbler-1.0.1.ebuild    | 5 +----
 3 files changed, 3 insertions(+), 16 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r2.ebuild b/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
index 9490ae32650..64f7775868c 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
@@ -15,12 +15,7 @@ IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"
 DEPEND="${RDEPEND}
-	doc? (
-		|| (
-			dev-texlive/texlive-latexextra
-			dev-tex/floatflt
-		)
-	)"
+	doc? ( dev-texlive/texlive-latexextra )"
 
 PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 

diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
index 8db74de7aae..3bc3e0296bb 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
@@ -15,12 +15,7 @@ IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"
 DEPEND="${RDEPEND}
-	doc? (
-		|| (
-			dev-texlive/texlive-latexextra
-			dev-tex/floatflt
-		)
-	)"
+	doc? ( dev-texlive/texlive-latexextra )"
 
 PATCHES=( "${FILESDIR}"/${P}-fno-common.patch
 	"${FILESDIR}"/${P}-gnu-ism.patch

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
index e4bbf048284..474895975ef 100644
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1.ebuild
@@ -13,10 +13,7 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 hppa ~mips x86"
 IUSE="doc"
 
-DEPEND="doc? ( || (
-		dev-texlive/texlive-latexextra
-		dev-tex/floatflt )
-	)"
+DEPEND="doc? ( dev-texlive/texlive-latexextra )"
 RDEPEND=""
 
 DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2021-04-05 19:01 Thomas Deutschmann
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Deutschmann @ 2021-04-05 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     c39f8713af89e1e5e5a456bc1ed58426a1da1d80
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  5 18:57:37 2021 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Apr  5 18:57:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c39f8713

net-misc/dibbler: x86 stable (bug #778707)

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

 net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
index 3bc3e0296bb..7d2df39972f 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~mips x86"
 IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2021-04-06 19:47 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-04-06 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     b7e5d1724fb20c7a19f4ed4f7ddb90828faadd79
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  6 19:46:40 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr  6 19:46:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e5d172

net-misc/dibbler: Stabilize 1.0.1-r3 amd64, #778707

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
index 7d2df39972f..be80b56206b 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~mips x86"
 IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2021-04-06 20:08 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2021-04-06 20:08 UTC (permalink / raw
  To: gentoo-commits

commit:     ba839c6784ff6d510e55a6ec028855253b4f8689
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  6 19:52:05 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Apr  6 20:07:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba839c67

net-misc/dibbler: Drop 1.0.1-r0 and 1.0.1-r2

Closes: https://bugs.gentoo.org/778707
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r2.ebuild | 56 --------------------------------
 net-misc/dibbler/dibbler-1.0.1.ebuild    | 49 ----------------------------
 2 files changed, 105 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r2.ebuild b/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
deleted file mode 100644
index 64f7775868c..00000000000
--- a/net-misc/dibbler/dibbler-1.0.1-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
-IUSE="doc resolvconf"
-
-RDEPEND="resolvconf? ( virtual/resolvconf )"
-DEPEND="${RDEPEND}
-	doc? ( dev-texlive/texlive-latexextra )"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_configure() {
-	econf $(use_enable resolvconf)
-}
-
-src_compile() {
-	default
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	default
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	keepdir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild b/net-misc/dibbler/dibbler-1.0.1.ebuild
deleted file mode 100644
index 610fb4e2bfa..00000000000
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit eutils readme.gentoo systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~mips x86"
-IUSE="doc"
-
-DEPEND="doc? ( dev-texlive/texlive-latexextra )"
-RDEPEND=""
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-fno-common.patch
-	epatch_user
-}
-
-src_compile() {
-	emake
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	dodir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2023-02-15  5:02 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2023-02-15  5:02 UTC (permalink / raw
  To: gentoo-commits

commit:     f869e9bb247373e661a2f0356d90e60b8c15d775
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 04:14:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 05:02:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f869e9bb

net-misc/dibbler: fix build w/ clang 16, filter lto

Closes: https://bugs.gentoo.org/861611
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
index be80b56206bd..0568063a62b9 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit readme.gentoo-r1 systemd
+inherit flag-o-matic readme.gentoo-r1 systemd
 
 DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
 HOMEPAGE="http://klub.com.pl/dhcpv6/"
@@ -25,6 +25,12 @@ DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.co
 to suit your needs. They are stored in /etc/dibbler"
 
 src_configure() {
+	# ODR violations, bug #861611
+	filter-lto
+
+	# Uses removed 'register' keyword
+	append-cxxflags -std=c++14
+
 	econf $(use_enable resolvconf)
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2023-12-29  0:24 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2023-12-29  0:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0a4ad59874a7a2dc4682ed6f285047b1b89b33f3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 16:37:37 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 00:12:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a4ad598

net-misc/dibbler: use configure cache for subconfigure

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r4.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
index b6fa854d515d..fb3201a46045 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
@@ -33,7 +33,9 @@ src_configure() {
 	# Uses removed 'register' keyword
 	append-cxxflags -std=c++14
 
-	econf $(use_enable resolvconf)
+	econf \
+		--cache-file="${S}"/config.cache \
+		$(use_enable resolvconf)
 }
 
 src_compile() {


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2024-10-30 20:32 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-10-30 20:32 UTC (permalink / raw
  To: gentoo-commits

commit:     99c63fd9d55f022f01371d7e571a284533593d10
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 30 20:31:57 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 30 20:31:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c63fd9

net-misc/dibbler: Stabilize 1.0.1-r4 x86, #942565

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
index fb3201a46045..6adb413c8959 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~mips x86"
 IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2024-10-30 20:32 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-10-30 20:32 UTC (permalink / raw
  To: gentoo-commits

commit:     0c1382a5ee0f072cf259bbbb72d8a3ec88b4bd9e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 30 20:31:59 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 30 20:31:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c1382a5

net-misc/dibbler: Stabilize 1.0.1-r4 amd64, #942565

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
index 6adb413c8959..84707e2e900e 100644
--- a/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1-r4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~mips x86"
 IUSE="doc resolvconf"
 
 RDEPEND="resolvconf? ( virtual/resolvconf )"


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/
@ 2024-10-30 21:58 Bernard Cafarelli
  0 siblings, 0 replies; 16+ messages in thread
From: Bernard Cafarelli @ 2024-10-30 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     d96e41a5200ba0b8d1f63442e9f4471cc3f2bc73
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 30 21:58:02 2024 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Wed Oct 30 21:58:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96e41a5

net-misc/dibbler: drop 1.0.1-r3

Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 64 --------------------------------
 1 file changed, 64 deletions(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
deleted file mode 100644
index 0568063a62b9..000000000000
--- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic readme.gentoo-r1 systemd
-
-DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
-HOMEPAGE="http://klub.com.pl/dhcpv6/"
-SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~mips x86"
-IUSE="doc resolvconf"
-
-RDEPEND="resolvconf? ( virtual/resolvconf )"
-DEPEND="${RDEPEND}
-	doc? ( dev-texlive/texlive-latexextra )"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch
-	"${FILESDIR}"/${P}-gnu-ism.patch
-	)
-
-DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf
-to suit your needs. They are stored in /etc/dibbler"
-
-src_configure() {
-	# ODR violations, bug #861611
-	filter-lto
-
-	# Uses removed 'register' keyword
-	append-cxxflags -std=c++14
-
-	econf $(use_enable resolvconf)
-}
-
-src_compile() {
-	default
-	# devel documentation is broken and users should consult the online version
-	# http://klub.com.pl/dhcpv6/doxygen/
-	use doc && emake -C doc/ user
-}
-
-src_install() {
-	default
-	readme.gentoo_create_doc
-
-	dosbin dibbler-{client,relay,server}
-	doman doc/man/*.8
-
-	insinto /etc/dibbler
-	doins doc/examples/*.conf
-	keepdir /var/lib/dibbler
-
-	dodoc AUTHORS CHANGELOG RELNOTES TODO
-	use doc && dodoc doc/dibbler-user.pdf
-
-	doinitd "${FILESDIR}"/dibbler-{client,relay,server}
-	systemd_dounit "${FILESDIR}"/dibbler-client.service
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


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

end of thread, other threads:[~2024-10-30 21:58 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-30 20:33 [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/ Bernard Cafarelli
  -- strict thread matches above, loose matches on Subject: below --
2024-10-30 21:58 Bernard Cafarelli
2024-10-30 20:32 Sam James
2024-10-30 20:32 Sam James
2023-12-29  0:24 Sam James
2023-02-15  5:02 Sam James
2021-04-06 20:08 Andreas Sturmlechner
2021-04-06 19:47 Sam James
2021-04-05 19:01 Thomas Deutschmann
2020-07-24 11:10 Ulrich Müller
2020-01-29 21:43 Bernard Cafarelli
2017-06-19 18:12 Alexis Ballier
2017-01-30 19:42 Bernard Cafarelli
2016-08-04  8:57 Jeroen Roovers
2016-05-13  8:41 Agostino Sarubbo
2015-10-12 18:27 Bernard Cafarelli

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