commit:     3e931507346a375d803a91e6b26f3aa789f52157
Author:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 31 07:52:57 2018 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Tue Jul 31 07:52:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e931507

net-libs/libsrtp: Remove old SLOT=2 ebuilds.

Now that stabilisation is complete, clear down the long list of SLOT=2 ebuilds.
We need SLOT=0 still for Asterisk, pjproject, ortp, qtwebengine &
gst-plugins-srtp which means 1.6.0 stays.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/libsrtp/Manifest                |  2 -
 net-libs/libsrtp/libsrtp-2.0.0-r1.ebuild | 75 --------------------------------
 net-libs/libsrtp/libsrtp-2.0.0.ebuild    | 73 -------------------------------
 net-libs/libsrtp/libsrtp-2.1.0.ebuild    | 74 -------------------------------
 4 files changed, 224 deletions(-)

diff --git a/net-libs/libsrtp/Manifest b/net-libs/libsrtp/Manifest
index 6c73f314ae5..bc57e86e9e4 100644
--- a/net-libs/libsrtp/Manifest
+++ b/net-libs/libsrtp/Manifest
@@ -1,4 +1,2 @@
 DIST libsrtp-1.6.0.tar.gz 1648862 BLAKE2B 
5526d7659db160df3b6d9f14922bd731d083f04c6dd084ef473c439d720733d0fd8b38bdfe92e30e05a8a94c41df965d04bca52601b2644352428b49b1ed9093
 SHA512 
5ac712d0d343c3b63ed248503cc7d33c637895a274c4434c91f513be117836f27cd5daba83088b4647bbd9c82d841e216e6346af8d485cb9ddcd35dee21d4887
-DIST libsrtp-2.0.0.tar.gz 265564 BLAKE2B 
ebae4a88fd5c77f3ed656569ee4300e4213d5be5c788efc84d8439a14a7773cfa60dc2b7c35a044ad1b5633af581f1526d1c3caa10e3ec800a2d66d5f837ce96
 SHA512 
61bba9aba9bb3e888c2bbc150411d0b3d583ed71ca455c5a3d4d6d06ecd383fdd61f86ad1979fb9c04da1b824e3fb9bb63f0d97e50b4a469d56907fb9dbc42d6
-DIST libsrtp-2.1.0.tar.gz 306090 BLAKE2B 
c5055a66bf12997cd1b0d996a930d413d144280ccf40a1bed4b1ef10caa097f9c4fa40910a66a41bd8e33732b810d8ca5f7cb8acd9cb506cc42ab7e5b5adaf6e
 SHA512 
60f4eb6fd37517eb96df80ab8a9c6fd79dfc89d969bdb04673cd98364f7108fbc703a64b1898056f9220a55315574b6f3f796b6814086360f6fd143e3b20fb3f
 DIST libsrtp-2.2.0.tar.gz 308469 BLAKE2B 
4ef318bdf5c69b69b5869f478d5f0b9ee82d7d8a52440d10e931722c75b2f3a62b59f7542bb932cc93a21b7af24e6b253d70b4722833c5e1e5afce052e3b00e2
 SHA512 
3a5214b02199ae8dff45a2ed225ed9b1dcb75a9c6b07669e23bf86f97ad26e3e22b4930acdf3c56b21b605211a89a53a17c61602195b391a5b29a09823ba868c

