summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-01-05 21:05:57 +0000
committerSam James <sam@gentoo.org>2021-01-05 21:05:57 +0000
commitfc274a0c45f0a19d7f277c015cef6ecf09438cf7 (patch)
tree32b055b49d1d29b785aa5df8bffb2d4a25ac6d14 /media-libs/bcg729
parentdev-python/snakeoil: Stabilize 0.8.9 arm64, #763786 (diff)
downloadgentoo-fc274a0c45f0a19d7f277c015cef6ecf09438cf7.tar.gz
gentoo-fc274a0c45f0a19d7f277c015cef6ecf09438cf7.tar.bz2
gentoo-fc274a0c45f0a19d7f277c015cef6ecf09438cf7.zip
media-libs/bcg729: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/bcg729')
-rw-r--r--media-libs/bcg729/Manifest1
-rw-r--r--media-libs/bcg729/bcg729-1.0.4-r1.ebuild38
2 files changed, 0 insertions, 39 deletions
diff --git a/media-libs/bcg729/Manifest b/media-libs/bcg729/Manifest
index 479f0e5ad67f..bca9c215ee85 100644
--- a/media-libs/bcg729/Manifest
+++ b/media-libs/bcg729/Manifest
@@ -1,3 +1,2 @@
-DIST bcg729-1.0.4.tar.gz 115641 BLAKE2B 5240fc10f8c4c32d9c9a6fc527a198fc896a8ff5ea12aa8a692808877582ac25b3fee122799cb7f6cea58db2f07cc07348da36d9f526e62f0bf62d61ef33bcfa SHA512 fdbbd2c9a807ed832ac3976301843bae854368ab281d16f792550bbda921d226fc6003c0a499561529f22eae08bc0d78b8826c2d06c859ab706d999a96967ffb
DIST bcg729-1.1.1.tar.gz 122475 BLAKE2B 6774f6af439c9308db856be9d4bbb6db5c73e7a807b51dca6338d1506d896052a7830ade7767b45fd5a9ded0a6a0057e207bc1d5b0e33adbaed9dafb13a7bd3b SHA512 e8cc4b7486a9a29fb729ab9fd9e3c4a2155573f38cec16f5a53db3b416fc1119ea5f5a61243a8d37cb0b64580c5df1b632ff165dc7ff47421fa567dafffaacd8
DIST bcg729-tests-20210101.zip 33438219 BLAKE2B 93bf1538f905f2fb67d703a6275ac7d616c005efb709f4d11e838be8b06e7f87429c4114dfc3e393b7b635dca51bf75a09d676188e9e11facdf7ec45ec5e4e50 SHA512 bd97521dc620e857dc3956ffc8a0b23da86ab2dd00621247ad91f05f04a9df7ce19bda426a307188f9271341332a393cb6e85c5c7e04b85c6e92496b6ffad5fc
diff --git a/media-libs/bcg729/bcg729-1.0.4-r1.ebuild b/media-libs/bcg729/bcg729-1.0.4-r1.ebuild
deleted file mode 100644
index 04926f70bcfb..000000000000
--- a/media-libs/bcg729/bcg729-1.0.4-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit cmake-utils
-
-DESCRIPTION="encoder and decoder of the ITU G729 Annex A/B speech codec"
-HOMEPAGE="https://github.com/BelledonneCommunications/bcg729"
-SRC_URI="https://github.com/BelledonneCommunications/bcg729/archive/${PV/_/-}.tar.gz \
- -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 x86"
-IUSE="static-libs"
-
-RDEPEND="
- !media-plugins/mediastreamer-bcg729
-"
-S=${WORKDIR}/${P/_/-}
-DOCS=( AUTHORS NEWS README.md )
-
-src_prepare() {
- sed -i -e '/-Werror/d' CMakeLists.txt || die
- cmake-utils_src_prepare
-}
-
-src_configure() {
- mycmakeargs=(
- -DENABLE_STATIC=$(usex static-libs)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- find "${ED}" -name '*.la' -delete || die
-}