mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-15 00:46:58 +02:00
app-crypt/rhash: Sync with Gentoo
It's from Gentoo commit 45e64375507d22fe1c3518631f07979553c98872.
This commit is contained in:
parent
a017a240cf
commit
7459559d6a
@ -1,2 +1,2 @@
|
|||||||
DIST rhash-1.4.3-src.tar.gz 429290 BLAKE2B d225aeae0b3a8fb2e093a9aef50cd07a790c7e9734e91114deef2ca8492c85261b8ed5dea45958e35e049ea888885175608962ea72297bdef48b00c52f51eaca SHA512 d87ffcde28d8f25cf775c279fed457e52d24523ed9b695629dae694b3c22372247d18f6032f8ce13a0b70fa2953be408982e46659daaa7c4ab227ae89eaed9c7
|
|
||||||
DIST rhash-1.4.4-src.tar.gz 435691 BLAKE2B f3d42f333ad9a82fe4a8ef5af5d8008abf526c05c06a00c7033881d5a27ba663c3cc5cefb73ea8157ac24cb10a50a4e500706d489e61a03dbaee74a4735d1722 SHA512 00a7e5e058b53ce20ae79509815452ed9cb699d1322b678220b72c61dea3ea2f8fa131acfade8bb6d9f6af913f0c3c472330841181b22314b8755166310c946f
|
DIST rhash-1.4.4-src.tar.gz 435691 BLAKE2B f3d42f333ad9a82fe4a8ef5af5d8008abf526c05c06a00c7033881d5a27ba663c3cc5cefb73ea8157ac24cb10a50a4e500706d489e61a03dbaee74a4735d1722 SHA512 00a7e5e058b53ce20ae79509815452ed9cb699d1322b678220b72c61dea3ea2f8fa131acfade8bb6d9f6af913f0c3c472330841181b22314b8755166310c946f
|
||||||
|
DIST rhash-1.4.5-src.tar.gz 444526 BLAKE2B 11021119e8af28e12491eabd55232e24a056bce79b624c970e4806c28fe707ea1395eb390572dba3453900d4512e5896d70642370d0c9340359e2fee95d62c8d SHA512 49bd6aa2497efc4871ae31eaca51d2dc78ceb7126311557d5280b14fafe9355eaecad37f0f78f865e4e1dd1aeb506d3301989cd2f9fff7b0091c81978e8c2f2e
|
||||||
|
@ -1,89 +0,0 @@
|
|||||||
# Copyright 1999-2024 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
inherit flag-o-matic toolchain-funcs multilib-minimal
|
|
||||||
|
|
||||||
DESCRIPTION="Console utility and library for computing and verifying file hash sums"
|
|
||||||
HOMEPAGE="https://rhash.sourceforge.net/"
|
|
||||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="0BSD"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
|
||||||
IUSE="debug nls ssl static-libs"
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
ssl? (
|
|
||||||
dev-libs/openssl:0=[${MULTILIB_USEDEP}]
|
|
||||||
)"
|
|
||||||
|
|
||||||
DEPEND="
|
|
||||||
${RDEPEND}
|
|
||||||
"
|
|
||||||
|
|
||||||
BDEPEND="
|
|
||||||
nls? ( sys-devel/gettext )
|
|
||||||
"
|
|
||||||
|
|
||||||
S="${WORKDIR}/RHash-${PV}"
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
if [[ ${CHOST} == *-darwin* && ${CHOST##*darwin} -le 9 ]] ; then
|
|
||||||
# we lack posix_memalign
|
|
||||||
sed -i -e '/if _POSIX_VERSION/s/if .*$/if 0/' \
|
|
||||||
librhash/util.h || die
|
|
||||||
fi
|
|
||||||
|
|
||||||
multilib_copy_sources
|
|
||||||
}
|
|
||||||
|
|
||||||
multilib_src_configure() {
|
|
||||||
# ideally we want !tc-ld-is-bfd for best future-proofing, but it needs
|
|
||||||
# https://github.com/gentoo/gentoo/pull/28355
|
|
||||||
# mold needs this too but right now tc-ld-is-mold is also not available
|
|
||||||
if tc-ld-is-lld; then
|
|
||||||
append-ldflags -Wl,--undefined-version
|
|
||||||
fi
|
|
||||||
|
|
||||||
set -- \
|
|
||||||
./configure \
|
|
||||||
--target="${CHOST}" \
|
|
||||||
--cc="$(tc-getCC)" \
|
|
||||||
--ar="$(tc-getAR)" \
|
|
||||||
--extra-cflags="${CFLAGS}" \
|
|
||||||
--extra-ldflags="${LDFLAGS}" \
|
|
||||||
--prefix="${EPREFIX}"/usr \
|
|
||||||
--libdir="${EPREFIX}"/usr/$(get_libdir) \
|
|
||||||
--sysconfdir="${EPREFIX}"/etc \
|
|
||||||
--disable-openssl-runtime \
|
|
||||||
--disable-static \
|
|
||||||
--enable-lib-shared \
|
|
||||||
$(use_enable debug) \
|
|
||||||
$(use_enable nls gettext) \
|
|
||||||
$(use_enable ssl openssl) \
|
|
||||||
$(use_enable static-libs lib-static)
|
|
||||||
|
|
||||||
echo "${@}"
|
|
||||||
"${@}" || die "configure failed"
|
|
||||||
}
|
|
||||||
|
|
||||||
multilib_src_compile() {
|
|
||||||
emake all \
|
|
||||||
$(multilib_is_native_abi && use nls && echo compile-gmo)
|
|
||||||
}
|
|
||||||
|
|
||||||
multilib_src_install() {
|
|
||||||
# -j1 needed due to race condition.
|
|
||||||
emake DESTDIR="${D}" -j1 \
|
|
||||||
install{,-lib-headers,-pkg-config} \
|
|
||||||
$(multilib_is_native_abi && use nls && echo install-gmo) \
|
|
||||||
install-lib-so-link
|
|
||||||
}
|
|
||||||
|
|
||||||
multilib_src_test() {
|
|
||||||
emake test
|
|
||||||
}
|
|
@ -11,7 +11,7 @@ SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz"
|
|||||||
|
|
||||||
LICENSE="0BSD"
|
LICENSE="0BSD"
|
||||||
SLOT="0/1"
|
SLOT="0/1"
|
||||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||||
IUSE="debug nls ssl static-libs"
|
IUSE="debug nls ssl static-libs"
|
||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
|
@ -8,6 +8,7 @@ inherit flag-o-matic toolchain-funcs multilib-minimal
|
|||||||
DESCRIPTION="Console utility and library for computing and verifying file hash sums"
|
DESCRIPTION="Console utility and library for computing and verifying file hash sums"
|
||||||
HOMEPAGE="https://rhash.sourceforge.net/"
|
HOMEPAGE="https://rhash.sourceforge.net/"
|
||||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz"
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz"
|
||||||
|
S="${WORKDIR}/RHash-${PV}"
|
||||||
|
|
||||||
LICENSE="0BSD"
|
LICENSE="0BSD"
|
||||||
SLOT="0/1"
|
SLOT="0/1"
|
||||||
@ -27,12 +28,6 @@ BDEPEND="
|
|||||||
nls? ( sys-devel/gettext )
|
nls? ( sys-devel/gettext )
|
||||||
"
|
"
|
||||||
|
|
||||||
S="${WORKDIR}/RHash-${PV}"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}"/${P}-prefix.patch
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
src_prepare() {
|
||||||
default
|
default
|
||||||
|
|
||||||
@ -54,12 +49,7 @@ src_prepare() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
multilib_src_configure() {
|
multilib_src_configure() {
|
||||||
# ideally we want !tc-ld-is-bfd for best future-proofing, but it needs
|
append-ldflags $(test-flags-CCLD -Wl,--undefined-version)
|
||||||
# https://github.com/gentoo/gentoo/pull/28355
|
|
||||||
# mold needs this too but right now tc-ld-is-mold is also not available
|
|
||||||
if tc-ld-is-lld; then
|
|
||||||
append-ldflags -Wl,--undefined-version
|
|
||||||
fi
|
|
||||||
|
|
||||||
set -- \
|
set -- \
|
||||||
./configure \
|
./configure \
|
Loading…
Reference in New Issue
Block a user