diff --git a/net-libs/libsrtp/libsrtp-2.0.0-r1.ebuild 
b/net-libs/libsrtp/libsrtp-2.0.0-r1.ebuild
deleted file mode 100644
index c15b98e7a29..00000000000
--- a/net-libs/libsrtp/libsrtp-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Open-source implementation of the Secure Real-time Transport 
Protocol (SRTP)"
-HOMEPAGE="https://github.com/cisco/libsrtp";
-SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="2/1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
-IUSE="aesicm console debug doc libressl openssl static-libs syslog test"
-
-RDEPEND="
-       openssl? (
-               !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
-               libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
-       )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGES README TODO )
-
-PATCHES=( "${FILESDIR}/${PN}-pcap-automagic-r0.patch" )
-
-src_prepare() {
-       default
-
-       # test/rtpw.c is using /usr/share/dict/words assuming it exists
-       # using test/rtpw.c guaratees the file exists in any case
-       sed -i -e "s:/usr/share/dict/words:rtpw.c:" test/rtpw.c || die
-
-       eautoreconf
-
-       # sadly, tests are too broken to even consider using work-arounds
-       multilib_copy_sources
-}
-
-multilib_src_configure() {
-       # stdout: default error output for messages in debug
-       # pcap: seems to be test-only
-       # openssl-kdf: OpenSSL 1.1.0+
-       econf \
-               --enable-stdout \
-               --disable-pcap \
-               --disable-openssl-kdf \
-               $(use_enable aesicm generic-aesicm) \
-               $(use_enable console) \
-               $(use_enable debug) \
-               $(use_enable openssl)
-}
-
-multilib_src_compile() {
-       use static-libs && emake ${PN}.a
-       emake shared_library
-       use test && emake test
-}
-
-multilib_src_test() {
-       LD_LIBRARY_PATH="${BUILD_DIR}" emake -j1 runtest
-
-       # Makefile.in has '$(testapp): libsrtp2.a'
-       if use !static-libs; then
-               rm libsrtp2.a || die
-       fi
-}
-
-multilib_src_install_all() {
-       # libsrtp.pdf can be generated with doxygen, but it seems to be broken.
-       use doc && DOCS+=( doc/*.txt )
-       einstalldocs
-}

diff --git a/net-libs/libsrtp/libsrtp-2.0.0.ebuild 
b/net-libs/libsrtp/libsrtp-2.0.0.ebuild
deleted file mode 100644
index 828aec3146b..00000000000
--- a/net-libs/libsrtp/libsrtp-2.0.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Open-source implementation of the Secure Real-time Transport 
Protocol (SRTP)"
-HOMEPAGE="https://github.com/cisco/libsrtp";
-SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="2/1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
-IUSE="aesicm console debug doc libressl openssl static-libs syslog test"
-
-RDEPEND="
-       openssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:0= )
-       )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGES README TODO )
-
-PATCHES=( "${FILESDIR}/${PN}-pcap-automagic-r0.patch" )
-
-src_prepare() {
-       default
-
-       # test/rtpw.c is using /usr/share/dict/words assuming it exists
-       # using test/rtpw.c guaratees the file exists in any case
-       sed -i -e "s:/usr/share/dict/words:rtpw.c:" test/rtpw.c || die
-
-       eautoreconf
-}
-
-src_configure() {
-       # stdout: default error output for messages in debug
-       # pcap: seems to be test-only
-       # openssl-kdf: OpenSSL 1.1.0+
-       econf \
-               --enable-stdout \
-               --disable-pcap \
-               --disable-openssl-kdf \
-               $(use_enable aesicm generic-aesicm) \
-               $(use_enable console) \
-               $(use_enable debug) \
-               $(use_enable openssl)
-}
-
-src_compile() {
-       use static-libs && emake ${PN}.a
-       emake shared_library
-       use test && emake test
-}
-
-src_test() {
-       LD_LIBRARY_PATH="${S}" emake -j1 runtest
-
-       # Makefile.in has '$(testapp): libsrtp2.a'
-       if use !static-libs; then
-               rm libsrtp2.a || die
-       fi
-}
-
-src_install() {
-       # libsrtp.pdf can be generated with doxygen, but it seems to be broken.
-       use doc && DOCS+=( doc/*.txt )
-
-       default
-}

diff --git a/net-libs/libsrtp/libsrtp-2.1.0.ebuild 
b/net-libs/libsrtp/libsrtp-2.1.0.ebuild
deleted file mode 100644
index 0ae62cb07f7..00000000000
--- a/net-libs/libsrtp/libsrtp-2.1.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Open-source implementation of the Secure Real-time Transport 
Protocol (SRTP)"
-HOMEPAGE="https://github.com/cisco/libsrtp";
-SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="2/1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
-IUSE="aesicm console debug doc libressl openssl static-libs syslog test"
-
-RDEPEND="
-       openssl? (
-               !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
-               libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
-       )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGES )
-
-PATCHES=( "${FILESDIR}/${P}-pcap-automagic-r0.patch" )
-
-src_prepare() {
-       default
-
-       # test/rtpw.c is using /usr/share/dict/words assuming it exists
-       # using test/rtpw.c guaratees the file exists in any case
-       sed -i -e "s:/usr/share/dict/words:rtpw.c:" test/rtpw.c || die
-
-       mv configure.in configure.ac || die
-       eautoreconf
-
-       # sadly, tests are too broken to even consider using work-arounds
-       multilib_copy_sources
-}
-
-multilib_src_configure() {
-       # stdout: default error output for messages in debug
-       # pcap: seems to be test-only
-       # openssl-kdf: OpenSSL 1.1.0+
-       econf \
-               --enable-log-stdout \
-               --disable-pcap \
-               --disable-openssl-kdf \
-               $(use_enable debug debug-logging) \
-               $(use_enable openssl)
-}
-
-multilib_src_compile() {
-       use static-libs && emake ${PN}2.a
-       emake shared_library
-       use test && emake test
-}
-
-multilib_src_test() {
-       LD_LIBRARY_PATH="${BUILD_DIR}" emake -j1 runtest
-
-       # Makefile.in has '$(testapp): libsrtp2.a'
-       if use !static-libs; then
-               rm libsrtp2.a || die
-       fi
-}
-
-multilib_src_install_all() {
-       # libsrtp.pdf can be generated with doxygen, but it seems to be broken.
-       use doc && DOCS+=( doc/*.txt )
-       einstalldocs
-}

Reply via email to