public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-18  3:54 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-12-18  3:54 UTC (permalink / raw
  To: gentoo-commits

commit:     faf70b3f666a811c029e7cd9d612ed9e01cf2a77
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Thu Nov  9 20:51:53 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 03:53:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf70b3f

net-print/libcupsfilters: new package, add 2.0.0

Part of the CUPS v3 evolution. Now, cups-filters has been split out into
multiple sub-packages. This is the core library.

Bug: https://bugs.gentoo.org/914586
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/Manifest                  |  1 +
 .../libcupsfilters/libcupsfilters-2.0.0.ebuild     | 60 ++++++++++++++++++++++
 net-print/libcupsfilters/metadata.xml              | 14 +++++
 3 files changed, 75 insertions(+)

diff --git a/net-print/libcupsfilters/Manifest b/net-print/libcupsfilters/Manifest
new file mode 100644
index 000000000000..9145aecf6f6d
--- /dev/null
+++ b/net-print/libcupsfilters/Manifest
@@ -0,0 +1 @@
+DIST libcupsfilters-2.0.0.tar.xz 1279856 BLAKE2B ce9d839bb700017c303c1301c7a97fd02e3657a908e685377be49557d995574a7fc5a31d4fcbda5eeb9ba2d3cd07858224540dbf0bc9fa078cfd25a58ee15a41 SHA512 279bff6dcfa76312b10dae97480914345defd90eab79c4716d4553870f73e0f9db404786fd7e2948a86ae5aedb10dca0c2984ccb4222acbd4e835cd572030d6a

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild
new file mode 100644
index 000000000000..511d423289b8
--- /dev/null
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="library for developing printing features, split out of cups-filters"
+HOMEPAGE="https://github.com/OpenPrinting/libcupsfilters"
+SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
+KEYWORDS="~amd64"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=app-text/qpdf-8.3.0:=
+	media-libs/fontconfig
+	media-libs/lcms:2
+	>=net-print/cups-2
+	!<net-print/cups-filters-2.0.0
+
+	exif? ( media-libs/libexif )
+	dbus? ( sys-apps/dbus )
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	poppler? ( >=app-text/poppler-0.32[cxx] )
+	png? ( media-libs/libpng:= )
+	tiff? ( media-libs/tiff:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	>=sys-devel/gettext-0.18.3
+	virtual/pkgconfig
+	test? ( media-fonts/dejavu )
+"
+
+src_configure() {
+	local myeconfargs=(
+		--enable-imagefilters
+		--localstatedir="${EPREFIX}"/var
+		--with-cups-rundir="${EPREFIX}"/run/cups
+
+		$(use_enable exif)
+		$(use_enable dbus)
+		$(use_enable poppler)
+		$(use_enable postscript)
+		$(use_enable pdf mutool)
+		$(use_with jpeg)
+		$(use_with png)
+		$(use_with tiff)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}

diff --git a/net-print/libcupsfilters/metadata.xml b/net-print/libcupsfilters/metadata.xml
new file mode 100644
index 000000000000..d31059e1c097
--- /dev/null
+++ b/net-print/libcupsfilters/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>printing@gentoo.org</email>
+		<name>Gentoo Printing Project</name>
+	</maintainer>
+	<use>
+		<flag name="poppler">Build the pdftoraster filter</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">OpenPrinting/libcupsfilters</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-18  6:12 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-12-18  6:12 UTC (permalink / raw
  To: gentoo-commits

commit:     36963e0cba74dd812960f4ad27263375046dec22
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Mon Dec 18 05:54:56 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 06:12:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36963e0c

net-print/libcupsfilters: add missing dependency

Fixes: 66d5233f461141ab6e0ece5e812a87dbd976dfb1
Closes: https://bugs.gentoo.org/920248
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../{libcupsfilters-2.0.0.ebuild => libcupsfilters-2.0.0-r1.ebuild}      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild
similarity index 98%
rename from net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild
rename to net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild
index 511d423289b8..eb32f66f6b78 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild
@@ -24,6 +24,7 @@ RDEPEND="
 	exif? ( media-libs/libexif )
 	dbus? ( sys-apps/dbus )
 	jpeg? ( media-libs/libjpeg-turbo:= )
+	pdf? ( app-text/mupdf )
 	poppler? ( >=app-text/poppler-0.32[cxx] )
 	png? ( media-libs/libpng:= )
 	tiff? ( media-libs/tiff:= )


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-19  5:08 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-12-19  5:08 UTC (permalink / raw
  To: gentoo-commits

commit:     258dbe45693b05f1d01dc818f12ae12a0bf7856e
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Mon Dec 18 22:43:36 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 19 05:07:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258dbe45

net-print/libcupsfilters: fix typo that caused ghostscript to be ignored

The USE flag is postscript, the configure arg is *ghost*script. We need
to override the flag name for use_enable (and indeed cups-filters did so).

Closes: https://bugs.gentoo.org/920270
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../{libcupsfilters-2.0.0-r1.ebuild => libcupsfilters-2.0.0-r2.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
similarity index 97%
rename from net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild
rename to net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
index eb32f66f6b78..c7f4321f3ee9 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r1.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
@@ -45,7 +45,7 @@ src_configure() {
 		$(use_enable exif)
 		$(use_enable dbus)
 		$(use_enable poppler)
-		$(use_enable postscript)
+		$(use_enable postscript ghostscript)
 		$(use_enable pdf mutool)
 		$(use_with jpeg)
 		$(use_with png)


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-22  8:03 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-12-22  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     703699973641fb38d302d83dba6e3d12d0ea0f61
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Fri Dec 22 07:10:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 08:02:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70369997

net-print/libcupsfilters: use elibtoolize to fix overlinking

Drops pointless link dependency on:
- libfreetype.so.6
- liblcms2_fast_float.so
- liblcms2_threaded.so

No revbump needed: only libfreetype is versioned, and I don't anticipate
it changing before libcupsfilters gets bumped...

Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34412
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
index 019d1de133d7..d4246fceaba1 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit libtool
+
 DESCRIPTION="library for developing printing features, split out of cups-filters"
 HOMEPAGE="https://github.com/OpenPrinting/libcupsfilters"
 SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/${P}.tar.xz"
@@ -36,6 +38,13 @@ BDEPEND="
 	test? ( media-fonts/dejavu )
 "
 
+src_prepare() {
+	default
+
+	# respect --as-needed
+	elibtoolize
+}
+
 src_configure() {
 	local myeconfargs=(
 		--enable-imagefilters


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-22 13:24 Mart Raudsepp
  0 siblings, 0 replies; 28+ messages in thread
From: Mart Raudsepp @ 2023-12-22 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     87c68d129435e906d881562f5b09f73bcddee766
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 12:47:47 2023 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 13:23:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87c68d12

net-print/libcupsfilters: keyword 2.0.0-r2 for ~arm64

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
index d4246fceaba1..3385d6ec7f43 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~loong"
+KEYWORDS="~amd64 ~arm64 ~loong"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-29  1:19 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-12-29  1:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8dddc921ebb04586e75d10503835faf1b2a7d434
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Thu Dec 28 20:17:42 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 01:18:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dddc921

net-print/libcupsfilters: add missing dependency

This went missing when migrating components across ebuilds.

Fixes: faf70b3f666a811c029e7cd9d612ed9e01cf2a77
Closes: https://bugs.gentoo.org/920900
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../{libcupsfilters-2.0.0-r2.ebuild => libcupsfilters-2.0.0-r3.ebuild}   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
similarity index 96%
rename from net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
rename to net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 3385d6ec7f43..12de37bf597c 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r2.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -27,6 +27,7 @@ RDEPEND="
 	dbus? ( sys-apps/dbus )
 	jpeg? ( media-libs/libjpeg-turbo:= )
 	pdf? ( app-text/mupdf )
+	postscript? ( app-text/ghostscript-gpl[cups] )
 	poppler? ( >=app-text/poppler-0.32[cxx] )
 	png? ( media-libs/libpng:= )
 	tiff? ( media-libs/tiff:= )


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-29 14:36 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2023-12-29 14:36 UTC (permalink / raw
  To: gentoo-commits

commit:     9b437570461edc47c7151c078220b993f4580dc3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 14:35:42 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 14:35:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b437570

net-print/libcupsfilters: Keyword 2.0.0-r3 ppc64, #920237

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 12de37bf597c..de7bd037c68b 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm64 ~loong"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-29 14:54 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2023-12-29 14:54 UTC (permalink / raw
  To: gentoo-commits

commit:     bf6d760009877889505d3f9f6456ad0b6f5062b2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 14:54:39 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 14:54:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf6d7600

net-print/libcupsfilters: Keyword 2.0.0-r3 ppc, #920237

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index de7bd037c68b..83424e685221 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm64 ~loong ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc ~ppc64"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-29 14:55 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2023-12-29 14:55 UTC (permalink / raw
  To: gentoo-commits

commit:     8b3404d0b5b7574010b8c74508a208d4f99a0575
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 14:54:57 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 14:54:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b3404d0

net-print/libcupsfilters: Keyword 2.0.0-r3 arm, #920237

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 83424e685221..fcb08a32de96 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm64 ~loong ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-29 14:55 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2023-12-29 14:55 UTC (permalink / raw
  To: gentoo-commits

commit:     a733cd241c1859c15722216ab073c91b8bbc2848
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 14:55:03 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 14:55:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a733cd24

net-print/libcupsfilters: Keyword 2.0.0-r3 x86, #920237

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index fcb08a32de96..565f5da436dc 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-30  1:26 Ionen Wolkens
  0 siblings, 0 replies; 28+ messages in thread
From: Ionen Wolkens @ 2023-12-30  1:26 UTC (permalink / raw
  To: gentoo-commits

commit:     0b902e6eb6e46d631b404dcddf92f95ff8e46765
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Dec 29 17:29:41 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 01:10:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b902e6e

net-print/libcupsfilters: Keyword 2.0.0-r3 sparc, #920237

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 565f5da436dc..ee0a59eb363d 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2023-12-30  1:26 Ionen Wolkens
  0 siblings, 0 replies; 28+ messages in thread
From: Ionen Wolkens @ 2023-12-30  1:26 UTC (permalink / raw
  To: gentoo-commits

commit:     631a73846ba43d45b03c612671e605c435c7dfb1
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Dec 29 20:20:11 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 01:10:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=631a7384

net-print/libcupsfilters: Keyword 2.0.0-r3 ia64, #920237

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index ee0a59eb363d..748af4045db4 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-01-03  8:41 Jakov Smolić
  0 siblings, 0 replies; 28+ messages in thread
From: Jakov Smolić @ 2024-01-03  8:41 UTC (permalink / raw
  To: gentoo-commits

commit:     e60180bc84b19f6d6a739497b97cf173e74be77d
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  3 08:41:38 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jan  3 08:41:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e60180bc

net-print/libcupsfilters: Keyword 2.0.0-r3 riscv, #920237

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 748af4045db4..1edfc0729234 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-01-25  1:05 Ionen Wolkens
  0 siblings, 0 replies; 28+ messages in thread
From: Ionen Wolkens @ 2024-01-25  1:05 UTC (permalink / raw
  To: gentoo-commits

commit:     991b63c87b703f7e251cdb6077fc06c001a8c424
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Jan 24 19:56:27 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 00:52:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991b63c8

net-print/libcupsfilters: Keyword 2.0.0-r3 hppa, #920237

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 1edfc0729234..f0e98c6690ef 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 15:12 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     d4b9d7ea2b7753db726cad2fb94dcacd36a9c74b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 15:11:32 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 15:11:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b9d7ea

net-print/libcupsfilters: Stabilize 2.0.0-r3 ppc, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 8f28149754a2..12dec087f3d6 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 15:12 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     d5ed9c42fdbed547a9baf8c68fcf596b0c6d74dc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 15:11:28 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 15:11:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ed9c42

net-print/libcupsfilters: Stabilize 2.0.0-r3 ppc64, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index f0e98c6690ef..8f28149754a2 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 15:12 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     667785e99b7a153684487176a83a2d03b4d80348
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 15:11:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 15:11:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667785e9

net-print/libcupsfilters: Stabilize 2.0.0-r3 arm64, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 12dec087f3d6..620a6570f532 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 15:12 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     b5a31fd6425d1b2794dbe87cccb23ca4112aacc6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 15:11:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 15:11:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a31fd6

net-print/libcupsfilters: Stabilize 2.0.0-r3 arm, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 620a6570f532..13236a8c02f3 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 16:46 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 16:46 UTC (permalink / raw
  To: gentoo-commits

commit:     cef181ee0f181da6393132af1060c9efc1ac8d05
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 16:45:48 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 16:45:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef181ee

net-print/libcupsfilters: Stabilize 2.0.0-r3 amd64, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index 13236a8c02f3..b44a61090e25 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-05 16:46 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-05 16:46 UTC (permalink / raw
  To: gentoo-commits

commit:     aec87deb2cc3263381083a968db362c13a008446
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 16:46:28 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 16:46:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec87deb

net-print/libcupsfilters: Stabilize 2.0.0-r3 x86, #923811

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index b44a61090e25..d91118888001 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-02-22  4:45 Ionen Wolkens
  0 siblings, 0 replies; 28+ messages in thread
From: Ionen Wolkens @ 2024-02-22  4:45 UTC (permalink / raw
  To: gentoo-commits

commit:     587972015b6141fdc48729a77005326b1f710abb
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Feb 21 15:45:28 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 04:45:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58797201

net-print/libcupsfilters: Stabilize 2.0.0-r3 sparc, #923811

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
index d91118888001..af4e7ce42ad6 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
 
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-04-29  5:45 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-04-29  5:45 UTC (permalink / raw
  To: gentoo-commits

commit:     c797e4250faf36792ed71b0dd12e360229836aad
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 05:45:20 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 05:45:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c797e425

net-print/libcupsfilters: Stabilize 2.0.0-r4 arm64, #930855

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
index 1d3b175d5905..6390f46ae448 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-04-29  5:50 Sam James
  0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-04-29  5:50 UTC (permalink / raw
  To: gentoo-commits

commit:     5cb5926b8f273f762428de515fa85d8fdd38904a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 05:49:33 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 05:49:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cb5926b

net-print/libcupsfilters: Stabilize 2.0.0-r4 arm, #930855

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
index 6390f46ae448..55bfc3f078cd 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenPrinting/libcupsfilters/releases/download/${PV}/
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-05-31 12:01 David Seifert
  0 siblings, 0 replies; 28+ messages in thread
From: David Seifert @ 2024-05-31 12:01 UTC (permalink / raw
  To: gentoo-commits

commit:     3d754b6ca1d73494978589e9243b6a6184340d17
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri May 31 12:01:22 2024 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 31 12:01:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d754b6c

net-print/libcupsfilters: slot op on app-text/poppler

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../{libcupsfilters-2.0.0-r4.ebuild => libcupsfilters-2.0.0-r5.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild b/net-print/libcupsfilters/libcupsfilters-2.0.0-r5.ebuild
similarity index 97%
rename from net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
rename to net-print/libcupsfilters/libcupsfilters-2.0.0-r5.ebuild
index 555c55040cd5..21c5b2f5313d 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.0.0-r4.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.0.0-r5.ebuild
@@ -27,7 +27,7 @@ RDEPEND="
 	jpeg? ( media-libs/libjpeg-turbo:= )
 	pdf? ( app-text/mupdf )
 	postscript? ( app-text/ghostscript-gpl[cups] )
-	poppler? ( >=app-text/poppler-0.32[cxx] )
+	poppler? ( >=app-text/poppler-0.32:=[cxx] )
 	png? ( media-libs/libpng:= )
 	tiff? ( media-libs/tiff:= )
 "


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-09-27  5:30 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2024-09-27  5:30 UTC (permalink / raw
  To: gentoo-commits

commit:     88b72a150499ef012f025a14f6adfa9e49ca30f8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 27 05:29:49 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 27 05:29:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b72a15

net-print/libcupsfilters: Stabilize 2.1_beta1 x86, #940015

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
index 1a1c2653178f..adc05e49bb3d 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_beta/b}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-09-27  5:30 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2024-09-27  5:30 UTC (permalink / raw
  To: gentoo-commits

commit:     53e6eecf9ae3d31a278b549dbb0752c956140bae
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 27 05:29:52 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 27 05:29:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e6eecf

net-print/libcupsfilters: Stabilize 2.1_beta1 amd64, #940015

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
index adc05e49bb3d..f2af577e08f1 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_beta/b}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-09-27  5:46 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2024-09-27  5:46 UTC (permalink / raw
  To: gentoo-commits

commit:     c8ea0ef66d91ef19355e6ac2eae5d5894a1aeda8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 27 05:46:45 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 27 05:46:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8ea0ef6

net-print/libcupsfilters: Stabilize 2.1_beta1 arm64, #940015

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
index f2af577e08f1..561be5c1a802 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_beta/b}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/
@ 2024-09-28 13:33 Arthur Zamarin
  0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2024-09-28 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     f83ad4b9f5bff2edc246271653696ddbba4fecfe
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 28 13:33:32 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 28 13:33:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f83ad4b9

net-print/libcupsfilters: Stabilize 2.1_beta1 arm, #940015

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
index 561be5c1a802..fa165e095afd 100644
--- a/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
+++ b/net-print/libcupsfilters/libcupsfilters-2.1_beta1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${P/_beta/b}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
 IUSE="dbus exif jpeg pdf +poppler +postscript png test tiff"
 RESTRICT="!test? ( test )"
 


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

end of thread, other threads:[~2024-09-28 13:33 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-29  5:50 [gentoo-commits] repo/gentoo:master commit in: net-print/libcupsfilters/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-09-28 13:33 Arthur Zamarin
2024-09-27  5:46 Arthur Zamarin
2024-09-27  5:30 Arthur Zamarin
2024-09-27  5:30 Arthur Zamarin
2024-05-31 12:01 David Seifert
2024-04-29  5:45 Sam James
2024-02-22  4:45 Ionen Wolkens
2024-02-05 16:46 Sam James
2024-02-05 16:46 Sam James
2024-02-05 15:12 Sam James
2024-02-05 15:12 Sam James
2024-02-05 15:12 Sam James
2024-02-05 15:12 Sam James
2024-01-25  1:05 Ionen Wolkens
2024-01-03  8:41 Jakov Smolić
2023-12-30  1:26 Ionen Wolkens
2023-12-30  1:26 Ionen Wolkens
2023-12-29 14:55 Arthur Zamarin
2023-12-29 14:55 Arthur Zamarin
2023-12-29 14:54 Arthur Zamarin
2023-12-29 14:36 Arthur Zamarin
2023-12-29  1:19 Sam James
2023-12-22 13:24 Mart Raudsepp
2023-12-22  8:03 Sam James
2023-12-19  5:08 Sam James
2023-12-18  6:12 Sam James
2023-12-18  3:54 Sam James

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