summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2018-04-23 15:19:26 +0200
committerThomas Deutschmann <whissi@gentoo.org>2018-04-23 15:19:58 +0200
commit245f43208e00065a6f83325c8a59634fd4aa559f (patch)
tree6d5413a356497f3148b06c36a49b736a63b100fa
parentx11-libs/gtk+: bump to 3.22.30; stable wayland xdg-shell protocol support (diff)
downloadgentoo-245f43208e00065a6f83325c8a59634fd4aa559f.tar.gz
gentoo-245f43208e00065a6f83325c8a59634fd4aa559f.tar.bz2
gentoo-245f43208e00065a6f83325c8a59634fd4aa559f.zip
dev-libs/librelp: Security cleanup
Bug: https://bugs.gentoo.org/651192 Package-Manager: Portage-2.3.31, Repoman-2.3.9
-rw-r--r--dev-libs/librelp/Manifest3
-rw-r--r--dev-libs/librelp/librelp-1.2.12.ebuild55
-rw-r--r--dev-libs/librelp/librelp-1.2.13.ebuild55
-rw-r--r--dev-libs/librelp/librelp-1.2.14.ebuild55
4 files changed, 0 insertions, 168 deletions
diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index 0e46f0029d0a..a2ca2208800f 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 23a107322d77..000000000000
--- 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 02b5e651ab17..000000000000
--- 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 f2c2926f74ec..000000000000
--- 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
-}