* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2022-08-18 21:51 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-08-18 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 0849e9d735d6fa060b41baac668eee399a2829c9
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Thu Aug 18 21:41:15 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 21:48:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0849e9d7
net-misc/bgpq4: replacement for bgpq3
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/26918
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 +
net-misc/bgpq4/bgpq4-1.5.ebuild | 25 +++++++++++++++++++++++++
net-misc/bgpq4/metadata.xml | 25 +++++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
new file mode 100644
index 000000000000..891a030a87be
--- /dev/null
+++ b/net-misc/bgpq4/Manifest
@@ -0,0 +1 @@
+DIST bgpq4-1.5.tar.gz 52779 BLAKE2B 538d10983180413298ad005032e069c0847f7cb8eb78eee253f1072935a4d0db24626e3e20117224027e71c5f499001ffbe15816066ad89e08c30b7bf3431ce4 SHA512 b0d552634db6e7a90f76387b22c3539b59c5f89f9564b661bc810f9a9729f0dd87931a64fc230b8ed0a38162a572d8d93139a792ee80e996663b47ec3e060b9b
diff --git a/net-misc/bgpq4/bgpq4-1.5.ebuild b/net-misc/bgpq4/bgpq4-1.5.ebuild
new file mode 100644
index 000000000000..b0440b2764c9
--- /dev/null
+++ b/net-misc/bgpq4/bgpq4-1.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
+HOMEPAGE="https://github.com/bgp/bgpq4/"
+SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+
+src_prepare() {
+ eapply_user
+ eautoreconf
+}
+
+src_install() {
+ dobin bgpq4
+ doman bgpq4.8
+ dodoc CHANGES COPYRIGHT README.md
+}
diff --git a/net-misc/bgpq4/metadata.xml b/net-misc/bgpq4/metadata.xml
new file mode 100644
index 000000000000..9c468ef07db7
--- /dev/null
+++ b/net-misc/bgpq4/metadata.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>jaco@uls.co.za</email>
+ <name>Jaco Kroon</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">
+ bgpq4 allows to generate different config entries with prefix lists, useful for Cisco/Juniper routers and their software analogs, such as Quagga.
+ This program is a successor of bgpq from same author, main difference - it supports IPv6.
+ </longdescription>
+ <longdescription lang="ru">
+ bgpq4 позволяет создавать различные чaсти конфигурационных файлов со списком сетей для маршрутизаторов Cisco/Juniper и их программных аналогов,
+ таких как Quagga.
+ Данная программа - идейный наследник bgpq от того же автора, основное отличие - поддержка IPv6.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">bgp/bgpq4</remote-id>
+ <bugs-to>https://github.com/bgp/bgpq4/issues</bugs-to>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2022-08-18 21:51 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-08-18 21:51 UTC (permalink / raw
To: gentoo-commits
commit: e677cbf834ed137136227d650a9acabef408cc8c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 21:49:30 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 21:49:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e677cbf8
net-misc/bgpq4: drop new keywords except for ~amd64, drop src_install
- We'll file for new rekeywording to copy bgpq3 keywords shortly
- Drop unnecessary src_install (Makefile works fine)
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/bgpq4/bgpq4-1.5.ebuild | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/net-misc/bgpq4/bgpq4-1.5.ebuild b/net-misc/bgpq4/bgpq4-1.5.ebuild
index b0440b2764c9..0f28e3358d49 100644
--- a/net-misc/bgpq4/bgpq4-1.5.ebuild
+++ b/net-misc/bgpq4/bgpq4-1.5.ebuild
@@ -11,15 +11,10 @@ SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64"
src_prepare() {
- eapply_user
- eautoreconf
-}
+ default
-src_install() {
- dobin bgpq4
- doman bgpq4.8
- dodoc CHANGES COPYRIGHT README.md
+ eautoreconf
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2022-08-18 23:08 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-08-18 23:08 UTC (permalink / raw
To: gentoo-commits
commit: 0ce59bb3541cb4fe9b4ad592a472bc11a18de5dd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 23:07:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 23:07:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce59bb3
net-misc/bgpq4: Keyword 1.5 arm, #865725
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/bgpq4/bgpq4-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/bgpq4/bgpq4-1.5.ebuild b/net-misc/bgpq4/bgpq4-1.5.ebuild
index 0f28e3358d49..5ba6fcf47242 100644
--- a/net-misc/bgpq4/bgpq4-1.5.ebuild
+++ b/net-misc/bgpq4/bgpq4-1.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2022-08-30 8:37 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-08-30 8:37 UTC (permalink / raw
To: gentoo-commits
commit: e920d5aad4a76887a3faeac2570d2df45216397a
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 08:37:21 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 08:37:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e920d5aa
net-misc/bgpq4: Keyword 1.5 x86, #865725
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-misc/bgpq4/bgpq4-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/bgpq4/bgpq4-1.5.ebuild b/net-misc/bgpq4/bgpq4-1.5.ebuild
index 5ba6fcf47242..249a36b386d6 100644
--- a/net-misc/bgpq4/bgpq4-1.5.ebuild
+++ b/net-misc/bgpq4/bgpq4-1.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2022-12-21 12:57 Viorel Munteanu
0 siblings, 0 replies; 11+ messages in thread
From: Viorel Munteanu @ 2022-12-21 12:57 UTC (permalink / raw
To: gentoo-commits
commit: 39fe283edf5871c1cdd60e411ec9db5ea5cd7671
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Thu Dec 8 05:40:16 2022 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 12:56:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39fe283e
net-misc/bgpq4: add 1.7
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/28597
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 +
net-misc/bgpq4/bgpq4-1.7.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
index 891a030a87be..6eb8bf49f9be 100644
--- a/net-misc/bgpq4/Manifest
+++ b/net-misc/bgpq4/Manifest
@@ -1 +1,2 @@
DIST bgpq4-1.5.tar.gz 52779 BLAKE2B 538d10983180413298ad005032e069c0847f7cb8eb78eee253f1072935a4d0db24626e3e20117224027e71c5f499001ffbe15816066ad89e08c30b7bf3431ce4 SHA512 b0d552634db6e7a90f76387b22c3539b59c5f89f9564b661bc810f9a9729f0dd87931a64fc230b8ed0a38162a572d8d93139a792ee80e996663b47ec3e060b9b
+DIST bgpq4-1.7.tar.gz 55311 BLAKE2B 56824c0ebfa97cc459753cd59069a370afb5f6c86675f6c358e49d1cb7d781e5a9f51aa4526fd60269a5a77bc53685426898f439768c08a0f1917b1b2d98cdb3 SHA512 d9798f9d8297e05d1553fb9cfafe63fd77145e14aa72cb95d4581cae30bdf3e7c08a5ca6261a4f44580a35e048ba50fc181750ecbe838ca40b6dcfbaaca42ab5
diff --git a/net-misc/bgpq4/bgpq4-1.7.ebuild b/net-misc/bgpq4/bgpq4-1.7.ebuild
new file mode 100644
index 000000000000..249a36b386d6
--- /dev/null
+++ b/net-misc/bgpq4/bgpq4-1.7.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
+HOMEPAGE="https://github.com/bgp/bgpq4/"
+SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2023-02-28 14:35 Joonas Niilola
0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2023-02-28 14:35 UTC (permalink / raw
To: gentoo-commits
commit: 7581a2041a4dc6c3ce4e44e8dd7c47a564f59e01
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Fri Feb 24 04:04:40 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Feb 28 14:35:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7581a204
net-misc/bgpq4: add 1.8
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 +
net-misc/bgpq4/bgpq4-1.8.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
index 6eb8bf49f9be..5556b6161488 100644
--- a/net-misc/bgpq4/Manifest
+++ b/net-misc/bgpq4/Manifest
@@ -1,2 +1,3 @@
DIST bgpq4-1.5.tar.gz 52779 BLAKE2B 538d10983180413298ad005032e069c0847f7cb8eb78eee253f1072935a4d0db24626e3e20117224027e71c5f499001ffbe15816066ad89e08c30b7bf3431ce4 SHA512 b0d552634db6e7a90f76387b22c3539b59c5f89f9564b661bc810f9a9729f0dd87931a64fc230b8ed0a38162a572d8d93139a792ee80e996663b47ec3e060b9b
DIST bgpq4-1.7.tar.gz 55311 BLAKE2B 56824c0ebfa97cc459753cd59069a370afb5f6c86675f6c358e49d1cb7d781e5a9f51aa4526fd60269a5a77bc53685426898f439768c08a0f1917b1b2d98cdb3 SHA512 d9798f9d8297e05d1553fb9cfafe63fd77145e14aa72cb95d4581cae30bdf3e7c08a5ca6261a4f44580a35e048ba50fc181750ecbe838ca40b6dcfbaaca42ab5
+DIST bgpq4-1.8.tar.gz 55947 BLAKE2B 2aea8eddc33881b2e5734a805e290ed8e0a24aa41dfc65d6cd0d4221b4ff95f9477d80754eb3ae92e71843e4539653143748eca61f8f0a561932c5fff28a799e SHA512 c2bb9a6cc4f2ee361a3193c2637bc62432cc82f0182368d56d90112e50ffb7b1a28868568ee551ceda658dbdeed809dff30c820e50f9b5cf430cca01ac55cf99
diff --git a/net-misc/bgpq4/bgpq4-1.8.ebuild b/net-misc/bgpq4/bgpq4-1.8.ebuild
new file mode 100644
index 000000000000..a59c2865738d
--- /dev/null
+++ b/net-misc/bgpq4/bgpq4-1.8.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
+HOMEPAGE="https://github.com/bgp/bgpq4/"
+SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2023-02-28 14:35 Joonas Niilola
0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2023-02-28 14:35 UTC (permalink / raw
To: gentoo-commits
commit: ada11e98245079c525164d2d29ca552acdc14b7f
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Fri Feb 24 04:05:31 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Feb 28 14:35:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ada11e98
net-misc/bgpq4: drop 1.5
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/29754
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 -
net-misc/bgpq4/bgpq4-1.5.ebuild | 20 --------------------
2 files changed, 21 deletions(-)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
index 5556b6161488..995eff4f109c 100644
--- a/net-misc/bgpq4/Manifest
+++ b/net-misc/bgpq4/Manifest
@@ -1,3 +1,2 @@
-DIST bgpq4-1.5.tar.gz 52779 BLAKE2B 538d10983180413298ad005032e069c0847f7cb8eb78eee253f1072935a4d0db24626e3e20117224027e71c5f499001ffbe15816066ad89e08c30b7bf3431ce4 SHA512 b0d552634db6e7a90f76387b22c3539b59c5f89f9564b661bc810f9a9729f0dd87931a64fc230b8ed0a38162a572d8d93139a792ee80e996663b47ec3e060b9b
DIST bgpq4-1.7.tar.gz 55311 BLAKE2B 56824c0ebfa97cc459753cd59069a370afb5f6c86675f6c358e49d1cb7d781e5a9f51aa4526fd60269a5a77bc53685426898f439768c08a0f1917b1b2d98cdb3 SHA512 d9798f9d8297e05d1553fb9cfafe63fd77145e14aa72cb95d4581cae30bdf3e7c08a5ca6261a4f44580a35e048ba50fc181750ecbe838ca40b6dcfbaaca42ab5
DIST bgpq4-1.8.tar.gz 55947 BLAKE2B 2aea8eddc33881b2e5734a805e290ed8e0a24aa41dfc65d6cd0d4221b4ff95f9477d80754eb3ae92e71843e4539653143748eca61f8f0a561932c5fff28a799e SHA512 c2bb9a6cc4f2ee361a3193c2637bc62432cc82f0182368d56d90112e50ffb7b1a28868568ee551ceda658dbdeed809dff30c820e50f9b5cf430cca01ac55cf99
diff --git a/net-misc/bgpq4/bgpq4-1.5.ebuild b/net-misc/bgpq4/bgpq4-1.5.ebuild
deleted file mode 100644
index 249a36b386d6..000000000000
--- a/net-misc/bgpq4/bgpq4-1.5.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
-HOMEPAGE="https://github.com/bgp/bgpq4/"
-SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-
-src_prepare() {
- default
-
- eautoreconf
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2024-03-15 15:37 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2024-03-15 15:37 UTC (permalink / raw
To: gentoo-commits
commit: e15e5bfc2c31181beed90516cdf43382cd697cde
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 15:37:04 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 15:37:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e15e5bfc
net-misc/bgpq4: Stabilize 1.8 amd64, #927067
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/bgpq4/bgpq4-1.8.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/bgpq4/bgpq4-1.8.ebuild b/net-misc/bgpq4/bgpq4-1.8.ebuild
index a59c2865738d..88423c196324 100644
--- a/net-misc/bgpq4/bgpq4-1.8.ebuild
+++ b/net-misc/bgpq4/bgpq4-1.8.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=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2024-03-15 15:37 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2024-03-15 15:37 UTC (permalink / raw
To: gentoo-commits
commit: 3205fa65dc2bd1123dfff4bdeb1b58885d08461b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 15:37:05 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 15:37:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3205fa65
net-misc/bgpq4: Stabilize 1.8 x86, #927067
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/bgpq4/bgpq4-1.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/bgpq4/bgpq4-1.8.ebuild b/net-misc/bgpq4/bgpq4-1.8.ebuild
index 88423c196324..f8e8353f66b3 100644
--- a/net-misc/bgpq4/bgpq4-1.8.ebuild
+++ b/net-misc/bgpq4/bgpq4-1.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2024-10-04 8:13 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-10-04 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 5c0da14296e6cd38d0093a5ee3940f10b0231bdf
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Wed Sep 11 08:01:44 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 4 08:12:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0da142
net-misc/bgpq4: add 1.15
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 +
net-misc/bgpq4/bgpq4-1.15.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
index 995eff4f109c..77a31a50d21f 100644
--- a/net-misc/bgpq4/Manifest
+++ b/net-misc/bgpq4/Manifest
@@ -1,2 +1,3 @@
+DIST bgpq4-1.15.tar.gz 61084 BLAKE2B 80c2630e83e2ae188c656ec4c7f35a8f44d5044c320ba083b0d8cc9efde73d211856d610cd6eea615617536268746d40c9c10d1e9faef8cf044e0372ca093a56 SHA512 61e7621baf0de9dc2375393affe5bcbe0a7494ce3edded90c05e60975c359b9b1322fb8a2ade5c91b720cecef363c293fb16fe426f29074d558148c4d68924a5
DIST bgpq4-1.7.tar.gz 55311 BLAKE2B 56824c0ebfa97cc459753cd59069a370afb5f6c86675f6c358e49d1cb7d781e5a9f51aa4526fd60269a5a77bc53685426898f439768c08a0f1917b1b2d98cdb3 SHA512 d9798f9d8297e05d1553fb9cfafe63fd77145e14aa72cb95d4581cae30bdf3e7c08a5ca6261a4f44580a35e048ba50fc181750ecbe838ca40b6dcfbaaca42ab5
DIST bgpq4-1.8.tar.gz 55947 BLAKE2B 2aea8eddc33881b2e5734a805e290ed8e0a24aa41dfc65d6cd0d4221b4ff95f9477d80754eb3ae92e71843e4539653143748eca61f8f0a561932c5fff28a799e SHA512 c2bb9a6cc4f2ee361a3193c2637bc62432cc82f0182368d56d90112e50ffb7b1a28868568ee551ceda658dbdeed809dff30c820e50f9b5cf430cca01ac55cf99
diff --git a/net-misc/bgpq4/bgpq4-1.15.ebuild b/net-misc/bgpq4/bgpq4-1.15.ebuild
new file mode 100644
index 000000000000..2ae2baa8f1c4
--- /dev/null
+++ b/net-misc/bgpq4/bgpq4-1.15.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
+HOMEPAGE="https://github.com/bgp/bgpq4/"
+SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/
@ 2024-10-04 8:13 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-10-04 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 6e5c8b87d88d9c35257fea46891c382527d40622
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Wed Sep 11 08:02:22 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 4 08:12:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5c8b87
net-misc/bgpq4: drop 1.7
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/38561
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/bgpq4/Manifest | 1 -
net-misc/bgpq4/bgpq4-1.7.ebuild | 20 --------------------
2 files changed, 21 deletions(-)
diff --git a/net-misc/bgpq4/Manifest b/net-misc/bgpq4/Manifest
index 77a31a50d21f..d42f8189e35b 100644
--- a/net-misc/bgpq4/Manifest
+++ b/net-misc/bgpq4/Manifest
@@ -1,3 +1,2 @@
DIST bgpq4-1.15.tar.gz 61084 BLAKE2B 80c2630e83e2ae188c656ec4c7f35a8f44d5044c320ba083b0d8cc9efde73d211856d610cd6eea615617536268746d40c9c10d1e9faef8cf044e0372ca093a56 SHA512 61e7621baf0de9dc2375393affe5bcbe0a7494ce3edded90c05e60975c359b9b1322fb8a2ade5c91b720cecef363c293fb16fe426f29074d558148c4d68924a5
-DIST bgpq4-1.7.tar.gz 55311 BLAKE2B 56824c0ebfa97cc459753cd59069a370afb5f6c86675f6c358e49d1cb7d781e5a9f51aa4526fd60269a5a77bc53685426898f439768c08a0f1917b1b2d98cdb3 SHA512 d9798f9d8297e05d1553fb9cfafe63fd77145e14aa72cb95d4581cae30bdf3e7c08a5ca6261a4f44580a35e048ba50fc181750ecbe838ca40b6dcfbaaca42ab5
DIST bgpq4-1.8.tar.gz 55947 BLAKE2B 2aea8eddc33881b2e5734a805e290ed8e0a24aa41dfc65d6cd0d4221b4ff95f9477d80754eb3ae92e71843e4539653143748eca61f8f0a561932c5fff28a799e SHA512 c2bb9a6cc4f2ee361a3193c2637bc62432cc82f0182368d56d90112e50ffb7b1a28868568ee551ceda658dbdeed809dff30c820e50f9b5cf430cca01ac55cf99
diff --git a/net-misc/bgpq4/bgpq4-1.7.ebuild b/net-misc/bgpq4/bgpq4-1.7.ebuild
deleted file mode 100644
index 249a36b386d6..000000000000
--- a/net-misc/bgpq4/bgpq4-1.7.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Generate access-lists for various routers, maintained fork of bgpq3"
-HOMEPAGE="https://github.com/bgp/bgpq4/"
-SRC_URI="https://github.com/bgp/bgpq4/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-
-src_prepare() {
- default
-
- eautoreconf
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-04 8:13 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-15 15:37 [gentoo-commits] repo/gentoo:master commit in: net-misc/bgpq4/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-10-04 8:13 Sam James
2024-10-04 8:13 Sam James
2024-03-15 15:37 Arthur Zamarin
2023-02-28 14:35 Joonas Niilola
2023-02-28 14:35 Joonas Niilola
2022-12-21 12:57 Viorel Munteanu
2022-08-30 8:37 Jakov Smolić
2022-08-18 23:08 Sam James
2022-08-18 21:51 Sam James
2022-08-18 21:51 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox