From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/
Date: Tue, 26 Jul 2016 09:27:48 +0000 (UTC) [thread overview]
Message-ID: <1469525133.0f1c6cdf0b0fc7708fb5b4b8c9fea34ab07864c9.aballier@gentoo> (raw)
commit: 0f1c6cdf0b0fc7708fb5b4b8c9fea34ab07864c9
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 26 09:25:33 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 09:25:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f1c6cdf
media-libs/kvazaar: remove old
Package-Manager: portage-2.3.0
media-libs/kvazaar/Manifest | 3 --
media-libs/kvazaar/kvazaar-0.7.1.ebuild | 62 --------------------------------
media-libs/kvazaar/kvazaar-0.7.2.ebuild | 63 ---------------------------------
media-libs/kvazaar/kvazaar-0.8.2.ebuild | 51 --------------------------
4 files changed, 179 deletions(-)
diff --git a/media-libs/kvazaar/Manifest b/media-libs/kvazaar/Manifest
index 144b7e6..10fb437 100644
--- a/media-libs/kvazaar/Manifest
+++ b/media-libs/kvazaar/Manifest
@@ -1,4 +1 @@
-DIST kvazaar-0.7.1.tar.gz 288339 SHA256 c3693f801f0e717b1dcab3494d3e18a1687861af1a2c33b8878b2f70bcf18164 SHA512 a7d0a68e4b898f7dbb4175ab8a005d88786f522e185c1814a36a48395d34398880fc18e6baeebe4fef0ea97829e937df2ec9f547e05a9a1b2fdb74e260390e2a WHIRLPOOL ad640f5cf4c8238c7fbda3d126e1d7d37b3619a3eb000737eabf75b464fbf37cbc1de11c643725fb8cfbbfe8aa21df12d2c7b7aed0df29f7d8774256e78818a0
-DIST kvazaar-0.7.2.tar.gz 293147 SHA256 623e955d1dbf4f469a57c540537e977f3cead2abcb43d640e2fa0f568168cede SHA512 db06bed953cbe69f2388adfeeecdd150f36a436199e9627a06c26e4fee740255d47757522a3216c2aaca6233fbff0bf64ab5fa6ac6a26cf5af88bfd07c7d78a0 WHIRLPOOL 371379ed6c30c6db3c729e0cfded3f300157a62255b9865f4f45666354f1e2e35cad2e869600de662745251f044f7852dcb8e08e820f4d41f3e7efea13ccb645
-DIST kvazaar-0.8.2.tar.gz 422425 SHA256 1b9354a639ab6c902e974780b39112b5e75477205611f88b54562c895182b945 SHA512 e5089ae28b467c19e854dcf53ac48d14aa01b5f6a72d7a11e66e146c7b9cc11068377a9021f03a697dcf66a66dd42180d2bab24d62c00ee4e2763c5d93754a85 WHIRLPOOL 54c9de8df2b35a2192ba56680d7edc047b1cccc0682875b5a5f6dacec5e67daf8137576d4fc9f86139a54ce82dd29355cfce3fd66589961eb09fe329f64dd15c
DIST kvazaar-0.8.3.tar.gz 429852 SHA256 a5cebc313bc2edcf631684e67c33227e56d803bfbc940cf8c2f3906b4f543a12 SHA512 7de2c311c75b77d1f9a95f1de79212560b86bd6f8d7ae743240ff33cec52ecb2837be7984f12fe617560445838381ada245196bf1bf67eeb3861f025998fdf60 WHIRLPOOL 1fdcf9835aca8a4d4261c184e957abcc4fa21df5e3d0520a63e95dfc800d086dc6ae5f70fc4110db232a013f84205230f1c5e2043f57db21cc100b33ef504d05
diff --git a/media-libs/kvazaar/kvazaar-0.7.1.ebuild b/media-libs/kvazaar/kvazaar-0.7.1.ebuild
deleted file mode 100644
index 50c477d..0000000
--- a/media-libs/kvazaar/kvazaar-0.7.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-SCM=""
-
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
-fi
-
-inherit multilib multilib-minimal ${SCM}
-
-DESCRIPTION="An open-source HEVC encoder"
-HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
-
-if [ "${PV#9999}" = "${PV}" ] ; then
- SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="cpu_flags_x86_avx2 static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${P}/src"
-
-ASM_DEP=">=dev-lang/yasm-1.2.0"
-DEPEND="${DEPEND}
- abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )"
-
-src_prepare() {
- multilib_copy_sources
-}
-
-multilib_src_compile() {
- emake \
- ARCH="${CHOST%%-*}" \
- $(usex cpu_flags_x86_avx2 "" "KVZ_DISABLE_AVX2=true") \
- lib-shared \
- $(usex static-libs "lib-static" "") \
- $(multilib_is_native_abi && echo cli)
-}
-
-multilib_src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
- LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
- install-pc install-lib \
- $(usex static-libs "install-static" "") \
- $(multilib_is_native_abi && echo install-prog)
-}
-
-multilib_src_install_all() {
- dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
-}
diff --git a/media-libs/kvazaar/kvazaar-0.7.2.ebuild b/media-libs/kvazaar/kvazaar-0.7.2.ebuild
deleted file mode 100644
index 425dd69..0000000
--- a/media-libs/kvazaar/kvazaar-0.7.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-SCM=""
-
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
-fi
-
-inherit multilib multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="An open-source HEVC encoder"
-HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
-
-if [ "${PV#9999}" = "${PV}" ] ; then
- SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="cpu_flags_x86_avx2 static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${P}/src"
-
-ASM_DEP=">=dev-lang/yasm-1.2.0"
-DEPEND="${DEPEND}
- abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )"
-
-src_prepare() {
- multilib_copy_sources
-}
-
-multilib_src_compile() {
- tc-export CC
- emake \
- ARCH="${CHOST%%-*}" \
- $(usex cpu_flags_x86_avx2 "" "KVZ_DISABLE_AVX2=true") \
- lib-shared \
- $(usex static-libs "lib-static" "") \
- $(multilib_is_native_abi && echo cli)
-}
-
-multilib_src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
- LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
- install-pc install-lib \
- $(usex static-libs "install-static" "") \
- $(multilib_is_native_abi && echo install-prog)
-}
-
-multilib_src_install_all() {
- dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
-}
diff --git a/media-libs/kvazaar/kvazaar-0.8.2.ebuild b/media-libs/kvazaar/kvazaar-0.8.2.ebuild
deleted file mode 100644
index 972f429..0000000
--- a/media-libs/kvazaar/kvazaar-0.8.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-SCM=""
-
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
-fi
-
-inherit multilib autotools multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="An open-source HEVC encoder"
-HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
-
-if [ "${PV#9999}" = "${PV}" ] ; then
- SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="LGPL-2.1"
-# subslot = libkvazaar major
-SLOT="0/3"
-IUSE="cpu_flags_x86_avx2 static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-ASM_DEP=">=dev-lang/yasm-1.2.0"
-DEPEND="${DEPEND}
- abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )"
-
-src_prepare() {
- eautoreconf
-}
-
-multilib_src_compile() {
- ECONF_SOURCE="${S}" \
- econf \
- --docdir "/usr/share/doc/${PF}" \
- $(use_enable static-libs static) \
- $(use_enable cpu_flags_x86_avx2 asm)
-}
-
-multilib_src_install_all() {
- find "${ED}" -name '*.la' -delete
-}
next reply other threads:[~2016-07-26 9:27 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-26 9:27 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-07 23:37 [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/ Sam James
2024-04-07 23:35 Sam James
2024-03-12 4:29 Ionen Wolkens
2024-03-11 16:17 Viorel Munteanu
2024-03-08 20:02 Sam James
2023-12-22 5:14 Ionen Wolkens
2023-12-02 17:26 Arthur Zamarin
2023-12-01 19:13 Arthur Zamarin
2023-06-01 16:42 Arthur Zamarin
2023-06-01 16:41 Arthur Zamarin
2023-04-08 6:47 Viorel Munteanu
2023-04-05 13:32 WANG Xuerui
2023-04-05 13:32 WANG Xuerui
2023-03-26 16:22 Arthur Zamarin
2023-03-20 13:57 Yixun Lan
2023-03-20 5:36 Sam James
2022-12-02 18:44 WANG Xuerui
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-15 13:27 Alexis Ballier
2021-08-24 14:33 Marek Szuba
2021-05-17 21:02 Sergei Trofimovich
2021-05-13 17:02 Sam James
2021-05-13 17:01 Sam James
2021-05-13 17:01 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:39 Sam James
2020-08-31 9:10 Alexis Ballier
2020-04-14 7:28 Sergei Trofimovich
2019-02-12 21:03 Sergei Trofimovich
2019-02-04 20:16 Markus Meier
2019-01-30 13:20 Tobias Klausmann
2019-01-17 21:32 Mikle Kolyada
2019-01-13 10:01 Sergei Trofimovich
2019-01-04 0:02 Thomas Deutschmann
2019-01-03 15:03 Sergei Trofimovich
2019-01-03 14:58 Sergei Trofimovich
2018-12-04 14:08 Craig Andrews
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-04-16 19:03 Sergei Trofimovich
2018-03-25 23:29 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2017-11-30 13:57 Alexis Ballier
2017-07-15 5:03 Markus Meier
2017-07-04 15:49 Agostino Sarubbo
2017-07-04 10:17 Agostino Sarubbo
2017-07-01 20:58 Sergei Trofimovich
2017-06-16 9:44 Alexis Ballier
2017-06-10 20:14 Sergei Trofimovich
2017-06-10 20:14 Sergei Trofimovich
2017-04-05 14:07 Tobias Klausmann
2017-03-10 12:08 Alexis Ballier
2017-03-02 15:52 Tobias Klausmann
2017-02-23 12:35 Michael Weber
2017-02-22 13:24 Michael Weber
2017-02-22 13:19 Jeroen Roovers
2017-02-18 8:51 Jeroen Roovers
2017-02-17 17:28 Markus Meier
2017-02-15 15:56 Agostino Sarubbo
2017-02-15 15:05 Agostino Sarubbo
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 9:42 Alexis Ballier
2016-10-15 5:17 Jeroen Roovers
2016-10-03 9:04 Alexis Ballier
2016-07-26 10:51 Chí-Thanh Christopher Nguyễn
2016-01-29 19:41 Alexis Ballier
2016-01-18 15:13 Alexis Ballier
2015-11-13 9:11 Alexis Ballier
2015-10-30 12:40 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=1469525133.0f1c6cdf0b0fc7708fb5b4b8c9fea34ab07864c9.aballier@gentoo \
--to=aballier@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