public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/
@ 2020-05-04  8:54 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-05-04  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     075f159d38dba3037debd40fbdfc82c1e421c9b4
Author:     Alarig Le Lay <alarig <AT> swordarmor <DOT> fr>
AuthorDate: Sun May  3 20:54:07 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May  3 20:54:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=075f159d

net-misc/rpki-client: New ebuild

RPKI client implementation

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alarig Le Lay <alarig <AT> swordarmor.fr>

 net-misc/rpki-client/Manifest                      |  1 +
 .../files/rpki-client-0.2.0-Makefile.patch         | 19 ++++++++++
 net-misc/rpki-client/metadata.xml                  |  8 ++++
 net-misc/rpki-client/rpki-client-0.3.0.ebuild      | 43 ++++++++++++++++++++++
 4 files changed, 71 insertions(+)

diff --git a/net-misc/rpki-client/Manifest b/net-misc/rpki-client/Manifest
new file mode 100644
index 0000000..b50be42
--- /dev/null
+++ b/net-misc/rpki-client/Manifest
@@ -0,0 +1 @@
+DIST rpki-client-0.3.0.tar.gz 81002 BLAKE2B acc428d14cfcfd0733236061d4b7bccce2fc898829ffc34603918e7cee1c7bf48496388c667027c9a3c319f41c46c58bd06e73088e2f2f80958dd5db34e1d5a6 SHA512 4169198074bd3e81008e34838a868313faa450c4fdf5bc827a5229a8ca4fbaa22fedd45d4dde59be0f15d8b80a27eb287a5e29eacc4a2c4a57e9c9e344ac3bbf

diff --git a/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch b/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch
new file mode 100644
index 0000000..25ff4a5
--- /dev/null
+++ b/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch
@@ -0,0 +1,19 @@
+--- Makefile	2019-06-16 16:32:45.000000000 +0200
++++ Makefile	2019-12-07 17:14:01.888076319 +0100
+@@ -30,12 +30,12 @@
+ 	   test-tal
+ 
+ # Linux.
+-#LDADD += `pkg-config --libs openssl` -lresolv
+-#CFLAGS += `pkg-config --cflags openssl`
++LDADD += `pkg-config --libs openssl` -lresolv
++CFLAGS += `pkg-config --cflags openssl`
+ 
+ # OpenBSD.
+-CFLAGS += -I/usr/local/include/eopenssl
+-LDADD += /usr/local/lib/eopenssl/libssl.a /usr/local/lib/eopenssl/libcrypto.a
++#CFLAGS += -I/usr/local/include/eopenssl
++#LDADD += /usr/local/lib/eopenssl/libssl.a /usr/local/lib/eopenssl/libcrypto.a
+ 
+ all: $(BINS)
+ 

