Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/rhash/
Date: Sun, 03 Mar 2019 10:44:00
Message-Id: 1551609374.b0c2cd36277dea7b4a4be127101adc5c5d23daa6.chewi@gentoo
1 commit: b0c2cd36277dea7b4a4be127101adc5c5d23daa6
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 3 10:36:14 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 10:36:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0c2cd36
7
8 app-crypt/rhash: Version bump to 1.3.8
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
12
13 app-crypt/rhash/Manifest | 1 +
14 app-crypt/rhash/rhash-1.3.8.ebuild | 77 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 78 insertions(+)
16
17 diff --git a/app-crypt/rhash/Manifest b/app-crypt/rhash/Manifest
18 index f83ea66c4fd..d06bfdcfc68 100644
19 --- a/app-crypt/rhash/Manifest
20 +++ b/app-crypt/rhash/Manifest
21 @@ -1,2 +1,3 @@
22 DIST rhash-1.3.6-src.tar.gz 328097 BLAKE2B c74993d183f0f2e479f0bd5831a9f653b9bd17bbed4d1ba896f6e33db98b7141175cd3c688dc41dfd8ec4b98acb51255ae5b795435cbc9dfb5ab77573cb25543 SHA512 54f7f238ed1fdc01c29cc1338fa86be90b69beff0df8f20d24ce9cb3c48c7f4668b84a3fe0d4d8b04b54bc8145485d493435edf3219de3a637af0f9c007c85c6
23 DIST rhash-1.3.7-src.tar.gz 362981 BLAKE2B bc248e0dcdf2337e46292f1bcdff0ce027705679ab937c8aa13139226bc09f3815ba23d8383f624dfba255c54378473f6b0b28a710611cdc83150055b8d649d0 SHA512 182f474b0f0a39f9e0adb7e34fcc5ddca6f00e75d7cf6b846da33af166257b2ed38be70aa71e6732c4e6cbdd156712790b8bc5340933b65f3ce57269835d1585
24 +DIST rhash-1.3.8-src.tar.gz 393544 BLAKE2B c326b3fa6dbc5ea2cce40105dc319456fdcc58140a05e8002bf1d92be921d8bbd27bf670370ba7cf2ff2001ff70ddbeb8efc9712869a7b215c5f51a5e493b5c9 SHA512 9dba4fa4dd49d323f2e440c5b93eac1ef62eb4046ec4ef611f0978c12c1739002f1ac1f1ec5e61bd359dc89e9ed612db71be91a795184ac5d5433280d27fa4c1
25
26 diff --git a/app-crypt/rhash/rhash-1.3.8.ebuild b/app-crypt/rhash/rhash-1.3.8.ebuild
27 new file mode 100644
28 index 00000000000..e179038547c
29 --- /dev/null
30 +++ b/app-crypt/rhash/rhash-1.3.8.ebuild
31 @@ -0,0 +1,77 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit toolchain-funcs multilib-minimal
38 +
39 +DESCRIPTION="Console utility and library for computing and verifying file hash sums"
40 +HOMEPAGE="http://rhash.anz.ru/"
41 +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
46 +IUSE="debug nls libressl ssl static-libs"
47 +
48 +RDEPEND="
49 + ssl? (
50 + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
51 + libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
52 +)"
53 +
54 +DEPEND="
55 + ${RDEPEND}
56 +"
57 +
58 +BDEPEND="
59 + nls? ( sys-devel/gettext )
60 +"
61 +
62 +S="${WORKDIR}/RHash-${PV}"
63 +
64 +src_prepare() {
65 + default
66 + # fix Solaris detection, upstream:
67 + # https://github.com/rhash/RHash/pull/81
68 + sed -i -e 's/sunos)/solaris2.*)/' configure || die
69 + multilib_copy_sources
70 +}
71 +
72 +multilib_src_configure() {
73 + set -- \
74 + ./configure \
75 + --target="${CHOST}" \
76 + --cc="$(tc-getCC)" \
77 + --ar="$(tc-getAR)" \
78 + --extra-cflags="${CFLAGS}" \
79 + --extra-ldflags="${LDFLAGS}" \
80 + --prefix="${EPREFIX}"/usr \
81 + --libdir="${EPREFIX}"/usr/$(get_libdir) \
82 + --sysconfdir="${EPREFIX}"/etc \
83 + --disable-openssl-runtime \
84 + --disable-static \
85 + --enable-lib-shared \
86 + $(use_enable debug) \
87 + $(use_enable nls gettext) \
88 + $(use_enable ssl openssl) \
89 + $(use_enable static-libs lib-static)
90 +
91 + echo "${@}"
92 + "${@}" || die "configure failed"
93 +}
94 +
95 +# We would add compile-gmo to the build targets but install-gmo always
96 +# recompiles unconditionally. :(
97 +
98 +multilib_src_install() {
99 + # -j1 needed due to race condition.
100 + emake DESTDIR="${D}" -j1 \
101 + install{,-lib-headers,-pkg-config} \
102 + $(use nls && echo install-gmo) \
103 + $(use kernel_Winnt || echo install-lib-so-link)
104 +}
105 +
106 +multilib_src_test() {
107 + emake test
108 +}