From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2F3B115814C for ; Fri, 6 Oct 2023 14:35:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 778022BC068; Fri, 6 Oct 2023 14:35:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 596AB2BC068 for ; Fri, 6 Oct 2023 14:35:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F31E335CE3 for ; Fri, 6 Oct 2023 14:35:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DEF39C8 for ; Fri, 6 Oct 2023 14:35:10 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1696602894.d5ac2e77cc4e84739b9fb274d86ae50caa4a7bdb.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/FORT-validator/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/FORT-validator/FORT-validator-1.5.2.ebuild net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild net-misc/FORT-validator/Manifest X-VCS-Directories: net-misc/FORT-validator/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: d5ac2e77cc4e84739b9fb274d86ae50caa4a7bdb X-VCS-Branch: dev Date: Fri, 6 Oct 2023 14:35:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 79b4c7c3-fe45-47f2-a7fb-55c3b22f6ce1 X-Archives-Hash: da53d2f1cac2077d053e74ff28b0377f Message-ID: <20231006143510.xAReumZFKtpzcWXap3ua3iwaohSP8LmNYxqc3LD0TcI@z> commit: d5ac2e77cc4e84739b9fb274d86ae50caa4a7bdb Author: David Roman gmail com> AuthorDate: Fri Oct 6 14:34:54 2023 +0000 Commit: David Roman gmail com> CommitDate: Fri Oct 6 14:34:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5ac2e77 net-misc/FORT-validator: drop 1.5.2, 1.5.3_p20220607 Closes: https://bugs.gentoo.org/901331 Signed-off-by: David Roman gmail.com> .../FORT-validator/FORT-validator-1.5.2.ebuild | 73 --------------------- .../FORT-validator-1.5.3_p20220607.ebuild | 76 ---------------------- net-misc/FORT-validator/Manifest | 2 - 3 files changed, 151 deletions(-) diff --git a/net-misc/FORT-validator/FORT-validator-1.5.2.ebuild b/net-misc/FORT-validator/FORT-validator-1.5.2.ebuild deleted file mode 100644 index 80f8c60c36..0000000000 --- a/net-misc/FORT-validator/FORT-validator-1.5.2.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools fcaps systemd - -MY_PN="fort" - -DESCRIPTION="FORT validator is an open source RPKI validator" -HOMEPAGE="https://fortproject.net/validator?2" -SRC_URI="https://github.com/NICMx/${PN}/releases/download/${PV}/fort-${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="caps" - -DEPEND=" - acct-group/fort - acct-user/fort - caps? ( sys-libs/libcap ) - dev-libs/jansson - dev-libs/openssl -" -RDEPEND=" - ${DEPEND} - net-misc/rsync -" -BDEPEND=" - sys-devel/autoconf - sys-devel/automake -" - -S="${WORKDIR}/fort-${PV}" - -src_prepare() { - default - # Don't strip CFLAGS - sed -i 's/fort_CFLAGS =/fort_CFLAGS = ${CFLAGS} /' src/Makefile.am || die - # Don't test network - sed -i '/http/d' test/Makefile.am || die - eautoreconf -} - -src_install() { - newinitd "${FILESDIR}/${MY_PN}-1.5-initd" ${MY_PN} - newconfd "${FILESDIR}/${MY_PN}-1.5-confd" ${MY_PN} - - emake DESTDIR="${ED}" install - insinto /usr/share/${MY_PN}/ - insopts -m0644 -o "${MY_PN}" - diropts -m0755 -o "${MY_PN}" - doins -r examples/tal/ - - dodoc -r examples/ - - insinto /etc/fort - newins "${FILESDIR}/fort-config.json" config.json - - systemd_dounit "${FILESDIR}/${MY_PN}-1.5.service" -} - -pkg_postinst() { - fcaps cap_net_bind_service usr/bin/fort - - einfo "" - einfo "You have to init the TALs before the first run. To do so, run " - einfo "" - einfo " su -s /bin/sh -c '${EROOT}/usr/bin/${MY_PN} --init-tals --tal /usr/share/${MY_PN}/tal/' fort" - einfo "" - einfo "as root." -} diff --git a/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild b/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild deleted file mode 100644 index 8ff4f6a326..0000000000 --- a/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools fcaps systemd - -MY_PN="fort" -MY_PV="issue83" - -DESCRIPTION="FORT validator is an open source RPKI validator" -HOMEPAGE="https://fortproject.net/validator?2" -SRC_URI="https://github.com/NICMx/${PN}/archive/refs/heads/${MY_PV}.zip -> ${MY_PN}-${PV}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="caps" - -DEPEND=" - acct-group/fort - acct-user/fort - caps? ( sys-libs/libcap ) - dev-libs/jansson - dev-libs/openssl -" -RDEPEND=" - ${DEPEND} - net-misc/rsync -" -BDEPEND=" - sys-devel/autoconf - sys-devel/automake -" - -S="${WORKDIR}/${PN}-${MY_PV}" - -src_prepare() { - default - # Don't strip CFLAGS - sed -i 's/fort_CFLAGS =/fort_CFLAGS = ${CFLAGS} /' src/Makefile.am || die - # Don’t compile debug by default - sed -i '/fort_CFLAGS/ s/ -g / /' src/Makefile.am || die - # Don't test network - sed -i '/http/d' test/Makefile.am || die - eautoreconf -} - -src_install() { - newinitd "${FILESDIR}/${MY_PN}-1.5-initd" ${MY_PN} - newconfd "${FILESDIR}/${MY_PN}-1.5-confd" ${MY_PN} - - emake DESTDIR="${ED}" install - insinto /usr/share/${MY_PN}/ - insopts -m0644 -o "${MY_PN}" - diropts -m0755 -o "${MY_PN}" - doins -r examples/tal/ - - dodoc -r examples/ - - insinto /etc/fort - newins "${FILESDIR}/fort-config.json" config.json - - systemd_dounit "${FILESDIR}/${MY_PN}-1.5.service" -} - -pkg_postinst() { - fcaps cap_net_bind_service usr/bin/fort - - einfo "" - einfo "You have to init the TALs before the first run. To do so, run " - einfo "" - einfo " su -s /bin/sh -c '${EROOT}/usr/bin/${MY_PN} --init-tals --tal /usr/share/${MY_PN}/tal/' fort" - einfo "" - einfo "as root." -} diff --git a/net-misc/FORT-validator/Manifest b/net-misc/FORT-validator/Manifest index 69f263ae6b..a81ee821f1 100644 --- a/net-misc/FORT-validator/Manifest +++ b/net-misc/FORT-validator/Manifest @@ -1,4 +1,2 @@ -DIST fort-1.5.2.tar.gz 562414 BLAKE2B cbe5a5a47ec7a47176ab1cdd9b3ed26e5a73dd238a364d0ec54a5955316e4813a715180652ad2092ed9cf5c843dc7677d33ed831adb5bcabc156995fbf4c208b SHA512 77c9484314067f5612a5a076ae7e16423f41b79220fc911599f867426dedf7b2276b8f8109ad0b17a714c463f3080b734d1562f6b7ed2265583b1ab6c7f32436 DIST fort-1.5.3.tar.gz 564257 BLAKE2B f0a6c9899c968f6697c79c0f541275874bc7aa23d6e42113d4be23b6338eb3007557a0260e601575719b90b8e87c4483bb13a40a6ac0724e17cf8157ce40d6ba SHA512 1b97bec1b031cd717d4012b0faec36785ba5c8e06ca46b4a017a08c3f2a038d2224c740a6b84f1c853c996c203af9ac975506d5c0e379a7cab82554318136a99 -DIST fort-1.5.3_p20220607.zip 719847 BLAKE2B 10ed3913e6482e15da64f48ce42a0eb9d14b5e39875f8b2ac1dc71da9cccfaa952a3bbb71030bc6c025aa9966087db20e0a574af6da8424b0b24e8d51e98fb23 SHA512 2dfa61a99edffb678ba338165610445921380bf98c32958b4c425dfa055a212ec4edcbf68758f43fdb4f36769a79fceca46e82abdc471e4bea22caf28c879eb3 DIST fort-1.5.4.tar.gz 563138 BLAKE2B bd2a680a41b678bbf49d762fdd1f0f20e2c8bbf3fa80cb57c996d39ad39118ead3ebed7737bdef7478effbb6fa6e7fb39cd3c945a495f613a010dd79bea4f5d6 SHA512 44ec8dd28ab087f1d78f999c53b5dee8f13a6fc9bdf590d3261d640488b118e14970d88c5c5851e602a8119704378088230b8137978ef3caf6bab909af36408e