From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpegthumbnailer/
Date: Tue, 23 Feb 2016 16:02:28 +0000 (UTC) [thread overview]
Message-ID: <1456242982.60aca11a27e671c9bc8ea1fe6146a10e5e80831d.aballier@gentoo> (raw)
commit: 60aca11a27e671c9bc8ea1fe6146a10e5e80831d
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 23 15:56:22 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 15:56:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60aca11a
media-video/ffmpegthumbnailer: bump to 2.1.1
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
media-video/ffmpegthumbnailer/Manifest | 1 +
.../ffmpegthumbnailer-2.1.1.ebuild | 47 ++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/media-video/ffmpegthumbnailer/Manifest b/media-video/ffmpegthumbnailer/Manifest
index ca39d89..fb2bd06 100644
--- a/media-video/ffmpegthumbnailer/Manifest
+++ b/media-video/ffmpegthumbnailer/Manifest
@@ -1,3 +1,4 @@
DIST ffmpegthumbnailer-2.0.10.tar.bz2 2154028 SHA256 a3022c86aa3e704849e424147bd4a319867e18930d66a4a4c93c0baefdd1fc60 SHA512 1fcfcfe9457a3e3e70a749f3234f79d080fbbb40d4d1f65b84e1c46a7051c75368afaffb25a39b43f8e205ffdbc2e156e6fb5848514fce4a1a3f5222458c1b9d WHIRLPOOL fe60513d2a26db622d02f6f38f04009590337415aeb02b441757949e4402cdfeb33d37cb295720f8dd66ebae9dcfdba9304c88256ccda4800e015fa40650151b
DIST ffmpegthumbnailer-2.0.8.tar.gz 367186 SHA256 2c8bbefa838d38ea42fc8ac78258cda36865d974c991624b14cffdb92a3bc68b SHA512 6062d4b8f5326bde96c8c6dceaac52e1fabcec93f0a0ee4be19e203050e6c80426a006076a27e4a12582e05daceebd37beef008154fdd92a87f365fdff68ca83 WHIRLPOOL 6b0bd942777515f690f212df5616dffc4fc1c6e0e0e5be67128b376347b18d75eb144d25e9f8ac841b41099703092af5784edc31f34d7dbf81b742d678233e79
DIST ffmpegthumbnailer-2.1.0.tar.bz2 2108351 SHA256 99ad417113c2dd7669978da2bd22b84cdfe87c2690ff3864a117b0bf72cd8c0f SHA512 c1cedcadc46e7abaa1d91ea83b96beda03b82d2ceecfbf1f4538f1865f1b336cdcc588cefd84e69c6374316b10805380cfe685999bd32a9206d82927b75e2cfa WHIRLPOOL fb8f6db18a5ea0e4423719fdac3de7927a599b4c0aec83c8a823ec73e51d1154cf8ff4b0d49345f13d350ff6be980c30c4d408d07a00d902a2892d2071ccc821
+DIST ffmpegthumbnailer-2.1.1.tar.bz2 1448731 SHA256 51bca83c0cfae283e8e2f323aa49e0c6ced206c5a068332b4be974d3905cf055 SHA512 2ac9e8b904e73086d0bf0f586a971bf3807d41bd394505164461731099c17570b45d71374e2bbf6fa2d0d7d47011564e06230b360255535120a9969fde3888a4 WHIRLPOOL 35e42062a50a0c5e3e669fc513b2e1219f77ec3681880a65ac503ff8dd463ada0c56206bb70c76460ff4d3592a40d26361b05b8ee8fe9b54269e30c4127e8e07
diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.1.1.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.1.1.ebuild
new file mode 100644
index 0000000..f04e7f5
--- /dev/null
+++ b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.1.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils eutils
+
+DESCRIPTION="Lightweight video thumbnailer that can be used by file managers"
+HOMEPAGE="https://github.com/dirkvdb/ffmpegthumbnailer"
+SRC_URI="https://github.com/dirkvdb/${PN}/releases/download/${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="gnome gtk jpeg libav png test"
+
+RDEPEND="
+ gtk? ( dev-libs/glib:2= )
+ jpeg? ( virtual/jpeg:0= )
+ !libav? ( >=media-video/ffmpeg-2.7:0= )
+ libav? ( >=media-video/libav-11:0= )
+ png? ( media-libs/libpng:0= )
+"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+"
+REQUIRED_USE="gnome? ( gtk )"
+
+DOCS=( AUTHORS ChangeLog README.md )
+
+src_prepare() {
+ rm -rf out* || die
+
+ cmake-utils_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_GIO=$(usex gtk)
+ -DENABLE_TESTS=$(usex test)
+ -DENABLE_THUMBNAILER=$(usex gnome)
+ -DHAVE_JPEG=$(usex jpeg)
+ -DHAVE_PNG=$(usex png)
+ )
+ cmake-utils_src_configure
+}
next reply other threads:[~2016-02-23 16:02 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-23 16:02 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-04-30 7:53 [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpegthumbnailer/ Andreas Sturmlechner
2023-03-31 11:42 Arthur Zamarin
2023-03-31 11:42 Arthur Zamarin
2023-01-21 19:26 Arthur Zamarin
2023-01-13 14:20 Arthur Zamarin
2023-01-13 13:04 Arthur Zamarin
2022-12-18 12:20 Sam James
2022-12-18 12:20 Sam James
2022-11-12 17:48 Matt Turner
2022-08-28 5:06 WANG Xuerui
2022-04-01 1:32 Sam James
2022-04-01 1:32 Sam James
2022-03-15 9:39 Jakov Smolić
2022-02-25 21:00 Arthur Zamarin
2022-02-19 19:28 Sam James
2022-02-19 13:22 Jakov Smolić
2022-02-19 13:15 Jakov Smolić
2021-08-23 22:59 Marek Szuba
2021-04-12 23:33 Sam James
2020-10-14 8:18 Alexis Ballier
2020-04-26 10:13 Mikle Kolyada
2020-04-11 10:20 Sergei Trofimovich
2019-07-24 3:22 Aaron Bauman
2019-06-12 10:37 Andreas Sturmlechner
2017-03-23 19:45 Johannes Huber
2017-02-23 9:27 Michael Weber
2017-01-25 18:24 Tobias Klausmann
2017-01-25 10:07 Alexis Ballier
2017-01-15 20:44 Jeroen Roovers
2017-01-15 20:37 Jeroen Roovers
2017-01-13 14:35 Agostino Sarubbo
2016-11-17 18:08 Lars Wendler
2016-11-17 18:08 Lars Wendler
2016-10-31 22:39 Lars Wendler
2016-10-31 22:39 Lars Wendler
2015-10-21 10:05 Lars Wendler
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=1456242982.60aca11a27e671c9bc8ea1fe6146a10e5e80831d.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