public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-04-27 23:24 Theo Anderson
  0 siblings, 0 replies; 8+ messages in thread
From: Theo Anderson @ 2021-04-27 23:24 UTC (permalink / raw
  To: gentoo-commits

commit:     c35a513312639f63de5a974afa2ceea7dd9890c4
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Tue Apr 27 23:22:43 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Apr 27 23:22:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c35a5133

media-libs/vips: comment out unused USE flag metadata

Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 media-libs/vips/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vips/metadata.xml b/media-libs/vips/metadata.xml
index c174db958..bfb184005 100644
--- a/media-libs/vips/metadata.xml
+++ b/media-libs/vips/metadata.xml
@@ -8,7 +8,7 @@
 		<flag name="gsf">Enable support for creating image pyramids with dzsave</flag>
 		<flag name="heif">Enable support for HEIC images</flag>
 		<flag name="pango">Enable support for text rendering</flag>
-		<flag name="nsgif">Enable support for nsgif load</flag>
+		<!--<flag name="nsgif">Enable support for nsgif load</flag>-->
 		<flag name="imagequant">Enable support for 8bpp PNG via <pkg>media-gfx/libimagequant</pkg></flag>
 	</use>
 	<upstream>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-04-30  7:45 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-30  7:45 UTC (permalink / raw
  To: gentoo-commits

commit:     181b7fa84894efb6d914b6a99b6f2b35085e90d5
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Apr 29 10:31:41 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 29 10:42:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=181b7fa8

media-libs/vips: Fix econf, replace prune_libtool_files.

The econf command would only go until `$(use_with openexr OpenEXR)` and
then print the error: “--without-orc: command not found”.

prune_libtool_files is deprecated. Replaced with find.

Closes: https://bugs.gentoo.org/786225
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 media-libs/vips/vips-8.10.6.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 59394e697..09f6fd6b8 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -80,7 +80,6 @@ multilib_src_configure() {
 		$(use_with lcms) \
 		$(use_with matio ) \
 		$(use_with openexr OpenEXR) \
-#		$(use_with openslide) \
 		$(use_with orc) \
 		$(use_with pango pangoft2) \
 		$(use_with pango pangocairo) \
@@ -101,5 +100,5 @@ multilib_src_install() {
 }
 multilib_src_install_all() {
 	einstalldocs
-	prune_libtool_files
+	find "${D}" -name '*.la' -type f -delete || die
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-04-30  7:45 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-30  7:45 UTC (permalink / raw
  To: gentoo-commits

commit:     4b38adf7e881d6c547386e7685fca24177bdbb3e
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Apr 29 10:59:49 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 29 11:06:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b38adf7

media-libs/vips: Remove unrecognized configure option.

--with[out]-pangocairo was introduced after 8.10.6:
<https://github.com/libvips/libvips/commit/f53959b82475946a3f9b29d0ac98d34a9b906d5f>

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 media-libs/vips/vips-8.10.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 09f6fd6b8..860d2d5aa 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -66,6 +66,7 @@ multilib_src_configure() {
 	use imagemagick && magick="--with-magickpackage=MagickCore"
 	use graphicsmagick && magick="--with-magickpackage=GraphicsMagick"
 
+	# NOTE: Replace pangoft2 with pangocairo in > 8.10.6.
 	econf \
 		${magick} \
 		$(multilib_native_use_enable doc gtk-doc) \
@@ -82,7 +83,6 @@ multilib_src_configure() {
 		$(use_with openexr OpenEXR) \
 		$(use_with orc) \
 		$(use_with pango pangoft2) \
-		$(use_with pango pangocairo) \
 		$(use_with pdf poppler) \
 		$(use_with png) \
 		$(use_with svg rsvg) \


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-04-30  7:45 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-30  7:45 UTC (permalink / raw
  To: gentoo-commits

commit:     da79392782e1d0096eb094e8337dbbd7779fcc39
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Apr 29 16:24:03 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 29 16:26:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=da793927

media-libs/vips: Add test dependencies.

Some tests need JPEG and PNG support.

Closes: https://bugs.gentoo.org/786210
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 media-libs/vips/vips-8.10.6.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 860d2d5aa..1dbc34b97 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -11,8 +11,9 @@ HOMEPAGE="https://libvips.github.io/libvips/"
 LICENSE="LGPL-2.1+"
 SLOT="1"
 KEYWORDS="~amd64 ~x86"
-IUSE="doc debug exif fftw fits heif gsf graphicsmagick imagemagick imagequant jpeg lcms matio openexr orc pango pdf png svg static-libs tiff webp zlib"
-REQUIRED_USE="imagequant? ( png )"
+IUSE="doc debug exif fftw fits heif gsf graphicsmagick imagemagick imagequant jpeg lcms matio openexr orc pango pdf png svg static-libs test tiff webp zlib"
+REQUIRED_USE="imagequant? ( png ) test? ( jpeg png )"
+RESTRICT="!test? ( test )"
 
 # FIXME: nitfi (FIND_NIFTI)
 # openslide? ( >=media-libs/openslide-3.3.0 )


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-07-24 15:58 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-07-24 15:58 UTC (permalink / raw
  To: gentoo-commits

commit:     14e3349b643ccda7d070acef8164e4a00bba5c9d
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 15:55:21 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 15:55:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14e3349b

media-libs/vips: add missing slot operator

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-libs/vips/vips-8.10.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 1dbc34b97..67d4d4272 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -34,7 +34,7 @@ RDEPEND="
 	gsf? ( gnome-extra/libgsf:= )
 	lcms? ( media-libs/lcms )
 	matio? ( >=sci-libs/matio-1.3.4 )
-	openexr? ( >=media-libs/openexr-1.2.2 )
+	openexr? ( >=media-libs/openexr-1.2.2:= )
 	orc? ( >=dev-lang/orc-0.4.11 )
 	pango? ( x11-libs/pango )
 	pdf? ( app-text/poppler[cairo] )


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2021-12-15 11:11 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-12-15 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     997fe665225b8386e25fdbe77cdd2032720d0d4a
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 15 11:10:48 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 15 11:10:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=997fe665

media-libs/vips: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-libs/vips/vips-8.10.6.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 67d4d4272..21066d247 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit eutils autotools multilib-minimal
+
+inherit autotools multilib-minimal
 
 DESCRIPTION="VIPS Image Processing Library"
 SRC_URI="https://github.com/libvips/libvips/releases/download/v${PV}/${P}.tar.gz"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
  2022-05-09 18:40 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2022-05-09 18:44 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-05-09 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     e8ca448a7729e597dbc896e2109292560edf89bd
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon May  9 18:39:28 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon May  9 18:39:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e8ca448a

media-libs/vips: virtual/jpeg --> media-libs/libjpeg-turbo

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-libs/vips/vips-8.10.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
index 21066d247..c9d0bfac3 100644
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ b/media-libs/vips/vips-8.10.6.ebuild
@@ -31,7 +31,7 @@ RDEPEND="
 	exif? ( >=media-libs/libexif-0.6 )
 	fits? ( sci-libs/cfitsio )
 	heif? ( >=media-libs/libheif-1.3.0:= )
-	jpeg? ( virtual/jpeg:0= )
+	jpeg? ( media-libs/libjpeg-turbo:0= )
 	gsf? ( gnome-extra/libgsf:= )
 	lcms? ( media-libs/lcms )
 	matio? ( >=sci-libs/matio-1.3.4 )


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/
@ 2023-05-12 10:07 Viorel Munteanu
  0 siblings, 0 replies; 8+ messages in thread
From: Viorel Munteanu @ 2023-05-12 10:07 UTC (permalink / raw
  To: gentoo-commits

commit:     3e953f634c90a1672cc7d79fa700425e94c58f3c
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 09:51:44 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri May 12 09:51:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3e953f63

media-libs/vips: treeclean

Moved to ::gentoo.

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 media-libs/vips/Manifest           |   1 -
 media-libs/vips/metadata.xml       |  17 ------
 media-libs/vips/vips-8.10.6.ebuild | 106 -------------------------------------
 3 files changed, 124 deletions(-)

diff --git a/media-libs/vips/Manifest b/media-libs/vips/Manifest
deleted file mode 100644
index 7d90c971b..000000000
--- a/media-libs/vips/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vips-8.10.6.tar.gz 19532428 BLAKE2B ccc3fd55a8231a1efb65e12acc5b749c9331ce95fcdce6a95a3b3a6cb26da1846da68a44c16c71837ec7f4de0c14f60cf4b5605ab05b70209ae607ae257d0ec9 SHA512 e3e623ad7b44dfb65078c49d2694d94bb11294300630d9e3c53ff1f9e9aaf58d196881d52c191b4604d9f63453199b7da3601425ffc9554f1c25cf08d630ef8b

diff --git a/media-libs/vips/metadata.xml b/media-libs/vips/metadata.xml
deleted file mode 100644
index a8190e094..000000000
--- a/media-libs/vips/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<use>
-		<flag name="fits">Enable support for the FITS image format through <pkg>sci-libs/cfitsio</pkg></flag>
-		<flag name="matio">Enable support for reading images from Matlab files through <pkg>sci-libs/matio</pkg></flag>
-		<!--<flag name="openslide">Enable support for reading images from OpenSlide files through <pkg>media-libs/openslide</pkg>(currently conflicts with jpeg-turbo)</flag>-->
-		<flag name="gsf">Enable support for creating image pyramids with dzsave</flag>
-		<flag name="heif">Enable support for HEIC images</flag>
-		<flag name="pango">Enable support for text rendering</flag>
-		<!--<flag name="nsgif">Enable support for nsgif load</flag>-->
-		<flag name="imagequant">Enable support for 8bpp PNG via <pkg>media-gfx/libimagequant</pkg></flag>
-	</use>
-	<upstream>
-		<remote-id type="github">libvips/libvips</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
deleted file mode 100644
index c9d0bfac3..000000000
--- a/media-libs/vips/vips-8.10.6.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="VIPS Image Processing Library"
-SRC_URI="https://github.com/libvips/libvips/releases/download/v${PV}/${P}.tar.gz"
-HOMEPAGE="https://libvips.github.io/libvips/"
-
-LICENSE="LGPL-2.1+"
-SLOT="1"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc debug exif fftw fits heif gsf graphicsmagick imagemagick imagequant jpeg lcms matio openexr orc pango pdf png svg static-libs test tiff webp zlib"
-REQUIRED_USE="imagequant? ( png ) test? ( jpeg png )"
-RESTRICT="!test? ( test )"
-
-# FIXME: nitfi (FIND_NIFTI)
-# openslide? ( >=media-libs/openslide-3.3.0 )
-RDEPEND="
-	>=dev-libs/glib-2.6:2
-	dev-libs/expat:=
-	debug? ( dev-libs/dmalloc )
-	fftw? ( sci-libs/fftw:3.0= )
-	imagemagick? (
-		graphicsmagick? ( media-gfx/graphicsmagick )
-		!graphicsmagick? ( media-gfx/imagemagick )
-	)
-	imagequant? ( media-gfx/libimagequant:= )
-	exif? ( >=media-libs/libexif-0.6 )
-	fits? ( sci-libs/cfitsio )
-	heif? ( >=media-libs/libheif-1.3.0:= )
-	jpeg? ( media-libs/libjpeg-turbo:0= )
-	gsf? ( gnome-extra/libgsf:= )
-	lcms? ( media-libs/lcms )
-	matio? ( >=sci-libs/matio-1.3.4 )
-	openexr? ( >=media-libs/openexr-1.2.2:= )
-	orc? ( >=dev-lang/orc-0.4.11 )
-	pango? ( x11-libs/pango )
-	pdf? ( app-text/poppler[cairo] )
-	png? ( >=media-libs/libpng-1.2.9:0= )
-	svg? ( gnome-base/librsvg )
-	tiff? ( media-libs/tiff:0= )
-	webp? ( media-libs/libwebp )
-	zlib? ( sys-libs/zlib )
-"
-DEPEND="
-	${RDEPEND}
-	doc? (
-		dev-util/gtk-doc
-		dev-util/gtk-doc-am
-	)
-"
-
-DOCS=(ChangeLog NEWS THANKS README.md)
-
-src_prepare() {
-	default
-
-	eautoreconf
-
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	local magick="--without-magick";
-	use imagemagick && magick="--with-magickpackage=MagickCore"
-	use graphicsmagick && magick="--with-magickpackage=GraphicsMagick"
-
-	# NOTE: Replace pangoft2 with pangocairo in > 8.10.6.
-	econf \
-		${magick} \
-		$(multilib_native_use_enable doc gtk-doc) \
-		$(use_enable debug) \
-		$(use_with debug dmalloc) \
-		$(use_with exif libexif) \
-		$(use_with fftw) \
-		$(use_with fits cfitsio) \
-		$(use_with gsf) \
-		$(use_with imagequant) \
-		$(use_with jpeg) \
-		$(use_with lcms) \
-		$(use_with matio ) \
-		$(use_with openexr OpenEXR) \
-		$(use_with orc) \
-		$(use_with pango pangoft2) \
-		$(use_with pdf poppler) \
-		$(use_with png) \
-		$(use_with svg rsvg) \
-		$(use_with tiff) \
-		$(use_with webp libwebp) \
-		$(use_with zlib) \
-		$(use_enable static-libs static)
-}
-
-# FIXME: Add the fancier pytest-based testsuite
-# You can find how it's used in ${S}/.travis.yml
-
-multilib_src_install() {
-	emake DESTDIR="${D}" install
-}
-multilib_src_install_all() {
-	einstalldocs
-	find "${D}" -name '*.la' -type f -delete || die
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-05-12 10:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-30  7:45 [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2023-05-12 10:07 Viorel Munteanu
2022-05-09 18:40 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2022-05-09 18:44 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-12-15 11:11 Andrew Ammerlaan
2021-07-24 15:58 Andrew Ammerlaan
2021-04-30  7:45 Andrew Ammerlaan
2021-04-30  7:45 Andrew Ammerlaan
2021-04-27 23:24 Theo Anderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox