Gentoo Archives: gentoo-commits

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