From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x264/
Date: Thu, 7 Jan 2021 19:04:03 +0000 (UTC) [thread overview]
Message-ID: <1610046118.c202f939cfbd90e688d0bf0756d9165920c4d88e.sam@gentoo> (raw)
commit: c202f939cfbd90e688d0bf0756d9165920c4d88e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 19:01:58 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 19:01:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c202f939
media-libs/x264: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/x264/Manifest | 1 -
media-libs/x264/x264-0.0.20190214.ebuild | 65 --------------------------------
media-libs/x264/x264-0.0.20190903.ebuild | 65 --------------------------------
3 files changed, 131 deletions(-)
diff --git a/media-libs/x264/Manifest b/media-libs/x264/Manifest
index fd3a9926450..c1e5f3cbddf 100644
--- a/media-libs/x264/Manifest
+++ b/media-libs/x264/Manifest
@@ -1,2 +1 @@
-DIST x264-snapshot-20190214-2245.tar.bz2 770462 BLAKE2B d90a3bafb88febe12526b225617616a62c32fa3d3eacf410267e1fbd7e0fafaadca7c146172c08fc525bce8791d81c7d87dc27b06d61a6a44bf2ad92f6c1def6 SHA512 c8b1b46d4e6c0ef653dab35083a454c635ebf72c6a5255ce30bbb5d9d6bb8e23fca0e6cc197ea99f3c702fbfec096587df6fa82dec338d8bd45e35fa89c43039
DIST x264-snapshot-20190903-2245.tar.bz2 774515 BLAKE2B 0b19fc1d3cedea32bfac9c5247bce7b3c04dead35458d61f3b5c0694040dc852b0110b620faf4118ed265a5605aafce3c49d468d38fb91e4c515b2860c486920 SHA512 c357c9025ffdf653c974eb7ccc2e9a4de86c02881372a6a8270ae59ce948c284da48a2aba37763bd29359d2a6dfc76ea56a52fed6082f8483912c8f948488a2d
diff --git a/media-libs/x264/x264-0.0.20190214.ebuild b/media-libs/x264/x264-0.0.20190214.ebuild
deleted file mode 100644
index afad6f3e086..00000000000
--- a/media-libs/x264/x264-0.0.20190214.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic multilib-minimal toolchain-funcs
-
-DESCRIPTION="A free library for encoding X264/AVC streams"
-HOMEPAGE="https://www.videolan.org/developers/x264.html"
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://code.videolan.org/videolan/x264.git"
-else
- MY_P="x264-snapshot-$(ver_cut 3)-2245"
- SRC_URI="https://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
- S="${WORKDIR}/${MY_P}"
-fi
-
-SLOT="0/157" # SONAME
-
-LICENSE="GPL-2"
-IUSE="altivec +interlaced opencl pic static-libs cpu_flags_x86_sse +threads"
-
-ASM_DEP=">=dev-lang/nasm-2.13"
-DEPEND="abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )
- opencl? ( dev-lang/perl )"
-RDEPEND="opencl? ( >=virtual/opencl-0-r3[${MULTILIB_USEDEP}] )"
-
-DOCS=( AUTHORS doc/{ratecontrol,regression_test,standards,threads,vui}.txt )
-
-multilib_src_configure() {
- tc-export CC
-
- if [[ ${ABI} == x86 || ${ABI} == amd64 ]]; then
- export AS="nasm"
- else
- export AS="${CC}"
- fi
-
- local asm_conf=""
-
- if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || [[ ${ABI} == "x32" ]] || [[ ${CHOST} == armv5* ]] || [[ ${ABI} == ppc* ]] && { use !altivec ; }; then
- asm_conf=" --disable-asm"
- fi
-
- "${S}/configure" \
- --prefix="${EPREFIX}"/usr \
- --libdir="${EPREFIX}"/usr/$(get_libdir) \
- --disable-cli \
- --disable-avs \
- --disable-lavf \
- --disable-swscale \
- --disable-ffms \
- --disable-gpac \
- --enable-pic \
- --enable-shared \
- --host="${CHOST}" \
- $(usex interlaced "" "--disable-interlaced") \
- $(usex opencl "" "--disable-opencl") \
- $(usex static-libs "--enable-static" "") \
- $(usex threads "" "--disable-thread") \
- ${asm_conf} || die
-}
diff --git a/media-libs/x264/x264-0.0.20190903.ebuild b/media-libs/x264/x264-0.0.20190903.ebuild
deleted file mode 100644
index 51c45d66d46..00000000000
--- a/media-libs/x264/x264-0.0.20190903.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic multilib-minimal toolchain-funcs
-
-DESCRIPTION="A free library for encoding X264/AVC streams"
-HOMEPAGE="https://www.videolan.org/developers/x264.html"
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://code.videolan.org/videolan/x264.git"
-else
- MY_P="x264-snapshot-$(ver_cut 3)-2245"
- SRC_URI="https://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
- S="${WORKDIR}/${MY_P}"
-fi
-
-SLOT="0/157" # SONAME
-
-LICENSE="GPL-2"
-IUSE="cpu_flags_ppc_altivec +interlaced opencl pic static-libs cpu_flags_x86_sse +threads"
-
-ASM_DEP=">=dev-lang/nasm-2.13"
-DEPEND="abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )
- opencl? ( dev-lang/perl )"
-RDEPEND="opencl? ( >=virtual/opencl-0-r3[${MULTILIB_USEDEP}] )"
-
-DOCS=( AUTHORS doc/{ratecontrol,regression_test,standards,threads,vui}.txt )
-
-multilib_src_configure() {
- tc-export CC
-
- if [[ ${ABI} == x86 || ${ABI} == amd64 ]]; then
- export AS="nasm"
- else
- export AS="${CC}"
- fi
-
- local asm_conf=""
-
- if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || [[ ${ABI} == "x32" ]] || [[ ${CHOST} == armv5* ]] || [[ ${ABI} == ppc* ]] && { use !cpu_flags_ppc_altivec ; }; then
- asm_conf=" --disable-asm"
- fi
-
- "${S}/configure" \
- --prefix="${EPREFIX}"/usr \
- --libdir="${EPREFIX}"/usr/$(get_libdir) \
- --disable-cli \
- --disable-avs \
- --disable-lavf \
- --disable-swscale \
- --disable-ffms \
- --disable-gpac \
- --enable-pic \
- --enable-shared \
- --host="${CHOST}" \
- $(usex interlaced "" "--disable-interlaced") \
- $(usex opencl "" "--disable-opencl") \
- $(usex static-libs "--enable-static" "") \
- $(usex threads "" "--disable-thread") \
- ${asm_conf} || die
-}
next reply other threads:[~2021-01-07 19:04 UTC|newest]
Thread overview: 87+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-07 19:04 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-01 8:02 [gentoo-commits] repo/gentoo:master commit in: media-libs/x264/ Sam James
2024-11-25 20:42 Sam James
2024-11-23 18:02 Arthur Zamarin
2024-11-23 14:27 Sam James
2024-11-23 13:02 Arthur Zamarin
2024-08-25 18:03 Sam James
2023-12-26 21:39 Sam James
2023-12-22 7:21 Arthur Zamarin
2023-12-22 7:21 Arthur Zamarin
2023-12-21 16:01 Arthur Zamarin
2023-12-21 12:56 Sam James
2023-12-21 12:56 Sam James
2023-12-21 11:55 Sam James
2023-12-21 11:55 Sam James
2023-12-21 9:57 Sam James
2023-11-25 6:47 Sam James
2023-03-22 5:30 Sam James
2022-11-12 17:48 Matt Turner
2022-11-12 16:09 Arthur Zamarin
2022-11-12 16:07 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-09-05 3:56 Sam James
2022-09-03 5:27 Sam James
2022-03-10 12:45 Alexis Ballier
2022-03-10 12:45 Alexis Ballier
2021-08-10 0:02 Marek Szuba
2021-01-07 18:57 Sam James
2021-01-07 10:14 Sam James
2021-01-06 14:27 Fabian Groffen
2021-01-04 19:40 Sergei Trofimovich
2021-01-04 3:31 Sam James
2021-01-04 2:03 Sam James
2021-01-04 1:32 Sam James
2020-09-15 9:02 Alexis Ballier
2020-09-05 18:54 Mike Gilbert
2020-07-21 23:15 Kent Fredric
2020-06-16 6:33 Sergei Trofimovich
2020-06-10 4:52 Georgy Yakovlev
2019-12-29 19:34 Mike Gilbert
2019-09-29 2:56 Mike Gilbert
2019-09-04 14:46 Alexis Ballier
2019-07-28 11:24 Andreas Sturmlechner
2019-07-28 11:04 Mikle Kolyada
2019-07-02 13:12 Agostino Sarubbo
2019-07-02 10:33 Agostino Sarubbo
2019-07-02 10:12 Agostino Sarubbo
2019-07-02 8:28 Sergei Trofimovich
2019-07-02 8:24 Sergei Trofimovich
2019-07-02 8:19 Sergei Trofimovich
2019-07-01 19:23 Thomas Deutschmann
2019-05-05 19:05 Mike Gilbert
2019-02-15 12:36 Alexis Ballier
2019-01-17 2:47 Andreas Sturmlechner
2018-05-20 19:13 Andreas Sturmlechner
2018-04-19 20:31 Mikle Kolyada
2018-04-13 10:44 Alexis Ballier
2018-04-12 14:43 Sergei Trofimovich
2018-04-03 6:26 Sergei Trofimovich
2018-03-05 14:52 Tobias Klausmann
2018-02-26 14:25 Jason Zaman
2018-02-25 21:57 Sergei Trofimovich
2018-02-25 20:16 Thomas Deutschmann
2018-02-25 19:41 Andreas Sturmlechner
2018-02-24 8:55 Sergei Trofimovich
2017-12-27 16:08 Luca Barbato
2017-12-27 16:08 Luca Barbato
2017-12-17 15:16 Andrey Utkin
2017-12-09 18:41 Craig Andrews
2017-12-09 18:41 Craig Andrews
2017-11-26 23:06 David Seifert
2017-08-31 12:37 Tim Harder
2017-07-02 10:04 Alexis Ballier
2017-07-02 10:04 Alexis Ballier
2017-07-02 10:04 Alexis Ballier
2017-04-23 14:23 Alexis Ballier
2017-03-15 15:07 Michael Weber
2017-03-10 5:51 Markus Meier
2017-03-08 21:34 Markus Meier
2017-01-14 12:50 Jeroen Roovers
2016-12-06 12:21 Agostino Sarubbo
2016-12-06 12:21 Agostino Sarubbo
2016-12-06 9:04 Tobias Klausmann
2016-07-13 13:24 Alexis Ballier
2016-05-24 14:12 Alexis Ballier
2015-08-21 13:51 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1610046118.c202f939cfbd90e688d0bf0756d9165920c4d88e.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox