Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
Date: Tue, 31 Dec 2019 03:17:41
Message-Id: 1577762076.7e249ccdde39148602e2f78853f82ea4b272c2aa.whissi@gentoo
1 commit: 7e249ccdde39148602e2f78853f82ea4b272c2aa
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 03:14:36 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 31 03:14:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e249ccd
7
8 dev-libs/liblognorm: drop old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-libs/liblognorm/Manifest | 1 -
14 dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 73 -----------------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
18 index f3c4465da4b..b75714abb16 100644
19 --- a/dev-libs/liblognorm/Manifest
20 +++ b/dev-libs/liblognorm/Manifest
21 @@ -1,2 +1 @@
22 -DIST liblognorm-2.0.5.tar.gz 667709 BLAKE2B 9f2a774c2378caa460a1f11e21570e719f83e782c5731a35921099b1b31397495ea2a4baebd489d186526eb2d011f2ab30d971713a8083c1ae02168d3f632ce8 SHA512 2b36fabfa8b751127d47f307833414d339ae43bad5b687ce6ac42a961021f9a515703ca0c4808e098ef49be3a943abdbf307f90995a2331c6e266167ef041d00
23 DIST liblognorm-2.0.6.tar.gz 666712 BLAKE2B 4c3e46fbd9a3eaf6c429872d30c0fe93f1255dbf3cc14efc82ab94d70ef45c5560c50644e0e23dc63777ddbc405d0f3fb911975d06fd6f6cdee6f7b98ff10b74 SHA512 0b4ee55eb54920dd096fdd6d6dcc2263bc52e74442d86503bfebf26b31492a8c1b67cb3b709ecc8b96cc53252151515719027306b2b6f7ba3404adc5a48cf125
24
25 diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
26 deleted file mode 100644
27 index 4454eb1aea1..00000000000
28 --- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Fast samples-based log normalization library"
39 -HOMEPAGE="https://www.liblognorm.com"
40 -
41 -if [[ ${PV} == "9999" ]]; then
42 - EGIT_REPO_URI="https://github.com/rsyslog/${PN}.git"
43 -
44 - inherit git-r3
45 -else
46 - SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
47 - KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
48 -fi
49 -
50 -LICENSE="LGPL-2.1 Apache-2.0"
51 -SLOT="0/5.1.0"
52 -IUSE="debug doc static-libs test"
53 -RESTRICT="!test? ( test )"
54 -
55 -RDEPEND="
56 - >=dev-libs/libestr-0.1.3
57 - >=dev-libs/libfastjson-0.99.2:=
58 -"
59 -
60 -DEPEND="
61 - ${RDEPEND}
62 - >=sys-devel/autoconf-archive-2015.02.04
63 - virtual/pkgconfig
64 - doc? ( >=dev-python/sphinx-1.2.2 )
65 -"
66 -
67 -DOCS=( ChangeLog )
68 -
69 -src_prepare() {
70 - default
71 -
72 - eautoreconf
73 -}
74 -
75 -src_configure() {
76 - # regexp disabled due to https://github.com/rsyslog/liblognorm/issues/143
77 - local myeconfargs=(
78 - --enable-compile-warnings=yes
79 - --disable-Werror
80 - $(use_enable doc docs)
81 - $(use_enable test testbench)
82 - $(use_enable debug)
83 - $(use_enable static-libs static)
84 - --disable-regexp
85 - )
86 -
87 - econf "${myeconfargs[@]}"
88 -}
89 -
90 -src_test() {
91 - # When adding new tests via patches we have to make them executable
92 - einfo "Adjusting permissions of test scripts ..."
93 - find "${S}"/tests -type f -name '*.sh' \! -perm -111 -exec chmod a+x '{}' \; || \
94 - die "Failed to adjust test scripts permission"
95 -
96 - emake --jobs 1 check
97 -}
98 -
99 -src_install() {
100 - default
101 -
102 - find "${ED}"usr/lib* -name '*.la' -delete || die
103 -}