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