diff options
author | 2015-05-19 07:56:32 +0000 | |
---|---|---|
committer | 2015-05-19 07:56:32 +0000 | |
commit | 7f03f56650ed28f7064b323fef56b1bae2602d41 (patch) | |
tree | 54935c1d59739186c9606f0bc26156da8017a191 /media-libs/x265 | |
parent | Version bump. Removed old (diff) | |
download | gentoo-2-7f03f56650ed28f7064b323fef56b1bae2602d41.tar.gz gentoo-2-7f03f56650ed28f7064b323fef56b1bae2602d41.tar.bz2 gentoo-2-7f03f56650ed28f7064b323fef56b1bae2602d41.zip |
remove old
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/x265')
-rw-r--r-- | media-libs/x265/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/x265/x265-1.3.ebuild | 72 | ||||
-rw-r--r-- | media-libs/x265/x265-1.4.ebuild | 72 |
3 files changed, 5 insertions, 145 deletions
diff --git a/media-libs/x265/ChangeLog b/media-libs/x265/ChangeLog index e787885b97ca..866ad2042177 100644 --- a/media-libs/x265/ChangeLog +++ b/media-libs/x265/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/x265 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.22 2015/05/11 16:59:21 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.23 2015/05/19 07:56:32 aballier Exp $ + + 19 May 2015; Alexis Ballier <aballier@gentoo.org> -x265-1.3.ebuild, + -x265-1.4.ebuild: + remove old 11 May 2015; Mikle Kolyada <zlogene@gentoo.org> x265-1.5.ebuild: amd64 stable wrt bug #538798 diff --git a/media-libs/x265/x265-1.3.ebuild b/media-libs/x265/x265-1.3.ebuild deleted file mode 100644 index 20ae72269caf..000000000000 --- a/media-libs/x265/x265-1.3.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.3.ebuild,v 1.1 2014/09/12 07:05:00 ssuominen Exp $ - -EAPI=5 - -inherit cmake-multilib multilib flag-o-matic - -if [[ ${PV} = 9999* ]]; then - inherit mercurial - EHG_REPO_URI="http://bitbucket.org/multicoreware/x265" -else - SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> ${P}.tar.bz2" - KEYWORDS="~amd64 ~arm ~x86" -fi - -DESCRIPTION="Library for encoding video streams into the H.265/HEVC format" -HOMEPAGE="http://x265.org/" - -LICENSE="GPL-2" -# subslot = libx265 soname -SLOT="0/31" -IUSE="+10bit test" - -ASM_DEPEND=">=dev-lang/yasm-1.2.0" -RDEPEND="" -DEPEND="${RDEPEND} - abi_x86_32? ( ${ASM_DEPEND} ) - abi_x86_64? ( ${ASM_DEPEND} )" - -src_unpack() { - if [[ ${PV} = 9999* ]]; then - mercurial_src_unpack - # Can't set it at global scope due to mercurial.eclass limitations... - export S=${WORKDIR}/${P}/source - else - unpack ${A} - export S=$(echo "${WORKDIR}"/*${PN}*/source) - fi -} - -multilib_src_configure() { - append-cflags -fPIC - append-cxxflags -fPIC - local mycmakeargs=( - $(cmake-utils_use_enable test TESTS) - $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF") - -DHIGH_BIT_DEPTH=$(usex 10bit "ON" "OFF") - -DLIB_INSTALL_DIR="$(get_libdir)" - ) - cmake-utils_src_configure -} - -src_configure() { - multilib_parallel_foreach_abi multilib_src_configure -} - -multilib_src_test() { - cd "${BUILD_DIR}/test" || die - for i in PoolTest TestBench ; do - ./${i} || die - done -} - -src_test() { - multilib_foreach_abi multilib_src_test -} - -src_install() { - cmake-multilib_src_install - dodoc -r "${S}/../doc/"* -} diff --git a/media-libs/x265/x265-1.4.ebuild b/media-libs/x265/x265-1.4.ebuild deleted file mode 100644 index a3abfe63a764..000000000000 --- a/media-libs/x265/x265-1.4.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.4.ebuild,v 1.2 2015/05/01 18:53:21 jer Exp $ - -EAPI=5 - -inherit cmake-multilib multilib flag-o-matic - -if [[ ${PV} = 9999* ]]; then - inherit mercurial - EHG_REPO_URI="http://bitbucket.org/multicoreware/x265" -else - SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> ${P}.tar.bz2" - KEYWORDS="~amd64 ~arm ~ppc64 ~x86" -fi - -DESCRIPTION="Library for encoding video streams into the H.265/HEVC format" -HOMEPAGE="http://x265.org/" - -LICENSE="GPL-2" -# subslot = libx265 soname -SLOT="0/35" -IUSE="+10bit test" - -ASM_DEPEND=">=dev-lang/yasm-1.2.0" -RDEPEND="" -DEPEND="${RDEPEND} - abi_x86_32? ( ${ASM_DEPEND} ) - abi_x86_64? ( ${ASM_DEPEND} )" - -src_unpack() { - if [[ ${PV} = 9999* ]]; then - mercurial_src_unpack - # Can't set it at global scope due to mercurial.eclass limitations... - export S=${WORKDIR}/${P}/source - else - unpack ${A} - export S=$(echo "${WORKDIR}"/*${PN}*/source) - fi -} - -multilib_src_configure() { - append-cflags -fPIC - append-cxxflags -fPIC - local mycmakeargs=( - $(cmake-utils_use_enable test TESTS) - $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF") - -DHIGH_BIT_DEPTH=$(usex 10bit "ON" "OFF") - -DLIB_INSTALL_DIR="$(get_libdir)" - ) - cmake-utils_src_configure -} - -src_configure() { - multilib_parallel_foreach_abi multilib_src_configure -} - -multilib_src_test() { - cd "${BUILD_DIR}/test" || die - for i in PoolTest TestBench ; do - ./${i} || die - done -} - -src_test() { - multilib_foreach_abi multilib_src_test -} - -src_install() { - cmake-multilib_src_install - dodoc -r "${S}/../doc/"* -} |