* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2015-08-18 15:19 Lars Wendler
0 siblings, 0 replies; 52+ messages in thread
From: Lars Wendler @ 2015-08-18 15:19 UTC (permalink / raw
To: gentoo-commits
commit: 34e6f1a81bbc0985980d8481bf533c7e3d2edb82
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 15:17:15 2015 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 15:17:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e6f1a8
dev-libs/liblognorm: Version bump.
Thanks to Whissi for providing the ebuild and to Ultrabug for
kindly permitting the commit.
Package-Manager: portage-2.2.20.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-1.1.2.ebuild | 52 +++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 0873873..89eafa3 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -2,3 +2,4 @@ DIST liblognorm-0.3.6.tar.gz 345483 SHA256 e2cf27027905c7be91c891b5ac9304a88a5c1
DIST liblognorm-0.3.7.tar.gz 346903 SHA256 b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 SHA512 f7dac7b913d61cc86bf55d0278ae96055e5336ba304fefb3abf4604976f1713ad5e6bba983a1d29b71cac987e9587e5310454e9ae9e07c3f332cd2ce329c9164 WHIRLPOOL 521ea13c8311fa9411bfc026b7a6118e8a34dafcdc298b9ff8115c555bf7614f7afb3f49f806b9bbbc377f97e9d95402261f515b7cd55dcd9f45c40c89d1ad38
DIST liblognorm-1.0.1.tar.gz 475226 SHA256 1f6cdfd901a8f6a97a3cb74bc6107c6746b3e9381f7889e4cd866a488e0c59a5 SHA512 89425d612d4b256f15b224d255c05550a0ac5eae19b886646bd618a49eedb17cf4d4ab641b238ccc9bbd8b6418c53cba04a42977b9cb2804d0380f539ad77782 WHIRLPOOL 72581b4b32bbacb476a0405ac68c44d6f5d364b866ddd3f32c620359dbde07ccf787bde2a86165308020bd820b6c4edfe9764a76c5fccbbee4c865be9cccab25
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
+DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
diff --git a/dev-libs/liblognorm/liblognorm-1.1.2.ebuild b/dev-libs/liblognorm/liblognorm-1.1.2.ebuild
new file mode 100644
index 0000000..5c28073
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-1.1.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_IN_SOURCE_BUILD=1
+AUTOTOOLS_AUTORECONF="yes"
+
+inherit autotools-utils
+
+DESCRIPTION="Fast samples-based log normalization library"
+HOMEPAGE="http://www.liblognorm.com"
+SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/2"
+KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+IUSE="debug doc pcre static-libs test"
+
+RDEPEND="
+ >=dev-libs/json-c-0.11:=
+ >=dev-libs/libestr-0.1.3
+ pcre? ( >=dev-libs/libpcre-8.35 )
+"
+
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ doc? ( >=dev-python/sphinx-1.2.2 )
+"
+
+DOCS=( ChangeLog )
+
+PATCHES=(
+ "${FILESDIR}"/respect_CFLAGS.patch
+)
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable doc docs)
+ $(use_enable pcre regexp)
+ $(use_enable test testbench)
+ )
+
+ autotools-utils_src_configure
+}
+
+src_test() {
+ emake --jobs 1 check
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2015-08-21 11:56 Lars Wendler
0 siblings, 0 replies; 52+ messages in thread
From: Lars Wendler @ 2015-08-21 11:56 UTC (permalink / raw
To: gentoo-commits
commit: 2a68d68c89b4018cdd2bf985e7327b4bb65bc3af
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 21 11:51:03 2015 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 11:51:03 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a68d68c
dev-libs/liblognorm: Added version 1.1.1
(Version 1.1.2 is broken and needs to be masked)
Package-Manager: portage-2.2.20.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-1.1.1.ebuild | 52 +++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 89eafa3..434e547 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -2,4 +2,5 @@ DIST liblognorm-0.3.6.tar.gz 345483 SHA256 e2cf27027905c7be91c891b5ac9304a88a5c1
DIST liblognorm-0.3.7.tar.gz 346903 SHA256 b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 SHA512 f7dac7b913d61cc86bf55d0278ae96055e5336ba304fefb3abf4604976f1713ad5e6bba983a1d29b71cac987e9587e5310454e9ae9e07c3f332cd2ce329c9164 WHIRLPOOL 521ea13c8311fa9411bfc026b7a6118e8a34dafcdc298b9ff8115c555bf7614f7afb3f49f806b9bbbc377f97e9d95402261f515b7cd55dcd9f45c40c89d1ad38
DIST liblognorm-1.0.1.tar.gz 475226 SHA256 1f6cdfd901a8f6a97a3cb74bc6107c6746b3e9381f7889e4cd866a488e0c59a5 SHA512 89425d612d4b256f15b224d255c05550a0ac5eae19b886646bd618a49eedb17cf4d4ab641b238ccc9bbd8b6418c53cba04a42977b9cb2804d0380f539ad77782 WHIRLPOOL 72581b4b32bbacb476a0405ac68c44d6f5d364b866ddd3f32c620359dbde07ccf787bde2a86165308020bd820b6c4edfe9764a76c5fccbbee4c865be9cccab25
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
+DIST liblognorm-1.1.1.tar.gz 521231 SHA256 a75db38419356f8638c29e817806328db1a9edbef258c789a15b2aa88a4522f2 SHA512 1d3715c1314109e228d1f45dbb0a09cab32998613cd0a6bd1428143145847a4d066fc1abcdb4315d9c550f9cf2c00f44cc8f0541e6ef44c5f22eb810ca225411 WHIRLPOOL 3e367809e6bc5c7930fd2444fea94107ad192c098d4bb9f5a93d638a18f8a698d3bdb4c62937f3b9995ce35ab1500c4b58ab86e11bbf317e0dd31783d2298722
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
diff --git a/dev-libs/liblognorm/liblognorm-1.1.1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.1.ebuild
new file mode 100644
index 0000000..5c28073
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-1.1.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_IN_SOURCE_BUILD=1
+AUTOTOOLS_AUTORECONF="yes"
+
+inherit autotools-utils
+
+DESCRIPTION="Fast samples-based log normalization library"
+HOMEPAGE="http://www.liblognorm.com"
+SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/2"
+KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+IUSE="debug doc pcre static-libs test"
+
+RDEPEND="
+ >=dev-libs/json-c-0.11:=
+ >=dev-libs/libestr-0.1.3
+ pcre? ( >=dev-libs/libpcre-8.35 )
+"
+
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ doc? ( >=dev-python/sphinx-1.2.2 )
+"
+
+DOCS=( ChangeLog )
+
+PATCHES=(
+ "${FILESDIR}"/respect_CFLAGS.patch
+)
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable doc docs)
+ $(use_enable pcre regexp)
+ $(use_enable test testbench)
+ )
+
+ autotools-utils_src_configure
+}
+
+src_test() {
+ emake --jobs 1 check
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2015-10-09 14:12 Lars Wendler
0 siblings, 0 replies; 52+ messages in thread
From: Lars Wendler @ 2015-10-09 14:12 UTC (permalink / raw
To: gentoo-commits
commit: 4e494ace7874db265707cac46111b490005666c9
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 9 13:15:35 2015 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Oct 9 14:11:56 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e494ace
dev-libs/liblognorm: Removed old.
Package-Manager: portage-2.2.23
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-1.1.2.ebuild | 52 -----------------------------
1 file changed, 52 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.2.ebuild b/dev-libs/liblognorm/liblognorm-1.1.2.ebuild
deleted file mode 100644
index 5c28073..0000000
--- a/dev-libs/liblognorm/liblognorm-1.1.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-AUTOTOOLS_AUTORECONF="yes"
-
-inherit autotools-utils
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
-SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/2"
-KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
-IUSE="debug doc pcre static-libs test"
-
-RDEPEND="
- >=dev-libs/json-c-0.11:=
- >=dev-libs/libestr-0.1.3
- pcre? ( >=dev-libs/libpcre-8.35 )
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
- doc? ( >=dev-python/sphinx-1.2.2 )
-"
-
-DOCS=( ChangeLog )
-
-PATCHES=(
- "${FILESDIR}"/respect_CFLAGS.patch
-)
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable doc docs)
- $(use_enable pcre regexp)
- $(use_enable test testbench)
- )
-
- autotools-utils_src_configure
-}
-
-src_test() {
- emake --jobs 1 check
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2015-12-21 6:42 Jeroen Roovers
0 siblings, 0 replies; 52+ messages in thread
From: Jeroen Roovers @ 2015-12-21 6:42 UTC (permalink / raw
To: gentoo-commits
commit: e1d6a9797b102f4796b7c38ed70ae631cc173bd5
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 06:40:45 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 06:40:45 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d6a979
dev-libs/liblognorm: Stable for HPPA (bug #565360).
Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches
dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
index 066a0c4..7bfd3d8 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/2"
-KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
IUSE="debug doc static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2015-12-25 15:13 Agostino Sarubbo
0 siblings, 0 replies; 52+ messages in thread
From: Agostino Sarubbo @ 2015-12-25 15:13 UTC (permalink / raw
To: gentoo-commits
commit: d98f3a7013ae0a85805724a5c4c2634ae99f1382
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 25 15:12:35 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Dec 25 15:12:35 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98f3a70
dev-libs/liblognorm: amd64 stable wrt bug #565360
Package-Manager: portage-2.2.24
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
index 7bfd3d8..7b166dd 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/2"
-KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm hppa ~x86 ~amd64-linux"
IUSE="debug doc static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-02-05 15:24 Lars Wendler
0 siblings, 0 replies; 52+ messages in thread
From: Lars Wendler @ 2016-02-05 15:24 UTC (permalink / raw
To: gentoo-commits
commit: fc238d350f7e6ddb147d002d043b06f5a90148e6
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 5 13:54:29 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Feb 5 15:24:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc238d35
dev-libs/liblognorm: Removed old.
Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/liblognorm/Manifest | 2 --
dev-libs/liblognorm/liblognorm-1.0.1.ebuild | 43 ------------------------
dev-libs/liblognorm/liblognorm-1.1.1.ebuild | 52 -----------------------------
3 files changed, 97 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 434e547..b587f9d 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,6 +1,4 @@
DIST liblognorm-0.3.6.tar.gz 345483 SHA256 e2cf27027905c7be91c891b5ac9304a88a5c1981cd36011c84b45de29336b111 SHA512 86138738c7945861cf012bb0148d747c1161956db9bc60589e5b91d6210aa7fcf9b28bc63ab3d865d8c20be26ed1654de4a942b5e9a4d32a967978ad6693a77c WHIRLPOOL dc6f95ae0f9f1f7f6251ec2826366660a54808f09dfc08ac70c112d1afccae24a93791c0fd34d5e07f2232a502d3880507f094ce30fd7c7098c5d24e8ce06e5c
DIST liblognorm-0.3.7.tar.gz 346903 SHA256 b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 SHA512 f7dac7b913d61cc86bf55d0278ae96055e5336ba304fefb3abf4604976f1713ad5e6bba983a1d29b71cac987e9587e5310454e9ae9e07c3f332cd2ce329c9164 WHIRLPOOL 521ea13c8311fa9411bfc026b7a6118e8a34dafcdc298b9ff8115c555bf7614f7afb3f49f806b9bbbc377f97e9d95402261f515b7cd55dcd9f45c40c89d1ad38
-DIST liblognorm-1.0.1.tar.gz 475226 SHA256 1f6cdfd901a8f6a97a3cb74bc6107c6746b3e9381f7889e4cd866a488e0c59a5 SHA512 89425d612d4b256f15b224d255c05550a0ac5eae19b886646bd618a49eedb17cf4d4ab641b238ccc9bbd8b6418c53cba04a42977b9cb2804d0380f539ad77782 WHIRLPOOL 72581b4b32bbacb476a0405ac68c44d6f5d364b866ddd3f32c620359dbde07ccf787bde2a86165308020bd820b6c4edfe9764a76c5fccbbee4c865be9cccab25
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
-DIST liblognorm-1.1.1.tar.gz 521231 SHA256 a75db38419356f8638c29e817806328db1a9edbef258c789a15b2aa88a4522f2 SHA512 1d3715c1314109e228d1f45dbb0a09cab32998613cd0a6bd1428143145847a4d066fc1abcdb4315d9c550f9cf2c00f44cc8f0541e6ef44c5f22eb810ca225411 WHIRLPOOL 3e367809e6bc5c7930fd2444fea94107ad192c098d4bb9f5a93d638a18f8a698d3bdb4c62937f3b9995ce35ab1500c4b58ab86e11bbf317e0dd31783d2298722
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
diff --git a/dev-libs/liblognorm/liblognorm-1.0.1.ebuild b/dev-libs/liblognorm/liblognorm-1.0.1.ebuild
deleted file mode 100644
index a56fbaa..0000000
--- a/dev-libs/liblognorm/liblognorm-1.0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-AUTOTOOLS_AUTORECONF="yes"
-
-inherit autotools-utils
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
-SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/1"
-KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
-#IUSE="debug static-libs" - "debug" USE flag disabled due to https://github.com/rsyslog/liblognorm/issues/5
-IUSE="static-libs"
-
-RDEPEND="
- >=dev-libs/libestr-0.1.3
- >=dev-libs/json-c-0.11:=
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-DOCS=( ChangeLog )
-
-PATCHES=( "${FILESDIR}"/respect_CFLAGS.patch )
-
-src_configure() {
- local myeconfargs=(
- --disable-docs
- #$(use_enable debug)
- )
-
- autotools-utils_src_configure
-}
diff --git a/dev-libs/liblognorm/liblognorm-1.1.1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.1.ebuild
deleted file mode 100644
index 5c28073..0000000
--- a/dev-libs/liblognorm/liblognorm-1.1.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-AUTOTOOLS_AUTORECONF="yes"
-
-inherit autotools-utils
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
-SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/2"
-KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
-IUSE="debug doc pcre static-libs test"
-
-RDEPEND="
- >=dev-libs/json-c-0.11:=
- >=dev-libs/libestr-0.1.3
- pcre? ( >=dev-libs/libpcre-8.35 )
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
- doc? ( >=dev-python/sphinx-1.2.2 )
-"
-
-DOCS=( ChangeLog )
-
-PATCHES=(
- "${FILESDIR}"/respect_CFLAGS.patch
-)
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable doc docs)
- $(use_enable pcre regexp)
- $(use_enable test testbench)
- )
-
- autotools-utils_src_configure
-}
-
-src_test() {
- emake --jobs 1 check
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-03-16 6:46 Ian Delaney
0 siblings, 0 replies; 52+ messages in thread
From: Ian Delaney @ 2016-03-16 6:46 UTC (permalink / raw
To: gentoo-commits
commit: 52b5e66fe7b76074fa478df0e93a75f7557e7dc5
Author: Thomas D <whissi <AT> whissi <DOT> de>
AuthorDate: Tue Mar 15 23:18:04 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 06:46:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b5e66f
dev-libs/liblognorm: Bumped to v1.1.3
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1066
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-1.1.3.ebuild | 75 +++++++++++++++++++++++++++++
dev-libs/liblognorm/metadata.xml | 30 ++++++++----
3 files changed, 96 insertions(+), 10 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index b587f9d..a310e5d 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -2,3 +2,4 @@ DIST liblognorm-0.3.6.tar.gz 345483 SHA256 e2cf27027905c7be91c891b5ac9304a88a5c1
DIST liblognorm-0.3.7.tar.gz 346903 SHA256 b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 SHA512 f7dac7b913d61cc86bf55d0278ae96055e5336ba304fefb3abf4604976f1713ad5e6bba983a1d29b71cac987e9587e5310454e9ae9e07c3f332cd2ce329c9164 WHIRLPOOL 521ea13c8311fa9411bfc026b7a6118e8a34dafcdc298b9ff8115c555bf7614f7afb3f49f806b9bbbc377f97e9d95402261f515b7cd55dcd9f45c40c89d1ad38
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
+DIST liblognorm-1.1.3.tar.gz 553372 SHA256 8e370460a152057abc577d59acbe60b7846312897e56f8f9d3e74edf9c621951 SHA512 09c6ab434fcdd788df84341aaf426c51385a8f3cc9960f07b77e369c22b3a1b8d890ba8d4d0507928b235d2667ed7f7a2c935eed8214d698117c8cfecba75d5f WHIRLPOOL 00d86afa82a12145de8165141f44af9913826ddffe0515d4655103f89bb69285cd8ce88fdec31af23214e599b7ac7f572c29d0a829ab0e07f63f45860c936aa7
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
new file mode 100644
index 0000000..b24dfee
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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"
+SLOT="0/2"
+IUSE="debug doc static-libs test"
+
+RDEPEND="
+ >=dev-libs/libestr-0.1.3
+ || ( >=dev-libs/json-c-0.11:= >=dev-libs/libfastjson-0.99.2:= )
+"
+
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ doc? ( >=dev-python/sphinx-1.2.2 )
+"
+
+DOCS=( ChangeLog )
+
+src_prepare() {
+ eapply -p0 "${FILESDIR}"/respect_CFLAGS.patch
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ # regexp disabled due to https://github.com/rsyslog/liblognorm/issues/143
+ local myeconfargs=(
+ $(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
+}
diff --git a/dev-libs/liblognorm/metadata.xml b/dev-libs/liblognorm/metadata.xml
index da3fbf6..f779ed5 100644
--- a/dev-libs/liblognorm/metadata.xml
+++ b/dev-libs/liblognorm/metadata.xml
@@ -1,14 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
- <email>andreis.vinogradovs@gmail.com</email>
-</maintainer>
-<maintainer type="person">
- <email>maksbotan@gentoo.org</email>
-</maintainer>
-<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
-</maintainer>
+ <maintainer type="person">
+ <email>andreis.vinogradovs@gmail.com</email>
+ <name>Andreis Vinogradovs</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>maksbotan@gentoo.org</email>
+ <name>Maxim Koltsov</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>whissi@whissi.de</email>
+ <name>Thomas D. (Whissi)</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/rsyslog/liblognorm/issues</bugs-to>
+ <remote-id type="github">rsyslog/liblognorm</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-03-16 6:46 Ian Delaney
0 siblings, 0 replies; 52+ messages in thread
From: Ian Delaney @ 2016-03-16 6:46 UTC (permalink / raw
To: gentoo-commits
commit: b4929b5d53396af2a1b8179a38cfcb07d20a127d
Author: Thomas D <whissi <AT> whissi <DOT> de>
AuthorDate: Tue Mar 15 23:19:23 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 06:46:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4929b5d
dev-libs/liblognorm: Dropped old
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1066
dev-libs/liblognorm/Manifest | 2 --
dev-libs/liblognorm/liblognorm-0.3.6.ebuild | 30 -------------------------
dev-libs/liblognorm/liblognorm-0.3.7.ebuild | 34 -----------------------------
3 files changed, 66 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index a310e5d..decd9e6 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,5 +1,3 @@
-DIST liblognorm-0.3.6.tar.gz 345483 SHA256 e2cf27027905c7be91c891b5ac9304a88a5c1981cd36011c84b45de29336b111 SHA512 86138738c7945861cf012bb0148d747c1161956db9bc60589e5b91d6210aa7fcf9b28bc63ab3d865d8c20be26ed1654de4a942b5e9a4d32a967978ad6693a77c WHIRLPOOL dc6f95ae0f9f1f7f6251ec2826366660a54808f09dfc08ac70c112d1afccae24a93791c0fd34d5e07f2232a502d3880507f094ce30fd7c7098c5d24e8ce06e5c
-DIST liblognorm-0.3.7.tar.gz 346903 SHA256 b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 SHA512 f7dac7b913d61cc86bf55d0278ae96055e5336ba304fefb3abf4604976f1713ad5e6bba983a1d29b71cac987e9587e5310454e9ae9e07c3f332cd2ce329c9164 WHIRLPOOL 521ea13c8311fa9411bfc026b7a6118e8a34dafcdc298b9ff8115c555bf7614f7afb3f49f806b9bbbc377f97e9d95402261f515b7cd55dcd9f45c40c89d1ad38
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
DIST liblognorm-1.1.3.tar.gz 553372 SHA256 8e370460a152057abc577d59acbe60b7846312897e56f8f9d3e74edf9c621951 SHA512 09c6ab434fcdd788df84341aaf426c51385a8f3cc9960f07b77e369c22b3a1b8d890ba8d4d0507928b235d2667ed7f7a2c935eed8214d698117c8cfecba75d5f WHIRLPOOL 00d86afa82a12145de8165141f44af9913826ddffe0515d4655103f89bb69285cd8ce88fdec31af23214e599b7ac7f572c29d0a829ab0e07f63f45860c936aa7
diff --git a/dev-libs/liblognorm/liblognorm-0.3.6.ebuild b/dev-libs/liblognorm/liblognorm-0.3.6.ebuild
deleted file mode 100644
index 8027e63..0000000
--- a/dev-libs/liblognorm/liblognorm-0.3.6.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
-SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
-IUSE="debug static-libs"
-
-RDEPEND="
- >=dev-libs/libestr-0.1.3
- >=dev-libs/libee-0.3.2
- "
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- "
-DOCS=( ChangeLog )
-
-src_compile() {
- autotools-utils_src_compile -j1
-}
diff --git a/dev-libs/liblognorm/liblognorm-0.3.7.ebuild b/dev-libs/liblognorm/liblognorm-0.3.7.ebuild
deleted file mode 100644
index f5a6589..0000000
--- a/dev-libs/liblognorm/liblognorm-0.3.7.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF="yes"
-
-inherit autotools-utils
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
-SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
-IUSE="debug static-libs"
-
-RDEPEND="
- >=dev-libs/libestr-0.1.3
- >=dev-libs/libee-0.3.2
- "
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- "
-DOCS=( ChangeLog )
-
-PATCHES=( "${FILESDIR}"/respect_CFLAGS.patch )
-
-src_compile() {
- autotools-utils_src_compile -j1
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-06-21 18:25 Markus Meier
0 siblings, 0 replies; 52+ messages in thread
From: Markus Meier @ 2016-06-21 18:25 UTC (permalink / raw
To: gentoo-commits
commit: f340f7dc80283782e5280f784539f37b2578849b
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 18:24:53 2016 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 18:24:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f340f7dc
dev-libs/liblognorm: arm stable, bug #585644
Package-Manager: portage-2.3.0_rc1
RepoMan-Options: --include-arches="arm"
dev-libs/liblognorm/liblognorm-1.1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
index b24dfee..2ec5ad9 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 arm ~hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-06-21 19:55 Michał Górny
0 siblings, 0 replies; 52+ messages in thread
From: Michał Górny @ 2016-06-21 19:55 UTC (permalink / raw
To: gentoo-commits
commit: c56db9177e78ad1abbb4a3476d552942f69eba0a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 19:53:00 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 19:55:07 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c56db917
dev-libs/liblognorm: Fix := in || and automagic dep on fastjson, #586312
.../liblognorm/{liblognorm-1.1.3.ebuild => liblognorm-1.1.3-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
similarity index 95%
rename from dev-libs/liblognorm/liblognorm-1.1.3.ebuild
rename to dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
index 2ec5ad9..12c14d3 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
@@ -27,7 +27,7 @@ IUSE="debug doc static-libs test"
RDEPEND="
>=dev-libs/libestr-0.1.3
- || ( >=dev-libs/json-c-0.11:= >=dev-libs/libfastjson-0.99.2:= )
+ >=dev-libs/libfastjson-0.99.2:=
"
DEPEND="
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-06-21 21:01 Michał Górny
0 siblings, 0 replies; 52+ messages in thread
From: Michał Górny @ 2016-06-21 21:01 UTC (permalink / raw
To: gentoo-commits
commit: c058dcf54c150673a565e4e405b54845e6b8cf52
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 20:59:41 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 21:00:59 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c058dcf5
dev-libs/liblognorm: Revert premature stabilization due to fastjson
dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
index 12c14d3..caa77b1 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-08-04 8:45 Jeroen Roovers
0 siblings, 0 replies; 52+ messages in thread
From: Jeroen Roovers @ 2016-08-04 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 3fc51b73213a27ae027c4b4260ff2ed51a231b15
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 4 08:44:22 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 4 08:44:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fc51b73
dev-libs/liblognorm: Stable for HPPA (bug #585644).
Package-Manager: portage-2.3.0
RepoMan-Options: --ignore-arches
dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
index caa77b1..5244790 100644
--- a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-08-10 20:44 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-08-10 20:44 UTC (permalink / raw
To: gentoo-commits
commit: 07ca64ff6fd148baa109366741f3d469afed2379
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 20:16:22 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 20:44:31 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07ca64ff
dev-libs/liblognorm: Updating maintainer details
Updating my own maintainer details to reflect that I am now a Gentoo
developer.
Gentoo-Bug: 581174
Package-Manager: portage-2.3.0
dev-libs/liblognorm/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/liblognorm/metadata.xml b/dev-libs/liblognorm/metadata.xml
index f779ed5..89c9cd4 100644
--- a/dev-libs/liblognorm/metadata.xml
+++ b/dev-libs/liblognorm/metadata.xml
@@ -10,8 +10,8 @@
<name>Maxim Koltsov</name>
</maintainer>
<maintainer type="person">
- <email>whissi@whissi.de</email>
- <name>Thomas D. (Whissi)</name>
+ <email>whissi@gentoo.org</email>
+ <name>Thomas Deutschmann</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-08-10 20:44 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-08-10 20:44 UTC (permalink / raw
To: gentoo-commits
commit: 504e67b30873c3fc94fcd0555f27e11402beb7ea
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 20:17:24 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 20:44:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504e67b3
dev-libs/liblognorm: Removing proxy-maintainer
Now that I am a Gentoo developer this package is no longer maintained
through proxy-maintainer project.
Package-Manager: portage-2.3.0
dev-libs/liblognorm/metadata.xml | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/dev-libs/liblognorm/metadata.xml b/dev-libs/liblognorm/metadata.xml
index 89c9cd4..7d460c3 100644
--- a/dev-libs/liblognorm/metadata.xml
+++ b/dev-libs/liblognorm/metadata.xml
@@ -2,6 +2,11 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
+ <email>whissi@gentoo.org</email>
+ <name>Thomas Deutschmann</name>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <maintainer type="person">
<email>andreis.vinogradovs@gmail.com</email>
<name>Andreis Vinogradovs</name>
</maintainer>
@@ -9,14 +14,6 @@
<email>maksbotan@gentoo.org</email>
<name>Maxim Koltsov</name>
</maintainer>
- <maintainer type="person">
- <email>whissi@gentoo.org</email>
- <name>Thomas Deutschmann</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<upstream>
<bugs-to>https://github.com/rsyslog/liblognorm/issues</bugs-to>
<remote-id type="github">rsyslog/liblognorm</remote-id>
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-08-24 0:57 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-08-24 0:57 UTC (permalink / raw
To: gentoo-commits
commit: 6418fc6dfc6c700410c4877e30857275cea36f8e
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 00:00:56 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 00:57:18 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6418fc6d
dev-libs/liblognorm: Bumped to v2.0.1
Package-Manager: portage-2.3.0
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-2.0.1.ebuild | 76 +++++++++++++++++++++++++++++
dev-libs/liblognorm/metadata.xml | 3 ++
3 files changed, 80 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index decd9e6..2b4afd0 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,3 +1,4 @@
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
DIST liblognorm-1.1.3.tar.gz 553372 SHA256 8e370460a152057abc577d59acbe60b7846312897e56f8f9d3e74edf9c621951 SHA512 09c6ab434fcdd788df84341aaf426c51385a8f3cc9960f07b77e369c22b3a1b8d890ba8d4d0507928b235d2667ed7f7a2c935eed8214d698117c8cfecba75d5f WHIRLPOOL 00d86afa82a12145de8165141f44af9913826ddffe0515d4655103f89bb69285cd8ce88fdec31af23214e599b7ac7f572c29d0a829ab0e07f63f45860c936aa7
+DIST liblognorm-2.0.1.tar.gz 657390 SHA256 6a7fda0da2791a87c808fbfde1af20e6463e3ff73496aae7756e3440f3bc5b75 SHA512 557ba4180d764c04edabe6292a44f5340c5b1f7ac2390a4068711be4ad6da7429e651bc2230d6ff9cc6c58cd6a6c59149f20083de8cf4d8239d95f86db39565f WHIRLPOOL ae89d7f34b673f14103574966e72b508d69a00e7f8d13eb5e9665c83303606da729001d7bb0712f96de8c4df63b3c75df90f52ec937b793a503d0062912acd6a
diff --git a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
new file mode 100644
index 00000000..10f3367
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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.0.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
+}
diff --git a/dev-libs/liblognorm/metadata.xml b/dev-libs/liblognorm/metadata.xml
index 7d460c3..b924356 100644
--- a/dev-libs/liblognorm/metadata.xml
+++ b/dev-libs/liblognorm/metadata.xml
@@ -14,6 +14,9 @@
<email>maksbotan@gentoo.org</email>
<name>Maxim Koltsov</name>
</maintainer>
+ <slots>
+ <subslots>Reflect ABI of liblognorm.so.</subslots>
+ </slots>
<upstream>
<bugs-to>https://github.com/rsyslog/liblognorm/issues</bugs-to>
<remote-id type="github">rsyslog/liblognorm</remote-id>
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-08-28 18:48 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-08-28 18:48 UTC (permalink / raw
To: gentoo-commits
commit: 781fcdf56b363fd3aefad076a9a092d4df37e00c
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 18:32:56 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 18:48:44 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781fcdf5
dev-libs/liblognorm: Dropping v1.1.3-r1
v1.1.3 only builds against <dev-libs/libfastjson-0.99.4. Because upstream already
moved to v2.0.x and nothing else is using dev-libs/liblognorm-1.1.3-r1 I am
dropping this version in favor of v2.0.1 which is already in the repository.
Gentoo-Bug: https://bugs.gentoo.org/592302
Package-Manager: portage-2.3.0
dev-libs/liblognorm/Manifest | 1 -
dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild | 75 --------------------------
2 files changed, 76 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 2b4afd0..1b34ce6 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,4 +1,3 @@
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c SHA512 d0dc206ac2f34174ec1a7e05ae4f84520ae67f49b5540bf9b957378418d6e32384fddd40aaa26dfbdec868a6e7d7a0b677af5201dcbf4f0d4b177934a260ff00 WHIRLPOOL 616fb1b951139576579389141253651b79dd215e742b14b0add81341c2cbeed5411544cf3c92221b4d3f4b459e51d55e59dd789b2cc3ad6fe19afb61ec02d0b6
-DIST liblognorm-1.1.3.tar.gz 553372 SHA256 8e370460a152057abc577d59acbe60b7846312897e56f8f9d3e74edf9c621951 SHA512 09c6ab434fcdd788df84341aaf426c51385a8f3cc9960f07b77e369c22b3a1b8d890ba8d4d0507928b235d2667ed7f7a2c935eed8214d698117c8cfecba75d5f WHIRLPOOL 00d86afa82a12145de8165141f44af9913826ddffe0515d4655103f89bb69285cd8ce88fdec31af23214e599b7ac7f572c29d0a829ab0e07f63f45860c936aa7
DIST liblognorm-2.0.1.tar.gz 657390 SHA256 6a7fda0da2791a87c808fbfde1af20e6463e3ff73496aae7756e3440f3bc5b75 SHA512 557ba4180d764c04edabe6292a44f5340c5b1f7ac2390a4068711be4ad6da7429e651bc2230d6ff9cc6c58cd6a6c59149f20083de8cf4d8239d95f86db39565f WHIRLPOOL ae89d7f34b673f14103574966e72b508d69a00e7f8d13eb5e9665c83303606da729001d7bb0712f96de8c4df63b3c75df90f52ec937b793a503d0062912acd6a
diff --git a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild b/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
deleted file mode 100644
index 5244790..00000000
--- a/dev-libs/liblognorm/liblognorm-1.1.3-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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"
-SLOT="0/2"
-IUSE="debug doc static-libs test"
-
-RDEPEND="
- >=dev-libs/libestr-0.1.3
- >=dev-libs/libfastjson-0.99.2:=
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
- doc? ( >=dev-python/sphinx-1.2.2 )
-"
-
-DOCS=( ChangeLog )
-
-src_prepare() {
- eapply -p0 "${FILESDIR}"/respect_CFLAGS.patch
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- # regexp disabled due to https://github.com/rsyslog/liblognorm/issues/143
- local myeconfargs=(
- $(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
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-09-25 19:55 Jeroen Roovers
0 siblings, 0 replies; 52+ messages in thread
From: Jeroen Roovers @ 2016-09-25 19:55 UTC (permalink / raw
To: gentoo-commits
commit: 0b39c4267da6367d92cb4a69c846e0df379eefc1
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 19:54:35 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 19:55:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b39c426
dev-libs/liblognorm: Stable for HPPA (bug #593808).
Package-Manager: portage-2.3.1
RepoMan-Options: --ignore-arches
dev-libs/liblognorm/liblognorm-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
index 10f3367..68a7ec9 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-11-17 22:00 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-11-17 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 10026c030a7b2a8f67195b09e03c6ee50413161d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 17 21:59:16 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 17 22:00:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10026c03
dev-libs/liblognorm: Bumped to v2.0.2
Package-Manager: portage-2.3.2
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-2.0.2.ebuild | 76 +++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 1b34ce6..9cc3b38 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,3 +1,4 @@
DIST liblognorm-1.1.0.tar.gz 499355 SHA256 2ddff2ee893c9268e19868f19dc4d8037e3d266c0d001436c33c9429fcbb3030 SHA512 f694d47c8e60871f0f3ce1fe8092b2596850beea618760c289d9cec6068fb8e8e260f4abb3faf20b931864d91ed18f640c65235fd693f6c67ce232fa11006107 WHIRLPOOL b03347d89e86d858d98a2237b6319f1646c995b5a725b486a9288de9a1cfc243b826c822a22f9e5a2a6f3c13c68a2e408ee8d5a68f2c361aeb40bc1b7d8af644
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
diff --git a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
new file mode 100644
index 00000000..10f3367
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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.0.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
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-11-27 21:08 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2016-11-27 21:08 UTC (permalink / raw
To: gentoo-commits
commit: 82a4058802f8d8dcb7c3a8d41a7f39096332eecd
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 20:16:31 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 21:08:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a40588
dev-libs/liblognorm: amd64/x86 stable, bug #593808
Package-Manager: portage-2.3.2
dev-libs/liblognorm/liblognorm-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
index 68a7ec9..51e87a0 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2016-12-23 15:09 Markus Meier
0 siblings, 0 replies; 52+ messages in thread
From: Markus Meier @ 2016-12-23 15:09 UTC (permalink / raw
To: gentoo-commits
commit: 901919b2cbea380289c10e6aca38ed65f2b523c8
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 23 15:09:37 2016 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Fri Dec 23 15:09:37 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901919b2
dev-libs/liblognorm: arm stable, bug #593808
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
dev-libs/liblognorm/liblognorm-2.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
index 51e87a0..8e2ab08 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-01-11 11:13 Aaron Bauman
0 siblings, 0 replies; 52+ messages in thread
From: Aaron Bauman @ 2017-01-11 11:13 UTC (permalink / raw
To: gentoo-commits
commit: ff3f2e167b4465117fbddee0ed8d52153146575f
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 10:59:19 2017 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 11:13:24 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3f2e16
dev-libs/liblognorm: amd64 stable
Package-Manager: portage-2.3.0
dev-libs/liblognorm/liblognorm-2.0.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
index 10f3367..6530905 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-01-20 5:06 Jeroen Roovers
0 siblings, 0 replies; 52+ messages in thread
From: Jeroen Roovers @ 2017-01-20 5:06 UTC (permalink / raw
To: gentoo-commits
commit: d7befdfe1c1439c3c966e332334b8bf332b01c6b
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 04:59:33 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 04:59:33 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7befdfe
dev-libs/liblognorm: Stable for HPPA (bug #605332).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches
dev-libs/liblognorm/liblognorm-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
index a5e790d..1ee03cd 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-02-21 20:39 Markus Meier
0 siblings, 0 replies; 52+ messages in thread
From: Markus Meier @ 2017-02-21 20:39 UTC (permalink / raw
To: gentoo-commits
commit: 747a580189ee2b4ce08e8cc9e0d0775bbcc5695c
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 20:39:44 2017 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 20:39:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747a5801
dev-libs/liblognorm: arm stable, bug #605332
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
dev-libs/liblognorm/liblognorm-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
index 1ee03cd7f7..0a5ebd7519 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-03-29 15:24 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2017-03-29 15:24 UTC (permalink / raw
To: gentoo-commits
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
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-05-19 7:50 Jeroen Roovers
0 siblings, 0 replies; 52+ messages in thread
From: Jeroen Roovers @ 2017-05-19 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 48b1153bc88af121490b4f15c62950161a5aff6b
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 07:45:14 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri May 19 07:45:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b1153b
dev-libs/liblognorm: Stable for HPPA (bug #618836).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
dev-libs/liblognorm/liblognorm-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
index 4c18e2630cf..62721783d9a 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-05-22 13:31 Agostino Sarubbo
0 siblings, 0 replies; 52+ messages in thread
From: Agostino Sarubbo @ 2017-05-22 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 22439b7cf9562e8b32fc688bee9a60acbb86f79d
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 22 13:31:28 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 22 13:31:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22439b7c
dev-libs/liblognorm: amd64 stable wrt bug #618836
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
index 62721783d9a..094b33ad650 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-05-22 17:27 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2017-05-22 17:27 UTC (permalink / raw
To: gentoo-commits
commit: 90f14e2bd4e0cc9986039d5abf04c7ef9e9b1e5e
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon May 22 17:26:42 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon May 22 17:26:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90f14e2b
dev-libs/liblognorm: x86 stable (bug #618836)
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-libs/liblognorm/liblognorm-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
index 094b33ad650..fede6fb716c 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-06-19 10:09 Alexis Ballier
0 siblings, 0 replies; 52+ messages in thread
From: Alexis Ballier @ 2017-06-19 10:09 UTC (permalink / raw
To: gentoo-commits
commit: c4079988405affb4afa451c9d926bd1f2d9e09b5
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 10:09:27 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 10:09:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4079988
dev-libs/liblognorm: keyword ~arm64
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-libs/liblognorm/liblognorm-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
index fede6fb716c..efc3d4d000a 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.3.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2017-10-04 23:15 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2017-10-04 23:15 UTC (permalink / raw
To: gentoo-commits
commit: 6b8816922a25a1a88562460ab964d45a34fe448d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 4 23:14:57 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Oct 4 23:14:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b881692
dev-libs/liblognorm: Bump to v2.0.4
Package-Manager: Portage-2.3.10, Repoman-2.3.3
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 72 +++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 55696d33fe0..0062c736feb 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -3,3 +3,4 @@ DIST liblognorm-1.1.2.tar.gz 547224 SHA256 935a112fb5310877aaa5046ac8bd2ec7d0e9f
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
+DIST liblognorm-2.0.4.tar.gz 665898 SHA256 730175b6e4e8818c31a60f614f8ba38aae4f8edbeb50d0e34236749e5d20b3a3 SHA512 3c7cbf0c8c320708615218009354d198ba0893632ca464a07270f59d137753dfc7ad6dae66b565660f14e9285f9c8964824d36070b1872b6c633589b4996ba02 WHIRLPOOL 369d8d037155a19f4b70859d0bc3cc356cdf60e38ef0d153815fa33ecb690e67feff0e0cd79a5c870ed455f7d969d037c0aaf82728e5e0fe72f3a100469cf0d5
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
new file mode 100644
index 00000000000..35c8f1f974c
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -0,0 +1,72 @@
+# 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="https://github.com/rsyslog/${PN}.git"
+
+ inherit git-r3
+else
+ SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~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
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-01-28 16:08 Mikle Kolyada
0 siblings, 0 replies; 52+ messages in thread
From: Mikle Kolyada @ 2018-01-28 16:08 UTC (permalink / raw
To: gentoo-commits
commit: de98fa2df71b05cdd86f1981f85e9a8fa19931f0
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 28 16:06:02 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jan 28 16:08:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de98fa2d
dev-libs/liblognorm: amd64 stable wrt bug #645870
Package-Manager: Portage-2.3.19, Repoman-2.3.6
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
index 35c8f1f974c..ab37a2ee9ce 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-02-10 0:32 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-02-10 0:32 UTC (permalink / raw
To: gentoo-commits
commit: 489b1a614374c0b9d4eed87aa2c926b9b4e57a8e
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 10 00:28:53 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 00:31:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489b1a61
dev-libs/liblognorm: x86 stable (bug #645870)
Package-Manager: Portage-2.3.24, Repoman-2.3.6
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
index ab37a2ee9ce..d4da8907192 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-02-11 10:36 Michał Górny
0 siblings, 0 replies; 52+ messages in thread
From: Michał Górny @ 2018-02-11 10:36 UTC (permalink / raw
To: gentoo-commits
commit: 49ea852de7cbd4be09009da4b5110603a4d6729c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 10:31:11 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 10:34:06 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ea852d
dev-libs/liblognorm: Remove useless maintainer <description/>
Remove useless/redundant maintainer <description/>. It does not benefit
bug wrangling, and only wastes developer's time on reading it. Few tips:
- assignee/CC is implied by ordering, there is no reason to repeat it,
- we know that maintainer is maintainer (la la la la la),
- most of adjectives for maintainer are of no value and/or are obvious.
dev-libs/liblognorm/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/dev-libs/liblognorm/metadata.xml b/dev-libs/liblognorm/metadata.xml
index a2706918f5c..a1c7f71484f 100644
--- a/dev-libs/liblognorm/metadata.xml
+++ b/dev-libs/liblognorm/metadata.xml
@@ -4,7 +4,6 @@
<maintainer type="person">
<email>whissi@gentoo.org</email>
<name>Thomas Deutschmann</name>
- <description>Primary maintainer</description>
</maintainer>
<maintainer type="person">
<email>maksbotan@gentoo.org</email>
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-03-28 5:05 Markus Meier
0 siblings, 0 replies; 52+ messages in thread
From: Markus Meier @ 2018-03-28 5:05 UTC (permalink / raw
To: gentoo-commits
commit: acf1b6af736f2530a8e6924656a39d6673cab535
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 28 04:58:59 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Mar 28 04:58:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acf1b6af
dev-libs/liblognorm: arm stable, bug #645870
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
index d4da8907192..d9bcb023134 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-04-26 22:00 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-04-26 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 927075c7e459573e4158a8bd47251412fcb37007
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 22:00:14 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 22:00:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=927075c7
dev-libs/liblognorm: Bump to v2.0.5
Package-Manager: Portage-2.3.31, Repoman-2.3.9
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 72 +++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 51941a2ca57..af8a577bee1 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -4,3 +4,4 @@ DIST liblognorm-2.0.1.tar.gz 657390 BLAKE2B afdec1d1afbf0cfae7a317a4bdfd109457f3
DIST liblognorm-2.0.2.tar.gz 658976 BLAKE2B 44a928ca4d8934f9b6f0b81610315a7de1f0968d2d62fddf9e919699c2fa10d1bce94f0a46a40ff9bf6521ae7dc7a88440febd1b770af9dc3983d13e5a10e188 SHA512 7cb1e20c895859072b9d6f0b3c2dd89874192dce6d11878a4c3eb0b0d9f1691d97205a61290e9cd07deeaa71c58f5fb6a4c1f14bd206119d690cf84c107ccbe4
DIST liblognorm-2.0.3.tar.gz 660680 BLAKE2B d5da4386026faae43dbcbe36aacc47687ef8636be2223a596a9915adee731535083016e5d680c9169cb8d4262a7f3d2342a9e6af566108a635f9d49fcf2cfec5 SHA512 8f343f3029c506a9c060b1b55e478da9ceedc1fbf27ca53a991ffbddb397383adfee2d79beb174a6c997599ee3c0fa4bbc9925fa850e5bf4f4d7b181ddae7cdb
DIST liblognorm-2.0.4.tar.gz 665898 BLAKE2B 80bcd114d2be81f8eea847e699b7e8ade9ca37d4376f64af81bfaba1a440e1efbab579235aba775c46a9d011e930453d2c001de525577b7775784e7152b3e700 SHA512 3c7cbf0c8c320708615218009354d198ba0893632ca464a07270f59d137753dfc7ad6dae66b565660f14e9285f9c8964824d36070b1872b6c633589b4996ba02
+DIST liblognorm-2.0.5.tar.gz 667709 BLAKE2B 9f2a774c2378caa460a1f11e21570e719f83e782c5731a35921099b1b31397495ea2a4baebd489d186526eb2d011f2ab30d971713a8083c1ae02168d3f632ce8 SHA512 2b36fabfa8b751127d47f307833414d339ae43bad5b687ce6ac42a961021f9a515703ca0c4808e098ef49be3a943abdbf307f90995a2331c6e266167ef041d00
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
new file mode 100644
index 00000000000..53b1689f8f1
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2018 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="https://github.com/rsyslog/${PN}.git"
+
+ inherit git-r3
+else
+ SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~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
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-05-21 19:02 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-05-21 19:02 UTC (permalink / raw
To: gentoo-commits
commit: 919e1c063fd5cab45c72e6bf7e1669c86f99fba1
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon May 21 18:55:55 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon May 21 18:55:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=919e1c06
dev-libs/liblognorm: hppa stable
Package-Manager: Portage-2.3.38, Repoman-2.3.9
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
index d9bcb023134..635f5f3f9c5 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-07-04 3:17 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-07-04 3:17 UTC (permalink / raw
To: gentoo-commits
commit: ddcb71da04b0869a6c90d0a123d77fb15edb8845
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 4 03:14:10 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jul 4 03:14:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddcb71da
dev-libs/liblognorm: x86 stable (bug #660258)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
index 53b1689f8f1..cb850214b73 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-07-09 0:37 Mikle Kolyada
0 siblings, 0 replies; 52+ messages in thread
From: Mikle Kolyada @ 2018-07-09 0:37 UTC (permalink / raw
To: gentoo-commits
commit: 7a8e923bbd5866a434070fa8518f46c2e5c2c853
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 9 00:36:46 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul 9 00:36:46 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8e923b
dev-libs/liblognorm: amd64 stable wrt bug #660258
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
index cb850214b73..d4da8907192 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-07-22 15:18 Mikle Kolyada
0 siblings, 0 replies; 52+ messages in thread
From: Mikle Kolyada @ 2018-07-22 15:18 UTC (permalink / raw
To: gentoo-commits
commit: 89a6931eca26eecec9f306f0ec874fba1c8b78ca
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 22 15:17:45 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 22 15:17:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a6931e
dev-libs/liblognorm: arm stable wrt bug #660258
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
index d4da8907192..d9bcb023134 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-07-23 19:00 Sergei Trofimovich
0 siblings, 0 replies; 52+ messages in thread
From: Sergei Trofimovich @ 2018-07-23 19:00 UTC (permalink / raw
To: gentoo-commits
commit: a829c8fe070d5d498f38c510c67d4b02074106fa
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 23 18:56:44 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jul 23 18:56:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a829c8fe
dev-libs/liblognorm: stable 2.0.5 for hppa, bug #660258
Bug: https://bugs.gentoo.org/660258
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="hppa"
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
index d9bcb023134..635f5f3f9c5 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-08-03 1:19 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-08-03 1:19 UTC (permalink / raw
To: gentoo-commits
commit: 1eb3a31472e92aa06acc372bd4939386ad34e7cd
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 3 00:39:33 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Aug 3 01:19:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb3a314
dev-libs/liblognorm: drop old
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-libs/liblognorm/Manifest | 1 -
dev-libs/liblognorm/liblognorm-2.0.4.ebuild | 72 -----------------------------
2 files changed, 73 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index 60c3b29e2a9..be5c55b0d97 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,2 +1 @@
-DIST liblognorm-2.0.4.tar.gz 665898 BLAKE2B 80bcd114d2be81f8eea847e699b7e8ade9ca37d4376f64af81bfaba1a440e1efbab579235aba775c46a9d011e930453d2c001de525577b7775784e7152b3e700 SHA512 3c7cbf0c8c320708615218009354d198ba0893632ca464a07270f59d137753dfc7ad6dae66b565660f14e9285f9c8964824d36070b1872b6c633589b4996ba02
DIST liblognorm-2.0.5.tar.gz 667709 BLAKE2B 9f2a774c2378caa460a1f11e21570e719f83e782c5731a35921099b1b31397495ea2a4baebd489d186526eb2d011f2ab30d971713a8083c1ae02168d3f632ce8 SHA512 2b36fabfa8b751127d47f307833414d339ae43bad5b687ce6ac42a961021f9a515703ca0c4808e098ef49be3a943abdbf307f90995a2331c6e266167ef041d00
diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
deleted file mode 100644
index 635f5f3f9c5..00000000000
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2018 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="https://github.com/rsyslog/${PN}.git"
-
- inherit git-r3
-else
- SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 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
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-11-07 21:18 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-11-07 21:18 UTC (permalink / raw
To: gentoo-commits
commit: 27e91f4c4e4f510eb89f252539e8a9d9ba45f424
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 7 21:15:16 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Nov 7 21:15:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e91f4c
dev-libs/liblognorm: bump to v2.0.6
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/liblognorm/Manifest | 1 +
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 72 +++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index be5c55b0d97..f3c4465da4b 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1 +1,2 @@
DIST liblognorm-2.0.5.tar.gz 667709 BLAKE2B 9f2a774c2378caa460a1f11e21570e719f83e782c5731a35921099b1b31397495ea2a4baebd489d186526eb2d011f2ab30d971713a8083c1ae02168d3f632ce8 SHA512 2b36fabfa8b751127d47f307833414d339ae43bad5b687ce6ac42a961021f9a515703ca0c4808e098ef49be3a943abdbf307f90995a2331c6e266167ef041d00
+DIST liblognorm-2.0.6.tar.gz 666712 BLAKE2B 4c3e46fbd9a3eaf6c429872d30c0fe93f1255dbf3cc14efc82ab94d70ef45c5560c50644e0e23dc63777ddbc405d0f3fb911975d06fd6f6cdee6f7b98ff10b74 SHA512 0b4ee55eb54920dd096fdd6d6dcc2263bc52e74442d86503bfebf26b31492a8c1b67cb3b709ecc8b96cc53252151515719027306b2b6f7ba3404adc5a48cf125
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
new file mode 100644
index 00000000000..8351fc5d119
--- /dev/null
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2018 Gentoo Authors
+# 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="https://github.com/rsyslog/${PN}.git"
+
+ inherit git-r3
+else
+ SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~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
+}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-12-19 20:19 Mikle Kolyada
0 siblings, 0 replies; 52+ messages in thread
From: Mikle Kolyada @ 2018-12-19 20:19 UTC (permalink / raw
To: gentoo-commits
commit: ff6b765ff18d1245518af74c63137937b44ccc92
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 19 20:18:46 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Dec 19 20:19:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff6b765f
dev-libs/liblognorm: amd64 stable wrt bug #673428
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 8351fc5d119..ad28641d0e6 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-12-20 1:30 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2018-12-20 1:30 UTC (permalink / raw
To: gentoo-commits
commit: f4152def84efdb095aaa040cc2f2582bc0aa1737
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 20 01:20:57 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Dec 20 01:29:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4152def
dev-libs/liblognorm: x86 stable (bug #673428)
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index ad28641d0e6..7cfe54fb623 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2018-12-28 12:17 Sergei Trofimovich
0 siblings, 0 replies; 52+ messages in thread
From: Sergei Trofimovich @ 2018-12-28 12:17 UTC (permalink / raw
To: gentoo-commits
commit: 232cf09ee2fba8e04ce5f38b7723ca1bae8c7516
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Dec 28 08:44:54 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Dec 28 12:17:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232cf09e
dev-libs/liblognorm: stable 2.0.6 for hppa, bug #673428
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 7cfe54fb623..64174c3d34c 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 ~arm ~arm64 hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2019-01-03 19:12 Mikle Kolyada
0 siblings, 0 replies; 52+ messages in thread
From: Mikle Kolyada @ 2019-01-03 19:12 UTC (permalink / raw
To: gentoo-commits
commit: d8a38356e5cbed6a86872e1e482c24cfaf7c7d7e
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 3 19:12:13 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 3 19:12:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a38356
dev-libs/liblognorm: arm stable wrt bug #673428
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 64174c3d34c..52b3e6aa555 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2019-04-20 1:29 Aaron Bauman
0 siblings, 0 replies; 52+ messages in thread
From: Aaron Bauman @ 2019-04-20 1:29 UTC (permalink / raw
To: gentoo-commits
commit: e713685b8350752038a25419ab23f9756063f7ef
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Apr 19 18:10:54 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 01:26:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e713685b
dev-libs/liblognorm: use HTTPS
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11746
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 6 +++---
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
index 635f5f3f9c5..f5361ff95e5 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -6,14 +6,14 @@ EAPI="6"
inherit autotools
DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
+HOMEPAGE="https://www.liblognorm.com"
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/rsyslog/${PN}.git"
inherit git-r3
else
- SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+ SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
fi
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 52b3e6aa555..f5361ff95e5 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -6,14 +6,14 @@ EAPI="6"
inherit autotools
DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="http://www.liblognorm.com"
+HOMEPAGE="https://www.liblognorm.com"
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/rsyslog/${PN}.git"
inherit git-r3
else
- SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz"
+ SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
fi
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2019-12-31 3:17 Thomas Deutschmann
0 siblings, 0 replies; 52+ messages in thread
From: Thomas Deutschmann @ 2019-12-31 3:17 UTC (permalink / raw
To: gentoo-commits
commit: 7e249ccdde39148602e2f78853f82ea4b272c2aa
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 31 03:14:36 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 03:14:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e249ccd
dev-libs/liblognorm: drop old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/liblognorm/Manifest | 1 -
dev-libs/liblognorm/liblognorm-2.0.5.ebuild | 73 -----------------------------
2 files changed, 74 deletions(-)
diff --git a/dev-libs/liblognorm/Manifest b/dev-libs/liblognorm/Manifest
index f3c4465da4b..b75714abb16 100644
--- a/dev-libs/liblognorm/Manifest
+++ b/dev-libs/liblognorm/Manifest
@@ -1,2 +1 @@
-DIST liblognorm-2.0.5.tar.gz 667709 BLAKE2B 9f2a774c2378caa460a1f11e21570e719f83e782c5731a35921099b1b31397495ea2a4baebd489d186526eb2d011f2ab30d971713a8083c1ae02168d3f632ce8 SHA512 2b36fabfa8b751127d47f307833414d339ae43bad5b687ce6ac42a961021f9a515703ca0c4808e098ef49be3a943abdbf307f90995a2331c6e266167ef041d00
DIST liblognorm-2.0.6.tar.gz 666712 BLAKE2B 4c3e46fbd9a3eaf6c429872d30c0fe93f1255dbf3cc14efc82ab94d70ef45c5560c50644e0e23dc63777ddbc405d0f3fb911975d06fd6f6cdee6f7b98ff10b74 SHA512 0b4ee55eb54920dd096fdd6d6dcc2263bc52e74442d86503bfebf26b31492a8c1b67cb3b709ecc8b96cc53252151515719027306b2b6f7ba3404adc5a48cf125
diff --git a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild b/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
deleted file mode 100644
index 4454eb1aea1..00000000000
--- a/dev-libs/liblognorm/liblognorm-2.0.5.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools
-
-DESCRIPTION="Fast samples-based log normalization library"
-HOMEPAGE="https://www.liblognorm.com"
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="https://github.com/rsyslog/${PN}.git"
-
- inherit git-r3
-else
- SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
-fi
-
-LICENSE="LGPL-2.1 Apache-2.0"
-SLOT="0/5.1.0"
-IUSE="debug doc static-libs test"
-RESTRICT="!test? ( 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
-}
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2021-05-16 0:03 Sam James
0 siblings, 0 replies; 52+ messages in thread
From: Sam James @ 2021-05-16 0:03 UTC (permalink / raw
To: gentoo-commits
commit: 618f2f9dbed46537d39e5c8fa3f73d1eb575d3fa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 00:02:30 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 16 00:02:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=618f2f9d
dev-libs/liblognorm: Stabilize 2.0.6 arm64, #768675
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 0ee542364f3..ad0b574934a 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm arm64 ~hppa x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2022-08-05 9:31 Arthur Zamarin
0 siblings, 0 replies; 52+ messages in thread
From: Arthur Zamarin @ 2022-08-05 9:31 UTC (permalink / raw
To: gentoo-commits
commit: b8cb4c59535dc242721e42987ff333bb7c541112
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 5 09:31:41 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 09:31:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8cb4c59
dev-libs/liblognorm: Keyword 2.0.6 ia64, #855443
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 87b21e4997c8..7aee1433eb34 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~hppa x86 ~amd64-linux"
+ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2022-08-23 18:10 Arthur Zamarin
0 siblings, 0 replies; 52+ messages in thread
From: Arthur Zamarin @ 2022-08-23 18:10 UTC (permalink / raw
To: gentoo-commits
commit: d669ba339463fe9a7a68c7087411854896491945
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 23 18:10:13 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 18:10:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d669ba33
dev-libs/liblognorm: Keyword 2.0.6 ppc64, #866185
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 7aee1433eb34..78f3b63f10be 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~hppa ~ia64 x86 ~amd64-linux"
+ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2022-08-28 5:55 Jakov Smolić
0 siblings, 0 replies; 52+ messages in thread
From: Jakov Smolić @ 2022-08-28 5:55 UTC (permalink / raw
To: gentoo-commits
commit: 8f0b160a151fa1f2826e1c2926708fcd0c28dda7
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 05:56:11 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 05:56:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f0b160a
dev-libs/liblognorm: Keyword 2.0.6 riscv, #867004
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index 78f3b63f10be..b0d66dfdfd71 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 x86 ~amd64-linux"
+ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/
@ 2022-09-04 18:21 Arthur Zamarin
0 siblings, 0 replies; 52+ messages in thread
From: Arthur Zamarin @ 2022-09-04 18:21 UTC (permalink / raw
To: gentoo-commits
commit: cd4f451f7644b83bf07b61fcbaacf95146fd9b7d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 4 18:18:52 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 4 18:21:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4f451f
dev-libs/liblognorm: Keyword 2.0.6 sparc, #866057
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/liblognorm/liblognorm-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
index b0d66dfdfd71..63346c79252e 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then
inherit git-r3
else
SRC_URI="https://www.liblognorm.com/files/download/${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv x86 ~amd64-linux"
+ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc x86 ~amd64-linux"
fi
LICENSE="LGPL-2.1 Apache-2.0"
^ permalink raw reply related [flat|nested] 52+ messages in thread
end of thread, other threads:[~2022-09-04 18:21 UTC | newest]
Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-20 1:29 [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblognorm/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2022-09-04 18:21 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-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-03-29 15:24 Thomas Deutschmann
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox