public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pqiv/
Date: Fri, 23 Mar 2018 06:39:24 +0000 (UTC)	[thread overview]
Message-ID: <1521787153.fdfddce9902e92cbc68b628e9fe477cee6cd4e92.radhermit@gentoo> (raw)

commit:     fdfddce9902e92cbc68b628e9fe477cee6cd4e92
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 23 06:34:41 2018 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 06:39:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfddce9

media-gfx/pqiv: remove old

 media-gfx/pqiv/Manifest           |  2 -
 media-gfx/pqiv/pqiv-2.10.1.ebuild | 79 ---------------------------------------
 media-gfx/pqiv/pqiv-2.9.ebuild    | 79 ---------------------------------------
 3 files changed, 160 deletions(-)

diff --git a/media-gfx/pqiv/Manifest b/media-gfx/pqiv/Manifest
index fa8d1af73de..a346f2e60e4 100644
--- a/media-gfx/pqiv/Manifest
+++ b/media-gfx/pqiv/Manifest
@@ -1,3 +1 @@
-DIST pqiv-2.10.1.tar.gz 138129 BLAKE2B 46503e6012854562d1ff1bbf43d218dbdc6f9e7000c8625de73a708061a6c1678622b48270c73b3a16fff2fdac60bf5097376dfd0a6f5c7c2e36611aed8bd3cc SHA512 9850f6693e7fd2942d105736a7d6a274388875770e194ac6bd8a5a8291db8fec1ee3a0262f911f2b8e5d115aa11d520c44d80cc8218e2c87d6935dea4dfcb97e
 DIST pqiv-2.10.2.tar.gz 138506 BLAKE2B 255104acec9d42eac52d8aaf05207fc8071ecbef14a04c5952e70347d0cd83b54b00725b9bb949184bcd9437982701814b6a09c4c2397336f26ce9f50896d2e6 SHA512 99cb3a187fa2cc0df7b7f768b2f801fbec78aa8d76aacd12085f3b8ccbfaf931a2379e7b05a92f83dacf511489518a75f9e5bf528e4152158d8bb75cffb0d6f7
-DIST pqiv-2.9.tar.gz 133823 BLAKE2B a43c5323c47c10a94f83e8ed065e26212bf023f483cbc0e2160fe7789a55a043bb5912ed62306a15193edeb7ffca0450619799843101c41246ce867da3ffe6e3 SHA512 0a509d5d4b41682f86f4b813d63f3f7f8f3977ede0b8b1649a2adc188ed83923147b8bb741ba7f85b4c1dd7a9612fca3fec44169364042be4db44ef53d813ab7

diff --git a/media-gfx/pqiv/pqiv-2.10.1.ebuild b/media-gfx/pqiv/pqiv-2.10.1.ebuild
deleted file mode 100644
index 68f38714121..00000000000
--- a/media-gfx/pqiv/pqiv-2.10.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit linux-info toolchain-funcs xdg-utils
-
-if [[ ${PV} == 9999 ]]; then
-	EGIT_REPO_URI="https://github.com/phillipberndt/pqiv.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="powerful GTK 3 based command-line image viewer with a minimal UI"
-HOMEPAGE="https://github.com/phillipberndt/pqiv http://www.pberndt.com/Programme/Linux/pqiv/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="archive ffmpeg imagemagick kernel_linux libav pdf postscript webp"
-
-RDEPEND="
-	>=dev-libs/glib-2.32:2
-	>=x11-libs/cairo-1.6
-	x11-libs/gtk+:3
-	archive? ( app-arch/libarchive:0= )
-	ffmpeg? (
-		!libav? ( media-video/ffmpeg:0= )
-		libav? ( media-video/libav:0= )
-	)
-	imagemagick? ( media-gfx/imagemagick:0= )
-	pdf? ( app-text/poppler:0= )
-	postscript? ( app-text/libspectre:0= )
-	webp? ( media-libs/libwebp:0= )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-doecho() {
-	echo "$@"
-	"$@" || die
-}
-
-pkg_setup() {
-	if use kernel_linux; then
-		CONFIG_CHECK="~INOTIFY_USER"
-		linux-info_pkg_setup
-	fi
-}
-
-src_configure() {
-	local backends="gdkpixbuf"
-	use archive && backends+=",archive,archive_cbx"
-	use ffmpeg || use libav && backends+=",libav"
-	use imagemagick && backends+=",wand"
-	use pdf && backends+=",poppler"
-	use postscript && backends+=",spectre"
-	use webp && backends+=",webp"
-
-	doecho ./configure \
-		--backends-build=shared \
-		--backends=${backends} \
-		--prefix="${EPREFIX}/usr" \
-		--libdir="${EPREFIX}/usr/$(get_libdir)" \
-		--destdir="${ED}"
-}
-
-src_compile() {
-	tc-export CC
-	emake VERBOSE=1 CFLAGS="${CFLAGS}"
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-}

