diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-05-08 11:39:08 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-05-08 11:39:08 +0200 |
commit | 6f06315b1722b4b88be94a5b2134f7df28221e5b (patch) | |
tree | 4335ad6713dd418c022063c43c97d3753beca87b | |
parent | net-libs/telepathy-accounts-signon: Remove last-rited pkg (diff) | |
download | gentoo-6f06315b1722b4b88be94a5b2134f7df28221e5b.tar.gz gentoo-6f06315b1722b4b88be94a5b2134f7df28221e5b.tar.bz2 gentoo-6f06315b1722b4b88be94a5b2134f7df28221e5b.zip |
net-libs/sofia-sip: Remove last-rited pkg
Bug: https://bugs.gentoo.org/926193
Bug: https://bugs.gentoo.org/891791
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | net-libs/sofia-sip/Manifest | 2 | ||||
-rw-r--r-- | net-libs/sofia-sip/metadata.xml | 8 | ||||
-rw-r--r-- | net-libs/sofia-sip/sofia-sip-1.13.16.ebuild | 48 | ||||
-rw-r--r-- | net-libs/sofia-sip/sofia-sip-1.13.9.ebuild | 44 | ||||
-rw-r--r-- | profiles/package.mask | 1 |
5 files changed, 0 insertions, 103 deletions
diff --git a/net-libs/sofia-sip/Manifest b/net-libs/sofia-sip/Manifest deleted file mode 100644 index e35e8f19aeab..000000000000 --- a/net-libs/sofia-sip/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST sofia-sip-1.13.16.tar.gz 2553298 BLAKE2B f9be6a1cd0cae96383e1d1ca8d1ef26deda5e5565dd8b223f6e6a34b596f48cd9e18536b6a53a736b20b7fcf7c67695069e1ba60ff466a932ae5642c9e0b8326 SHA512 29a5bd1e38b5b80d6cd6aeb6f3cff3c93660314a8577b550975ad6eddbc8a2ce341dff3f510cb4f24037bfb0ce5ada142b130a9576a8d6acfb06a38088cdcf50 -DIST sofia-sip-1.13.9.tar.gz 2551559 BLAKE2B 69b5c0e995475a23012e2608a4b146058689c5243221ea1569e40514408884cf602dce2a53cf2468c449bbce14f03082aece0a9249f1a517829d963e56a1792d SHA512 bec7c11d94cc7243d6e1d11eb6fe0b666c018d9eb599896766b55773825cf3e218267d7e6efd1a9f7cb6e1eab79c2b6a38095bfc5a8f013a647588a676f707ec diff --git a/net-libs/sofia-sip/metadata.xml b/net-libs/sofia-sip/metadata.xml deleted file mode 100644 index 56e4d84ccc20..000000000000 --- a/net-libs/sofia-sip/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="github">freeswitch/sofia-sip</remote-id> - </upstream> -</pkgmetadata> diff --git a/net-libs/sofia-sip/sofia-sip-1.13.16.ebuild b/net-libs/sofia-sip/sofia-sip-1.13.16.ebuild deleted file mode 100644 index 4ef129972b2a..000000000000 --- a/net-libs/sofia-sip/sofia-sip-1.13.16.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="RFC3261 compliant SIP User-Agent library" -HOMEPAGE="https://github.com/freeswitch/sofia-sip" -SRC_URI="https://github.com/freeswitch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-linux" -IUSE="ssl test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/glib:2 - ssl? ( - dev-libs/openssl:0= - )" -DEPEND="${RDEPEND} - test? ( dev-libs/check )" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - # Avoid sresolv tests since they make too many assumptions about the - # networking environment, bug 915904 - sed -i -e '/TESTS/ s/run_test_sresolv//' libsofia-sip-ua/sresolv/Makefile.am - - default - eautoreconf -} - -src_configure() { - econf \ - --disable-static \ - $(use_with ssl openssl) -} - -src_install() { - default - dodoc RELEASE - - # no static archives - find "${D}" -name '*.la' -delete || die -} diff --git a/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild b/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild deleted file mode 100644 index a316b7b3da32..000000000000 --- a/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="RFC3261 compliant SIP User-Agent library" -HOMEPAGE="https://github.com/freeswitch/sofia-sip" -SRC_URI="https://github.com/freeswitch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ~ppc64 sparc x86 ~x86-linux" -IUSE="ssl test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/glib:2 - ssl? ( - dev-libs/openssl:0= - )" -DEPEND="${RDEPEND} - test? ( dev-libs/check )" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --disable-static \ - $(use_with ssl openssl) -} - -src_install() { - default - dodoc RELEASE - - # no static archives - find "${D}" -name '*.la' -delete || die -} diff --git a/profiles/package.mask b/profiles/package.mask index 4c985ba2013d..6e3947275215 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -335,7 +335,6 @@ sys-apps/memtest86 # Dead upstream for many years, in a state of decay and no revdeps. # Removal on 2024-05-06. Bug #926193, #891791 net-im/telepathy-connection-managers -net-libs/sofia-sip # Sam James <sam@gentoo.org> (2024-03-28) # Newer 5.4.x releases were signed by a potentially compromised upstream maintainer. |