* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-03-07 15:48 Ian Delaney
0 siblings, 0 replies; 93+ messages in thread
From: Ian Delaney @ 2016-03-07 15:48 UTC (permalink / raw
To: gentoo-commits
commit: bcdaa01b11a2b4c5dee4b7c030a7e88148f6e6e5
Author: Thomas D <whissi <AT> whissi <DOT> de>
AuthorDate: Mon Mar 7 15:16:29 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Mar 7 15:16:29 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcdaa01b
dev-libs/librelp: Bump to v1.2.9 (Fixes #562138, wrt bug #576708)
- librelp no longer require GNUtls
- Bumped to EAPI=6
Bug: https://bugs.gentoo.org/show_bug.cgi?id=576708
Package-Manager: portage-2.2.27
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.9.ebuild | 56 +++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 64c28ef..2b5b121 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.2.7.tar.gz 410896 SHA256 3a434a1c71772706104cfb1c93ba8e6809d257851d60de29ac2142c60c68d7d1 SHA512 f8a71ad037cb5eaeb807b1bcb942893e2d10bcd57b18764bb13700c8e114d59de37b1b36560288abac18a07b6cb2920b46feaef4ae629aa0b3478ed16723542a WHIRLPOOL 784f291d0318b29be33bcd4bdd41e04c2e0fc8f292c6cb7f5985743559aa65f3c10932680f943e065ebf34e3f62c75bf2ed5500aebe0b7ab2fa7e64ced37cc44
+DIST librelp-1.2.9.tar.gz 415909 SHA256 520de7ba3dc688dc72c5b014dc61ef191e9528f77d1651ddca55fc0c149d98a3 SHA512 2d30fdb1946d8c0484de26a741bf187016b8639a702e3a1d42aa390a34931be46064bdb2552950a078366fe2705644db8c6a6015ced2ce14d3d2488527cf0819 WHIRLPOOL ae7095cdf93c2057f34aeee0cf0622284c39f9e84672baa9ff6296b50438cba4d8893114962b2b6f8feb68c0313057edb5fde3060e4fdffb904626a84e7a9690
diff --git a/dev-libs/librelp/librelp-1.2.9.ebuild b/dev-libs/librelp/librelp-1.2.9.ebuild
new file mode 100644
index 0000000..96db26a
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.9.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3 doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.1.0"
+
+KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-06-12 17:52 Patrice Clement
0 siblings, 0 replies; 93+ messages in thread
From: Patrice Clement @ 2016-06-12 17:52 UTC (permalink / raw
To: gentoo-commits
commit: 15b49e49635bfae049a65c876f33a0ad633418d7
Author: Thomas Deutschmann <whissi <AT> whissi <DOT> de>
AuthorDate: Sat Jun 11 23:24:13 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 17:24:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b49e49
dev-libs/librelp: Add missing "die"
Package-Manager: portage-2.3.0_rc1
Closes: https://github.com/gentoo/gentoo/pull/1658
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.9.ebuild b/dev-libs/librelp/librelp-1.2.9.ebuild
index 96db26a..0f75f3b 100644
--- a/dev-libs/librelp/librelp-1.2.9.ebuild
+++ b/dev-libs/librelp/librelp-1.2.9.ebuild
@@ -52,5 +52,5 @@ src_install() {
use doc && local HTML_DOCS=( doc/relp.html )
default
- find "${ED}"usr/lib* -name '*.la' -delete
+ find "${ED}"usr/lib* -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-06-12 17:52 Patrice Clement
0 siblings, 0 replies; 93+ messages in thread
From: Patrice Clement @ 2016-06-12 17:52 UTC (permalink / raw
To: gentoo-commits
commit: 0aa73ad9153ccd3ab0b5c4db36a5e8c97dccbc46
Author: Thomas Deutschmann <whissi <AT> whissi <DOT> de>
AuthorDate: Sun Jun 12 14:05:45 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 17:24:12 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aa73ad9
dev-libs/librelp: Adjusting license to GPL-3+ instead of GPL-3
According to
- COPYING (every version in tree)
- src/{lib,}relp.h (since v1.2.9)
> * Librelp is free software: you can redistribute it and/or modify
> * it under the terms of the GNU General Public License as published by
> * the Free Software Foundation, either version 3 of the License, or
> * (at your option) any later version.
Reported-by: Gokturk Yuksek <gokturk <AT> gentoo.org>
Package-Manager: portage-2.3.0_rc1
Closes: https://github.com/gentoo/gentoo/pull/1658
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.10.ebuild | 2 +-
dev-libs/librelp/librelp-1.2.7-r1.ebuild | 4 ++--
dev-libs/librelp/librelp-1.2.9.ebuild | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.2.10.ebuild b/dev-libs/librelp/librelp-1.2.10.ebuild
index 0f75f3b..e9b6c7d 100644
--- a/dev-libs/librelp/librelp-1.2.10.ebuild
+++ b/dev-libs/librelp/librelp-1.2.10.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="An easy to use library for the RELP protocol"
HOMEPAGE="http://www.librelp.com/"
SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-LICENSE="GPL-3 doc? ( FDL-1.3 )"
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.1.0"
diff --git a/dev-libs/librelp/librelp-1.2.7-r1.ebuild b/dev-libs/librelp/librelp-1.2.7-r1.ebuild
index d723733..497f4c9 100644
--- a/dev-libs/librelp/librelp-1.2.7-r1.ebuild
+++ b/dev-libs/librelp/librelp-1.2.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -10,7 +10,7 @@ DESCRIPTION="An easy to use library for the RELP protocol"
HOMEPAGE="http://www.librelp.com/"
SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-LICENSE="GPL-3 doc? ( FDL-1.3 )"
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
SLOT="0"
KEYWORDS="amd64 ~arm hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
diff --git a/dev-libs/librelp/librelp-1.2.9.ebuild b/dev-libs/librelp/librelp-1.2.9.ebuild
index 0f75f3b..e9b6c7d 100644
--- a/dev-libs/librelp/librelp-1.2.9.ebuild
+++ b/dev-libs/librelp/librelp-1.2.9.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="An easy to use library for the RELP protocol"
HOMEPAGE="http://www.librelp.com/"
SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-LICENSE="GPL-3 doc? ( FDL-1.3 )"
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.1.0"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-06-12 17:52 Patrice Clement
0 siblings, 0 replies; 93+ messages in thread
From: Patrice Clement @ 2016-06-12 17:52 UTC (permalink / raw
To: gentoo-commits
commit: 9cced3af7419621c7f6861356e3ed8f0498590b1
Author: Thomas Deutschmann <whissi <AT> whissi <DOT> de>
AuthorDate: Sat Jun 11 23:25:20 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 17:24:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cced3af
dev-libs/librelp: Version bump to v1.2.10
Package-Manager: portage-2.3.0_rc1
Closes: https://github.com/gentoo/gentoo/pull/1658
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.10.ebuild | 56 ++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 2b5b121..de894639 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
+DIST librelp-1.2.10.tar.gz 415653 SHA256 6c80eed5e29061d2cce35408ae43ddaee354edc27c1076eabec6da4eaecdcc72 SHA512 09f88daa59711449a50b9414f30bc7a217bf3dd7722af53caee024bfe1060e1749f1083d2965c79cbe3c12819359cd3cc262e9dea8ab5ad7bf275f3b61ca907f WHIRLPOOL fd9ec0af4769df65d9631faf0b5739f10b50d55b7ba60bb42f4a41a46bc1e1cf7fbda58b2c3b1fd1f0f7fff3d41ffc0c9cd52d243a599be033c2a5e118db8ca1
DIST librelp-1.2.7.tar.gz 410896 SHA256 3a434a1c71772706104cfb1c93ba8e6809d257851d60de29ac2142c60c68d7d1 SHA512 f8a71ad037cb5eaeb807b1bcb942893e2d10bcd57b18764bb13700c8e114d59de37b1b36560288abac18a07b6cb2920b46feaef4ae629aa0b3478ed16723542a WHIRLPOOL 784f291d0318b29be33bcd4bdd41e04c2e0fc8f292c6cb7f5985743559aa65f3c10932680f943e065ebf34e3f62c75bf2ed5500aebe0b7ab2fa7e64ced37cc44
DIST librelp-1.2.9.tar.gz 415909 SHA256 520de7ba3dc688dc72c5b014dc61ef191e9528f77d1651ddca55fc0c149d98a3 SHA512 2d30fdb1946d8c0484de26a741bf187016b8639a702e3a1d42aa390a34931be46064bdb2552950a078366fe2705644db8c6a6015ced2ce14d3d2488527cf0819 WHIRLPOOL ae7095cdf93c2057f34aeee0cf0622284c39f9e84672baa9ff6296b50438cba4d8893114962b2b6f8feb68c0313057edb5fde3060e4fdffb904626a84e7a9690
diff --git a/dev-libs/librelp/librelp-1.2.10.ebuild b/dev-libs/librelp/librelp-1.2.10.ebuild
new file mode 100644
index 0000000..0f75f3b
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.10.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3 doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.1.0"
+
+KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-08-17 13:58 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2016-08-17 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 42c4184d3697a7c45ecfb5e7222b2bff60bd217f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 13:49:02 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 13:55:59 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c4184d
dev-libs/librelp: Dropping old version
Package-Manager: portage-2.3.0
dev-libs/librelp/Manifest | 1 -
dev-libs/librelp/librelp-1.2.9.ebuild | 56 -----------------------------------
2 files changed, 57 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 89802fe..9ff74e1 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,4 +1,3 @@
DIST librelp-1.2.10.tar.gz 415653 SHA256 6c80eed5e29061d2cce35408ae43ddaee354edc27c1076eabec6da4eaecdcc72 SHA512 09f88daa59711449a50b9414f30bc7a217bf3dd7722af53caee024bfe1060e1749f1083d2965c79cbe3c12819359cd3cc262e9dea8ab5ad7bf275f3b61ca907f WHIRLPOOL fd9ec0af4769df65d9631faf0b5739f10b50d55b7ba60bb42f4a41a46bc1e1cf7fbda58b2c3b1fd1f0f7fff3d41ffc0c9cd52d243a599be033c2a5e118db8ca1
DIST librelp-1.2.12.tar.gz 437945 SHA256 0355730524f7b20bed1b85697296b6ce57ac593ddc8dddcdca263da71dee7bd7 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed WHIRLPOOL 0d3193b3f0f21e940793df0f2c53bb46944c1fbfe4f7aee8b0ecbaead3053185f981a695eaae65d6ea1581ea4a8011e83e2ffff0436ab15bdd4f82b9a012f9a3
DIST librelp-1.2.7.tar.gz 410896 SHA256 3a434a1c71772706104cfb1c93ba8e6809d257851d60de29ac2142c60c68d7d1 SHA512 f8a71ad037cb5eaeb807b1bcb942893e2d10bcd57b18764bb13700c8e114d59de37b1b36560288abac18a07b6cb2920b46feaef4ae629aa0b3478ed16723542a WHIRLPOOL 784f291d0318b29be33bcd4bdd41e04c2e0fc8f292c6cb7f5985743559aa65f3c10932680f943e065ebf34e3f62c75bf2ed5500aebe0b7ab2fa7e64ced37cc44
-DIST librelp-1.2.9.tar.gz 415909 SHA256 520de7ba3dc688dc72c5b014dc61ef191e9528f77d1651ddca55fc0c149d98a3 SHA512 2d30fdb1946d8c0484de26a741bf187016b8639a702e3a1d42aa390a34931be46064bdb2552950a078366fe2705644db8c6a6015ced2ce14d3d2488527cf0819 WHIRLPOOL ae7095cdf93c2057f34aeee0cf0622284c39f9e84672baa9ff6296b50438cba4d8893114962b2b6f8feb68c0313057edb5fde3060e4fdffb904626a84e7a9690
diff --git a/dev-libs/librelp/librelp-1.2.9.ebuild b/dev-libs/librelp/librelp-1.2.9.ebuild
deleted file mode 100644
index e9b6c7d..0000000
--- a/dev-libs/librelp/librelp-1.2.9.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.1.0"
-
-KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
-IUSE="debug doc +ssl static-libs"
-
-RDEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
-"
-
-DEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
- virtual/pkgconfig
-"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable ssl tls)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- find "${ED}"usr/lib* -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-08-17 13:58 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2016-08-17 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 79b25fdf3161852413db5082ee0f121e6805be84
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 13:48:34 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 13:55:56 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b25fdf
dev-libs/librelp: Bump to v1.2.12
Package-Manager: portage-2.3.0
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.12.ebuild | 56 ++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index de894639..89802fe 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1,4 @@
DIST librelp-1.2.10.tar.gz 415653 SHA256 6c80eed5e29061d2cce35408ae43ddaee354edc27c1076eabec6da4eaecdcc72 SHA512 09f88daa59711449a50b9414f30bc7a217bf3dd7722af53caee024bfe1060e1749f1083d2965c79cbe3c12819359cd3cc262e9dea8ab5ad7bf275f3b61ca907f WHIRLPOOL fd9ec0af4769df65d9631faf0b5739f10b50d55b7ba60bb42f4a41a46bc1e1cf7fbda58b2c3b1fd1f0f7fff3d41ffc0c9cd52d243a599be033c2a5e118db8ca1
+DIST librelp-1.2.12.tar.gz 437945 SHA256 0355730524f7b20bed1b85697296b6ce57ac593ddc8dddcdca263da71dee7bd7 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed WHIRLPOOL 0d3193b3f0f21e940793df0f2c53bb46944c1fbfe4f7aee8b0ecbaead3053185f981a695eaae65d6ea1581ea4a8011e83e2ffff0436ab15bdd4f82b9a012f9a3
DIST librelp-1.2.7.tar.gz 410896 SHA256 3a434a1c71772706104cfb1c93ba8e6809d257851d60de29ac2142c60c68d7d1 SHA512 f8a71ad037cb5eaeb807b1bcb942893e2d10bcd57b18764bb13700c8e114d59de37b1b36560288abac18a07b6cb2920b46feaef4ae629aa0b3478ed16723542a WHIRLPOOL 784f291d0318b29be33bcd4bdd41e04c2e0fc8f292c6cb7f5985743559aa65f3c10932680f943e065ebf34e3f62c75bf2ed5500aebe0b7ab2fa7e64ced37cc44
DIST librelp-1.2.9.tar.gz 415909 SHA256 520de7ba3dc688dc72c5b014dc61ef191e9528f77d1651ddca55fc0c149d98a3 SHA512 2d30fdb1946d8c0484de26a741bf187016b8639a702e3a1d42aa390a34931be46064bdb2552950a078366fe2705644db8c6a6015ced2ce14d3d2488527cf0819 WHIRLPOOL ae7095cdf93c2057f34aeee0cf0622284c39f9e84672baa9ff6296b50438cba4d8893114962b2b6f8feb68c0313057edb5fde3060e4fdffb904626a84e7a9690
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
new file mode 100644
index 0000000..63e666b
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.12.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.2.0"
+
+KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-08-17 13:58 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2016-08-17 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 403096c6583dc4ffd24b9bc1006c3f2cf6f00246
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 13:50:07 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 13:56:02 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=403096c6
dev-libs/librelp: ~arm64 keyword added (#587688)
Gentoo-Bug: https://bugs.gentoo.org/587688
Package-Manager: portage-2.3.0
dev-libs/librelp/librelp-1.2.10.ebuild | 2 +-
dev-libs/librelp/librelp-1.2.12.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.2.10.ebuild b/dev-libs/librelp/librelp-1.2.10.ebuild
index e9b6c7d..6acb0c7 100644
--- a/dev-libs/librelp/librelp-1.2.10.ebuild
+++ b/dev-libs/librelp/librelp-1.2.10.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.1.0"
-KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
index 63e666b..3ed722d 100644
--- a/dev-libs/librelp/librelp-1.2.12.ebuild
+++ b/dev-libs/librelp/librelp-1.2.12.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-08-17 13:58 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2016-08-17 13:58 UTC (permalink / raw
To: gentoo-commits
commit: e676a25872c03ac66c3ce79dfd22bccb235e7ad8
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 13:53:41 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 13:56:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e676a258
dev-libs/librelp: Add myself as maintainer
Package-Manager: portage-2.3.0
dev-libs/librelp/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-libs/librelp/metadata.xml b/dev-libs/librelp/metadata.xml
index 82f6562..4fca09f 100644
--- a/dev-libs/librelp/metadata.xml
+++ b/dev-libs/librelp/metadata.xml
@@ -2,6 +2,10 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
+ <email>whissi@gentoo.org</email>
+ <name>Thomas Deutschmann</name>
+</maintainer>
+<maintainer type="person">
<email>dev-zero@gentoo.org</email>
<name>Tiziano Müller</name>
</maintainer>
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-10-01 13:00 Jeroen Roovers
0 siblings, 0 replies; 93+ messages in thread
From: Jeroen Roovers @ 2016-10-01 13:00 UTC (permalink / raw
To: gentoo-commits
commit: 8a7244fcb88a80bcfc5b766febec5683a74cd5b2
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 1 12:58:44 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Oct 1 12:58:44 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7244fc
dev-libs/librelp: Stable for HPPA (bug #593812).
Package-Manager: portage-2.3.1
RepoMan-Options: --ignore-arches
dev-libs/librelp/librelp-1.2.12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
index 816dc0e..d02374d 100644
--- a/dev-libs/librelp/librelp-1.2.12.ebuild
+++ b/dev-libs/librelp/librelp-1.2.12.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2016-11-27 21:17 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2016-11-27 21:17 UTC (permalink / raw
To: gentoo-commits
commit: 654b04c78686070ea44f7c3415eec53d46043d3f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 21:17:22 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 21:17:36 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654b04c7
dev-libs/librelp: x86 stable, bug #593812
Package-Manager: portage-2.3.2
dev-libs/librelp/librelp-1.2.12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
index d02374d..ddfc742 100644
--- a/dev-libs/librelp/librelp-1.2.12.ebuild
+++ b/dev-libs/librelp/librelp-1.2.12.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-02-26 14:11 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2017-02-26 14:11 UTC (permalink / raw
To: gentoo-commits
commit: fd96be4f3b473c36b2c640504bb5fb482cd24ae2
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 26 13:59:11 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 14:10:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd96be4f
dev-libs/librelp: Bump to v1.2.13
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.13.ebuild | 56 ++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index e8395147e0..3c2256a3bf 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.2.12.tar.gz 437945 SHA256 0355730524f7b20bed1b85697296b6ce57ac593ddc8dddcdca263da71dee7bd7 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed WHIRLPOOL 0d3193b3f0f21e940793df0f2c53bb46944c1fbfe4f7aee8b0ecbaead3053185f981a695eaae65d6ea1581ea4a8011e83e2ffff0436ab15bdd4f82b9a012f9a3
+DIST librelp-1.2.13.tar.gz 437877 SHA256 38df3ca7feba55850602bbefe3ac3c035e7666691d46b8bfbff1f1a4c774c0c7 SHA512 62d22998711ed82f30a1fce7c6b25dca514717c513d5833ce9ea6951d20f6922787213285be710c30fd28fd80d07ee9313f92cc7e09531ca8ac5e12627dbc868 WHIRLPOOL e420c237d1307b1e507385e005bcfde51183efe80bdcedaedfc6da22fcb55407dd47b696e602daa2f706418a9d49087dfa3628daf19147fbd5402ef7b37d8d72
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
new file mode 100644
index 0000000000..9873f1f138
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.13.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.2.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-03-01 7:55 Michael Weber
0 siblings, 0 replies; 93+ messages in thread
From: Michael Weber @ 2017-03-01 7:55 UTC (permalink / raw
To: gentoo-commits
commit: 0a613c2f380dcfbbf119ad89086fef22f53ea920
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 1 06:30:22 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Mar 1 07:54:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a613c2f
dev-libs/librelp: arm64 stable (bug 593812).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-libs/librelp/librelp-1.2.12.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
index 53266298905..23a107322d7 100644
--- a/dev-libs/librelp/librelp-1.2.12.ebuild
+++ b/dev-libs/librelp/librelp-1.2.12.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
EAPI=6
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-01 10:32 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2017-06-01 10:32 UTC (permalink / raw
To: gentoo-commits
commit: e1741caca58a4fbb863928ecbf3659603e90385b
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 1 10:32:45 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jun 1 10:32:45 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1741cac
dev-libs/librelp: Bump to v1.2.14
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.14.ebuild | 55 ++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 3c2256a3bf5..9f1ced58231 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
DIST librelp-1.2.12.tar.gz 437945 SHA256 0355730524f7b20bed1b85697296b6ce57ac593ddc8dddcdca263da71dee7bd7 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed WHIRLPOOL 0d3193b3f0f21e940793df0f2c53bb46944c1fbfe4f7aee8b0ecbaead3053185f981a695eaae65d6ea1581ea4a8011e83e2ffff0436ab15bdd4f82b9a012f9a3
DIST librelp-1.2.13.tar.gz 437877 SHA256 38df3ca7feba55850602bbefe3ac3c035e7666691d46b8bfbff1f1a4c774c0c7 SHA512 62d22998711ed82f30a1fce7c6b25dca514717c513d5833ce9ea6951d20f6922787213285be710c30fd28fd80d07ee9313f92cc7e09531ca8ac5e12627dbc868 WHIRLPOOL e420c237d1307b1e507385e005bcfde51183efe80bdcedaedfc6da22fcb55407dd47b696e602daa2f706418a9d49087dfa3628daf19147fbd5402ef7b37d8d72
+DIST librelp-1.2.14.tar.gz 437975 SHA256 11f6241a4336358a33bfdadd43ef299e8258db0a5243d0c164499c6b85ae5955 SHA512 b9a947edb7f23ba533f358d3271a61e80fcca7db8be0c20b39ec61ce4d913efed25173330a0604faebfbbdf33a051ed43234b2b41be2480dc3459c35b91acaae WHIRLPOOL e6c4cfb104f062fcb11a4beeff6ed0fbf8b38804838f365990735d2d7b52a1ce9750dc890d35ef300c951d54d30eb31b059c465f7a88b2df4cc31f9cfd377f5f
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
new file mode 100644
index 00000000000..99aa6b1b09a
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.14.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.3.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-01 13:37 Agostino Sarubbo
0 siblings, 0 replies; 93+ messages in thread
From: Agostino Sarubbo @ 2017-06-01 13:37 UTC (permalink / raw
To: gentoo-commits
commit: c5dff9137b889389553cdf6d64383d8b83bc67d3
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 1 13:36:54 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun 1 13:36:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5dff913
dev-libs/librelp: amd64 stable wrt bug #620326
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/librelp/librelp-1.2.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
index 2bfc2290342..ab14f75d6c4 100644
--- a/dev-libs/librelp/librelp-1.2.13.ebuild
+++ b/dev-libs/librelp/librelp-1.2.13.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-04 10:42 Agostino Sarubbo
0 siblings, 0 replies; 93+ messages in thread
From: Agostino Sarubbo @ 2017-06-04 10:42 UTC (permalink / raw
To: gentoo-commits
commit: 91aad78170d683f5fb4b5592d79441e75c7c3fe7
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 4 10:40:23 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 4 10:42:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91aad781
dev-libs/librelp: x86 stable wrt bug #620326
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
index ab14f75d6c4..89fc127ff7b 100644
--- a/dev-libs/librelp/librelp-1.2.13.ebuild
+++ b/dev-libs/librelp/librelp-1.2.13.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-15 16:06 Markus Meier
0 siblings, 0 replies; 93+ messages in thread
From: Markus Meier @ 2017-06-15 16:06 UTC (permalink / raw
To: gentoo-commits
commit: da7133f737f25722f39f31000a8a54f22146b8c4
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 16:06:07 2017 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 16:06:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7133f7
dev-libs/librelp: arm stable, bug #620326
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
dev-libs/librelp/librelp-1.2.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
index 89fc127ff7b..c5a27631f89 100644
--- a/dev-libs/librelp/librelp-1.2.13.ebuild
+++ b/dev-libs/librelp/librelp-1.2.13.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-28 13:19 Agostino Sarubbo
0 siblings, 0 replies; 93+ messages in thread
From: Agostino Sarubbo @ 2017-06-28 13:19 UTC (permalink / raw
To: gentoo-commits
commit: d2c8264d7409ef9565024c4ef0a2ae44349e2482
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 13:17:58 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 13:17:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c8264d
dev-libs/librelp: amd64 stable wrt bug #618836
Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
index 99aa6b1b09a..41a6b20d2e5 100644
--- a/dev-libs/librelp/librelp-1.2.14.ebuild
+++ b/dev-libs/librelp/librelp-1.2.14.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-06-30 11:10 Agostino Sarubbo
0 siblings, 0 replies; 93+ messages in thread
From: Agostino Sarubbo @ 2017-06-30 11:10 UTC (permalink / raw
To: gentoo-commits
commit: 8a9f21f49533fe076789eddf796187d813d09db3
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 11:07:32 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 11:07:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9f21f4
dev-libs/librelp: x86 stable wrt bug #618836
Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
index 41a6b20d2e5..eb0569e635f 100644
--- a/dev-libs/librelp/librelp-1.2.14.ebuild
+++ b/dev-libs/librelp/librelp-1.2.14.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-10-21 17:06 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2017-10-21 17:06 UTC (permalink / raw
To: gentoo-commits
commit: 967e1b48ceb6c702bc5e63036435e39126020925
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 17:06:07 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 17:06:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967e1b48
dev-libs/librelp: stable 1.2.14 for sparc, bug #627718 (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.12, Repoman-2.3.3
RepoMan-Options: --include-arches="sparc"
dev-libs/librelp/librelp-1.2.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
index eb0569e635f..00a599b3704 100644
--- a/dev-libs/librelp/librelp-1.2.14.ebuild
+++ b/dev-libs/librelp/librelp-1.2.14.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2017-11-22 21:38 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2017-11-22 21:38 UTC (permalink / raw
To: gentoo-commits
commit: c085646b28f3b8ddafc0fcdf2bedfc226ef98768
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 22 21:36:07 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 22 21:38:08 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c085646b
dev-libs/librelp: stable 1.2.14 for hppa, bug #627718 (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.16, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"
dev-libs/librelp/librelp-1.2.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
index 00a599b3704..f2c2926f74e 100644
--- a/dev-libs/librelp/librelp-1.2.14.ebuild
+++ b/dev-libs/librelp/librelp-1.2.14.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-19 20:06 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2018-03-19 20:06 UTC (permalink / raw
To: gentoo-commits
commit: b96cc74447fed60ed27942ab4941da33c409c93e
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 19 20:06:30 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Mar 19 20:06:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b96cc744
dev-libs/librelp: stable 1.2.13 for hppa, bug #620326
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"
dev-libs/librelp/librelp-1.2.13.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
index c5a27631f89..02b5e651ab1 100644
--- a/dev-libs/librelp/librelp-1.2.13.ebuild
+++ b/dev-libs/librelp/librelp-1.2.13.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 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.2.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-22 18:53 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-03-22 18:53 UTC (permalink / raw
To: gentoo-commits
commit: fc26f0ae3232b800382dcf55a0528b64ce9042be
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 22 18:53:00 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Mar 22 18:53:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc26f0ae
dev-libs/librelp: Bump to v1.2.15
Package-Manager: Portage-2.3.24, Repoman-2.3.6
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.15.ebuild | 55 ++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 8679abfe4f1..0e46f0029d0 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1,4 @@
DIST librelp-1.2.12.tar.gz 437945 BLAKE2B b4f0370a1fcbfb5644aa8d879a4f7362a5c109ba4e9a0c2d4c86a813d35427e9b5e025e43cca910f079f1a036185ccdfd63a4215c1b289200326182f373c9fc9 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed
DIST librelp-1.2.13.tar.gz 437877 BLAKE2B 11f799d270957933b883b6339f8239dcdd6db901945b31992febac45e692a2f72d867eec4ba6360b71b3c58ad877dc5775e7506e04661b8d3747c6dae937fd96 SHA512 62d22998711ed82f30a1fce7c6b25dca514717c513d5833ce9ea6951d20f6922787213285be710c30fd28fd80d07ee9313f92cc7e09531ca8ac5e12627dbc868
DIST librelp-1.2.14.tar.gz 437975 BLAKE2B 45dc383e13a014a6618ea1a0ff3da821b9828ea3cb23ab8454f16023a1aaf82bcdf9697c456edd3c82e156b7ea4acffd1864b225d2c33dfc29e874eded8465cd SHA512 b9a947edb7f23ba533f358d3271a61e80fcca7db8be0c20b39ec61ce4d913efed25173330a0604faebfbbdf33a051ed43234b2b41be2480dc3459c35b91acaae
+DIST librelp-1.2.15.tar.gz 440273 BLAKE2B dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e SHA512 9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
new file mode 100644
index 00000000000..692c36b0702
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.3.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-23 7:24 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2018-03-23 7:24 UTC (permalink / raw
To: gentoo-commits
commit: c4a8939473e1aa5db5f5da47dd91227eb696bf21
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Mar 23 06:52:19 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 07:24:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a89394
dev-libs/librelp: stable 1.2.15 for sparc, bug #651192
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
dev-libs/librelp/librelp-1.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
index 692c36b0702..396c94a452c 100644
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-23 10:27 Agostino Sarubbo
0 siblings, 0 replies; 93+ messages in thread
From: Agostino Sarubbo @ 2018-03-23 10:27 UTC (permalink / raw
To: gentoo-commits
commit: ead82ebc329614abc225de6596ba2d49baf97ef6
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 23 10:27:15 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 10:27:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ead82ebc
dev-libs/librelp: amd64 stable wrt bug #651192
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"
dev-libs/librelp/librelp-1.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
index 396c94a452c..3f467877fa5 100644
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-28 5:05 Markus Meier
0 siblings, 0 replies; 93+ messages in thread
From: Markus Meier @ 2018-03-28 5:05 UTC (permalink / raw
To: gentoo-commits
commit: 90c659370a6bf70cc0bfb884bb0dcda352ada19e
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 28 04:58:54 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Mar 28 04:58:54 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c65937
dev-libs/librelp: arm stable, bug #645870
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
dev-libs/librelp/librelp-1.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
index 6995890a34e..aa48379c76c 100644
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-03-28 19:45 Mart Raudsepp
0 siblings, 0 replies; 93+ messages in thread
From: Mart Raudsepp @ 2018-03-28 19:45 UTC (permalink / raw
To: gentoo-commits
commit: 1c6284cab1fe493e8a72e1fa27fd1185f4f0c7fb
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 28 19:41:54 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Wed Mar 28 19:44:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6284ca
dev-libs/librelp-1.2.15: arm64 stable (bug #651192)
Package-Manager: Portage-2.3.19, Repoman-2.3.6
dev-libs/librelp/librelp-1.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
index aa48379c76c..0a9c89e3a53 100644
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-04-22 20:19 Matt Turner
0 siblings, 0 replies; 93+ messages in thread
From: Matt Turner @ 2018-04-22 20:19 UTC (permalink / raw
To: gentoo-commits
commit: 79af7ca26a7a3da83503e9d75b1c0c9f7e24d3f6
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 20:18:56 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 20:18:56 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79af7ca2
dev-libs/librelp-1.2.15: hppa stable, bug 651192
dev-libs/librelp/librelp-1.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
index 0a9c89e3a53..84d265125a2 100644
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ b/dev-libs/librelp/librelp-1.2.15.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.3.0"
-KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-04-23 13:20 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-04-23 13:20 UTC (permalink / raw
To: gentoo-commits
commit: 245f43208e00065a6f83325c8a59634fd4aa559f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 23 13:19:26 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Apr 23 13:19:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245f4320
dev-libs/librelp: Security cleanup
Bug: https://bugs.gentoo.org/651192
Package-Manager: Portage-2.3.31, Repoman-2.3.9
dev-libs/librelp/Manifest | 3 --
dev-libs/librelp/librelp-1.2.12.ebuild | 55 ----------------------------------
dev-libs/librelp/librelp-1.2.13.ebuild | 55 ----------------------------------
dev-libs/librelp/librelp-1.2.14.ebuild | 55 ----------------------------------
4 files changed, 168 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 0e46f0029d0..a2ca2208800 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,4 +1 @@
-DIST librelp-1.2.12.tar.gz 437945 BLAKE2B b4f0370a1fcbfb5644aa8d879a4f7362a5c109ba4e9a0c2d4c86a813d35427e9b5e025e43cca910f079f1a036185ccdfd63a4215c1b289200326182f373c9fc9 SHA512 bfc38882404e06c047bdabd203d71beba67bc5a717d2d6733863f15f0a3a09b4a792a628a1653c102c828fde7ff67cc8ade637de785399ab48a68605b23a72ed
-DIST librelp-1.2.13.tar.gz 437877 BLAKE2B 11f799d270957933b883b6339f8239dcdd6db901945b31992febac45e692a2f72d867eec4ba6360b71b3c58ad877dc5775e7506e04661b8d3747c6dae937fd96 SHA512 62d22998711ed82f30a1fce7c6b25dca514717c513d5833ce9ea6951d20f6922787213285be710c30fd28fd80d07ee9313f92cc7e09531ca8ac5e12627dbc868
-DIST librelp-1.2.14.tar.gz 437975 BLAKE2B 45dc383e13a014a6618ea1a0ff3da821b9828ea3cb23ab8454f16023a1aaf82bcdf9697c456edd3c82e156b7ea4acffd1864b225d2c33dfc29e874eded8465cd SHA512 b9a947edb7f23ba533f358d3271a61e80fcca7db8be0c20b39ec61ce4d913efed25173330a0604faebfbbdf33a051ed43234b2b41be2480dc3459c35b91acaae
DIST librelp-1.2.15.tar.gz 440273 BLAKE2B dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e SHA512 9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
diff --git a/dev-libs/librelp/librelp-1.2.12.ebuild b/dev-libs/librelp/librelp-1.2.12.ebuild
deleted file mode 100644
index 23a107322d7..00000000000
--- a/dev-libs/librelp/librelp-1.2.12.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.2.0"
-
-KEYWORDS="amd64 arm arm64 hppa ~sparc x86"
-IUSE="debug doc +ssl static-libs"
-
-RDEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
-"
-
-DEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
- virtual/pkgconfig
-"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable ssl tls)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- find "${ED}"usr/lib* -name '*.la' -delete || die
-}
diff --git a/dev-libs/librelp/librelp-1.2.13.ebuild b/dev-libs/librelp/librelp-1.2.13.ebuild
deleted file mode 100644
index 02b5e651ab1..00000000000
--- a/dev-libs/librelp/librelp-1.2.13.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.2.0"
-
-KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
-IUSE="debug doc +ssl static-libs"
-
-RDEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
-"
-
-DEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
- virtual/pkgconfig
-"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable ssl tls)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- find "${ED}"usr/lib* -name '*.la' -delete || die
-}
diff --git a/dev-libs/librelp/librelp-1.2.14.ebuild b/dev-libs/librelp/librelp-1.2.14.ebuild
deleted file mode 100644
index f2c2926f74e..00000000000
--- a/dev-libs/librelp/librelp-1.2.14.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.3.0"
-
-KEYWORDS="amd64 ~arm ~arm64 hppa sparc x86"
-IUSE="debug doc +ssl static-libs"
-
-RDEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
-"
-
-DEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
- virtual/pkgconfig
-"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable ssl tls)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- find "${ED}"usr/lib* -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-05-16 23:12 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-05-16 23:12 UTC (permalink / raw
To: gentoo-commits
commit: 0e8d506824ab6c2b8aab82471c2e36147b56e049
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 21:44:37 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed May 16 23:11:56 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8d5068
dev-libs/librelp: Bump to v1.2.16
Package-Manager: Portage-2.3.36, Repoman-2.3.9
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.16.ebuild | 59 ++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index a2ca2208800..aecd425fe0d 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.2.15.tar.gz 440273 BLAKE2B dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e SHA512 9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
+DIST librelp-1.2.16.tar.gz 474456 BLAKE2B b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc SHA512 54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
new file mode 100644
index 00000000000..e82777d8801
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.4.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+ ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable ssl tls)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-07-03 20:01 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2018-07-03 20:01 UTC (permalink / raw
To: gentoo-commits
commit: eb0b7e2c9c75c6e7b517306eddf07ef7cabbc730
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Jul 3 15:31:00 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jul 3 20:01:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0b7e2c
dev-libs/librelp: stable 1.2.16 for sparc
Bug: https://bugs.gentoo.org/659902
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 144b359d78d..0419d8cddbf 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-07-03 23:18 Mart Raudsepp
0 siblings, 0 replies; 93+ messages in thread
From: Mart Raudsepp @ 2018-07-03 23:18 UTC (permalink / raw
To: gentoo-commits
commit: 8659d4f19a7defa133d6567f60574da1b8d7db07
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 3 22:41:57 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Jul 3 22:41:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8659d4f1
dev-libs/librelp-1.2.16: arm64 stable (bug #659902)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 0419d8cddbf..6b127ec0433 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-07-04 3:17 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-07-04 3:17 UTC (permalink / raw
To: gentoo-commits
commit: 6400a8886f9d89e9220f7c5eb54fd1673c4fa39f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 4 03:12:18 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jul 4 03:12:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6400a888
dev-libs/librelp: x86 stable (bug #659902)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 6b127ec0433..7534979676c 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-07-09 16:19 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2018-07-09 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 85bc306a7b9b43dba6a82b7fbcfd68063438387b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 9 16:19:18 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul 9 16:19:27 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85bc306a
dev-libs/librelp: amd64 stable wrt bug #659902
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 7534979676c..6f2b1a03d41 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-07-22 2:23 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2018-07-22 2:23 UTC (permalink / raw
To: gentoo-commits
commit: 14c4192405136cfcec6933d6990e5da84092e295
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 22 02:23:13 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 22 02:23:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c41924
dev-libs/librelp: arm stable wrt bug #659902
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 6f2b1a03d41..14405d27f2e 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 ~arm arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-08-04 16:32 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-08-04 16:32 UTC (permalink / raw
To: gentoo-commits
commit: ca59f5a738c62b79cf08571b197ee449fd21c0f9
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 4 15:48:25 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 4 16:32:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca59f5a7
dev-libs/librelp: hppa marked stable (bug #659902)
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-libs/librelp/librelp-1.2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild b/dev-libs/librelp/librelp-1.2.16.ebuild
index 14405d27f2e..1e8dff837fe 100644
--- a/dev-libs/librelp/librelp-1.2.16.ebuild
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 hppa sparc x86"
IUSE="debug doc +ssl static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-08-04 16:32 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-08-04 16:32 UTC (permalink / raw
To: gentoo-commits
commit: 4f2408921b412004a876bcd2dfc6e0f1f56128b3
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 4 15:48:57 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 4 16:32:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f240892
dev-libs/librelp: drop old
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-libs/librelp/Manifest | 1 -
dev-libs/librelp/librelp-1.2.15.ebuild | 55 ----------------------------------
2 files changed, 56 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index aecd425fe0d..20fcff97328 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1 @@
-DIST librelp-1.2.15.tar.gz 440273 BLAKE2B dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e SHA512 9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
DIST librelp-1.2.16.tar.gz 474456 BLAKE2B b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc SHA512 54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3
diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
deleted file mode 100644
index 84d265125a2..00000000000
--- a/dev-libs/librelp/librelp-1.2.15.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.3.0"
-
-KEYWORDS="amd64 arm arm64 hppa sparc x86"
-IUSE="debug doc +ssl static-libs"
-
-RDEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
-"
-
-DEPEND="
- ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
- virtual/pkgconfig
-"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable ssl tls)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- find "${ED}"usr/lib* -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-08-04 16:32 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-08-04 16:32 UTC (permalink / raw
To: gentoo-commits
commit: d381f6e4ebd9f79e122c9d33bb1a580697a68662
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 4 16:31:47 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 4 16:32:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d381f6e4
dev-libs/librelp: bump to v1.2.17
- EAPI bumped to EAPI=7
- You can now use OpenSSL (or LibreSSL) instead of GnuTLS
for TLS engine.
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.17.ebuild | 75 ++++++++++++++++++++++++++++++++++
dev-libs/librelp/metadata.xml | 21 ++++++----
3 files changed, 89 insertions(+), 8 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 20fcff97328..4c77fba5632 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.2.16.tar.gz 474456 BLAKE2B b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc SHA512 54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3
+DIST librelp-1.2.17.tar.gz 506426 BLAKE2B 998d2845263655a43d0cb002c4538663047f2e07f62d6a870bf93e435c4b2d100a3cc9e4ab711233e9c1f73aedd8771e116b7c7139d2ad6d1baa7c483b2867a1 SHA512 4f69d3e4bc3052c0488a01def49dab16b54fc4a092e06f8776415cb1eca2282702a37497e43baf98fc038853d373116d6b58515c9ad91fae91fb3eb84706890f
diff --git a/dev-libs/librelp/librelp-1.2.17.ebuild b/dev-libs/librelp/librelp-1.2.17.ebuild
new file mode 100644
index 00000000000..ffce4fe9ec9
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.17.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.4.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
+ gnutls? ( ssl )
+ openssl? ( ssl )
+ libressl? ( openssl )"
+
+RDEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+
+DEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )
+ virtual/pkgconfig"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${ED}"usr/lib* -name '*.la' -delete || die
+ fi
+}
diff --git a/dev-libs/librelp/metadata.xml b/dev-libs/librelp/metadata.xml
index 4fca09fb733..17b00e2ac3e 100644
--- a/dev-libs/librelp/metadata.xml
+++ b/dev-libs/librelp/metadata.xml
@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
- <email>whissi@gentoo.org</email>
- <name>Thomas Deutschmann</name>
-</maintainer>
-<maintainer type="person">
- <email>dev-zero@gentoo.org</email>
- <name>Tiziano Müller</name>
-</maintainer>
+ <maintainer type="person">
+ <email>whissi@gentoo.org</email>
+ <name>Thomas Deutschmann</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>dev-zero@gentoo.org</email>
+ <name>Tiziano Müller</name>
+ </maintainer>
+ <use>
+ <flag name="gnutls">Use GnuTLS</flag>
+ <flag name="libressl">Use LibreSSL</flag>
+ <flag name="openssl">Use OpenSSL</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-08-04 21:30 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-08-04 21:30 UTC (permalink / raw
To: gentoo-commits
commit: bbab16dd0764dbb221768f939006975cd802e05d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 4 21:29:19 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 4 21:30:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbab16dd
dev-libs/librelp: fix USE=-static-libs
Closes: https://bugs.gentoo.org/662806
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-libs/librelp/librelp-1.2.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.17.ebuild b/dev-libs/librelp/librelp-1.2.17.ebuild
index ffce4fe9ec9..ccdcf011fa2 100644
--- a/dev-libs/librelp/librelp-1.2.17.ebuild
+++ b/dev-libs/librelp/librelp-1.2.17.ebuild
@@ -70,6 +70,6 @@ src_install() {
default
if ! use static-libs; then
- find "${ED}"usr/lib* -name '*.la' -delete || die
+ find "${ED%/}"/usr/lib* -name '*.la' -delete || die
fi
}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-09-26 22:57 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-09-26 22:57 UTC (permalink / raw
To: gentoo-commits
commit: 4aee5b11ef13851c912baa5df23bd77d29781b2e
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 26 22:56:24 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Sep 26 22:56:53 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aee5b11
dev-libs/librelp: bump to v1.2.18
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.2.18.ebuild | 75 ++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 4c77fba5632..487a22d06de 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
DIST librelp-1.2.16.tar.gz 474456 BLAKE2B b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc SHA512 54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3
DIST librelp-1.2.17.tar.gz 506426 BLAKE2B 998d2845263655a43d0cb002c4538663047f2e07f62d6a870bf93e435c4b2d100a3cc9e4ab711233e9c1f73aedd8771e116b7c7139d2ad6d1baa7c483b2867a1 SHA512 4f69d3e4bc3052c0488a01def49dab16b54fc4a092e06f8776415cb1eca2282702a37497e43baf98fc038853d373116d6b58515c9ad91fae91fb3eb84706890f
+DIST librelp-1.2.18.tar.gz 506766 BLAKE2B 939bd2279e03a6431fbdfb787aa3d62b3f622ec3248dfc7c0a0a141294c27319081092a624c328374cdba0cbd51659301a77ad41bed27ba13f47601f7a607944 SHA512 7193438238b7019e7a4944d6d900a1fa5a369ff8a6b97a6dca7e82b6637c0f391ec3554eeeaa285881457cb2abe72fa1a893244ec9a36cc9d2e2592d58c5462a
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
new file mode 100644
index 00000000000..b57bbb9097e
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.18.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.4.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
+ gnutls? ( ssl )
+ openssl? ( ssl )
+ libressl? ( openssl )"
+
+RDEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+
+DEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )
+ virtual/pkgconfig"
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${ED%/}"/usr/lib* -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-10-05 4:10 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-10-05 4:10 UTC (permalink / raw
To: gentoo-commits
commit: 6495965c1753dafd6f02fe4e5003cb06eb0aaa42
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 5 03:53:59 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Oct 5 03:53:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6495965c
dev-libs/librelp: x86 stable (bug #667542)
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.18.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
index b57bbb9097e..01f552f00d0 100644
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ b/dev-libs/librelp/librelp-1.2.18.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-10-05 13:33 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2018-10-05 13:33 UTC (permalink / raw
To: gentoo-commits
commit: fe4add88e5492c325e5fae59f3820d31e9f3ca78
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 5 13:32:29 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Oct 5 13:32:29 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4add88
dev-libs/librelp: amd64 stable wrt bug #667542
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
dev-libs/librelp/librelp-1.2.18.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
index 01f552f00d0..d6002e11492 100644
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ b/dev-libs/librelp/librelp-1.2.18.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-12-02 13:29 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2018-12-02 13:29 UTC (permalink / raw
To: gentoo-commits
commit: 18b755c07e1e0bceb1a341d8966631b4ad73fd26
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 2 13:28:30 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 2 13:28:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b755c0
dev-libs/librelp: arm stable wrt bug #667542
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-libs/librelp/librelp-1.2.18.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
index d6002e11492..ebb66c28009 100644
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ b/dev-libs/librelp/librelp-1.2.18.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-12-11 16:42 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-12-11 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 8b846f6be8db7bb347bfe597f1f932dd6c7fa5b9
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 11 16:18:55 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 11 16:32:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b846f6b
dev-libs/librelp: mark hppa stable (bug #667542)
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.18.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
index ebb66c28009..d1bee65b63f 100644
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ b/dev-libs/librelp/librelp-1.2.18.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-12-19 20:19 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2018-12-19 20:19 UTC (permalink / raw
To: gentoo-commits
commit: 2c71514062558eee2525db8b4859e6a1c436e6fa
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 19 20:18:31 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Dec 19 20:19:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c715140
dev-libs/librelp: 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/librelp/librelp-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
index 4024aa27d04..d78ff390be8 100644
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ b/dev-libs/librelp/librelp-1.3.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2018-12-20 1:30 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2018-12-20 1:30 UTC (permalink / raw
To: gentoo-commits
commit: 4196aa7d448524925d6a89e3ab3b54b279b50149
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 20 01:19:47 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Dec 20 01:29:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4196aa7d
dev-libs/librelp: 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/librelp/librelp-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
index d78ff390be8..188faec8adc 100644
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ b/dev-libs/librelp/librelp-1.3.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-01-03 19:12 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2019-01-03 19:12 UTC (permalink / raw
To: gentoo-commits
commit: f559781b56beae82061f5107d30919b07f8d352b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 3 19:11:57 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 3 19:12:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f559781b
dev-libs/librelp: 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/librelp/librelp-1.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
index 188faec8adc..b764146b9aa 100644
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ b/dev-libs/librelp/librelp-1.3.0.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="7"
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
gnutls? ( ssl )
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-03-13 22:58 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2019-03-13 22:58 UTC (permalink / raw
To: gentoo-commits
commit: 0e658bd3b2450cd2e058c6da80de34c3321f2532
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 22:53:13 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 22:58:16 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e658bd3
dev-libs/librelp: bump to v1.4.0
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.4.0.ebuild | 83 +++++++++++++++++++++++++++++++++++
2 files changed, 84 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 529bb05a24c..a713989ed53 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
DIST librelp-1.2.18.tar.gz 506766 BLAKE2B 939bd2279e03a6431fbdfb787aa3d62b3f622ec3248dfc7c0a0a141294c27319081092a624c328374cdba0cbd51659301a77ad41bed27ba13f47601f7a607944 SHA512 7193438238b7019e7a4944d6d900a1fa5a369ff8a6b97a6dca7e82b6637c0f391ec3554eeeaa285881457cb2abe72fa1a893244ec9a36cc9d2e2592d58c5462a
DIST librelp-1.3.0.tar.gz 514470 BLAKE2B 3e8d844d3cccd4c148036191f376ba49b3851a2c7e95361bb31a1a172ca0813caa96eb3753b2285a2547c85e073de3237a749bc64fc0fead69ab170656dcb200 SHA512 6e60398c68a78f4b4202a697e144f1516ff3bbb32192f745b52c77d107954febf8cb31d2e166efa96c00122f6807860ecd01084f1d3d4005336f2cb75e6461c9
+DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
new file mode 100644
index 00000000000..26d84e37b33
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/"
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
+ gnutls? ( ssl )
+ openssl? ( ssl )
+ libressl? ( openssl )"
+
+RDEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+
+DEPEND="ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${ED%/}"/usr/lib* -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-04-27 20:28 David Seifert
0 siblings, 0 replies; 93+ messages in thread
From: David Seifert @ 2019-04-27 20:28 UTC (permalink / raw
To: gentoo-commits
commit: 37dc446c5ca493b697603311b3e8d35f47a88e8d
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 16:35:03 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 20:27:49 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37dc446c
dev-libs/librelp: [QA] Fix USE=libressl semantics
Closes: https://bugs.gentoo.org/683992
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-libs/librelp/librelp-1.2.18.ebuild | 21 ++++++---------------
dev-libs/librelp/librelp-1.3.0.ebuild | 19 +++++--------------
dev-libs/librelp/librelp-1.4.0.ebuild | 19 +++++--------------
3 files changed, 16 insertions(+), 43 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
index bd8997fcf00..fd69546976e 100644
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ b/dev-libs/librelp/librelp-1.2.18.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="7"
@@ -16,26 +16,17 @@ SLOT="0/0.4.0"
KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
- gnutls? ( ssl )
- openssl? ( ssl )
- libressl? ( openssl )"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-RDEPEND="ssl? (
+RDEPEND="
+ ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
)"
-
-DEPEND="ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )
+DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
@@ -70,6 +61,6 @@ src_install() {
default
if ! use static-libs; then
- find "${ED%/}"/usr/lib* -name '*.la' -delete || die
+ find "${D}" -name '*.la' -delete || die
fi
}
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
index 17fe8ff33f4..b5359490d5f 100644
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ b/dev-libs/librelp/librelp-1.3.0.ebuild
@@ -17,26 +17,17 @@ SLOT="0/0.4.0"
KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
- gnutls? ( ssl )
- openssl? ( ssl )
- libressl? ( openssl )"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-RDEPEND="ssl? (
+RDEPEND="
+ ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
)"
-
-DEPEND="ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )
+DEPEND="${RDEPEND}
test? ( ${PYTHON_DEPS} )
virtual/pkgconfig"
@@ -80,6 +71,6 @@ src_install() {
default
if ! use static-libs; then
- find "${ED%/}"/usr/lib* -name '*.la' -delete || die
+ find "${D}" -name '*.la' -delete || die
fi
}
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index eb73628561b..7f2f302f832 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -17,26 +17,17 @@ SLOT="0/0.5.0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )
- gnutls? ( ssl )
- openssl? ( ssl )
- libressl? ( openssl )"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-RDEPEND="ssl? (
+RDEPEND="
+ ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
)"
-
-DEPEND="ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )
+DEPEND="${RDEPEND}
test? ( ${PYTHON_DEPS} )
virtual/pkgconfig"
@@ -78,6 +69,6 @@ src_install() {
default
if ! use static-libs; then
- find "${ED%/}"/usr/lib* -name '*.la' -delete || die
+ find "${D}" -name '*.la' -delete || die
fi
}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-05-02 5:19 Matt Turner
0 siblings, 0 replies; 93+ messages in thread
From: Matt Turner @ 2019-05-02 5:19 UTC (permalink / raw
To: gentoo-commits
commit: 64972d565969ec02d099ebf25a76c9a2a46e9902
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu May 2 05:19:02 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu May 2 05:19:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64972d56
dev-libs/librelp-1.3.0: hppa stable, bug 679178
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-libs/librelp/librelp-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
index b5359490d5f..9ce8c653d49 100644
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ b/dev-libs/librelp/librelp-1.3.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.4.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-06-04 23:12 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2019-06-04 23:12 UTC (permalink / raw
To: gentoo-commits
commit: 7d5255ed41144621c67ed0599f143d64d16f5f1d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 4 23:12:00 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Jun 4 23:12:44 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5255ed
dev-libs/librelp: x86 stable (bug #687392)
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index 7f2f302f832..c9f0ee10f78 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-06-11 22:15 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2019-06-11 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 715b566d996e86abf875707e7858395b1d8d4d69
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Jun 11 19:09:53 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jun 11 22:15:44 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=715b566d
dev-libs/librelp: stable 1.4.0 for hppa, bug #687392
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index c9f0ee10f78..536adcd2a55 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="~amd64 ~arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-06-20 18:08 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2019-06-20 18:08 UTC (permalink / raw
To: gentoo-commits
commit: bae68941393e53b79291efae968a8c17195a6f82
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 20 18:08:03 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 18:08:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae68941
dev-libs/librelp: amd64 stable wrt bug #687392
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
dev-libs/librelp/librelp-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index 536adcd2a55..cc681947895 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 hppa ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-07-28 11:05 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2019-07-28 11:05 UTC (permalink / raw
To: gentoo-commits
commit: 7738805e8dd21cad18b281b1bed70e421d68e8bc
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 28 11:05:32 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 28 11:05:32 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7738805e
dev-libs/librelp: arm stable wrt bug #687392
Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
dev-libs/librelp/librelp-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index cc681947895..0df8b6e02be 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="amd64 ~arm ~arm64 hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-12-31 3:17 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2019-12-31 3:17 UTC (permalink / raw
To: gentoo-commits
commit: 9c9dced6225810753a4522f1a80975ddcf295298
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 31 03:01:24 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 03:01:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9dced6
dev-libs/librelp: sparc stable
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
index 0df8b6e02be..316fb1b72f0 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2019-12-31 3:17 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2019-12-31 3:17 UTC (permalink / raw
To: gentoo-commits
commit: aa27680b9032f21d27e0664e8a2adfebf2166839
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 31 03:01:51 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 03:01:51 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa27680b
dev-libs/librelp: drop old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 2 -
dev-libs/librelp/librelp-1.2.18.ebuild | 66 -----------------------------
dev-libs/librelp/librelp-1.3.0.ebuild | 76 ----------------------------------
3 files changed, 144 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index a713989ed53..014cc712da7 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1 @@
-DIST librelp-1.2.18.tar.gz 506766 BLAKE2B 939bd2279e03a6431fbdfb787aa3d62b3f622ec3248dfc7c0a0a141294c27319081092a624c328374cdba0cbd51659301a77ad41bed27ba13f47601f7a607944 SHA512 7193438238b7019e7a4944d6d900a1fa5a369ff8a6b97a6dca7e82b6637c0f391ec3554eeeaa285881457cb2abe72fa1a893244ec9a36cc9d2e2592d58c5462a
-DIST librelp-1.3.0.tar.gz 514470 BLAKE2B 3e8d844d3cccd4c148036191f376ba49b3851a2c7e95361bb31a1a172ca0813caa96eb3753b2285a2547c85e073de3237a749bc64fc0fead69ab170656dcb200 SHA512 6e60398c68a78f4b4202a697e144f1516ff3bbb32192f745b52c77d107954febf8cb31d2e166efa96c00122f6807860ecd01084f1d3d4005336f2cb75e6461c9
DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
diff --git a/dev-libs/librelp/librelp-1.2.18.ebuild b/dev-libs/librelp/librelp-1.2.18.ebuild
deleted file mode 100644
index fd69546976e..00000000000
--- a/dev-libs/librelp/librelp-1.2.18.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit autotools
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.4.0"
-
-KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
diff --git a/dev-libs/librelp/librelp-1.3.0.ebuild b/dev-libs/librelp/librelp-1.3.0.ebuild
deleted file mode 100644
index 9ce8c653d49..00000000000
--- a/dev-libs/librelp/librelp-1.3.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit autotools python-any-r1
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.4.0"
-
-KEYWORDS="amd64 arm ~arm64 hppa ~sparc x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=( "${FILESDIR}"/${P}-dummyclient.py-Py3-compatibility.patch )
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-01-18 9:51 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-01-18 9:51 UTC (permalink / raw
To: gentoo-commits
commit: 68ee1b1855e70c799b23900a156842fbd7bb8d30
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 18 09:03:50 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 09:51:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ee1b18
dev-libs/librelp: bump to v1.5.0
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.5.0.ebuild | 74 +++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 014cc712da7..d3cdde4e4c9 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
+DIST librelp-1.5.0.tar.gz 521793 BLAKE2B f3fa42ab1df5bc7fea340bf87f241666535f61a5726df55f47f6f324347a1dbbede2a66d252fe654d21e79ee44684aa51e83cace32491778d6cc42698f578195 SHA512 b7fb35e4ddb5c3c14ef733699405f8aa62911adef305cd4f494170e111bc61a9208b84dab472a708582cd76ad9976894dae0e7574e60acdae2b56491aa7daf36
diff --git a/dev-libs/librelp/librelp-1.5.0.ebuild b/dev-libs/librelp/librelp-1.5.0.ebuild
new file mode 100644
index 00000000000..c5a14c6f2f4
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.5.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-04-28 23:04 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-04-28 23:04 UTC (permalink / raw
To: gentoo-commits
commit: cb94f8cc805d728e09a8c23f03571f55b6ef783b
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 22:32:24 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 23:00:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb94f8cc
dev-libs/librelp: bump to v1.6.0
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.6.0.ebuild | 74 +++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index d3cdde4e4c9..e4ac6ea06d4 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
DIST librelp-1.5.0.tar.gz 521793 BLAKE2B f3fa42ab1df5bc7fea340bf87f241666535f61a5726df55f47f6f324347a1dbbede2a66d252fe654d21e79ee44684aa51e83cace32491778d6cc42698f578195 SHA512 b7fb35e4ddb5c3c14ef733699405f8aa62911adef305cd4f494170e111bc61a9208b84dab472a708582cd76ad9976894dae0e7574e60acdae2b56491aa7daf36
+DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
new file mode 100644
index 00000000000..edacd29ee8e
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.6.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-06-19 15:41 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2020-06-19 15:41 UTC (permalink / raw
To: gentoo-commits
commit: a378ea9977cfa98b04ce9ca5ed4fe0e5d3bca855
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Jun 19 14:24:43 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jun 19 15:41:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a378ea99
dev-libs/librelp: stable 1.6.0 for sparc, bug #728692
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
index edacd29ee8e..ae21a9b2cfb 100644
--- a/dev-libs/librelp/librelp-1.6.0.ebuild
+++ b/dev-libs/librelp/librelp-1.6.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-06-20 10:13 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-06-20 10:13 UTC (permalink / raw
To: gentoo-commits
commit: 398c23b6533465b3976fcfa680e2bf729fae98f4
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 20 10:12:22 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Jun 20 10:12:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=398c23b6
dev-libs/librelp: x86 stable (bug #728692)
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
index ae21a9b2cfb..a3e031ca3a7 100644
--- a/dev-libs/librelp/librelp-1.6.0.ebuild
+++ b/dev-libs/librelp/librelp-1.6.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-07-02 17:05 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2020-07-02 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 249afa0ec22d6dc967e4107d578f775b4461c372
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Jul 2 08:26:35 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Jul 2 17:05:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=249afa0e
dev-libs/librelp: stable 1.6.0 for hppa, bug #728692
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
index a3e031ca3a7..2a4d1adab6d 100644
--- a/dev-libs/librelp/librelp-1.6.0.ebuild
+++ b/dev-libs/librelp/librelp-1.6.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc x86"
+KEYWORDS="~amd64 ~arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-07-23 13:49 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2020-07-23 13:49 UTC (permalink / raw
To: gentoo-commits
commit: 4f392d56783c09547f101b9635639be894e6d22c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 23 13:49:15 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 23 13:49:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f392d56
dev-libs/librelp: amd64 stable (bug #728692)
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
index 43212254d25..8b0b988de2c 100644
--- a/dev-libs/librelp/librelp-1.6.0.ebuild
+++ b/dev-libs/librelp/librelp-1.6.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 arm ~arm64 hppa sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-08-26 13:31 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-08-26 13:31 UTC (permalink / raw
To: gentoo-commits
commit: f4fd6c410255587c7f172ff066c58d6e5f7888f8
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 26 12:00:03 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 26 13:31:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4fd6c41
dev-libs/librelp: drop old
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 2 -
dev-libs/librelp/librelp-1.4.0.ebuild | 74 -----------------------------------
dev-libs/librelp/librelp-1.5.0.ebuild | 74 -----------------------------------
3 files changed, 150 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index e4ac6ea06d4..0b8b3dd509c 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1 @@
-DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
-DIST librelp-1.5.0.tar.gz 521793 BLAKE2B f3fa42ab1df5bc7fea340bf87f241666535f61a5726df55f47f6f324347a1dbbede2a66d252fe654d21e79ee44684aa51e83cace32491778d6cc42698f578195 SHA512 b7fb35e4ddb5c3c14ef733699405f8aa62911adef305cd4f494170e111bc61a9208b84dab472a708582cd76ad9976894dae0e7574e60acdae2b56491aa7daf36
DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
deleted file mode 100644
index 529fe6d6459..00000000000
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit autotools python-any-r1
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="http://www.librelp.com/"
-SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.5.0"
-
-KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
diff --git a/dev-libs/librelp/librelp-1.5.0.ebuild b/dev-libs/librelp/librelp-1.5.0.ebuild
deleted file mode 100644
index edacd29ee8e..00000000000
--- a/dev-libs/librelp/librelp-1.5.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools python-any-r1
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="https://www.rsyslog.com/librelp/"
-SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.5.0"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-08-26 13:31 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-08-26 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 359770761e4928f36eff9ce5cafac22da6ecef52
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 26 12:00:32 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 26 13:31:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35977076
dev-libs/librelp: bump to v1.7.0
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.7.0.ebuild | 74 +++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 0b8b3dd509c..5b2f59a2ed8 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
+DIST librelp-1.7.0.tar.gz 532967 BLAKE2B 19e3eaa05aa7a53b4701eaf96b3be6d8467c7f5c0de0bc1ba81fcb6d6ed6529146140a32b05fcdb47330be2b573a9d84779ea519dd9cacf50d3b7710d523b808 SHA512 e9d71f27d5c50b043254a3f1b0643e7172e5678b6a5a7dddb9d4a9e3afa3ed0adf818a4e868960c1607da5f63430f163f9e76c882ed5460149cb1cceff42b4bd
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
new file mode 100644
index 00000000000..edacd29ee8e
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-09-30 18:05 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-09-30 18:05 UTC (permalink / raw
To: gentoo-commits
commit: 40fe4fe772611857d65b3dc0fe18206f561335e0
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 30 16:49:23 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Sep 30 18:03:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40fe4fe7
dev-libs/librelp: bump to v1.8.0
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.8.0.ebuild | 74 +++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 5b2f59a2ed8..273afbcef11 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1,3 @@
DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
DIST librelp-1.7.0.tar.gz 532967 BLAKE2B 19e3eaa05aa7a53b4701eaf96b3be6d8467c7f5c0de0bc1ba81fcb6d6ed6529146140a32b05fcdb47330be2b573a9d84779ea519dd9cacf50d3b7710d523b808 SHA512 e9d71f27d5c50b043254a3f1b0643e7172e5678b6a5a7dddb9d4a9e3afa3ed0adf818a4e868960c1607da5f63430f163f9e76c882ed5460149cb1cceff42b4bd
+DIST librelp-1.8.0.tar.gz 539467 BLAKE2B 3d1d396059955d2b83a21a42838b56c6a18cde296e6b7c4beb79ba9a8d222d7e5d738419b87b24ed05da553cb16fd827e8820c4c81c50d5a3770ad745efe3ef5 SHA512 aa3e02010cdd4587ff28987f00291708e752b2e2f5f37f5a5239bda6992f55cf428cf1b6e06847062be31844cfdda6b654bcbb9024dff943d140b405ec93c0f4
diff --git a/dev-libs/librelp/librelp-1.8.0.ebuild b/dev-libs/librelp/librelp-1.8.0.ebuild
new file mode 100644
index 00000000000..edacd29ee8e
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.8.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-10-06 15:41 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2020-10-06 15:41 UTC (permalink / raw
To: gentoo-commits
commit: 2ae70dc86946edbb8388f6fa0846cab97185697d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 6 15:39:27 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 6 15:39:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae70dc8
dev-libs/librelp: Stabilize 1.7.0 arm, #746611
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 75ccacffeaa..4c52a175b78 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-10-08 17:31 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2020-10-08 17:31 UTC (permalink / raw
To: gentoo-commits
commit: 6984b68f86abfc47001d55e239056a04461d7abf
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Oct 8 16:22:54 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Oct 8 17:31:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6984b68f
dev-libs/librelp: stable 1.7.0 for hppa, bug #746611
Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 4c52a175b78..2058466da55 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 hppa ~sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-10-10 8:47 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2020-10-10 8:47 UTC (permalink / raw
To: gentoo-commits
commit: e8843d6ba1e2b51521520fa9b7b7c1e2a1c85cd8
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 08:47:08 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 08:47:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8843d6b
dev-libs/librelp: stable 1.7.0 for sparc
stable wrt bug #746611
Package-Manager: Portage-3.0.8, Repoman-3.0.1
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 2058466da55..94d158024d8 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 arm ~arm64 hppa ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 hppa sparc ~x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-10-18 16:02 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-10-18 16:02 UTC (permalink / raw
To: gentoo-commits
commit: f02057ea678d20c75a8cc62b72b89d07c3d0ec99
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 18 15:47:32 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 18 16:00:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f02057ea
dev-libs/librelp: x86 stable (bug #746611)
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 94d158024d8..bb0d1296326 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 arm ~arm64 hppa sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-11-25 19:12 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-11-25 19:12 UTC (permalink / raw
To: gentoo-commits
commit: 65541c1fc76d6a1d2d573f803907df2bc7ba1a75
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 25 19:11:04 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Nov 25 19:12:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65541c1f
dev-libs/librelp: bump to v1.9.0
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.9.0.ebuild | 74 +++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 273afbcef11..19bc949e6d8 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1,4 @@
DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
DIST librelp-1.7.0.tar.gz 532967 BLAKE2B 19e3eaa05aa7a53b4701eaf96b3be6d8467c7f5c0de0bc1ba81fcb6d6ed6529146140a32b05fcdb47330be2b573a9d84779ea519dd9cacf50d3b7710d523b808 SHA512 e9d71f27d5c50b043254a3f1b0643e7172e5678b6a5a7dddb9d4a9e3afa3ed0adf818a4e868960c1607da5f63430f163f9e76c882ed5460149cb1cceff42b4bd
DIST librelp-1.8.0.tar.gz 539467 BLAKE2B 3d1d396059955d2b83a21a42838b56c6a18cde296e6b7c4beb79ba9a8d222d7e5d738419b87b24ed05da553cb16fd827e8820c4c81c50d5a3770ad745efe3ef5 SHA512 aa3e02010cdd4587ff28987f00291708e752b2e2f5f37f5a5239bda6992f55cf428cf1b6e06847062be31844cfdda6b654bcbb9024dff943d140b405ec93c0f4
+DIST librelp-1.9.0.tar.gz 540477 BLAKE2B b42e35e2f3e310cc4a978a6d2f0a127317414d93d87bede5e1bbe69e3031482b4d895bba2256668d383911e2ef55cc3086a44d8bebb15ea56c6ebd28e64e545b SHA512 3cb8cf2707cff662bd0b9100c737458b6b96820db7e362094c77cdb50455fcb944d7760921e0b758a3a6cd15d685f488a976fe909de034c289635c660caae723
diff --git a/dev-libs/librelp/librelp-1.9.0.ebuild b/dev-libs/librelp/librelp-1.9.0.ebuild
new file mode 100644
index 00000000000..edacd29ee8e
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.9.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-11-26 5:18 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2020-11-26 5:18 UTC (permalink / raw
To: gentoo-commits
commit: 1e6874f919d50bc05ce90ab1ae8006ae8eefbebf
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 05:17:08 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 05:17:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e6874f9
dev-libs/librelp: Stabilize 1.7.0 amd64, #746611
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index bb0d1296326..d8057cf1adf 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="~amd64 arm ~arm64 hppa sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2020-11-26 13:26 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2020-11-26 13:26 UTC (permalink / raw
To: gentoo-commits
commit: ddc9fdbe847a6560419463ee137d89c4f9794006
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 13:24:10 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 13:26:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc9fdbe
dev-libs/librelp: drop old
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 -
dev-libs/librelp/librelp-1.6.0.ebuild | 74 -----------------------------------
2 files changed, 75 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 19bc949e6d8..09cb240276d 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,4 +1,3 @@
-DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
DIST librelp-1.7.0.tar.gz 532967 BLAKE2B 19e3eaa05aa7a53b4701eaf96b3be6d8467c7f5c0de0bc1ba81fcb6d6ed6529146140a32b05fcdb47330be2b573a9d84779ea519dd9cacf50d3b7710d523b808 SHA512 e9d71f27d5c50b043254a3f1b0643e7172e5678b6a5a7dddb9d4a9e3afa3ed0adf818a4e868960c1607da5f63430f163f9e76c882ed5460149cb1cceff42b4bd
DIST librelp-1.8.0.tar.gz 539467 BLAKE2B 3d1d396059955d2b83a21a42838b56c6a18cde296e6b7c4beb79ba9a8d222d7e5d738419b87b24ed05da553cb16fd827e8820c4c81c50d5a3770ad745efe3ef5 SHA512 aa3e02010cdd4587ff28987f00291708e752b2e2f5f37f5a5239bda6992f55cf428cf1b6e06847062be31844cfdda6b654bcbb9024dff943d140b405ec93c0f4
DIST librelp-1.9.0.tar.gz 540477 BLAKE2B b42e35e2f3e310cc4a978a6d2f0a127317414d93d87bede5e1bbe69e3031482b4d895bba2256668d383911e2ef55cc3086a44d8bebb15ea56c6ebd28e64e545b SHA512 3cb8cf2707cff662bd0b9100c737458b6b96820db7e362094c77cdb50455fcb944d7760921e0b758a3a6cd15d685f488a976fe909de034c289635c660caae723
diff --git a/dev-libs/librelp/librelp-1.6.0.ebuild b/dev-libs/librelp/librelp-1.6.0.ebuild
deleted file mode 100644
index 8b0b988de2c..00000000000
--- a/dev-libs/librelp/librelp-1.6.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools python-any-r1
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="https://www.rsyslog.com/librelp/"
-SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
-# subslot = soname version
-SLOT="0/0.5.0"
-
-KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-02-21 2:17 Thomas Deutschmann
0 siblings, 0 replies; 93+ messages in thread
From: Thomas Deutschmann @ 2021-02-21 2:17 UTC (permalink / raw
To: gentoo-commits
commit: 3fd59c1a54d8e729a295b5c02b294da9f4d005f5
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 00:32:24 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 02:17:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd59c1a
dev-libs/librelp: bump to v1.10.0
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.10.0.ebuild | 74 ++++++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 09cb240276d..2d37b2b521b 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,3 +1,4 @@
+DIST librelp-1.10.0.tar.gz 543414 BLAKE2B 3c7bace3c7892755c943dc4fc9bee7962e6891f5200ac184555da5f552d19d65f5604c745653d06a87210152af9b57f7234636e59257dd29dc83b5dc566c9680 SHA512 a38840231902bec034edb497166deded7577c989e4f735e406c8488384972925de1ca6132b3080472f7919d2439559c8774c02a49c356e90ad791dfbba2a4865
DIST librelp-1.7.0.tar.gz 532967 BLAKE2B 19e3eaa05aa7a53b4701eaf96b3be6d8467c7f5c0de0bc1ba81fcb6d6ed6529146140a32b05fcdb47330be2b573a9d84779ea519dd9cacf50d3b7710d523b808 SHA512 e9d71f27d5c50b043254a3f1b0643e7172e5678b6a5a7dddb9d4a9e3afa3ed0adf818a4e868960c1607da5f63430f163f9e76c882ed5460149cb1cceff42b4bd
DIST librelp-1.8.0.tar.gz 539467 BLAKE2B 3d1d396059955d2b83a21a42838b56c6a18cde296e6b7c4beb79ba9a8d222d7e5d738419b87b24ed05da553cb16fd827e8820c4c81c50d5a3770ad745efe3ef5 SHA512 aa3e02010cdd4587ff28987f00291708e752b2e2f5f37f5a5239bda6992f55cf428cf1b6e06847062be31844cfdda6b654bcbb9024dff943d140b405ec93c0f4
DIST librelp-1.9.0.tar.gz 540477 BLAKE2B b42e35e2f3e310cc4a978a6d2f0a127317414d93d87bede5e1bbe69e3031482b4d895bba2256668d383911e2ef55cc3086a44d8bebb15ea56c6ebd28e64e545b SHA512 3cb8cf2707cff662bd0b9100c737458b6b96820db7e362094c77cdb50455fcb944d7760921e0b758a3a6cd15d685f488a976fe909de034c289635c660caae723
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
new file mode 100644
index 00000000000..c93e6e68ef5
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.5.1"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )
+ )"
+DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+ virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-05-01 18:24 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-05-01 18:24 UTC (permalink / raw
To: gentoo-commits
commit: c1d6e007960f6ee9097720ee9d3eac7089d84f28
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 1 18:19:41 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 1 18:24:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d6e007
dev-libs/librelp: drop redundant USE=libressl in metadata.xml
It was/is a global USE flag anyway and these
didn't add anything.
Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/dev-libs/librelp/metadata.xml b/dev-libs/librelp/metadata.xml
index 7ccc17cc4eb..01b35724e72 100644
--- a/dev-libs/librelp/metadata.xml
+++ b/dev-libs/librelp/metadata.xml
@@ -7,7 +7,6 @@
</maintainer>
<use>
<flag name="gnutls">Use GnuTLS</flag>
- <flag name="libressl">Use LibreSSL</flag>
<flag name="openssl">Use OpenSSL</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-05-02 15:38 Mikle Kolyada
0 siblings, 0 replies; 93+ messages in thread
From: Mikle Kolyada @ 2021-05-02 15:38 UTC (permalink / raw
To: gentoo-commits
commit: 7cf48341ca290117a4eea5e58fed497b5edbde1d
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 2 15:21:16 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 2 15:38:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf48341
dev-libs/librelp: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 7 ++-----
dev-libs/librelp/librelp-1.7.0.ebuild | 7 +++----
dev-libs/librelp/librelp-1.8.0.ebuild | 7 +++----
dev-libs/librelp/librelp-1.9.0.ebuild | 7 +++----
4 files changed, 11 insertions(+), 17 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index c93e6e68ef5..9b219ea369b 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -16,16 +16,13 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
SLOT="0/0.5.1"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RDEPEND="
ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
+ openssl? ( dev-libs/openssl:0= )
)"
DEPEND="${RDEPEND}
test? ( ${PYTHON_DEPS} )
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 03d8e0e18e0..63acb047a4e 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -16,15 +16,14 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
SLOT="0/0.5.0"
KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RDEPEND="
ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
)
)"
DEPEND="${RDEPEND}
diff --git a/dev-libs/librelp/librelp-1.8.0.ebuild b/dev-libs/librelp/librelp-1.8.0.ebuild
index 075cd75c08b..f877c131d5b 100644
--- a/dev-libs/librelp/librelp-1.8.0.ebuild
+++ b/dev-libs/librelp/librelp-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -16,15 +16,14 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
SLOT="0/0.5.0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RDEPEND="
ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
)
)"
DEPEND="${RDEPEND}
diff --git a/dev-libs/librelp/librelp-1.9.0.ebuild b/dev-libs/librelp/librelp-1.9.0.ebuild
index 075cd75c08b..f877c131d5b 100644
--- a/dev-libs/librelp/librelp-1.9.0.ebuild
+++ b/dev-libs/librelp/librelp-1.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -16,15 +16,14 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
SLOT="0/0.5.0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
-IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
+IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RDEPEND="
ssl? (
gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
openssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
)
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-05-16 0:03 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-05-16 0:03 UTC (permalink / raw
To: gentoo-commits
commit: 1ccb5b6433fab8d30bf1b27555840825768c0474
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 00:02:33 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 16 00:02:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ccb5b64
dev-libs/librelp: Stabilize 1.7.0 arm64, #768675
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.7.0.ebuild b/dev-libs/librelp/librelp-1.7.0.ebuild
index 63acb047a4e..5b9aa08070f 100644
--- a/dev-libs/librelp/librelp-1.7.0.ebuild
+++ b/dev-libs/librelp/librelp-1.7.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-06-01 15:14 Sergei Trofimovich
0 siblings, 0 replies; 93+ messages in thread
From: Sergei Trofimovich @ 2021-06-01 15:14 UTC (permalink / raw
To: gentoo-commits
commit: ae9b433e6148d2c037248db98c5fde84bfafc138
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Jun 1 14:23:14 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 15:14:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae9b433e
dev-libs/librelp: stable 1.10.0 for sparc, bug #793317
Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 9b219ea369b..bcc85d8e70c 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-06-01 17:58 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-06-01 17:58 UTC (permalink / raw
To: gentoo-commits
commit: 0f98be592b589f751e4f14bdddfc8673d7f11c7d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 17:57:25 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 17:57:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f98be59
dev-libs/librelp: Stabilize 1.10.0 arm, #793317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index bcc85d8e70c..76ecfb46699 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-06-02 16:44 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-06-02 16:44 UTC (permalink / raw
To: gentoo-commits
commit: 4be5f7b1e2da561a3fc0169fd2312005e6e69686
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 2 16:42:21 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 2 16:42:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be5f7b1
dev-libs/librelp: Stabilize 1.10.0 amd64, #793317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 76ecfb46699..58434d4fe1b 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-06-03 8:23 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-06-03 8:23 UTC (permalink / raw
To: gentoo-commits
commit: d44bf8f0c24108a11f4cd635c1a22e6a788dfd62
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 3 08:20:19 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 3 08:22:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d44bf8f0
dev-libs/librelp: Stabilize 1.10.0 x86, #793317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 58434d4fe1b..868a2e508e4 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="amd64 arm ~arm64 ~hppa sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-06-03 16:26 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2021-06-03 16:26 UTC (permalink / raw
To: gentoo-commits
commit: c2d9552053a33f58c53700679d82e5b7f19c1145
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 3 16:24:56 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 3 16:26:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d95520
dev-libs/librelp: Stabilize 1.10.0 arm64, #793317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 868a2e508e4..3d59dfe5c0a 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="amd64 arm ~arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2021-10-25 17:20 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2021-10-25 17:20 UTC (permalink / raw
To: gentoo-commits
commit: bdd2980eeeec3482644fe45ad46a190aa913f57b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 25 05:40:11 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 25 17:19:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdd2980e
dev-libs/librelp: enable py3.10
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 3d59dfe5c0a..81695b98624 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
-PYTHON_COMPAT=( python3_{7,8,9} )
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
inherit autotools python-any-r1
DESCRIPTION="An easy to use library for the RELP protocol"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2022-08-05 9:31 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2022-08-05 9:31 UTC (permalink / raw
To: gentoo-commits
commit: 194aa0de2f36c4dfa049ad4132144a0ba6f555fd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 5 09:31:42 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 09:31:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194aa0de
dev-libs/librelp: Keyword 1.10.0 ia64, #855443
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 81695b986249..a5e0c67c9864 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="amd64 arm arm64 ~hppa sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2022-08-23 18:10 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2022-08-23 18:10 UTC (permalink / raw
To: gentoo-commits
commit: eca9ace543e5f7f538ff3d9be21d857306a683ad
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 23 18:10:14 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=eca9ace5
dev-libs/librelp: Keyword 1.10.0 ppc64, #866185
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index a5e0c67c9864..0ef10d08ad71 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2022-08-28 5:55 Jakov Smolić
0 siblings, 0 replies; 93+ messages in thread
From: Jakov Smolić @ 2022-08-28 5:55 UTC (permalink / raw
To: gentoo-commits
commit: 8a49d32cc4fce2e42701e51ddc6e63dc53b247a7
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 05:56:12 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 05:56:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a49d32c
dev-libs/librelp: Keyword 1.10.0 riscv, #867004
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-libs/librelp/librelp-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0.ebuild
index 0ef10d08ad71..56ed7ab6accb 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-03-09 5:58 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2023-03-09 5:58 UTC (permalink / raw
To: gentoo-commits
commit: b903d44b14b0d4a66e0f65f91022f40e55f1ad50
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 9 05:45:12 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 9 05:58:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b903d44b
dev-libs/librelp: enable py3.11, drop -Werror, workaround bashism
Closes: https://bugs.gentoo.org/896724
Signed-off-by: Sam James <sam <AT> gentoo.org>
...relp-1.10.0.ebuild => librelp-1.10.0-r1.ebuild} | 23 +++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.10.0.ebuild b/dev-libs/librelp/librelp-1.10.0-r1.ebuild
similarity index 82%
rename from dev-libs/librelp/librelp-1.10.0.ebuild
rename to dev-libs/librelp/librelp-1.10.0-r1.ebuild
index c277894327aa..5aac6f9418b9 100644
--- a/dev-libs/librelp/librelp-1.10.0.ebuild
+++ b/dev-libs/librelp/librelp-1.10.0-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit autotools python-any-r1
DESCRIPTION="An easy to use library for the RELP protocol"
@@ -11,24 +11,24 @@ HOMEPAGE="https://www.rsyslog.com/librelp/"
SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-
# subslot = soname version
SLOT="0/0.5.1"
-
KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+RESTRICT="!test? ( test )"
RDEPEND="
ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
- openssl? ( dev-libs/openssl:0= )
- )"
-DEPEND="${RDEPEND}
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:= )
+ openssl? ( dev-libs/openssl:= )
+ )
+"
+DEPEND="
+ ${RDEPEND}
test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
+"
+BDEPEND="virtual/pkgconfig"
pkg_setup() {
use test && python-any-r1_pkg_setup
@@ -47,13 +47,14 @@ src_prepare() {
src_configure() {
local myeconfargs=(
--disable-valgrind
+ --disable-Werror
$(use_enable debug)
$(use_enable gnutls tls)
$(use_enable openssl tls-openssl)
$(use_enable static-libs static)
)
- econf "${myeconfargs[@]}"
+ CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
}
src_test() {
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-03-09 5:58 Sam James
0 siblings, 0 replies; 93+ messages in thread
From: Sam James @ 2023-03-09 5:58 UTC (permalink / raw
To: gentoo-commits
commit: 3c2fe1340e974d06035ea24adb78ee578994a4a4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 9 05:47:36 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 9 05:58:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c2fe134
dev-libs/librelp: add 1.11.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 +
dev-libs/librelp/librelp-1.11.0.ebuild | 72 ++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index a28b17eef20e..7e43e656f67d 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
DIST librelp-1.10.0.tar.gz 543414 BLAKE2B 3c7bace3c7892755c943dc4fc9bee7962e6891f5200ac184555da5f552d19d65f5604c745653d06a87210152af9b57f7234636e59257dd29dc83b5dc566c9680 SHA512 a38840231902bec034edb497166deded7577c989e4f735e406c8488384972925de1ca6132b3080472f7919d2439559c8774c02a49c356e90ad791dfbba2a4865
+DIST librelp-1.11.0.tar.gz 546841 BLAKE2B 3645675f7300cca72847973e2414c7ead560f4dcf6d3eb92ae53ce2b279d6a19b792f6fa6b4e9f837710681f0a224c4a85f90091dd45d46aae5ef16180f4a1ee SHA512 e93cbc12fb6e596762c351cdfa3293fea89dd8cf90de4f890771216b56c3f66e3578fefea447d4ca9f754f146712481e7bab9a831f16fcf0cd15b10d475925bc
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
new file mode 100644
index 000000000000..81815f17a365
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+inherit autotools python-any-r1
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="https://www.rsyslog.com/librelp/"
+SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+# subslot = soname version
+SLOT="0/0.5.1"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+IUSE="debug doc +ssl +gnutls openssl static-libs test"
+REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ ssl? (
+ gnutls? ( >=net-libs/gnutls-3.3.17.1:= )
+ openssl? ( dev-libs/openssl:= )
+ )
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
+"
+BDEPEND="virtual/pkgconfig"
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ sed -i \
+ -e 's/ -g"/"/g' \
+ configure.ac || die "sed failed"
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-valgrind
+ --disable-Werror
+ $(use_enable debug)
+ $(use_enable gnutls tls)
+ $(use_enable openssl tls-openssl)
+ $(use_enable static-libs static)
+ )
+
+ CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake -j1 check
+}
+
+src_install() {
+ local DOCS=( ChangeLog )
+ use doc && local HTML_DOCS=( doc/relp.html )
+ default
+
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-04-08 12:26 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2023-04-08 12:26 UTC (permalink / raw
To: gentoo-commits
commit: 06c235d58ee8763ea742519484f50fcafe24f2aa
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 12:26:05 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 12:26:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c235d5
dev-libs/librelp: Stabilize 1.11.0 arm64, #904013
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index 81815f17a365..babc703c374f 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-04-08 17:31 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2023-04-08 17:31 UTC (permalink / raw
To: gentoo-commits
commit: b290e6536919bbb6fde10c283115a1cd534fa0b0
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 17:30:43 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 17:30:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b290e653
dev-libs/librelp: Stabilize 1.11.0 arm, #904013
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index babc703c374f..cfceac82e8c3 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-04-08 17:32 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2023-04-08 17:32 UTC (permalink / raw
To: gentoo-commits
commit: a805ecebd20eb284ddc6dba97e7b8be984660172
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 17:32:09 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 17:32:09 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a805eceb
dev-libs/librelp: Stabilize 1.11.0 sparc, #904013
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index cfceac82e8c3..0adbf673b332 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc ~x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-04-08 17:46 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2023-04-08 17:46 UTC (permalink / raw
To: gentoo-commits
commit: 5b2c0c957e2581fb2f8aeef7f80fc8d603402a0a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 17:45:56 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 17:45:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b2c0c95
dev-libs/librelp: Stabilize 1.11.0 x86, #904013
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index 0adbf673b332..6d9705c5f5d5 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2023-04-08 18:01 Arthur Zamarin
0 siblings, 0 replies; 93+ messages in thread
From: Arthur Zamarin @ 2023-04-08 18:01 UTC (permalink / raw
To: gentoo-commits
commit: 1ed1111ac78b4b66b0f02a330c797c7511e9b2f6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 18:01:43 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 18:01:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed1111a
dev-libs/librelp: Stabilize 1.11.0 amd64, #904013
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index 6d9705c5f5d5..6f4cf576be1a 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
# subslot = soname version
SLOT="0/0.5.1"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
IUSE="debug doc +ssl +gnutls openssl static-libs test"
REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2024-09-10 13:21 Petr Vaněk
0 siblings, 0 replies; 93+ messages in thread
From: Petr Vaněk @ 2024-09-10 13:21 UTC (permalink / raw
To: gentoo-commits
commit: 894a24b2071e0a2c12b25e1669db1a3a3c6c400f
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 10 12:42:39 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep 10 13:20:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=894a24b2
dev-libs/librelp: drop 1.10.0-r1
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
dev-libs/librelp/Manifest | 1 -
dev-libs/librelp/librelp-1.10.0-r1.ebuild | 72 -------------------------------
2 files changed, 73 deletions(-)
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 7e43e656f67d..ac713a928e4e 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1,2 +1 @@
-DIST librelp-1.10.0.tar.gz 543414 BLAKE2B 3c7bace3c7892755c943dc4fc9bee7962e6891f5200ac184555da5f552d19d65f5604c745653d06a87210152af9b57f7234636e59257dd29dc83b5dc566c9680 SHA512 a38840231902bec034edb497166deded7577c989e4f735e406c8488384972925de1ca6132b3080472f7919d2439559c8774c02a49c356e90ad791dfbba2a4865
DIST librelp-1.11.0.tar.gz 546841 BLAKE2B 3645675f7300cca72847973e2414c7ead560f4dcf6d3eb92ae53ce2b279d6a19b792f6fa6b4e9f837710681f0a224c4a85f90091dd45d46aae5ef16180f4a1ee SHA512 e93cbc12fb6e596762c351cdfa3293fea89dd8cf90de4f890771216b56c3f66e3578fefea447d4ca9f754f146712481e7bab9a831f16fcf0cd15b10d475925bc
diff --git a/dev-libs/librelp/librelp-1.10.0-r1.ebuild b/dev-libs/librelp/librelp-1.10.0-r1.ebuild
deleted file mode 100644
index 5aac6f9418b9..000000000000
--- a/dev-libs/librelp/librelp-1.10.0-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit autotools python-any-r1
-
-DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="https://www.rsyslog.com/librelp/"
-SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ doc? ( FDL-1.3 )"
-# subslot = soname version
-SLOT="0/0.5.1"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv sparc x86"
-IUSE="debug doc +ssl +gnutls openssl static-libs test"
-REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- ssl? (
- gnutls? ( >=net-libs/gnutls-3.3.17.1:= )
- openssl? ( dev-libs/openssl:= )
- )
-"
-DEPEND="
- ${RDEPEND}
- test? ( ${PYTHON_DEPS} )
-"
-BDEPEND="virtual/pkgconfig"
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i \
- -e 's/ -g"/"/g' \
- configure.ac || die "sed failed"
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-valgrind
- --disable-Werror
- $(use_enable debug)
- $(use_enable gnutls tls)
- $(use_enable openssl tls-openssl)
- $(use_enable static-libs static)
- )
-
- CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- local DOCS=( ChangeLog )
- use doc && local HTML_DOCS=( doc/relp.html )
- default
-
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 93+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
@ 2024-09-10 13:21 Petr Vaněk
0 siblings, 0 replies; 93+ messages in thread
From: Petr Vaněk @ 2024-09-10 13:21 UTC (permalink / raw
To: gentoo-commits
commit: d019ff33b289d13f2b6828d9e861524b7f9bd5ef
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 10 12:47:39 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep 10 13:20:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d019ff33
dev-libs/librelp: update HOMEPAGE
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
dev-libs/librelp/librelp-1.11.0.ebuild | 7 +++++--
dev-libs/librelp/metadata.xml | 3 +++
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/dev-libs/librelp/librelp-1.11.0.ebuild b/dev-libs/librelp/librelp-1.11.0.ebuild
index 6f4cf576be1a..82d43eb4adcc 100644
--- a/dev-libs/librelp/librelp-1.11.0.ebuild
+++ b/dev-libs/librelp/librelp-1.11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -7,7 +7,10 @@ PYTHON_COMPAT=( python3_{9..11} )
inherit autotools python-any-r1
DESCRIPTION="An easy to use library for the RELP protocol"
-HOMEPAGE="https://www.rsyslog.com/librelp/"
+HOMEPAGE="
+ https://www.rsyslog.com/librelp/
+ https://github.com/rsyslog/librelp
+"
SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3+ doc? ( FDL-1.3 )"
diff --git a/dev-libs/librelp/metadata.xml b/dev-libs/librelp/metadata.xml
index f0df933ee186..0bfd3eff873b 100644
--- a/dev-libs/librelp/metadata.xml
+++ b/dev-libs/librelp/metadata.xml
@@ -6,4 +6,7 @@
<flag name="gnutls">Use GnuTLS</flag>
<flag name="openssl">Use OpenSSL</flag>
</use>
+ <upstream>
+ <remote-id type="github">rsyslog/librelp</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 93+ messages in thread
end of thread, other threads:[~2024-09-10 13:21 UTC | newest]
Thread overview: 93+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-28 5:55 [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2024-09-10 13:21 Petr Vaněk
2024-09-10 13:21 Petr Vaněk
2023-04-08 18:01 Arthur Zamarin
2023-04-08 17:46 Arthur Zamarin
2023-04-08 17:32 Arthur Zamarin
2023-04-08 17:31 Arthur Zamarin
2023-04-08 12:26 Arthur Zamarin
2023-03-09 5:58 Sam James
2023-03-09 5:58 Sam James
2022-08-23 18:10 Arthur Zamarin
2022-08-05 9:31 Arthur Zamarin
2021-10-25 17:20 Arthur Zamarin
2021-06-03 16:26 Sam James
2021-06-03 8:23 Sam James
2021-06-02 16:44 Sam James
2021-06-01 17:58 Sam James
2021-06-01 15:14 Sergei Trofimovich
2021-05-16 0:03 Sam James
2021-05-02 15:38 Mikle Kolyada
2021-05-01 18:24 Sam James
2021-02-21 2:17 Thomas Deutschmann
2020-11-26 13:26 Thomas Deutschmann
2020-11-26 5:18 Sam James
2020-11-25 19:12 Thomas Deutschmann
2020-10-18 16:02 Thomas Deutschmann
2020-10-10 8:47 Sergei Trofimovich
2020-10-08 17:31 Sergei Trofimovich
2020-10-06 15:41 Sam James
2020-09-30 18:05 Thomas Deutschmann
2020-08-26 13:31 Thomas Deutschmann
2020-08-26 13:31 Thomas Deutschmann
2020-07-23 13:49 Sam James
2020-07-02 17:05 Sergei Trofimovich
2020-06-20 10:13 Thomas Deutschmann
2020-06-19 15:41 Sergei Trofimovich
2020-04-28 23:04 Thomas Deutschmann
2020-01-18 9:51 Thomas Deutschmann
2019-12-31 3:17 Thomas Deutschmann
2019-12-31 3:17 Thomas Deutschmann
2019-07-28 11:05 Mikle Kolyada
2019-06-20 18:08 Mikle Kolyada
2019-06-11 22:15 Sergei Trofimovich
2019-06-04 23:12 Thomas Deutschmann
2019-05-02 5:19 Matt Turner
2019-04-27 20:28 David Seifert
2019-03-13 22:58 Thomas Deutschmann
2019-01-03 19:12 Mikle Kolyada
2018-12-20 1:30 Thomas Deutschmann
2018-12-19 20:19 Mikle Kolyada
2018-12-11 16:42 Thomas Deutschmann
2018-12-02 13:29 Mikle Kolyada
2018-10-05 13:33 Mikle Kolyada
2018-10-05 4:10 Thomas Deutschmann
2018-09-26 22:57 Thomas Deutschmann
2018-08-04 21:30 Thomas Deutschmann
2018-08-04 16:32 Thomas Deutschmann
2018-08-04 16:32 Thomas Deutschmann
2018-08-04 16:32 Thomas Deutschmann
2018-07-22 2:23 Mikle Kolyada
2018-07-09 16:19 Mikle Kolyada
2018-07-04 3:17 Thomas Deutschmann
2018-07-03 23:18 Mart Raudsepp
2018-07-03 20:01 Sergei Trofimovich
2018-05-16 23:12 Thomas Deutschmann
2018-04-23 13:20 Thomas Deutschmann
2018-04-22 20:19 Matt Turner
2018-03-28 19:45 Mart Raudsepp
2018-03-28 5:05 Markus Meier
2018-03-23 10:27 Agostino Sarubbo
2018-03-23 7:24 Sergei Trofimovich
2018-03-22 18:53 Thomas Deutschmann
2018-03-19 20:06 Sergei Trofimovich
2017-11-22 21:38 Sergei Trofimovich
2017-10-21 17:06 Sergei Trofimovich
2017-06-30 11:10 Agostino Sarubbo
2017-06-28 13:19 Agostino Sarubbo
2017-06-15 16:06 Markus Meier
2017-06-04 10:42 Agostino Sarubbo
2017-06-01 13:37 Agostino Sarubbo
2017-06-01 10:32 Thomas Deutschmann
2017-03-01 7:55 Michael Weber
2017-02-26 14:11 Thomas Deutschmann
2016-11-27 21:17 Thomas Deutschmann
2016-10-01 13:00 Jeroen Roovers
2016-08-17 13:58 Thomas Deutschmann
2016-08-17 13:58 Thomas Deutschmann
2016-08-17 13:58 Thomas Deutschmann
2016-08-17 13:58 Thomas Deutschmann
2016-06-12 17:52 Patrice Clement
2016-06-12 17:52 Patrice Clement
2016-06-12 17:52 Patrice Clement
2016-03-07 15:48 Ian Delaney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox