Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbsd/
Date: Tue, 30 Jan 2018 08:08:59
Message-Id: 1517299726.003bf3eb97374f1ec5bf4fc119bf008a0c99da09.polynomial-c@gentoo
1 commit: 003bf3eb97374f1ec5bf4fc119bf008a0c99da09
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 30 08:05:56 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 30 08:08:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=003bf3eb
7
8 dev-libs/libbsd: Bump to version 0.8.7
9
10 Package-Manager: Portage-2.3.20, Repoman-2.3.6
11
12 dev-libs/libbsd/Manifest | 1 +
13 dev-libs/libbsd/libbsd-0.8.7.ebuild | 40 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-libs/libbsd/Manifest b/dev-libs/libbsd/Manifest
17 index 1b65803dc03..bf8ec01233e 100644
18 --- a/dev-libs/libbsd/Manifest
19 +++ b/dev-libs/libbsd/Manifest
20 @@ -1,3 +1,4 @@
21 DIST libbsd-0.8.3.tar.xz 356772 BLAKE2B 7f45f0300e170f02a0c7d4d0e8d3b56b10035af5a0c5749695978fff549c11ae2d13fa8c85e07b059dc30f458d6b0f7fe36129c934070a77ae185f8be0a4e0c3 SHA512 155b895d6bd62b180718d65a2cda7484946c492d52735a57b51005705dfe4528b6a72e8745acea47b01fe68e3bbbe3c036c5e9998a8d06fc79efe2b96a04767f
22 DIST libbsd-0.8.5.tar.xz 370680 BLAKE2B fd6ec5994d1a13bb46d9edea4c6df8bebfe86f979aebb372f4f22dff50d9127bcd400dbc22209224717576b40b42b288dc69433128258705dd23c3cd752f0fd7 SHA512 bb122862ce8b789e530e9ca1a777d4219db2066ad89fe6028a833a5dc33ac0cd6b553ef5a0a42962d4a594c1f410304fd553b8fab583db539989ec7cca85baf0
23 DIST libbsd-0.8.6.tar.xz 371112 BLAKE2B adab6c17267e0cff128351efccf5c1225b7dd85dc61dd8168bf212ba5aff8d726fa5be687c041821af9a427ddad9dfcd3630cac9134b9e81c86ab2599e43aef9 SHA512 ece01ced324f840c2cee6321c7dcf97ff123d55ea9f203c1ce35e1b46643dc7b34ef6dc6c8d128252b36848624850b40823411cc96b99a66a401eb1e9d8cea6b
24 +DIST libbsd-0.8.7.tar.xz 371772 BLAKE2B aa4aa1c19872edf9e7e6ed270275199366345531a48ee28c25e209f17c5403a22269b91ab1c806cb1b54ba33a8464f4b035fe7ee2bc5dddd0a4fda09c540b058 SHA512 605a14eb5d33c0e45c3bd29e585ebc15832e2ed1efa9356291a0562622168da96db1a20766e9dae8910ea0c1516429f43905edc8d4f2a40a5a341a689d08fcc3
25
26 diff --git a/dev-libs/libbsd/libbsd-0.8.7.ebuild b/dev-libs/libbsd/libbsd-0.8.7.ebuild
27 new file mode 100644
28 index 00000000000..bde7f808bf8
29 --- /dev/null
30 +++ b/dev-libs/libbsd/libbsd-0.8.7.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +inherit multilib-minimal
37 +
38 +DESCRIPTION="An library to provide useful functions commonly found on BSD systems"
39 +HOMEPAGE="https://libbsd.freedesktop.org/wiki/"
40 +SRC_URI="https://${PN}.freedesktop.org/releases/${P}.tar.xz"
41 +
42 +LICENSE="BSD BSD-2 BSD-4 ISC"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
45 +IUSE="static-libs"
46 +
47 +DEPEND=">=sys-kernel/linux-headers-3.17"
48 +RDEPEND=""
49 +
50 +pkg_setup() {
51 + local f="${EROOT}/usr/$(get_libdir)/${PN}.a"
52 + local m="You need to remove ${f} by hand or re-emerge sys-libs/glibc first."
53 + if ! has_version ${CATEGORY}/${PN}; then
54 + if [[ -e ${f} ]]; then
55 + eerror "${m}"
56 + die "${m}"
57 + fi
58 + fi
59 +}
60 +
61 +multilib_src_configure() {
62 + # The build system will install libbsd-ctor.a despite of USE="-static-libs"
63 + # which is correct, see:
64 + # https://cgit.freedesktop.org/libbsd/commit/?id=c5b959028734ca2281250c85773d9b5e1d259bc8
65 + ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
66 +}
67 +
68 +multilib_src_install() {
69 + emake DESTDIR="${D}" install
70 + find "${ED}" -name "*.la" -delete || die
71 +}