diff --git a/net-misc/rpki-client/metadata.xml b/net-misc/rpki-client/metadata.xml
new file mode 100644
index 0000000..17361c3
--- /dev/null
+++ b/net-misc/rpki-client/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>alarig@swordarmor.fr</email>
+		<name>Alarig Le Lay</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/net-misc/rpki-client/rpki-client-0.3.0.ebuild b/net-misc/rpki-client/rpki-client-0.3.0.ebuild
new file mode 100644
index 0000000..ca194cc
--- /dev/null
+++ b/net-misc/rpki-client/rpki-client-0.3.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils
+
+VERSION="VERSION_${PV//./_}"
+
+DESCRIPTION="RPKI client implementation"
+HOMEPAGE="https://github.com/kristapsdz/rpki-client"
+SRC_URI="https://github.com/kristapsdz/${PN}/archive/${VERSION}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	acct-group/_rpki-client
+	acct-user/_rpki-client
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_configure() {
+	./configure CPPFLAGS="`pkg-config --cflags openssl`" \
+		LDFLAGS="`pkg-config --libs-only-L openssl`" \
+		LDADD="`pkg-config --libs openssl` -lresolv"
+}
+
+src_unpack() {
+	unpack ${A}
+	mv "${WORKDIR}/${PN}-${VERSION}" "${S}"
+}
+
+src_install() {
+	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
+	insinto /usr/share/${PN}
+	doins tals/*
+	keepdir /var/cache/${PN}/
+	fowners -R _rpki-client /var/cache/${PN}/
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/
@ 2020-05-29 11:47 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-05-29 11:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f1a1e5329891a54f9420f30809703ae2afe2c60d
Author:     Alarig Le Lay <alarig <AT> swordarmor <DOT> fr>
AuthorDate: Fri May 29 05:01:40 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri May 29 05:01:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1a1e532

net-misc/rpki-client: Version bump to 6.6

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alarig Le Lay <alarig <AT> swordarmor.fr>

 net-misc/rpki-client/Manifest                      |  1 +
 .../rpki-client/files/rpki-client-6.6-update.patch | 23 ++++++++
 net-misc/rpki-client/rpki-client-6.6_p2.ebuild     | 68 ++++++++++++++++++++++
 3 files changed, 92 insertions(+)

diff --git a/net-misc/rpki-client/Manifest b/net-misc/rpki-client/Manifest
index 81828be..afc9431 100644
--- a/net-misc/rpki-client/Manifest
+++ b/net-misc/rpki-client/Manifest
@@ -1 +1,2 @@
 DIST rpki-client-0.3.0.tar.gz 81004 BLAKE2B 1831ed0aab4f4112391ba2c40c7b335f5284c4fe13d2e0e59e5996c909368285073018a3d9b431f88fdc347a8281d2fc4613de68badcab011061e7274d3df2bf SHA512 92f62b3137a3848aa3cf27b5b303b1ce097da961dcb684b8bad9fa224690f2f233658bd3c73e48d60d3c7df965173a1c935b0497a61084fe0986dce4feb4bd70
+DIST rpki-client-6.6_p2.tar.gz 42840 BLAKE2B f5075376925cad57893a27c463c6727362e108cbccb348785ca4940fbaa8262286342ecb6f5fa59a0615009bc16571b15218483822c827528ecc19e1963c9e6b SHA512 5acdabef9b0373fb2fe47a2b9cb2638809ac1260b273c1566e3dbd34287c3703dd7979a7ba98b7d5b305664add6f2d5af4564ad2315033406e5e835f1051951f

diff --git a/net-misc/rpki-client/files/rpki-client-6.6-update.patch b/net-misc/rpki-client/files/rpki-client-6.6-update.patch
new file mode 100644
index 0000000..8825143
--- /dev/null
+++ b/net-misc/rpki-client/files/rpki-client-6.6-update.patch
@@ -0,0 +1,23 @@
+--- a/update.sh	2020-05-19 20:19:49.501990424 +0200
++++ b/update.sh	2020-05-19 20:20:15.889108790 +0200
+@@ -4,20 +4,6 @@
+ openbsd_branch=`cat OPENBSD_BRANCH`
+ openbgpd_version=`cat VERSION`
+ 
+-# pull in latest upstream code
+-echo "pulling upstream openbsd source"
+-if [ ! -d openbsd ]; then
+-	if [ -z "${RPKICLIENT_GIT}" ]; then
+-		git clone https://github.com/rpki-client/rpki-client-openbsd.git openbsd
+-	else
+-		git clone "${RPKICLIENT_GIT}/openbsd"
+-	fi
+-fi
+-(cd openbsd/src
+- git fetch
+- git checkout "${openbsd_branch}"
+- git pull --rebase)
+-
+ # setup source paths
+ dir=`pwd`
+ patches="${dir}/patches"

diff --git a/net-misc/rpki-client/rpki-client-6.6_p2.ebuild b/net-misc/rpki-client/rpki-client-6.6_p2.ebuild
new file mode 100644
index 0000000..30ee031
--- /dev/null
+++ b/net-misc/rpki-client/rpki-client-6.6_p2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools git-r3
+
+MY_PN="${PN}-portable"
+MY_PV="${PV/_p/p}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="Portability shim for OpenBSD's rpki-client"
+HOMEPAGE="https://rpki-client.org/"
+SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/${PN}/${PN}-openbsd.git"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	acct-group/_rpki-client
+	acct-user/_rpki-client
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+PATCHES=(
+	"${FILESDIR}/${PN}-${PV%_*}-update.patch"
+)
+
+S="${WORKDIR}/${MY_P}"
+
+src_unpack() {
+	default
+
+	EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
+	EGIT_CHECKOUT_DIR="${S}/openbsd"
+	git-r3_fetch
+	git-r3_checkout
+}
+
+src_prepare() {
+	default
+
+	cd "${S}"
+	./autogen.sh
+
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--with-rsync=rsync
+		--with-base-dir="/var/cache/${PN}"
+		--with-output-dir="/var/db/${PN}"
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
+	insinto /etc/rpki
+	doins tals/*
+	keepdir "/var/db/${PN}/"
+	fowners -R _rpki-client "/var/db/${PN}/"
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/
@ 2020-06-15 10:32 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-06-15 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     35287456be4ac0119a855629b0d477e10dc16a05
Author:     Alarig Le Lay <alarig <AT> swordarmor <DOT> fr>
AuthorDate: Mon Jun 15 06:02:24 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jun 15 06:02:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=35287456

net-misc/rpki-client: Cleaning up old version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alarig Le Lay <alarig <AT> swordarmor.fr>

 net-misc/rpki-client/Manifest                      |  1 -
 .../files/rpki-client-0.2.0-Makefile.patch         | 19 ----------
 net-misc/rpki-client/rpki-client-0.3.0.ebuild      | 40 ----------------------
 3 files changed, 60 deletions(-)

diff --git a/net-misc/rpki-client/Manifest b/net-misc/rpki-client/Manifest
index dbc6513..6c43856 100644
--- a/net-misc/rpki-client/Manifest
+++ b/net-misc/rpki-client/Manifest
@@ -1,3 +1,2 @@
-DIST rpki-client-0.3.0.tar.gz 81004 BLAKE2B 1831ed0aab4f4112391ba2c40c7b335f5284c4fe13d2e0e59e5996c909368285073018a3d9b431f88fdc347a8281d2fc4613de68badcab011061e7274d3df2bf SHA512 92f62b3137a3848aa3cf27b5b303b1ce097da961dcb684b8bad9fa224690f2f233658bd3c73e48d60d3c7df965173a1c935b0497a61084fe0986dce4feb4bd70
 DIST rpki-client-6.6_p2.tar.gz 42840 BLAKE2B f5075376925cad57893a27c463c6727362e108cbccb348785ca4940fbaa8262286342ecb6f5fa59a0615009bc16571b15218483822c827528ecc19e1963c9e6b SHA512 5acdabef9b0373fb2fe47a2b9cb2638809ac1260b273c1566e3dbd34287c3703dd7979a7ba98b7d5b305664add6f2d5af4564ad2315033406e5e835f1051951f
 DIST rpki-client-6.7_p0.tar.gz 44454 BLAKE2B 2336f3a8f4a0cb53a9c6f4df6dbd269ff1e8bcb11b61d4c283c3153e563054efb163339ec7852f45e12cc7e9544522d7dabc62d0f79b5a6951014e47980caad9 SHA512 018e237a4075779850f18bdc69c49dac03d8bb2d377dbd680f1faa307057647ea3188acb6b78766e6563dd48afadd5eaea419413c41a018882d1a8b147bb6630

diff --git a/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch b/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch
deleted file mode 100644
index 25ff4a5..0000000
--- a/net-misc/rpki-client/files/rpki-client-0.2.0-Makefile.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- Makefile	2019-06-16 16:32:45.000000000 +0200
-+++ Makefile	2019-12-07 17:14:01.888076319 +0100
-@@ -30,12 +30,12 @@
- 	   test-tal
- 
- # Linux.
--#LDADD += `pkg-config --libs openssl` -lresolv
--#CFLAGS += `pkg-config --cflags openssl`
-+LDADD += `pkg-config --libs openssl` -lresolv
-+CFLAGS += `pkg-config --cflags openssl`
- 
- # OpenBSD.
--CFLAGS += -I/usr/local/include/eopenssl
--LDADD += /usr/local/lib/eopenssl/libssl.a /usr/local/lib/eopenssl/libcrypto.a
-+#CFLAGS += -I/usr/local/include/eopenssl
-+#LDADD += /usr/local/lib/eopenssl/libssl.a /usr/local/lib/eopenssl/libcrypto.a
- 
- all: $(BINS)
- 

diff --git a/net-misc/rpki-client/rpki-client-0.3.0.ebuild b/net-misc/rpki-client/rpki-client-0.3.0.ebuild
deleted file mode 100644
index bf64777..0000000
--- a/net-misc/rpki-client/rpki-client-0.3.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils
-
-VERSION="VERSION_${PV//./_}"
-
-DESCRIPTION="RPKI client implementation"
-HOMEPAGE="https://github.com/kristapsdz/rpki-client"
-SRC_URI="https://github.com/kristapsdz/${PN}/archive/${VERSION}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-	acct-group/_rpki-client
-	acct-user/_rpki-client
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}/${PN}-${VERSION}"
-
-src_configure() {
-	./configure CPPFLAGS="`pkg-config --cflags openssl`" \
-		LDFLAGS="`pkg-config --libs-only-L openssl`" \
-		LDADD="`pkg-config --libs openssl` -lresolv"
-}
-
-src_install() {
-	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
-	insinto /usr/share/${PN}
-	doins tals/*
-	keepdir /var/cache/${PN}/
-	fowners -R _rpki-client /var/cache/${PN}/
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/
@ 2020-06-15 10:32 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-06-15 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     04e1a05c335089eb970bca9eda011293e9d17619
Author:     Alarig Le Lay <alarig <AT> swordarmor <DOT> fr>
AuthorDate: Mon Jun 15 06:01:44 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jun 15 06:01:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04e1a05c

net-misc/rpki-client: Version bump to 6.7_p0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alarig Le Lay <alarig <AT> swordarmor.fr>

 net-misc/rpki-client/Manifest                      |  1 +
 .../rpki-client/files/rpki-client-6.7-update.patch | 25 ++++++++
 net-misc/rpki-client/rpki-client-6.7_p0.ebuild     | 68 ++++++++++++++++++++++
 3 files changed, 94 insertions(+)

diff --git a/net-misc/rpki-client/Manifest b/net-misc/rpki-client/Manifest
index afc9431..dbc6513 100644
--- a/net-misc/rpki-client/Manifest
+++ b/net-misc/rpki-client/Manifest
@@ -1,2 +1,3 @@
 DIST rpki-client-0.3.0.tar.gz 81004 BLAKE2B 1831ed0aab4f4112391ba2c40c7b335f5284c4fe13d2e0e59e5996c909368285073018a3d9b431f88fdc347a8281d2fc4613de68badcab011061e7274d3df2bf SHA512 92f62b3137a3848aa3cf27b5b303b1ce097da961dcb684b8bad9fa224690f2f233658bd3c73e48d60d3c7df965173a1c935b0497a61084fe0986dce4feb4bd70
 DIST rpki-client-6.6_p2.tar.gz 42840 BLAKE2B f5075376925cad57893a27c463c6727362e108cbccb348785ca4940fbaa8262286342ecb6f5fa59a0615009bc16571b15218483822c827528ecc19e1963c9e6b SHA512 5acdabef9b0373fb2fe47a2b9cb2638809ac1260b273c1566e3dbd34287c3703dd7979a7ba98b7d5b305664add6f2d5af4564ad2315033406e5e835f1051951f
+DIST rpki-client-6.7_p0.tar.gz 44454 BLAKE2B 2336f3a8f4a0cb53a9c6f4df6dbd269ff1e8bcb11b61d4c283c3153e563054efb163339ec7852f45e12cc7e9544522d7dabc62d0f79b5a6951014e47980caad9 SHA512 018e237a4075779850f18bdc69c49dac03d8bb2d377dbd680f1faa307057647ea3188acb6b78766e6563dd48afadd5eaea419413c41a018882d1a8b147bb6630

diff --git a/net-misc/rpki-client/files/rpki-client-6.7-update.patch b/net-misc/rpki-client/files/rpki-client-6.7-update.patch
new file mode 100644
index 0000000..e129630
--- /dev/null
+++ b/net-misc/rpki-client/files/rpki-client-6.7-update.patch
@@ -0,0 +1,25 @@
+--- a/update.sh	2020-05-19 20:27:54.816143493 +0200
++++ b/update.sh	2020-05-19 20:28:03.700182804 +0200
+@@ -4,22 +4,6 @@
+ openbsd_branch=`cat OPENBSD_BRANCH`
+ openbgpd_version=`cat VERSION`
+ 
+-# pull in latest upstream code
+-echo "pulling upstream openbsd source"
+-if [ ! -d openbsd ]; then
+-	if [ -z "${RPKICLIENT_GIT}" ]; then
+-		git clone https://github.com/rpki-client/rpki-client-openbsd.git openbsd
+-	else
+-		git clone "${RPKICLIENT_GIT}/openbsd"
+-	fi
+-fi
+-if [ -d openbsd/.git ]; then
+-	(cd openbsd/src
+-	 git fetch
+-	 git checkout "${openbsd_branch}"
+-	 git pull --rebase)
+-fi
+-
+ # setup source paths
+ dir=`pwd`
+ patches="${dir}/patches"

diff --git a/net-misc/rpki-client/rpki-client-6.7_p0.ebuild b/net-misc/rpki-client/rpki-client-6.7_p0.ebuild
new file mode 100644
index 0000000..b9a0673
--- /dev/null
+++ b/net-misc/rpki-client/rpki-client-6.7_p0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools git-r3
+
+MY_PN="${PN}-portable"
+MY_PV="${PV/_p/p}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="Portability shim for OpenBSD's rpki-client"
+HOMEPAGE="https://rpki-client.org/"
+SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/${PN}/${PN}-openbsd.git"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	acct-group/_rpki-client
+	acct-user/_rpki-client
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+PATCHES=(
+	"${FILESDIR}/${PN}-${PV%_*}-update.patch"
+)
+
+S="${WORKDIR}/${MY_P}"
+
+src_unpack() {
+	default
+
+	EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
+	EGIT_CHECKOUT_DIR="${S}/openbsd"
+	git-r3_fetch
+	git-r3_checkout
+}
+
+src_prepare() {
+	default
+
+	cd "${S}"
+	./autogen.sh
+
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--with-rsync=rsync
+		--with-base-dir="/var/cache/${PN}"
+		--with-output-dir="/var/db/${PN}"
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
+	insinto /etc/rpki
+	doins *.tal
+	keepdir "/var/db/${PN}/"
+	fowners -R _rpki-client "/var/db/${PN}/"
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/
@ 2020-12-27 12:48 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-12-27 12:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e4b251171431b88e0005efdde0e16ec092f8c0b0
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Sat Dec 26 22:10:56 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Dec 26 22:10:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4b25117

net-misc/rpki-client: drop old

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 net-misc/rpki-client/Manifest                      |  3 -
 .../rpki-client/files/rpki-client-6.6-update.patch | 23 --------
 .../rpki-client/files/rpki-client-6.7-update.patch | 25 --------
 net-misc/rpki-client/rpki-client-6.6_p2.ebuild     | 68 ----------------------
 net-misc/rpki-client/rpki-client-6.7_p0.ebuild     | 68 ----------------------
 net-misc/rpki-client/rpki-client-6.7_p1.ebuild     | 68 ----------------------
 6 files changed, 255 deletions(-)

diff --git a/net-misc/rpki-client/Manifest b/net-misc/rpki-client/Manifest
index 680b7e6d..3786173a 100644
--- a/net-misc/rpki-client/Manifest
+++ b/net-misc/rpki-client/Manifest
@@ -1,5 +1,2 @@
-DIST rpki-client-6.6_p2.tar.gz 42840 BLAKE2B f5075376925cad57893a27c463c6727362e108cbccb348785ca4940fbaa8262286342ecb6f5fa59a0615009bc16571b15218483822c827528ecc19e1963c9e6b SHA512 5acdabef9b0373fb2fe47a2b9cb2638809ac1260b273c1566e3dbd34287c3703dd7979a7ba98b7d5b305664add6f2d5af4564ad2315033406e5e835f1051951f
-DIST rpki-client-6.7_p0.tar.gz 44454 BLAKE2B 2336f3a8f4a0cb53a9c6f4df6dbd269ff1e8bcb11b61d4c283c3153e563054efb163339ec7852f45e12cc7e9544522d7dabc62d0f79b5a6951014e47980caad9 SHA512 018e237a4075779850f18bdc69c49dac03d8bb2d377dbd680f1faa307057647ea3188acb6b78766e6563dd48afadd5eaea419413c41a018882d1a8b147bb6630
-DIST rpki-client-6.7_p1.tar.gz 44463 BLAKE2B c269a502c680a4c41c2201fceed2f3bab7b83e3a6a173fea5081ced073e10f02fd7aaa07ef4b9d14f816c88871ffee8c65126f0efcda9e8ca7c08032cac179d6 SHA512 bc9815ab6cd930715e9494b82b1547a419706db3fa4eca003767d6e39c3a63c0a3f3048c211c773e1f0e87043b0bfd622b0d5be856ccced27f893eefc9511211
 DIST rpki-client-6.8p0.tar.gz 388472 BLAKE2B e0a3f7d8a3fa0503ba3d41556fa17fe5f1407513ed7417cc0fb185c206c7b525bc49d125723436f1e27b0b3c5f0c58a862579cd4b9ad23009ca0341959029e00 SHA512 cb34fbf9367e522a924d3ecaaff6d2be45cdec968946b491250949cbd07744b87b84c664bd70303b6568d387671217da99aba7fb35e4d8ed4eb33103063b00cd
 DIST rpki-client-6.8p1.tar.gz 390248 BLAKE2B f7d553cd1291ea803bf17da31a57ca940cfec4915cff1d504b3665b4c84e809bc2a20e5241d76589594426420903548fde4f1967526ae1e047661a03b948dd94 SHA512 41f6374e600b9411c70e6b5748ad4f06d779a47c25005111a72c28b2eeb941ea7ceaaced19c7f2917f62e4f595a951c7bfcbbc85288610501306a26454deb872

diff --git a/net-misc/rpki-client/files/rpki-client-6.6-update.patch b/net-misc/rpki-client/files/rpki-client-6.6-update.patch
deleted file mode 100644
index 88251433..00000000
--- a/net-misc/rpki-client/files/rpki-client-6.6-update.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/update.sh	2020-05-19 20:19:49.501990424 +0200
-+++ b/update.sh	2020-05-19 20:20:15.889108790 +0200
-@@ -4,20 +4,6 @@
- openbsd_branch=`cat OPENBSD_BRANCH`
- openbgpd_version=`cat VERSION`
- 
--# pull in latest upstream code
--echo "pulling upstream openbsd source"
--if [ ! -d openbsd ]; then
--	if [ -z "${RPKICLIENT_GIT}" ]; then
--		git clone https://github.com/rpki-client/rpki-client-openbsd.git openbsd
--	else
--		git clone "${RPKICLIENT_GIT}/openbsd"
--	fi
--fi
--(cd openbsd/src
-- git fetch
-- git checkout "${openbsd_branch}"
-- git pull --rebase)
--
- # setup source paths
- dir=`pwd`
- patches="${dir}/patches"

diff --git a/net-misc/rpki-client/files/rpki-client-6.7-update.patch b/net-misc/rpki-client/files/rpki-client-6.7-update.patch
deleted file mode 100644
index e1296300..00000000
--- a/net-misc/rpki-client/files/rpki-client-6.7-update.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/update.sh	2020-05-19 20:27:54.816143493 +0200
-+++ b/update.sh	2020-05-19 20:28:03.700182804 +0200
-@@ -4,22 +4,6 @@
- openbsd_branch=`cat OPENBSD_BRANCH`
- openbgpd_version=`cat VERSION`
- 
--# pull in latest upstream code
--echo "pulling upstream openbsd source"
--if [ ! -d openbsd ]; then
--	if [ -z "${RPKICLIENT_GIT}" ]; then
--		git clone https://github.com/rpki-client/rpki-client-openbsd.git openbsd
--	else
--		git clone "${RPKICLIENT_GIT}/openbsd"
--	fi
--fi
--if [ -d openbsd/.git ]; then
--	(cd openbsd/src
--	 git fetch
--	 git checkout "${openbsd_branch}"
--	 git pull --rebase)
--fi
--
- # setup source paths
- dir=`pwd`
- patches="${dir}/patches"

diff --git a/net-misc/rpki-client/rpki-client-6.6_p2.ebuild b/net-misc/rpki-client/rpki-client-6.6_p2.ebuild
deleted file mode 100644
index 6ef77766..00000000
--- a/net-misc/rpki-client/rpki-client-6.6_p2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools git-r3
-
-MY_PN="${PN}-portable"
-MY_PV="${PV/_p/p}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="Portability shim for OpenBSD's rpki-client"
-HOMEPAGE="https://www.rpki-client.org/"
-SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/${PN}/${PN}-openbsd.git"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-	acct-group/_rpki-client
-	acct-user/_rpki-client
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-PATCHES=(
-	"${FILESDIR}/${PN}-${PV%_*}-update.patch"
-)
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-	default
-
-	EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
-	EGIT_CHECKOUT_DIR="${S}/openbsd"
-	git-r3_fetch
-	git-r3_checkout
-}
-
-src_prepare() {
-	default
-
-	cd "${S}"
-	./autogen.sh
-
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=(
-		--with-rsync=rsync
-		--with-base-dir="/var/cache/${PN}"
-		--with-output-dir="/var/db/${PN}"
-	)
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
-	insinto /etc/rpki
-	doins tals/*
-	keepdir "/var/db/${PN}/"
-	fowners -R _rpki-client "/var/db/${PN}/"
-}

diff --git a/net-misc/rpki-client/rpki-client-6.7_p0.ebuild b/net-misc/rpki-client/rpki-client-6.7_p0.ebuild
deleted file mode 100644
index 931fac3b..00000000
--- a/net-misc/rpki-client/rpki-client-6.7_p0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools git-r3
-
-MY_PN="${PN}-portable"
-MY_PV="${PV/_p/p}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="Portability shim for OpenBSD's rpki-client"
-HOMEPAGE="https://www.rpki-client.org/"
-SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/${PN}/${PN}-openbsd.git"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-	acct-group/_rpki-client
-	acct-user/_rpki-client
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-PATCHES=(
-	"${FILESDIR}/${PN}-${PV%_*}-update.patch"
-)
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-	default
-
-	EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
-	EGIT_CHECKOUT_DIR="${S}/openbsd"
-	git-r3_fetch
-	git-r3_checkout
-}
-
-src_prepare() {
-	default
-
-	cd "${S}"
-	./autogen.sh
-
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=(
-		--with-rsync=rsync
-		--with-base-dir="/var/cache/${PN}"
-		--with-output-dir="/var/db/${PN}"
-	)
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
-	insinto /etc/rpki
-	doins *.tal
-	keepdir "/var/db/${PN}/"
-	fowners -R _rpki-client "/var/db/${PN}/"
-}

diff --git a/net-misc/rpki-client/rpki-client-6.7_p1.ebuild b/net-misc/rpki-client/rpki-client-6.7_p1.ebuild
deleted file mode 100644
index 931fac3b..00000000
--- a/net-misc/rpki-client/rpki-client-6.7_p1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools git-r3
-
-MY_PN="${PN}-portable"
-MY_PV="${PV/_p/p}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="Portability shim for OpenBSD's rpki-client"
-HOMEPAGE="https://www.rpki-client.org/"
-SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/${PN}/${PN}-openbsd.git"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-	acct-group/_rpki-client
-	acct-user/_rpki-client
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-PATCHES=(
-	"${FILESDIR}/${PN}-${PV%_*}-update.patch"
-)
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-	default
-
-	EGIT_BRANCH=$(cat "${S}"/OPENBSD_BRANCH)
-	EGIT_CHECKOUT_DIR="${S}/openbsd"
-	git-r3_fetch
-	git-r3_checkout
-}
-
-src_prepare() {
-	default
-
-	cd "${S}"
-	./autogen.sh
-
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=(
-		--with-rsync=rsync
-		--with-base-dir="/var/cache/${PN}"
-		--with-output-dir="/var/db/${PN}"
-	)
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install
-	insinto /etc/rpki
-	doins *.tal
-	keepdir "/var/db/${PN}/"
-	fowners -R _rpki-client "/var/db/${PN}/"
-}


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

end of thread, other threads:[~2020-12-27 12:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-27 12:48 [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/files/, net-misc/rpki-client/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2020-06-15 10:32 Andrew Ammerlaan
2020-06-15 10:32 Andrew Ammerlaan
2020-05-29 11:47 Andrew Ammerlaan
2020-05-04  8:54 Andrew Ammerlaan

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