diff --git a/media-gfx/pqiv/pqiv-2.9.ebuild b/media-gfx/pqiv/pqiv-2.9.ebuild
deleted file mode 100644
index 2eaaf614442..00000000000
--- a/media-gfx/pqiv/pqiv-2.9.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit linux-info toolchain-funcs xdg-utils
-
-if [[ ${PV} == 9999 ]]; then
-	EGIT_REPO_URI="https://github.com/phillipberndt/pqiv.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 x86"
-fi
-
-DESCRIPTION="powerful GTK 3 based command-line image viewer with a minimal UI"
-HOMEPAGE="https://github.com/phillipberndt/pqiv http://www.pberndt.com/Programme/Linux/pqiv/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="archive ffmpeg imagemagick kernel_linux libav pdf postscript webp"
-
-RDEPEND="
-	>=dev-libs/glib-2.8:2
-	>=x11-libs/cairo-1.6
-	x11-libs/gtk+:3
-	archive? ( app-arch/libarchive:0= )
-	ffmpeg? (
-		!libav? ( media-video/ffmpeg:0= )
-		libav? ( media-video/libav:0= )
-	)
-	imagemagick? ( media-gfx/imagemagick:0= )
-	pdf? ( app-text/poppler:0= )
-	postscript? ( app-text/libspectre:0= )
-	webp? ( media-libs/libwebp:0= )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-doecho() {
-	echo "$@"
-	"$@" || die
-}
-
-pkg_setup() {
-	if use kernel_linux; then
-		CONFIG_CHECK="~INOTIFY_USER"
-		linux-info_pkg_setup
-	fi
-}
-
-src_configure() {
-	local backends="gdkpixbuf"
-	use archive && backends+=",archive,archive_cbx"
-	use ffmpeg || use libav && backends+=",libav"
-	use imagemagick && backends+=",wand"
-	use pdf && backends+=",poppler"
-	use postscript && backends+=",spectre"
-	use webp && backends+=",webp"
-
-	doecho ./configure \
-		--backends-build=shared \
-		--backends=${backends} \
-		--prefix="${EPREFIX}/usr" \
-		--libdir="${EPREFIX}/usr/$(get_libdir)" \
-		--destdir="${ED}"
-}
-
-src_compile() {
-	tc-export CC
-	emake VERBOSE=1 CFLAGS="${CFLAGS}"
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-}


             reply	other threads:[~2018-03-23  6:39 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-23  6:39 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-11 11:05 [gentoo-commits] repo/gentoo:master commit in: media-gfx/pqiv/ Arthur Zamarin
2023-12-01 14:39 Arthur Zamarin
2023-12-01 12:11 Arthur Zamarin
2023-12-01 12:11 Arthur Zamarin
2023-12-01 11:30 Ulrich Müller
2023-11-24 14:34 Michał Górny
2023-09-14 17:57 Arthur Zamarin
2023-09-14 17:57 Arthur Zamarin
2022-10-29 19:43 Sam James
2021-12-08 10:14 Yixun Lan
2021-10-19  0:12 Sam James
2020-04-26  7:44 Mikle Kolyada
2019-04-03  4:46 Tim Harder
2019-02-22 11:05 Mikle Kolyada
2019-02-15 15:46 Thomas Deutschmann
2018-12-13  3:34 Tim Harder
2018-12-13  3:34 Tim Harder
2018-12-13  3:34 Tim Harder
2018-06-25 19:26 Tim Harder
2018-03-23  6:39 Tim Harder
2017-12-27  6:58 Tim Harder
2017-11-20  7:17 Tim Harder
2017-10-02  4:36 Tim Harder
2017-10-02  4:36 Tim Harder
2017-08-17 19:12 Tim Harder
2017-08-17 19:12 Tim Harder
2017-08-17 19:12 Tim Harder
2017-04-26  0:19 Tim Harder
2017-04-12  8:01 Tim Harder
2017-04-05  4:53 Tim Harder
2017-03-01 13:54 Tim Harder
2017-02-23  0:48 Tim Harder
2017-02-23  0:42 Tim Harder
2017-02-23  0:42 Tim Harder
2017-02-23  0:42 Tim Harder
2017-02-16 13:05 Tim Harder
2016-11-19 17:14 Markus Meier
2016-11-16 21:01 Markus Meier
2016-11-09 18:50 Markus Meier

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=1521787153.fdfddce9902e92cbc68b628e9fe477cee6cd4e92.radhermit@gentoo \
    --to=radhermit@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