mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
dev-libs/ell: add 0.80
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
This commit is contained in:
parent
58bf445ec5
commit
971755b91a
@ -1,3 +1,4 @@
|
||||
DIST ell-0.77.tar.xz 594024 BLAKE2B 7080b66ecd1428bef6dec21bcc32f17db41cfdce23c794b414177874989d77e6de9fa534b16467542f5614162162b6891d79aa7df4c78ebbea67d4abb68521ce SHA512 6a93c25d891b0f68481b9bba5ae4598fa7e4538eeee6f632a6183a8d10eb9c86c38fda7bebb3c79fb7152302a2694fe702ec0f1189925c7506563f488b447718
|
||||
DIST ell-0.78.tar.xz 593856 BLAKE2B 1bdbc25cf90dec8281e4710c2eba38063aeacef45397233456bd49feb7d195dd47b55f3e71f7406aa5df7f3f20a9c6a27dd69429813b760cf9dbfe332a20a5ce SHA512 481f9e6e7a4448d522400a74b99996633c5c61896da166bddeaa0eeb75c9684540fa6ffea2ac6f7932088e35362375d050993e189eb2b7a69b0dfddee984e81c
|
||||
DIST ell-0.79.tar.xz 594072 BLAKE2B 96ff909a058f8fda6c5c73e7f87fcc2d9c64f7d7643b7e50db810f37c3f78f3d72b44bff8b55884c5646145fd48c9f1deb31c1a0e7ee0f554d6ce97b45ff994e SHA512 59223a486c8057aa46bd583148804cd2a0cd060d717452d1e9092fe24c89cd9968862233bc5377f6ff0a8aa3023a5a35143c3bb57cb059c9f92d4fc7faf8a3ec
|
||||
DIST ell-0.80.tar.xz 592680 BLAKE2B 8803cd0f0102c3fd585a4bab73707d2a77892b6876999a98172d995a3fd30315b9e9a7f72dd165c1d08f90059a61c5264f9b1b126387e0c265b23845c8c66792 SHA512 fd6495942832cbe4b0d2c001b69a06ea37c084431d470697ed561d66b77d46e0f7474534b643ac3553b2aeef27dc0fb1dfd84bb37df97725fb8537ef1f63c680
|
||||
|
||||
59
dev-libs/ell/ell-0.80.ebuild
Normal file
59
dev-libs/ell/ell-0.80.ebuild
Normal file
@ -0,0 +1,59 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit flag-o-matic linux-info
|
||||
|
||||
DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons"
|
||||
HOMEPAGE="https://git.kernel.org/pub/scm/libs/ell/ell.git"
|
||||
if [[ "${PV}" == *9999 ]] ; then
|
||||
inherit autotools git-r3
|
||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git"
|
||||
else
|
||||
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
||||
fi
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="pie test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND="test? ( sys-apps/dbus )"
|
||||
|
||||
CONFIG_CHECK="
|
||||
~TIMERFD
|
||||
~EVENTFD
|
||||
~CRYPTO_USER_API
|
||||
~CRYPTO_USER_API_HASH
|
||||
~CRYPTO_MD5
|
||||
~CRYPTO_SHA1
|
||||
~KEY_DH_OPERATIONS
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i -e "s#/tmp/ell-test-bus#/tmp/ell-test-bus-$(uuidgen)#" \
|
||||
unit/test-dbus*.c unit/dbus.conf || die
|
||||
[[ "${PV}" == *9999 ]] && eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cflags "-fsigned-char" #662694
|
||||
local myeconfargs=(
|
||||
$(use_enable pie)
|
||||
)
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${ED}" -name "*.la" -delete || die
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# New dbus tests fail with >3 jobs, this should get fixed soon
|
||||
emake -j1 check
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user