From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
Date: Wed, 26 Aug 2020 13:31:08 +0000 (UTC) [thread overview]
Message-ID: <1598448660.f4fd6c410255587c7f172ff066c58d6e5f7888f8.whissi@gentoo> (raw)
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
-}
next reply other threads:[~2020-08-26 13:31 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-26 13:31 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-10 13:21 [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/ 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-28 5:55 Jakov Smolić
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-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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1598448660.f4fd6c410255587c7f172ff066c58d6e5f7888f8.whissi@gentoo \
--to=whissi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox