commit:     cf6e42842ac4cbeeea4b308ac420e6b42d0c8f54
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 15:23:35 2017 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 15:24:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6e4284

dev-libs/liblognorm: Bump to v2.0.3

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-libs/liblognorm/Manifest                |  1 +
 dev-libs/liblognorm/liblognorm-2.0.3.ebuild | 75 +++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 9cc3b38542c..55696d33fe0 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -2,3 +2,4 @@ DIST liblognorm-1.1.0.tar.gz 499355 SHA256 
2ddff2ee893c9268e19868f19dc4d8037e3d2
 DIST liblognorm-1.1.2.tar.gz 547224 SHA256 
935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 
d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00
 WHIRLPOOL 
616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
 DIST liblognorm-2.0.1.tar.gz 657390 SHA256 
6a7fda0da2791a87c808fbfde1af20e6463e3ff73496aae7756e3440f3bc5b75 SHA512 
557ba4180d764c04edabe6292a44f5340c5b1f7ac2390a4068711be4ad6da7429e651bc2230d6ff9cc6c58cd6a6c59149f20083de8cf4d8239d95f86db39565f
 WHIRLPOOL 
ae89d7f34b673f14103574966e72b508d69a00e7f8d13eb5e9665c83303606da729001d7bb0712f96de8c4df63b3c75df90f52ec937b793a503d0062912acd6a
 DIST liblognorm-2.0.2.tar.gz 658976 SHA256 
1689453feb4fa5343475cc08379d9e3f0f4c767a3669aa6adb553905d14447db SHA512 
7cb1e20c895859072b9d6f0b3c2dd89874192dce6d11878a4c3eb0b0d9f1691d97205a61290e9cd07deeaa71c58f5fb6a4c1f14bd206119d690cf84c107ccbe4
 WHIRLPOOL 
46484771236067fd903d71ab17f25a513378f5aba0f59a8b3f563873aa5b56908f23ff668dfe2a4f30ade415cc7dc26b12934ccf2bad5d2521bcf6505d45a8e8
+DIST liblognorm-2.0.3.tar.gz 660680 SHA256 
a0c670b1f4ad0cb79dba0a4c16d9c3e8109596b5cdd744990e2924b79fd3dab3 SHA512 
8f343f3029c506a9c060b1b55e478da9ceedc1fbf27ca53a991ffbddb397383adfee2d79beb174a6c997599ee3c0fa4bbc9925fa850e5bf4f4d7b181ddae7cdb
 WHIRLPOOL 
cef991d499ad893e67c0bd7c98b35ed41bf729104ec1d7d3cf7c23b0f59cadc3b95722cab7e487b09ba376f14b400cadc2f5b7731800f7da9cd1ad4b7c8b83eb

diff --git a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild 
b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
new file mode 100644
index 00000000000..4c18e2630cf
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="Fast samples-based log normalization library"
+HOMEPAGE="http://www.liblognorm.com";
+
+if [[ ${PV} == "9999" ]]; then
+       EGIT_REPO_URI="
+               git://github.com/rsyslog/${PN}.git
+               https://github.com/rsyslog/${PN}.git
+       "
+
+       inherit git-r3
+else
+       SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz";
+       KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+fi
+
+LICENSE="LGPL-2.1 Apache-2.0"
+SLOT="0/5.1.0"
+IUSE="debug doc static-libs test"
+
+RDEPEND="
+       >=dev-libs/libestr-0.1.3
+       >=dev-libs/libfastjson-0.99.2:=
+"
+
+DEPEND="
+       ${RDEPEND}
+       >=sys-devel/autoconf-archive-2015.02.04
+       virtual/pkgconfig
+       doc? ( >=dev-python/sphinx-1.2.2 )
+"
+
+DOCS=( ChangeLog )
+
+src_prepare() {
+       default
+
+       eautoreconf
+}
+
+src_configure() {
+       # regexp disabled due to 
https://github.com/rsyslog/liblognorm/issues/143
+       local myeconfargs=(
+               --enable-compile-warnings=yes
+               --disable-Werror
+               $(use_enable doc docs)
+               $(use_enable test testbench)
+               $(use_enable debug)
+               $(use_enable static-libs static)
+               --disable-regexp
+       )
+
+       econf "${myeconfargs[@]}"
+}
+
+src_test() {
+       # When adding new tests via patches we have to make them executable
+       einfo "Adjusting permissions of test scripts ..."
+       find "${S}"/tests -type f -name '*.sh' \! -perm -111 -exec chmod a+x 
'{}' \; || \
+               die "Failed to adjust test scripts permission"
+
+       emake --jobs 1 check
+}
+
+src_install() {
+       default
+
+       find "${ED}"usr/lib* -name '*.la' -delete || die
+}

Reply via email to