Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/
Date: Tue, 09 Feb 2021 16:59:50
Message-Id: 1612889957.79ab506b3c9268b40e70f0a894e7e3b10dd25756.bkohler@gentoo
1 commit: 79ab506b3c9268b40e70f0a894e7e3b10dd25756
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 9 16:33:53 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 16:59:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ab506b
7
8 app-admin/radmind: bump to 1.15.3
9
10 Includes gcc10 fix upstream
11
12 Bug: https://bugs.gentoo.org/706702
13 Package-Manager: Portage-3.0.14, Repoman-3.0.2
14 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
15
16 app-admin/radmind/Manifest | 1 +
17 app-admin/radmind/radmind-1.15.3.ebuild | 31 +++++++++++++++++++++++++++++++
18 2 files changed, 32 insertions(+)
19
20 diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
21 index b7eeb46b7c6..6cc119ceb3f 100644
22 --- a/app-admin/radmind/Manifest
23 +++ b/app-admin/radmind/Manifest
24 @@ -1 +1,2 @@
25 DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6 SHA512 3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c
26 +DIST radmind-1.15.3.tar.gz 843033 BLAKE2B 3d4446e5ce9e668039277f63a16c014dbbecca870886e68603af4100cdbf4a0adf074d26c90985968ec1a680fb483395676b85020134ec56686318b3d0664d99 SHA512 121fa2ea4dc9532bdbb1440c3ee485db1d6a1e770bd01dc0e832d51ee26112441ff47bea8e7f063feffc4d5bf3cfc5ce53d316bb469ff4ff0a65ca5463c99d11
27
28 diff --git a/app-admin/radmind/radmind-1.15.3.ebuild b/app-admin/radmind/radmind-1.15.3.ebuild
29 new file mode 100644
30 index 00000000000..7a4b40665a2
31 --- /dev/null
32 +++ b/app-admin/radmind/radmind-1.15.3.ebuild
33 @@ -0,0 +1,31 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="Command-line tools and server to remotely administer multiple Unix filesystems"
40 +HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/"
41 +SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz"
42 +
43 +LICENSE="HPND"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="libressl"
47 +
48 +DEPEND="
49 + !libressl? ( dev-libs/openssl:0= )
50 + libressl? ( dev-libs/libressl:0= )
51 +"
52 +RDEPEND="${DEPEND}
53 + !dev-util/repo
54 +"
55 +
56 +PATCHES=(
57 + "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
58 + "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
59 +)
60 +
61 +src_install() {
62 + default
63 + keepdir /var/radmind/{cert,client,postapply,preapply}
64 +}