From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
Date: Wed, 29 Mar 2017 15:24:41 +0000 (UTC) [thread overview]
Message-ID: <1490801063.cf6e42842ac4cbeeea4b308ac420e6b42d0c8f54.whissi@gentoo> (raw)
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
+}
next reply other threads:[~2017-03-29 15:24 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-29 15:24 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-09-04 18:21 [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/ Arthur Zamarin
2022-08-28 5:55 Jakov Smolić
2022-08-23 18:10 Arthur Zamarin
2022-08-05 9:31 Arthur Zamarin
2021-05-16 0:03 Sam James
2019-12-31 3:17 Thomas Deutschmann
2019-04-20 1:29 Aaron Bauman
2019-01-03 19:12 Mikle Kolyada
2018-12-28 12:17 Sergei Trofimovich
2018-12-20 1:30 Thomas Deutschmann
2018-12-19 20:19 Mikle Kolyada
2018-11-07 21:18 Thomas Deutschmann
2018-08-03 1:19 Thomas Deutschmann
2018-07-23 19:00 Sergei Trofimovich
2018-07-22 15:18 Mikle Kolyada
2018-07-09 0:37 Mikle Kolyada
2018-07-04 3:17 Thomas Deutschmann
2018-05-21 19:02 Thomas Deutschmann
2018-04-26 22:00 Thomas Deutschmann
2018-03-28 5:05 Markus Meier
2018-02-11 10:36 Michał Górny
2018-02-10 0:32 Thomas Deutschmann
2018-01-28 16:08 Mikle Kolyada
2017-10-04 23:15 Thomas Deutschmann
2017-06-19 10:09 Alexis Ballier
2017-05-22 17:27 Thomas Deutschmann
2017-05-22 13:31 Agostino Sarubbo
2017-05-19 7:50 Jeroen Roovers
2017-02-21 20:39 Markus Meier
2017-01-20 5:06 Jeroen Roovers
2017-01-11 11:13 Aaron Bauman
2016-12-23 15:09 Markus Meier
2016-11-27 21:08 Thomas Deutschmann
2016-11-17 22:00 Thomas Deutschmann
2016-09-25 19:55 Jeroen Roovers
2016-08-28 18:48 Thomas Deutschmann
2016-08-24 0:57 Thomas Deutschmann
2016-08-10 20:44 Thomas Deutschmann
2016-08-10 20:44 Thomas Deutschmann
2016-08-04 8:45 Jeroen Roovers
2016-06-21 21:01 Michał Górny
2016-06-21 19:55 Michał Górny
2016-06-21 18:25 Markus Meier
2016-03-16 6:46 Ian Delaney
2016-03-16 6:46 Ian Delaney
2016-02-05 15:24 Lars Wendler
2015-12-25 15:13 Agostino Sarubbo
2015-12-21 6:42 Jeroen Roovers
2015-10-09 14:12 Lars Wendler
2015-08-21 11:56 Lars Wendler
2015-08-18 15:19 Lars Wendler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1490801063.cf6e42842ac4cbeeea4b308ac420e6b42d0c8f54.whissi@gentoo \
--to=whissi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox