Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/
Date: Fri, 25 Feb 2022 12:47:24
Message-Id: 1645793235.7fa9e1106b81acaad9777381fa8fe585f2e93d07.bkohler@gentoo
1 commit: 7fa9e1106b81acaad9777381fa8fe585f2e93d07
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 25 12:44:09 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 25 12:47:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa9e110
7
8 dev-libs/ell: bump to 0.49
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 dev-libs/ell/Manifest | 1 +
14 dev-libs/ell/ell-0.49.ebuild | 54 ++++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/dev-libs/ell/Manifest b/dev-libs/ell/Manifest
18 index b38ecba57e59..ef8e1ad11104 100644
19 --- a/dev-libs/ell/Manifest
20 +++ b/dev-libs/ell/Manifest
21 @@ -1,3 +1,4 @@
22 DIST ell-0.46.tar.xz 531420 BLAKE2B aea36c7faf75bdc282805e4c003877cfe3fc8ff31fcb1ec85a666481b5d574091876b5021259797411d102d7ae6057a79a600e89fa34da038d44863a840db78a SHA512 20a25dbcb7c93a7c29a87cd07ab6124d0915d382f588e2a808e3f7e330d00a6769f40d91264d505408eeae3c6d07ce3917e04d843b4d04c73cc7c9f01395ecc4
23 DIST ell-0.47.tar.xz 531432 BLAKE2B 74c4a9d40f42eca3b105fa2433b3c8472df24bb185dacfba8f4978edeac79b94a1c7ef3c009eed3a3303125e7f3f26e08e046ebb1d913870d4f298806dc34119 SHA512 103708ea625d8eb63e5a662fc7fdd0f59cd3610c4d6de7ac2cceef89e30f8896d14a7b756047a3b046035544bcf80992aec786f06678047895cf0e3c791b8daa
24 DIST ell-0.48.tar.xz 528916 BLAKE2B 3ab2a90afdedd0ebc8ac0efd69f52189a93f408db7b35e3a1a85e72ebe5884ed0c833ff1835b390925a406147d207b99328388f09124c34b935fc84f33e93339 SHA512 481b94c0aac91f26c9e618db2590f132265c07460e86c443ecac033a78566ce0e86a7c8f0ab7b2a954073ebbe66ed0303281776b82f751fa2b4d3aaf40e55dc2
25 +DIST ell-0.49.tar.xz 530072 BLAKE2B 76823742261b319a60fa34a086e4f328459c12fa2e53c2fc0397968a7c5914eac019598f927853697c3aa3c8afc389758bf4ca31f3b6315b09d6bdccf0244a88 SHA512 9bac4312ebe85bd6903bd9665551e9f1de4cfc6914659cea28355363502f8968ac842b3579ac8efcb0721cb5a1f3f16dca80f02235f3675a24f13eb250ed3aea
26
27 diff --git a/dev-libs/ell/ell-0.49.ebuild b/dev-libs/ell/ell-0.49.ebuild
28 new file mode 100644
29 index 000000000000..56c48e4f83d1
30 --- /dev/null
31 +++ b/dev-libs/ell/ell-0.49.ebuild
32 @@ -0,0 +1,54 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit flag-o-matic linux-info multilib-minimal
39 +
40 +DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons"
41 +HOMEPAGE="https://01.org/ell"
42 +if [[ "${PV}" == *9999 ]] ; then
43 + inherit autotools git-r3
44 + EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git"
45 +else
46 + SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz"
47 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
48 +fi
49 +LICENSE="LGPL-2.1"
50 +SLOT="0"
51 +
52 +IUSE="pie test"
53 +RESTRICT="!test? ( test )"
54 +
55 +RDEPEND=""
56 +DEPEND="test? ( sys-apps/dbus )"
57 +
58 +CONFIG_CHECK="
59 + ~TIMERFD
60 + ~EVENTFD
61 + ~CRYPTO_USER_API
62 + ~CRYPTO_USER_API_HASH
63 + ~CRYPTO_MD5
64 + ~CRYPTO_SHA1
65 + ~KEY_DH_OPERATIONS
66 +"
67 +
68 +src_prepare() {
69 + default
70 + [[ "${PV}" == *9999 ]] && eautoreconf
71 +}
72 +
73 +multilib_src_configure() {
74 + append-cflags "-fsigned-char" #662694
75 + local myeconfargs=(
76 + $(use_enable pie)
77 + )
78 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
79 +}
80 +
81 +multilib_src_install_all() {
82 + local DOCS=( ChangeLog README )
83 + einstalldocs
84 +
85 + find "${ED}" -name "*.la" -delete || die
86 +}