From: "Daniel Novomesky" <dnovomesky@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/libavif/
Date: Fri, 17 Jul 2020 10:36:24 +0000 (UTC)	[thread overview]
Message-ID: <1594982117.5e88c05e5817de9f953bf49b8c967fe82ae0fc3b.dnovomesky@gentoo> (raw)
commit:     5e88c05e5817de9f953bf49b8c967fe82ae0fc3b
Author:     Daniel Novomesky <dnovomesky <AT> gmail <DOT> com>
AuthorDate: Fri Jul 17 10:35:17 2020 +0000
Commit:     Daniel Novomesky <dnovomesky <AT> gmail <DOT> com>
CommitDate: Fri Jul 17 10:35:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e88c05e
media-libs/libavif: drop very old versions
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Daniel Novomesky <dnovomesky <AT> gmail.com>
 media-libs/libavif/Manifest                |  2 --
 media-libs/libavif/libavif-0.6.4-r1.ebuild | 50 -----------------------------
 media-libs/libavif/libavif-0.7.2-r1.ebuild | 51 ------------------------------
 3 files changed, 103 deletions(-)
diff --git a/media-libs/libavif/Manifest b/media-libs/libavif/Manifest
index dee7b8f..ec3a875 100644
--- a/media-libs/libavif/Manifest
+++ b/media-libs/libavif/Manifest
@@ -1,4 +1,2 @@
-DIST libavif-0.6.4.tar.gz 2880753 BLAKE2B d42e106a67aa82e4e9cd28488e6393e100e78bf381f8db6f9563c8563eec8c8afe64dedd4b3cdcadc296f15472995cee979469230085aa27a19a48f2d01f5e6a SHA512 ccd9ef462b9a235914f08a75f7acefc1592037e14967089bbc118838ba3603aa527f20b842c658b357f159de28dede15ab80e27f08a19ad3456247970c0ad822
-DIST libavif-0.7.2.tar.gz 2892316 BLAKE2B 24f2a25744fda5f6847506ab4c7a326635fe417dd4385960322f8302b1b60c1ef96ed9ebf453fddb8eba6e7f58506e15ec6934eca76b33ccd803f324432c0340 SHA512 543aae3dde2ed19a8d2d22425260d09f577fbddbd5bc293cc9ec97e427f3854e7a957b4975130b1129a0c73847398ce88ab22de48bec500b83bc56fde671e6b7
 DIST libavif-0.7.3.tar.gz 2893675 BLAKE2B 9cbfac039859f2b7fed975c8088698c8ab792773dd8a6512d5b2cf5827cb58d23a6aec6ca077da088af0dc4fb40a7d065ad5e5a8e0f4e8d11391acedb95ac31b SHA512 b8928755ee39964fd9d9575fdb393ffee0ac3597c1d6f6048e049e6c328d1e82febdb32bfa0b22e16a2fb73ff6cd1ad4af7f63fc9baccea22716d941385c028d
 DIST libavif-0.8.0.tar.gz 2914015 BLAKE2B c74381ae1aa1c9b82d2fec77e6bff9ec34ea6628e6985dbdd1a01a36cfceb64ee7eddaab29611ea4dc594125d301fc1818588c706171b7d288b58f24391cfeaf SHA512 362f3c3f8005ad0bce3026282722b26685ba09986def1f410aef25a8fb2b2035b91d1465a26cc1e9ad1cee0ee88b4110e7c92eddbe09a9e39c6ed05ab04d2b9e
diff --git a/media-libs/libavif/libavif-0.6.4-r1.ebuild b/media-libs/libavif/libavif-0.6.4-r1.ebuild
deleted file mode 100644
index dd6c753..0000000
--- a/media-libs/libavif/libavif-0.6.4-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="Library for encoding and decoding .avif files"
-HOMEPAGE="https://github.com/AOMediaCodec/libavif"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/AOMediaCodec/libavif.git"
-else
-	SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS=""
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="dav1d +libaom rav1e"
-
-REQUIRED_USE="|| ( dav1d libaom )"
-
-DEPEND="dav1d? ( media-libs/dav1d )
-	libaom? ( >=media-libs/libaom-1.1:= )
-	rav1e? ( media-video/rav1e:=[capi] )
-	media-libs/libpng
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-src_configure() {
-	local mycmakeargs=(
-		-DAVIF_BUILD_APPS=ON
-		-DAVIF_CODEC_AOM=$(usex libaom ON OFF)
-		-DAVIF_CODEC_DAV1D=$(usex dav1d ON OFF)
-		-DAVIF_CODEC_RAV1E=$(usex rav1e ON OFF)
-		-DBUILD_SHARED_LIBS=ON
-	)
-	cmake_src_configure
-}
-
-pkg_postinst() {
-	if ! use libaom && ! use rav1e ; then
-		ewarn "libaom and rav1e flags are not set,"
-		ewarn "libavif will work in read-only mode."
-		ewarn "Enable libaom or rav1e flag if you want to save .AVIF files."
-	fi
-}
diff --git a/media-libs/libavif/libavif-0.7.2-r1.ebuild b/media-libs/libavif/libavif-0.7.2-r1.ebuild
deleted file mode 100644
index 15be7ff..0000000
--- a/media-libs/libavif/libavif-0.7.2-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="Library for encoding and decoding .avif files"
-HOMEPAGE="https://github.com/AOMediaCodec/libavif"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/AOMediaCodec/libavif.git"
-else
-	SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS=""
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="dav1d +libaom rav1e"
-
-REQUIRED_USE="|| ( dav1d libaom )"
-
-DEPEND="dav1d? ( media-libs/dav1d )
-	libaom? ( >=media-libs/libaom-1.1:= )
-	rav1e? ( media-video/rav1e:=[capi] )
-	media-libs/libpng
-	virtual/jpeg
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-src_configure() {
-	local mycmakeargs=(
-		-DAVIF_BUILD_APPS=ON
-		-DAVIF_CODEC_AOM=$(usex libaom ON OFF)
-		-DAVIF_CODEC_DAV1D=$(usex dav1d ON OFF)
-		-DAVIF_CODEC_RAV1E=$(usex rav1e ON OFF)
-		-DBUILD_SHARED_LIBS=ON
-	)
-	cmake_src_configure
-}
-
-pkg_postinst() {
-	if ! use libaom && ! use rav1e ; then
-		ewarn "libaom and rav1e flags are not set,"
-		ewarn "libavif will work in read-only mode."
-		ewarn "Enable libaom or rav1e flag if you want to save .AVIF files."
-	fi
-}
next             reply	other threads:[~2020-07-17 10:36 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-17 10:36 Daniel Novomesky [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-09-25 13:42 [gentoo-commits] repo/proj/guru:dev commit in: media-libs/libavif/ Joonas Niilola
2020-08-06  9:44 Daniel Novomesky
2020-07-23 11:49 Daniel Novomesky
2020-07-22 15:46 Daniel Novomesky
2020-07-16 15:49 Daniel Novomesky
2020-05-07 20:43 Daniel Novomesky
2020-04-26 20:47 Alessandro Barbieri
2020-04-26  7:29 Daniel Novomesky
2020-04-25 19:45 Alessandro Barbieri
2020-04-25 12:53 Alessandro Barbieri
2020-04-25 12:25 Daniel Novomesky
2020-04-25  7:58 Alessandro Barbieri
2020-04-23 12:59 Daniel Novomesky
2020-04-21 10:44 Daniel Novomesky
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=1594982117.5e88c05e5817de9f953bf49b8c967fe82ae0fc3b.dnovomesky@gentoo \
    --to=dnovomesky@gmail.com \
    --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