diff options
author | Ben Kohler <bkohler@gentoo.org> | 2021-02-09 10:33:53 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2021-02-09 10:59:17 -0600 |
commit | 79ab506b3c9268b40e70f0a894e7e3b10dd25756 (patch) | |
tree | ee477278e4c86894707a1c0bd77dfbdd49c1a9a3 /app-admin | |
parent | dev-ml/ppxlib: add blocker on nss[utils] for now (diff) | |
download | gentoo-79ab506b3c9268b40e70f0a894e7e3b10dd25756.tar.gz gentoo-79ab506b3c9268b40e70f0a894e7e3b10dd25756.tar.bz2 gentoo-79ab506b3c9268b40e70f0a894e7e3b10dd25756.zip |
app-admin/radmind: bump to 1.15.3
Includes gcc10 fix upstream
Bug: https://bugs.gentoo.org/706702
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/radmind/Manifest | 1 | ||||
-rw-r--r-- | app-admin/radmind/radmind-1.15.3.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest index b7eeb46b7c69..6cc119ceb3f0 100644 --- a/app-admin/radmind/Manifest +++ b/app-admin/radmind/Manifest @@ -1 +1,2 @@ DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6 SHA512 3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c +DIST radmind-1.15.3.tar.gz 843033 BLAKE2B 3d4446e5ce9e668039277f63a16c014dbbecca870886e68603af4100cdbf4a0adf074d26c90985968ec1a680fb483395676b85020134ec56686318b3d0664d99 SHA512 121fa2ea4dc9532bdbb1440c3ee485db1d6a1e770bd01dc0e832d51ee26112441ff47bea8e7f063feffc4d5bf3cfc5ce53d316bb469ff4ff0a65ca5463c99d11 diff --git a/app-admin/radmind/radmind-1.15.3.ebuild b/app-admin/radmind/radmind-1.15.3.ebuild new file mode 100644 index 000000000000..7a4b40665a28 --- /dev/null +++ b/app-admin/radmind/radmind-1.15.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Command-line tools and server to remotely administer multiple Unix filesystems" +HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/" +SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz" + +LICENSE="HPND" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libressl" + +DEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) +" +RDEPEND="${DEPEND} + !dev-util/repo +" + +PATCHES=( + "${FILESDIR}"/${PN}-1.7.0-gentoo.patch + "${FILESDIR}"/${PN}-1.14.1-glibc225.patch +) + +src_install() { + default + keepdir /var/radmind/{cert,client,postapply,preapply} +} |