Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbsd/
Date: Tue, 24 Aug 2021 13:39:20
Message-Id: 1629812231.13989e98c940b7d071b78ea83a43c92e62637173.asturm@gentoo
1 commit: 13989e98c940b7d071b78ea83a43c92e62637173
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 24 09:47:33 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 24 13:37:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13989e98
7
8 dev-libs/libbsd: Drop 0.10.0
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/libbsd/Manifest | 1 -
14 dev-libs/libbsd/libbsd-0.10.0.ebuild | 40 ------------------------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/dev-libs/libbsd/Manifest b/dev-libs/libbsd/Manifest
18 index d24a2a7fc16..b181adc564f 100644
19 --- a/dev-libs/libbsd/Manifest
20 +++ b/dev-libs/libbsd/Manifest
21 @@ -1,2 +1 @@
22 -DIST libbsd-0.10.0.tar.xz 393576 BLAKE2B 66005a511dae7fb799322c813b8ea058ab460e3b9044756d6efad5de741d8f70270496f09803bbce8cd0000ff37e998f18e092037c850826c3c8e3f47ddfdb28 SHA512 b75529785b16c93d31401187f8a58258fbebe565dac071c8311775c913af989f62cd29d5ce2651af3ea6221cffd31cf04826577d3e546ab9ca14340f297777b9
23 DIST libbsd-0.11.3.tar.xz 399712 BLAKE2B 1af04b8fcbc0bfa59fba549639d61a33ac934fe7ee42b506d1b0452e0b836b0bfdd3d8739de90465be46fe6a9d326a2d11bcf72280aa19ccba81db5da6d63d89 SHA512 a7015ea1ffa3766b1a4690526a25231898ad8275149b31fb6801082450172249997c36165626d101ffce53b59767a46676eebc0806426922fe4e773a0376c1f5
24
25 diff --git a/dev-libs/libbsd/libbsd-0.10.0.ebuild b/dev-libs/libbsd/libbsd-0.10.0.ebuild
26 deleted file mode 100644
27 index ba68dc9c223..00000000000
28 --- a/dev-libs/libbsd/libbsd-0.10.0.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit multilib-minimal
36 -
37 -DESCRIPTION="An library to provide useful functions commonly found on BSD systems"
38 -HOMEPAGE="https://libbsd.freedesktop.org/wiki/ https://gitlab.freedesktop.org/libbsd/libbsd"
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 ~riscv ~s390 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://gitlab.freedesktop.org/libbsd/libbsd/commit/c5b959028734ca2281250c85773d9b5e1d259bc8
64 - ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
65 -}
66 -
67 -multilib_src_install() {
68 - emake DESTDIR="${D}" install
69 - find "${ED}" -type f -name "*.la" -delete || die
70 -}