public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpegthumbnailer/
Date: Thu, 17 Nov 2016 18:08:16 +0000 (UTC)	[thread overview]
Message-ID: <1479406084.d746f4ba3c98c08788a6dd5bd162ff12636ee588.polynomial-c@gentoo> (raw)

commit:     d746f4ba3c98c08788a6dd5bd162ff12636ee588
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 17 18:01:45 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Nov 17 18:08:04 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d746f4ba

media-video/ffmpegthumbnailer: Bump to version 2.2.0

Package-Manager: portage-2.3.2

 media-video/ffmpegthumbnailer/Manifest             |  1 +
 .../ffmpegthumbnailer-2.2.0.ebuild                 | 47 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/media-video/ffmpegthumbnailer/Manifest b/media-video/ffmpegthumbnailer/Manifest
index cf2b1e1..1c9adf6 100644
--- a/media-video/ffmpegthumbnailer/Manifest
+++ b/media-video/ffmpegthumbnailer/Manifest
@@ -2,3 +2,4 @@ DIST ffmpegthumbnailer-2.0.10.tar.bz2 2154028 SHA256 a3022c86aa3e704849e424147bd
 DIST ffmpegthumbnailer-2.0.8.tar.gz 367186 SHA256 2c8bbefa838d38ea42fc8ac78258cda36865d974c991624b14cffdb92a3bc68b SHA512 6062d4b8f5326bde96c8c6dceaac52e1fabcec93f0a0ee4be19e203050e6c80426a006076a27e4a12582e05daceebd37beef008154fdd92a87f365fdff68ca83 WHIRLPOOL 6b0bd942777515f690f212df5616dffc4fc1c6e0e0e5be67128b376347b18d75eb144d25e9f8ac841b41099703092af5784edc31f34d7dbf81b742d678233e79
 DIST ffmpegthumbnailer-2.1.1.tar.bz2 1448731 SHA256 51bca83c0cfae283e8e2f323aa49e0c6ced206c5a068332b4be974d3905cf055 SHA512 2ac9e8b904e73086d0bf0f586a971bf3807d41bd394505164461731099c17570b45d71374e2bbf6fa2d0d7d47011564e06230b360255535120a9969fde3888a4 WHIRLPOOL 35e42062a50a0c5e3e669fc513b2e1219f77ec3681880a65ac503ff8dd463ada0c56206bb70c76460ff4d3592a40d26361b05b8ee8fe9b54269e30c4127e8e07
 DIST ffmpegthumbnailer-2.1.2.tar.bz2 1221508 SHA256 f536035c3f2c2455b3180559e3fb3082db275d9264565271053028221dc6d2cd SHA512 e297708df4cbefdbead89af0499881b17128dc47c8403f84862343822113354de61450f63e932ab4b5b2414826a3fe5ff72ac2bec22ee3bb507801ee0d065d7b WHIRLPOOL 3775e071380936f447b880ee051e8c9fe6ec50735b46cd352600ee7125b0744847a5547378bba25a65d3829f25ccee6843c1559a917e50aa6e02c1a6727c6b8a
+DIST ffmpegthumbnailer-2.2.0.tar.bz2 1223895 SHA256 e5c31299d064968198cd378f7488e52cd5e738fac998eea780bc77d7f32238c2 SHA512 526d15b2c754fcb1415e69fb54cb6e7d0102b6d73a32a7e8528df81e32633dfe3786898984fdb988c93daee7218956c75c096ef657c9b3a42399d2d1d27c7bbf WHIRLPOOL 8634c8c33ae61a2b50cc8bc30e666b2c814a589758d83805f11710651a834439564c4702778e385eca3c63a76f1cf1a066d3ba2b6685df51f21acfe3bd5b4c4c

diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild
new file mode 100644
index 00000000..6b870ca
--- /dev/null
+++ b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+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
+}


             reply	other threads:[~2016-11-17 18:08 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-17 18:08 Lars Wendler [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-10-31 22:39 Lars Wendler
2016-10-31 22:39 Lars Wendler
2016-02-23 16:02 Alexis Ballier
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=1479406084.d746f4ba3c98c08788a6dd5bd162ff12636ee588.polynomial-c@gentoo \
    --to=polynomial-c@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