public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2017-04-16 15:43 Gilles Dartiguelongue
  0 siblings, 0 replies; 62+ messages in thread
From: Gilles Dartiguelongue @ 2017-04-16 15:43 UTC (permalink / raw
  To: gentoo-commits

commit:     4c594d19cae2ce0c5fe975674fb4e149a53ac9a1
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 14:39:46 2017 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 15:42:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c594d19

media-libs/libopenraw: version bump 0.1.0 → 0.1.1

Remove eutils inherit in favor of ltprune.
Drop patch as it appears not needed anymore.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.1.1.ebuild | 54 +++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index b267853e7e8..07f0a5546d8 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,2 +1,3 @@
 DIST libopenraw-0.0.9.tar.bz2 478687 SHA256 49fd1adf0a0228c7a17a79bf98d8d03664195feae1e50f4ddd1b20162626e18f SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5 WHIRLPOOL 52d407b1d443fe7c38c59274b3267feb4dffeca9114a39cad925c346ae21d1378cbceba4ce1973657073f8890bf50a18c476ba3451d806fe7f50824bb935c559
 DIST libopenraw-0.1.0.tar.bz2 525449 SHA256 4dede1db9b85c9c22a1ddaf37839f2713746a00b81a6d4623d66556000cb76cf SHA512 f3b867d831d03350e487a98f08cadf6a24d5e4296129a401c0066cfdf0e628663e821ed0b7e42613d1533513a9c36a1693d6c3cbbd918246dbdfbb111b5a470a WHIRLPOOL 4101f34e20d4f73560086ed849b5c648eb3f399610ee77285361a13f1343255d2f95bd6b045b80505695e4f0125d491cec37e0f8c525d953a7bf12009f031875
+DIST libopenraw-0.1.1.tar.bz2 561718 SHA256 bbba7fccb2b8ef12c0fa405f6830fa7c9a91c71ea5e97564833d09a1078aa357 SHA512 ac8195fddc165d32337f518cc89297b91a8c2805132e380a261e9855f88ecbe074d6090f1f7b547c18fd2016b313a19e04e0428f9ba85b18928115b9dc0c1bc2 WHIRLPOOL 1af884c6e2119e134cf50792e0a54bc2f315ee4b7aabb84fd9ba0d6becc0eb5908ba4708f6447a3abf08ca3be413ebb4dc88af457df9477b827a284989ed8b59

diff --git a/media-libs/libopenraw/libopenraw-0.1.1.ebuild b/media-libs/libopenraw/libopenraw-0.1.1.ebuild
new file mode 100644
index 00000000000..8e68d515706
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.1.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils ltprune
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/7"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk static-libs test"
+
+RDEPEND="
+	dev-libs/libxml2
+	virtual/jpeg:0
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="${RDEPEND}
+	>=dev-libs/boost-1.35
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable static-libs static) \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	prune_libtool_files --all
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2017-06-27 12:24 Michael Palimaka
  0 siblings, 0 replies; 62+ messages in thread
From: Michael Palimaka @ 2017-06-27 12:24 UTC (permalink / raw
  To: gentoo-commits

commit:     ec901e01a4918e587a9a720935688388ac1880b3
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 27 12:23:45 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Jun 27 12:23:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec901e01

media-libs/libopenraw: version bump 0.1.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 54 +++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 07f0a5546d8..0a0aa4ae916 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,3 +1,4 @@
 DIST libopenraw-0.0.9.tar.bz2 478687 SHA256 49fd1adf0a0228c7a17a79bf98d8d03664195feae1e50f4ddd1b20162626e18f SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5 WHIRLPOOL 52d407b1d443fe7c38c59274b3267feb4dffeca9114a39cad925c346ae21d1378cbceba4ce1973657073f8890bf50a18c476ba3451d806fe7f50824bb935c559
 DIST libopenraw-0.1.0.tar.bz2 525449 SHA256 4dede1db9b85c9c22a1ddaf37839f2713746a00b81a6d4623d66556000cb76cf SHA512 f3b867d831d03350e487a98f08cadf6a24d5e4296129a401c0066cfdf0e628663e821ed0b7e42613d1533513a9c36a1693d6c3cbbd918246dbdfbb111b5a470a WHIRLPOOL 4101f34e20d4f73560086ed849b5c648eb3f399610ee77285361a13f1343255d2f95bd6b045b80505695e4f0125d491cec37e0f8c525d953a7bf12009f031875
 DIST libopenraw-0.1.1.tar.bz2 561718 SHA256 bbba7fccb2b8ef12c0fa405f6830fa7c9a91c71ea5e97564833d09a1078aa357 SHA512 ac8195fddc165d32337f518cc89297b91a8c2805132e380a261e9855f88ecbe074d6090f1f7b547c18fd2016b313a19e04e0428f9ba85b18928115b9dc0c1bc2 WHIRLPOOL 1af884c6e2119e134cf50792e0a54bc2f315ee4b7aabb84fd9ba0d6becc0eb5908ba4708f6447a3abf08ca3be413ebb4dc88af457df9477b827a284989ed8b59
+DIST libopenraw-0.1.2.tar.bz2 563981 SHA256 d15e86141add6a652f316ab8884895d8399d37c17510b34f61e266f906a99683 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8 WHIRLPOOL 1b882a034dff8e7cc6df627d4c4c198e50a23e1619c1cc3ab43d3e8d318401888aeea9df5dcd1b29587693736226cdeff09e4a026f3b09e9a6a1b2aec60f3dea

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
new file mode 100644
index 00000000000..8e68d515706
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils ltprune
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/7"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk static-libs test"
+
+RDEPEND="
+	dev-libs/libxml2
+	virtual/jpeg:0
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="${RDEPEND}
+	>=dev-libs/boost-1.35
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable static-libs static) \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	prune_libtool_files --all
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-01-20 23:03 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2018-01-20 23:03 UTC (permalink / raw
  To: gentoo-commits

commit:     c9fc19f52aa6b0eaf036fcb93f2ff6a5608b915d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 15:34:55 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 23:02:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9fc19f5

media-libs/libopenraw: Drop to ~hppa

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-libs/libopenraw/libopenraw-0.0.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
index 5286863365b..8a3b8e0888c 100644
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="virtual/jpeg:0


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-02-10 12:56 Jeroen Roovers
  0 siblings, 0 replies; 62+ messages in thread
From: Jeroen Roovers @ 2018-02-10 12:56 UTC (permalink / raw
  To: gentoo-commits

commit:     dd1852a179f394a8aa2e05b76ee27398152b6844
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 10 12:45:53 2018 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 12:55:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1852a1

media-libs/libopenraw: Revert "media-libs/libopenraw: Drop to ~hppa"

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
index 8a3b8e0888c..ca34be7debb 100644
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="virtual/jpeg:0


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-02-10 18:38 Sergei Trofimovich
  0 siblings, 0 replies; 62+ messages in thread
From: Sergei Trofimovich @ 2018-02-10 18:38 UTC (permalink / raw
  To: gentoo-commits

commit:     b09b04562551a157ba9f13efea21fc1b1822eb0e
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 10 18:37:51 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 18:38:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b09b0456

media-libs/libopenraw: stable 0.1.2 for ia64, bug #644572

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 8e68d515706..9d86a286895 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-02-11 19:13 Thomas Deutschmann
  0 siblings, 0 replies; 62+ messages in thread
From: Thomas Deutschmann @ 2018-02-11 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     76e7081a529c248ab8e80ce782ec11032e3a0e2c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 19:07:00 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 19:07:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76e7081a

media-libs/libopenraw: x86 stable (bug #644572)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 9d86a286895..01dbfc6d81f 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-02-12 20:06 Sergei Trofimovich
  0 siblings, 0 replies; 62+ messages in thread
From: Sergei Trofimovich @ 2018-02-12 20:06 UTC (permalink / raw
  To: gentoo-commits

commit:     22d7d68f42d1d6f1d56acb797e293937382e6dc5
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Feb 12 19:17:47 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Feb 12 20:06:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d7d68f

media-libs/libopenraw: stable 0.1.2 for sparc, bug #644572

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 01dbfc6d81f..557087a3a2c 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-02-21 18:48 Jason Zaman
  0 siblings, 0 replies; 62+ messages in thread
From: Jason Zaman @ 2018-02-21 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     4b20eb711dd5a26861ac7b07598a7ed4f2622bd5
Author:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 21 18:38:22 2018 +0000
Commit:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Wed Feb 21 18:38:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b20eb71

media-libs/libopenraw: amd64 stable

Gentoo-bug: 644572
Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 557087a3a2c..dc58121c8cf 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-03-06 13:32 Tobias Klausmann
  0 siblings, 0 replies; 62+ messages in thread
From: Tobias Klausmann @ 2018-03-06 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     aa5306a01c899d4f032eaab5d8a3b72c6cb98f0a
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  6 12:39:23 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Mar  6 13:32:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5306a0

media-libs/libopenraw-0.1.2-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/644572

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index dc58121c8cf..7d62f37b7ac 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-03-20  8:21 Sergei Trofimovich
  0 siblings, 0 replies; 62+ messages in thread
From: Sergei Trofimovich @ 2018-03-20  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     795535db1ccdd0fb71c63da9a8c08ee7194e4fcb
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 20 08:21:10 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Mar 20 08:21:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795535db

media-libs/libopenraw: stable 0.1.2 for ppc, bug #644572

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 7d62f37b7ac..5346d2ab1ec 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-03-25 17:18 Markus Meier
  0 siblings, 0 replies; 62+ messages in thread
From: Markus Meier @ 2018-03-25 17:18 UTC (permalink / raw
  To: gentoo-commits

commit:     8a82049ab79f8f79553151b5ec50473d7f7f7c9b
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 25 17:14:52 2018 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 17:14:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a82049a

media-libs/libopenraw: arm stable, bug #644572

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 5346d2ab1ec..42f3caff116 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-03-29  6:37 Sergei Trofimovich
  0 siblings, 0 replies; 62+ messages in thread
From: Sergei Trofimovich @ 2018-03-29  6:37 UTC (permalink / raw
  To: gentoo-commits

commit:     edc79e683ae178889dd904eb076364ed9b53053b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 29 06:35:43 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 06:35:43 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc79e68

media-libs/libopenraw: stable 0.1.2 for ppc64, bug #644572

Package-Manager: Portage-2.3.26, Repoman-2.3.7
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 42f3caff116..737173d24ae 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-03-31 18:01 Sebastian Pipping
  0 siblings, 0 replies; 62+ messages in thread
From: Sebastian Pipping @ 2018-03-31 18:01 UTC (permalink / raw
  To: gentoo-commits

commit:     9f1e6bd17d97aef31ff6b9bbb98d807713d094a8
Author:     Alexey Korepanov <kaikaikai <AT> yandex <DOT> ru>
AuthorDate: Sat Mar 31 16:45:36 2018 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Mar 31 18:00:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1e6bd1

media-libs/libopenraw: keyword ~arm64

 media-libs/libopenraw/libopenraw-0.0.9.ebuild | 2 +-
 media-libs/libopenraw/libopenraw-0.1.0.ebuild | 4 ++--
 media-libs/libopenraw/libopenraw-0.1.1.ebuild | 4 ++--
 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
index ca34be7debb..5c269828d8f 100644
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="virtual/jpeg:0

diff --git a/media-libs/libopenraw/libopenraw-0.1.0.ebuild b/media-libs/libopenraw/libopenraw-0.1.0.ebuild
index a866a60b27e..0378ec2dc56 100644
--- a/media-libs/libopenraw/libopenraw-0.1.0.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="

diff --git a/media-libs/libopenraw/libopenraw-0.1.1.ebuild b/media-libs/libopenraw/libopenraw-0.1.1.ebuild
index 8e68d515706..9306d7d2660 100644
--- a/media-libs/libopenraw/libopenraw-0.1.1.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index 737173d24ae..c2033d4fe9a 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-07-20 22:24 Sergei Trofimovich
  0 siblings, 0 replies; 62+ messages in thread
From: Sergei Trofimovich @ 2018-07-20 22:24 UTC (permalink / raw
  To: gentoo-commits

commit:     ab3812f03939fb53610391fa3f63d22be905d313
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 22:23:12 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 22:23:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3812f0

media-libs/libopenraw: stable 0.1.2 for hppa, bug #644572

Bug: https://bugs.gentoo.org/644572
Package-Manager: Portage-2.3.43, Repoman-2.3.10
RepoMan-Options: --include-arches="hppa"

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index c2033d4fe9a..bf5a873fea2 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk static-libs test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-09-30 17:45 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2018-09-30 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     20a31d7b117ad82fbf1acfb85cde71d764303a54
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 30 17:15:33 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Sep 30 17:45:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a31d7b

media-libs/libopenraw: Drop ltprune

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
index bf5a873fea2..571c1c4692d 100644
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit gnome2-utils ltprune
+
+inherit gnome2-utils
 
 DESCRIPTION="A decoding library for RAW image formats"
 HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
@@ -38,7 +39,7 @@ src_configure() {
 
 src_install() {
 	default
-	prune_libtool_files --all
+	find "${D}" -name '*.la' -delete || die
 }
 
 pkg_preinst() {


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-11-17 18:48 Gilles Dartiguelongue
  0 siblings, 0 replies; 62+ messages in thread
From: Gilles Dartiguelongue @ 2018-11-17 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     1be286da0397b2543d57ebc7ef0d7171fb2686e9
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 17 18:34:28 2018 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sat Nov 17 18:48:16 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1be286da

media-libs/libopenraw: cleanup old revision

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 -
 media-libs/libopenraw/libopenraw-0.0.9.ebuild | 55 ---------------------------
 2 files changed, 56 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 74487bd9877..dcb939936d7 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,2 +1 @@
-DIST libopenraw-0.0.9.tar.bz2 478687 BLAKE2B d51410aa2a4ce297c660f80f99c912374faf05c0920be0c9dff78c5979c553cd74aafed0591bd62d479825cb0fd7064b47b86747ecddc75cc177b54184eb42b1 SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5
 DIST libopenraw-0.1.2.tar.bz2 563981 BLAKE2B 60332274c72602e5b3eea3e41dfee8c62303a2f09028df4a637cea6f07391d912f354752cb6f354e06dd9e223dfabe5dbed1d50e0f325d85be42fb5012ecede6 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
deleted file mode 100644
index 5c269828d8f..00000000000
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils
-
-DESCRIPTION="A decoding library for RAW image formats"
-HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
-IUSE="gtk static-libs test"
-
-RDEPEND="virtual/jpeg:0
-	dev-libs/libxml2
-	gtk? (
-		>=dev-libs/glib-2
-		>=x11-libs/gdk-pixbuf-2.24.0:2
-		)"
-DEPEND="${RDEPEND}
-	>=dev-libs/boost-1.35
-	virtual/pkgconfig
-	test? ( net-misc/curl )"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
-	has_version '>=media-libs/jpeg-9a:0' && epatch "${FILESDIR}"/${P}-jpeg-9a.patch
-}
-
-src_configure() {
-	econf \
-		--with-boost="${EPREFIX}"/usr \
-		$(use_enable static-libs static) \
-		$(use_enable gtk gnome)
-}
-
-src_install() {
-	default
-	prune_libtool_files --all
-}
-
-pkg_preinst() {
-	gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
-	gnome2_gdk_pixbuf_update
-}
-
-pkg_postinst() {
-	gnome2_gdk_pixbuf_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-11-17 21:18 Gilles Dartiguelongue
  0 siblings, 0 replies; 62+ messages in thread
From: Gilles Dartiguelongue @ 2018-11-17 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     9d1550f3fbd43acca0048710c4030d475e286997
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 17 21:09:15 2018 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sat Nov 17 21:18:34 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1550f3

Revert "media-libs/libopenraw: cleanup old revision"

This reverts commit 1be286da0397b2543d57ebc7ef0d7171fb2686e9.

Still used by gegl:0.2 and gegl:0.3.

Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.0.9.ebuild | 55 +++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index dcb939936d7..74487bd9877 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1 +1,2 @@
+DIST libopenraw-0.0.9.tar.bz2 478687 BLAKE2B d51410aa2a4ce297c660f80f99c912374faf05c0920be0c9dff78c5979c553cd74aafed0591bd62d479825cb0fd7064b47b86747ecddc75cc177b54184eb42b1 SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5
 DIST libopenraw-0.1.2.tar.bz2 563981 BLAKE2B 60332274c72602e5b3eea3e41dfee8c62303a2f09028df4a637cea6f07391d912f354752cb6f354e06dd9e223dfabe5dbed1d50e0f325d85be42fb5012ecede6 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
new file mode 100644
index 00000000000..5c269828d8f
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit eutils gnome2-utils
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk static-libs test"
+
+RDEPEND="virtual/jpeg:0
+	dev-libs/libxml2
+	gtk? (
+		>=dev-libs/glib-2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+		)"
+DEPEND="${RDEPEND}
+	>=dev-libs/boost-1.35
+	virtual/pkgconfig
+	test? ( net-misc/curl )"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_prepare() {
+	has_version '>=media-libs/jpeg-9a:0' && epatch "${FILESDIR}"/${P}-jpeg-9a.patch
+}
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable static-libs static) \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	prune_libtool_files --all
+}
+
+pkg_preinst() {
+	gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	gnome2_gdk_pixbuf_update
+}
+
+pkg_postinst() {
+	gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2018-11-18  0:36 Gilles Dartiguelongue
  0 siblings, 0 replies; 62+ messages in thread
From: Gilles Dartiguelongue @ 2018-11-18  0:36 UTC (permalink / raw
  To: gentoo-commits

commit:     655ec78baf1f260d2aa7f6be3b61bbb8c4816369
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 18 00:26:53 2018 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun Nov 18 00:36:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=655ec78b

media-libs/libopenraw: bump to 0.1.3

Add support for new camera models.

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 55 +++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 74487bd9877..0a63eee850e 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,2 +1,3 @@
 DIST libopenraw-0.0.9.tar.bz2 478687 BLAKE2B d51410aa2a4ce297c660f80f99c912374faf05c0920be0c9dff78c5979c553cd74aafed0591bd62d479825cb0fd7064b47b86747ecddc75cc177b54184eb42b1 SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5
 DIST libopenraw-0.1.2.tar.bz2 563981 BLAKE2B 60332274c72602e5b3eea3e41dfee8c62303a2f09028df4a637cea6f07391d912f354752cb6f354e06dd9e223dfabe5dbed1d50e0f325d85be42fb5012ecede6 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8
+DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
new file mode 100644
index 00000000000..cb9866416da
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/7"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk static-libs test"
+
+RDEPEND="
+	dev-libs/libxml2
+	virtual/jpeg:0
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="${RDEPEND}
+	>=dev-libs/boost-1.35
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable static-libs static) \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2020-12-02  0:32 Aaron Bauman
  0 siblings, 0 replies; 62+ messages in thread
From: Aaron Bauman @ 2020-12-02  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     5d35253848e47b63bfb46837c56886ea5a0e544f
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  1 23:37:18 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 00:31:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d352538

media-libs/libopenraw: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 -
 media-libs/libopenraw/libopenraw-0.0.9.ebuild | 56 ---------------------------
 2 files changed, 57 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 0a63eee850e..e7902138c8f 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,3 +1,2 @@
-DIST libopenraw-0.0.9.tar.bz2 478687 BLAKE2B d51410aa2a4ce297c660f80f99c912374faf05c0920be0c9dff78c5979c553cd74aafed0591bd62d479825cb0fd7064b47b86747ecddc75cc177b54184eb42b1 SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5
 DIST libopenraw-0.1.2.tar.bz2 563981 BLAKE2B 60332274c72602e5b3eea3e41dfee8c62303a2f09028df4a637cea6f07391d912f354752cb6f354e06dd9e223dfabe5dbed1d50e0f325d85be42fb5012ecede6 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8
 DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029

diff --git a/media-libs/libopenraw/libopenraw-0.0.9.ebuild b/media-libs/libopenraw/libopenraw-0.0.9.ebuild
deleted file mode 100644
index ad423950d23..00000000000
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils ltprune
-
-DESCRIPTION="A decoding library for RAW image formats"
-HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
-IUSE="gtk static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="virtual/jpeg:0
-	dev-libs/libxml2
-	gtk? (
-		>=dev-libs/glib-2
-		>=x11-libs/gdk-pixbuf-2.24.0:2
-		)"
-DEPEND="${RDEPEND}
-	>=dev-libs/boost-1.35
-	virtual/pkgconfig
-	test? ( net-misc/curl )"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
-	has_version '>=media-libs/jpeg-9a:0' && epatch "${FILESDIR}"/${P}-jpeg-9a.patch
-}
-
-src_configure() {
-	econf \
-		--with-boost="${EPREFIX}"/usr \
-		$(use_enable static-libs static) \
-		$(use_enable gtk gnome)
-}
-
-src_install() {
-	default
-	prune_libtool_files --all
-}
-
-pkg_preinst() {
-	gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
-	gnome2_gdk_pixbuf_update
-}
-
-pkg_postinst() {
-	gnome2_gdk_pixbuf_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-01 17:31 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2021-02-01 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     37f77c7a507c7f2c20ab19e3c3bb5440e37db1f3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  1 17:01:08 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 17:30:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f77c7a

media-libs/libopenraw: EAPI-7, HOMEPAGE, DESCRIPTION, static-libs--

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index d3072df54c9..c6a1fbfd8b2 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -1,18 +1,18 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit gnome2-utils
 
-DESCRIPTION="A decoding library for RAW image formats"
-HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
 SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
-IUSE="gtk static-libs test"
+IUSE="gtk test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
@@ -25,16 +25,16 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
 	>=dev-libs/boost-1.35
+"
+BDEPEND="
 	virtual/pkgconfig
 	test? ( net-misc/curl )
 "
 
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
 src_configure() {
 	econf \
 		--with-boost="${EPREFIX}"/usr \
-		$(use_enable static-libs static) \
+		--disable-static \
 		$(use_enable gtk gnome)
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-01 22:15 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-01 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     5e2285de7a7dc5e59a388f5f9099479b934d1819
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  1 22:14:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 22:14:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e2285de

media-libs/libopenraw: Stabilize 0.1.3 ppc64, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index c6a1fbfd8b2..a6df02b8101 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-01 22:15 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-01 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     84352ad9eab6ec856048f99f12db8e5d3043abff
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  1 22:15:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 22:15:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84352ad9

media-libs/libopenraw: Stabilize 0.1.3 sparc, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index a6df02b8101..7fe32abbd3a 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-02  4:19 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-02  4:19 UTC (permalink / raw
  To: gentoo-commits

commit:     604adf097e0dbbb49a93b5b45f4355e85a48f686
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  2 04:19:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  2 04:19:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604adf09

media-libs/libopenraw: Stabilize 0.1.3 amd64, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index 7fe32abbd3a..cc1dfc63104 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-03  3:11 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-03  3:11 UTC (permalink / raw
  To: gentoo-commits

commit:     42f29e892135d1c4ba1ea4758edf947fd931c887
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  3 03:11:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb  3 03:11:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42f29e89

media-libs/libopenraw: Stabilize 0.1.3 x86, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index cc1dfc63104..cca44f07376 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-05 12:29 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-05 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     cf2b5913312d3ce861e8fe76647bfce0cce2274e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 12:29:33 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 12:29:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf2b5913

media-libs/libopenraw: Stabilize 0.1.3 ppc, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index cca44f07376..5112dfe394d 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-15  0:38 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-02-15  0:38 UTC (permalink / raw
  To: gentoo-commits

commit:     68a1ce4d1f49193a05a758c09f6db3a9d557da88
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 00:38:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 00:38:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68a1ce4d

media-libs/libopenraw: Stabilize 0.1.3 arm, #768252

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index 5112dfe394d..a09c541263f 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-02-15  9:03 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2021-02-15  9:03 UTC (permalink / raw
  To: gentoo-commits

commit:     59b44531f51814501efcab257856117801ce594f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 08:52:39 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 09:02:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b44531

media-libs/libopenraw: Drop 0.1.2

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 -
 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 56 ---------------------------
 2 files changed, 57 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index e7902138c8f..08497c5083f 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,2 +1 @@
-DIST libopenraw-0.1.2.tar.bz2 563981 BLAKE2B 60332274c72602e5b3eea3e41dfee8c62303a2f09028df4a637cea6f07391d912f354752cb6f354e06dd9e223dfabe5dbed1d50e0f325d85be42fb5012ecede6 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8
 DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
deleted file mode 100644
index 1b84536a906..00000000000
--- a/media-libs/libopenraw/libopenraw-0.1.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-DESCRIPTION="A decoding library for RAW image formats"
-HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0/7"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
-IUSE="gtk static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-libs/libxml2
-	virtual/jpeg:0
-	gtk? (
-		dev-libs/glib:2
-		>=x11-libs/gdk-pixbuf-2.24.0:2
-	)
-"
-DEPEND="${RDEPEND}
-	>=dev-libs/boost-1.35
-	virtual/pkgconfig
-	test? ( net-misc/curl )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_configure() {
-	econf \
-		--with-boost="${EPREFIX}"/usr \
-		$(use_enable static-libs static) \
-		$(use_enable gtk gnome)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
-	use gtk && gnome2_gdk_pixbuf_update
-}
-
-pkg_postrm() {
-	use gtk && gnome2_gdk_pixbuf_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-04-12 23:33 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2021-04-12 23:33 UTC (permalink / raw
  To: gentoo-commits

commit:     7699e559ed523a8d32e9297eaf5b0fdb022b37f3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 23:26:10 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 23:32:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7699e559

media-libs/libopenraw: Stabilize 0.1.3 arm64, #776703

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index a09c541263f..e004a6a8e89 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2021-08-23 22:59 Marek Szuba
  0 siblings, 0 replies; 62+ messages in thread
From: Marek Szuba @ 2021-08-23 22:59 UTC (permalink / raw
  To: gentoo-commits

commit:     8794c15b07066741b7dd7d7106b3eb8bda3a52fa
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 23 22:18:34 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Aug 23 22:59:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8794c15b

media-libs/libopenraw: keyword 0.1.3 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index e004a6a8e89..5b957e3c1f6 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-10-29 20:16 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2022-10-29 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     d82bd83d70b30322bf9de77e7113ebf7ef6fd477
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 20:15:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 20:16:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82bd83d

media-libs/libopenraw: add freedesktop upstream metadata

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

 media-libs/libopenraw/metadata.xml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/media-libs/libopenraw/metadata.xml b/media-libs/libopenraw/metadata.xml
index d43581a9ab0f..1cd033ce40cf 100644
--- a/media-libs/libopenraw/metadata.xml
+++ b/media-libs/libopenraw/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-<email>freedesktop-bugs@gentoo.org</email>
-</maintainer>
+	<maintainer type="project">
+		<email>freedesktop-bugs@gentoo.org</email>
+	</maintainer>
+	<upstream>
+		<remote-id type="freedesktop-gitlab">libopenraw/libopenraw</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-10-29 20:17 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2022-10-29 20:17 UTC (permalink / raw
  To: gentoo-commits

commit:     d560a03bde1bf1ca3eff5a7e30f3902559624d8f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 20:17:18 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 20:17:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d560a03b

media-libs/libopenraw: drop superfluous --disable-static

EAPI 8 passes this.

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

 media-libs/libopenraw/libopenraw-0.3.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index ed6806b726b5..31437208fca3 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -69,7 +69,6 @@ BDEPEND="
 src_configure() {
 	econf \
 		--with-boost="${EPREFIX}"/usr \
-		--disable-static \
 		$(use_enable gtk gnome)
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-11-29 15:58 WANG Xuerui
  0 siblings, 0 replies; 62+ messages in thread
From: WANG Xuerui @ 2022-11-29 15:58 UTC (permalink / raw
  To: gentoo-commits

commit:     885fb335eae635592e6846af0fa9390b25b1aea6
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 15:46:53 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 15:57:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=885fb335

media-libs/libopenraw: keyword 0.1.3 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

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

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index c94c2a0ee3a2..37aba064440d 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-12-18 20:17 Arthur Zamarin
  0 siblings, 0 replies; 62+ messages in thread
From: Arthur Zamarin @ 2022-12-18 20:17 UTC (permalink / raw
  To: gentoo-commits

commit:     e9d1049e10797b38693e08c43c2a43afbda330b0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 20:17:39 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 20:17:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9d1049e

media-libs/libopenraw: Stabilize 0.3.2 x86, #886923

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index 31437208fca3..57f57fd54ada 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-12-18 20:33 Arthur Zamarin
  0 siblings, 0 replies; 62+ messages in thread
From: Arthur Zamarin @ 2022-12-18 20:33 UTC (permalink / raw
  To: gentoo-commits

commit:     4c995c606ae98b46b8c447c6583c4f2f664fd37b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 20:33:37 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 20:33:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c995c60

media-libs/libopenraw: Stabilize 0.3.2 amd64, #886923

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index 57f57fd54ada..b786267a8c68 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-12-31 23:09 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2022-12-31 23:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a0d299dc96476e1eca8d39de253db9931d5f7693
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 23:05:03 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 23:05:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0d299dc

media-libs/libopenraw: fix tests

Bug: https://bugs.gentoo.org/886923
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/libopenraw/Manifest                | 1 +
 media-libs/libopenraw/libopenraw-0.3.2.ebuild | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 0d9fdcfdb59d..8df0f491f1f0 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -15,6 +15,7 @@ DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c
 DIST libc-0.2.126.crate 590481 BLAKE2B 1000de6b9fa2b3ff025b961e504d6d20b401f37cdeda6710187d18ad2dfe8ec89142bba65486d7853f1796897b58f343c5a34dd6381a0d0794b615635ac31175 SHA512 9bbb17f64a7503819616a71076ebe8ee317daf07b17b9fff783a4459da0439aecee535c09e7185bf148b1993e6fc958d182a490fc9c9a7b9fb635429c491ca44
 DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029
 DIST libopenraw-0.3.2.tar.xz 563624 BLAKE2B 055d550af564f3b2c6c5e79f8875cbb1e996752b3a72f0b87ff1721efc008bd480b819f755b9e92bda63e69171d1533ce7f4a725aeaf69e819e5d8f3769e1d10 SHA512 de6c6b0bdc3847f615a159749648aa58700ad9213fb182853c43fc761c8606a07350f1980f76eb955c7629d16d82f4276108db617ecbd892069ba2daec5183bf
+DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2
 DIST memchr-2.5.0.crate 65812 BLAKE2B 57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab SHA512 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index b786267a8c68..42341cfa690c 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -77,6 +77,11 @@ src_compile() {
 	default
 }
 
+src_test() {
+	# Avoid cargo_src_test
+	default
+}
+
 src_install() {
 	default
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2022-12-31 23:09 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2022-12-31 23:09 UTC (permalink / raw
  To: gentoo-commits

commit:     18c5c05a7b49e9e81776197927accf75f02bf0ce
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 23:05:08 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 23:05:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c5c05a

media-libs/libopenraw: add 0.3.3

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

 media-libs/libopenraw/libopenraw-0.3.3.ebuild | 101 ++++++++++++++++++++++++++
 1 file changed, 101 insertions(+)

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
new file mode 100644
index 000000000000..9333b1a4b20a
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Run cargo-build or cargo fetch in lib/mp4 to get this list
+CRATES="
+ahash-0.7.6
+aho-corasick-0.7.18
+atty-0.2.14
+autocfg-1.0.0
+bitreader-0.3.2
+byteorder-1.2.2
+cfg-if-0.1.10
+cfg-if-1.0.0
+env_logger-0.8.4
+fallible_collections-0.4.4
+getrandom-0.2.7
+hashbrown-0.11.2
+hermit-abi-0.1.8
+humantime-2.1.0
+libc-0.2.126
+log-0.4.17
+memchr-2.5.0
+num-traits-0.2.15
+once_cell-1.12.0
+regex-1.5.6
+regex-syntax-0.6.26
+static_assertions-1.1.0
+termcolor-1.1.3
+version_check-0.9.4
+wasi-0.11.0+wasi-snapshot-preview1
+winapi-0.3.8
+winapi-i686-pc-windows-gnu-0.4.0
+winapi-util-0.1.5
+winapi-x86_64-pc-windows-gnu-0.4.0
+"
+
+inherit cargo gnome2-utils
+
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
+SRC_URI+=" $(cargo_crate_uris)"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/9"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2
+	media-libs/libjpeg-turbo:=
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="
+	${RDEPEND}
+	dev-libs/boost
+"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable gtk gnome)
+}
+
+src_compile() {
+	# Avoid cargo_src_compile
+	default
+}
+
+src_test() {
+	# Avoid cargo_src_test
+	default
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-01-13 12:20 Arthur Zamarin
  0 siblings, 0 replies; 62+ messages in thread
From: Arthur Zamarin @ 2023-01-13 12:20 UTC (permalink / raw
  To: gentoo-commits

commit:     4e0b72824341138fc4403001988288ed699da149
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 12:20:03 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 12:20:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0b7282

media-libs/libopenraw: Stabilize 0.3.2 arm, #886923

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

 media-libs/libopenraw/libopenraw-0.3.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index 42341cfa690c..3f419472a4ff 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-01-13 13:37 Arthur Zamarin
  0 siblings, 0 replies; 62+ messages in thread
From: Arthur Zamarin @ 2023-01-13 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     ab4742db2c00c41b53e60b9feadaa3a0a4ef27eb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 13:37:00 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 13:37:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4742db

media-libs/libopenraw: Stabilize 0.3.2 arm64, #886923

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index 3f419472a4ff..33d33cd1d201 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-01-13 16:31 Arthur Zamarin
  0 siblings, 0 replies; 62+ messages in thread
From: Arthur Zamarin @ 2023-01-13 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     d5090c21b6442f484b8af8fde206c77d1d001485
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 16:31:12 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 16:31:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5090c21

media-libs/libopenraw: Stabilize 0.3.2 ppc64, #886923

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index 33d33cd1d201..ce7599802f31 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-01-13 16:47 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-01-13 16:47 UTC (permalink / raw
  To: gentoo-commits

commit:     b812f8d6cfb93d7c1861aed8c00ef615c438ebff
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 16:47:04 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 16:47:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b812f8d6

media-libs/libopenraw: Stabilize 0.3.2 sparc, #886923

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.2.ebuild b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
index ce7599802f31..e88f8d2faa0c 100644
--- a/media-libs/libopenraw/libopenraw-0.3.2.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.2.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     077318f49ec2b65bf6ae413fb58efa420cf85eca
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:03 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077318f4

media-libs/libopenraw: Stabilize 0.3.3 ppc, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index b03733fb1496..ae07cb94427b 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     a31382f07e720441375ec3851add253a16a60a87
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a31382f0

media-libs/libopenraw: Stabilize 0.3.3 x86, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index ab0aab4ed50b..b03733fb1496 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     77096c8b28636dc19260d2637ea5712771bab108
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:55:59 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:55:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77096c8b

media-libs/libopenraw: Stabilize 0.3.3 amd64, #895380

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

 media-libs/libopenraw/libopenraw-0.3.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index 9333b1a4b20a..ab0aab4ed50b 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     7ab3fba188559e956167422e8ae77b9795395fbc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab3fba1

media-libs/libopenraw: Stabilize 0.3.3 arm, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index 57b2d5a69ec5..3b3dbde7104e 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     79449e6d6225eb1de812a5881c142ba0d689f4b3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79449e6d

media-libs/libopenraw: Stabilize 0.3.3 ppc64, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index c176a0837d59..e65b38cb22e8 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     120de74c4e1e930649c0ae5fd3a57b098dd22da2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120de74c

media-libs/libopenraw: Stabilize 0.3.3 sparc, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index ae07cb94427b..57b2d5a69ec5 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-02-22 16:56 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-02-22 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     108145393da7ce531c2c7398d8de82a2f1177956
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 16:56:09 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 16:56:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10814539

media-libs/libopenraw: Stabilize 0.3.3 arm64, #895380

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index 3b3dbde7104e..c176a0837d59 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -45,7 +45,7 @@ SRC_URI+=" $(cargo_crate_uris)"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/9"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-05-03  7:49 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-05-03  7:49 UTC (permalink / raw
  To: gentoo-commits

commit:     903caf1dfb0120c5a708e09ab824280f507dfdf5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 07:37:58 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May  3 07:37:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=903caf1d

media-libs/libopenraw: add 0.3.5

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

 media-libs/libopenraw/Manifest                |   1 +
 media-libs/libopenraw/libopenraw-0.3.5.ebuild | 102 ++++++++++++++++++++++++++
 2 files changed, 103 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 8480effce524..079f35b4dc25 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -17,6 +17,7 @@ DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b7
 DIST libopenraw-0.3.2.tar.xz 563624 BLAKE2B 055d550af564f3b2c6c5e79f8875cbb1e996752b3a72f0b87ff1721efc008bd480b819f755b9e92bda63e69171d1533ce7f4a725aeaf69e819e5d8f3769e1d10 SHA512 de6c6b0bdc3847f615a159749648aa58700ad9213fb182853c43fc761c8606a07350f1980f76eb955c7629d16d82f4276108db617ecbd892069ba2daec5183bf
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST libopenraw-0.3.4.tar.xz 570500 BLAKE2B 5d90c07b60ada2daf2110f6e935b33b429e20666c95ae0ed684ea36f09bd27fef67a07c6f359ee1ea3397d1bd48ae5630c95d48327511f56d6a1d81b973804dc SHA512 01bb42cbfb4f88fc8580bdce562243be796829ed943e184299ed54046776e580a9595d5676bded92ed897a6a2267cb2d54c19e31ee8f25804704c558c29b971b
+DIST libopenraw-0.3.5.tar.xz 2533200 BLAKE2B 8d708640951c9dae1bf0c809219d7fbf94cb4df6d0568cbaf6927968b63d3ce32d054766e0708ddd4d492f8d54cbd8797fdf8a67ceb8985ddde644ebbc45fa4b SHA512 deaa5e8c95be4eba0d0bd6f8cbb38e16ab6dd0ea0a93885ef79719154ece0bb2d1ca13b2ef75481ced4a282c9c788c5372f01df51d0f3ebc965e85dddf423a58
 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2
 DIST memchr-2.5.0.crate 65812 BLAKE2B 57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab SHA512 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8

diff --git a/media-libs/libopenraw/libopenraw-0.3.5.ebuild b/media-libs/libopenraw/libopenraw-0.3.5.ebuild
new file mode 100644
index 000000000000..fdf5ebebafff
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.3.5.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Run cargo-build or cargo fetch in lib/mp4 to get this list
+# TODO: >0.3.4 contains vendor/ but doesn't seem to work for now?
+CRATES="
+ahash-0.7.6
+aho-corasick-0.7.18
+atty-0.2.14
+autocfg-1.0.0
+bitreader-0.3.2
+byteorder-1.2.2
+cfg-if-0.1.10
+cfg-if-1.0.0
+env_logger-0.8.4
+fallible_collections-0.4.4
+getrandom-0.2.7
+hashbrown-0.11.2
+hermit-abi-0.1.8
+humantime-2.1.0
+libc-0.2.126
+log-0.4.17
+memchr-2.5.0
+num-traits-0.2.15
+once_cell-1.12.0
+regex-1.5.6
+regex-syntax-0.6.26
+static_assertions-1.1.0
+termcolor-1.1.3
+version_check-0.9.4
+wasi-0.11.0+wasi-snapshot-preview1
+winapi-0.3.8
+winapi-i686-pc-windows-gnu-0.4.0
+winapi-util-0.1.5
+winapi-x86_64-pc-windows-gnu-0.4.0
+"
+
+inherit cargo gnome2-utils
+
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
+SRC_URI+=" $(cargo_crate_uris)"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/9"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2
+	media-libs/libjpeg-turbo:=
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="
+	${RDEPEND}
+	dev-libs/boost
+"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable gtk gnome)
+}
+
+src_compile() {
+	# Avoid cargo_src_compile
+	default
+}
+
+src_test() {
+	# Avoid cargo_src_test
+	default
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-06-12  0:45 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-06-12  0:45 UTC (permalink / raw
  To: gentoo-commits

commit:     36e65bcb42da22760ac881f3a091000f05fb4419
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 12 00:40:24 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 12 00:40:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e65bcb

media-libs/libopenraw: add 0.3.6

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

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.3.6.ebuild | 69 +++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 804c2f658210..fcfdb204e1f7 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -16,6 +16,7 @@ DIST libc-0.2.126.crate 590481 BLAKE2B 1000de6b9fa2b3ff025b961e504d6d20b401f37cd
 DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST libopenraw-0.3.5.tar.xz 2533200 BLAKE2B 8d708640951c9dae1bf0c809219d7fbf94cb4df6d0568cbaf6927968b63d3ce32d054766e0708ddd4d492f8d54cbd8797fdf8a67ceb8985ddde644ebbc45fa4b SHA512 deaa5e8c95be4eba0d0bd6f8cbb38e16ab6dd0ea0a93885ef79719154ece0bb2d1ca13b2ef75481ced4a282c9c788c5372f01df51d0f3ebc965e85dddf423a58
+DIST libopenraw-0.3.6.tar.xz 2536224 BLAKE2B 675e31773db55d00843779f7e42b11f51b2060e6a9cc30e70b0cc34da6821241616e9e6f2f4f9d441464760643ef124e857b732ba3752ecae40b69753ca4911b SHA512 be6de3b264145297801513bccc49f18684242db71fcbdbc288132b05b805d9c0e1f194db3baab3f233ca3ca98df865bcc4f0b41812afbd5b3957843026293536
 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2
 DIST memchr-2.5.0.crate 65812 BLAKE2B 57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab SHA512 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
new file mode 100644
index 000000000000..c4afad8e2f78
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=" "
+inherit cargo gnome2-utils
+
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
+
+# MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
+LICENSE="GPL-3 LGPL-3 MPL-2.0"
+SLOT="0/9"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="gtk test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2
+	media-libs/libjpeg-turbo:=
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="
+	${RDEPEND}
+	dev-libs/boost
+"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable gtk gnome)
+}
+
+src_compile() {
+	# Avoid cargo_src_compile
+	default
+}
+
+src_test() {
+	# Avoid cargo_src_test
+	default
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-18 21:25 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-07-18 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     46d676040a04031fbe2fe663fd1621f62083a640
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 21:25:08 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 21:25:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d67604

media-libs/libopenraw: Stabilize 0.3.6 arm, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index 4fc378317923..a3c452554cad 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-18 21:25 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-07-18 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     9563397d1737d94c050b429f0d18d2ed5e52c9ce
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 21:25:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 21:25:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9563397d

media-libs/libopenraw: Stabilize 0.3.6 ppc64, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index ba994ff7d526..4fc378317923 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-18 21:25 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-07-18 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     71b64f2f5f43dcf7d180191a3520e7d7944ca59f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 21:25:09 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 21:25:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71b64f2f

media-libs/libopenraw: Stabilize 0.3.6 arm64, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index a3c452554cad..3e2a1493c665 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-18 21:25 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-07-18 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     3731aca0794e5055cce050ac60f8b2541ee6d1a1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 21:25:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 21:25:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3731aca0

media-libs/libopenraw: Stabilize 0.3.6 amd64, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index c4afad8e2f78..ba994ff7d526 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-19  9:33 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-07-19  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     d2aa5477b219420ba3388480f3671c2d771ccfe3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 19 09:33:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 19 09:33:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2aa5477

media-libs/libopenraw: Stabilize 0.3.6 x86, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index 3e2a1493c665..2b7f872e72ce 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-07-24 20:12 WANG Xuerui
  0 siblings, 0 replies; 62+ messages in thread
From: WANG Xuerui @ 2023-07-24 20:12 UTC (permalink / raw
  To: gentoo-commits

commit:     40c50bfe7f87c20b64501dc48fc9c258c02eff75
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 24 20:06:15 2023 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Mon Jul 24 20:06:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c50bfe

media-libs/libopenraw: keyword 0.3.6 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index 2b7f872e72ce..8ed4fb43349f 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-08-04  9:28 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-08-04  9:28 UTC (permalink / raw
  To: gentoo-commits

commit:     6e3253a15fa8a9f1e788732c878cded28131512b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  4 09:28:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug  4 09:28:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3253a1

media-libs/libopenraw: Stabilize 0.3.6 ppc, #910515

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

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index 8ed4fb43349f..69a413249049 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-09-07 20:15 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-09-07 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     23661898cc791925507cf98fd9d706537ef47f4a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  7 20:14:59 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep  7 20:14:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23661898

media-libs/libopenraw: add 0.3.7

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

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.3.7.ebuild | 69 +++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index fcfdb204e1f7..455b48ce71c1 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -17,6 +17,7 @@ DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b7
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST libopenraw-0.3.5.tar.xz 2533200 BLAKE2B 8d708640951c9dae1bf0c809219d7fbf94cb4df6d0568cbaf6927968b63d3ce32d054766e0708ddd4d492f8d54cbd8797fdf8a67ceb8985ddde644ebbc45fa4b SHA512 deaa5e8c95be4eba0d0bd6f8cbb38e16ab6dd0ea0a93885ef79719154ece0bb2d1ca13b2ef75481ced4a282c9c788c5372f01df51d0f3ebc965e85dddf423a58
 DIST libopenraw-0.3.6.tar.xz 2536224 BLAKE2B 675e31773db55d00843779f7e42b11f51b2060e6a9cc30e70b0cc34da6821241616e9e6f2f4f9d441464760643ef124e857b732ba3752ecae40b69753ca4911b SHA512 be6de3b264145297801513bccc49f18684242db71fcbdbc288132b05b805d9c0e1f194db3baab3f233ca3ca98df865bcc4f0b41812afbd5b3957843026293536
+DIST libopenraw-0.3.7.tar.xz 2536380 BLAKE2B 22aacfb085c59fa4b763abc3454839812327d1b6506b2e531783b0529ca3a5e24605a010e6c510d942741d4f0afc208ca626bdef1a93ad42fbf0f5c1e347f5cb SHA512 0781e9377100e954f8a7f020da537ec2af033b23341a7944fc346a973fecb463ed29b375275ae8b4bd6f40721ee4f12480729df80337d57cac30627e084594d1
 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2
 DIST memchr-2.5.0.crate 65812 BLAKE2B 57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab SHA512 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8

diff --git a/media-libs/libopenraw/libopenraw-0.3.7.ebuild b/media-libs/libopenraw/libopenraw-0.3.7.ebuild
new file mode 100644
index 000000000000..983e99ac325e
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.3.7.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=" "
+inherit cargo gnome2-utils
+
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
+
+# MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
+LICENSE="GPL-3 LGPL-3 MPL-2.0"
+SLOT="0/9"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="gtk test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2
+	media-libs/libjpeg-turbo:=
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="
+	${RDEPEND}
+	dev-libs/boost
+"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable gtk gnome)
+}
+
+src_compile() {
+	# Avoid cargo_src_compile
+	default
+}
+
+src_test() {
+	# Avoid cargo_src_test
+	default
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-09-09  7:32 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2023-09-09  7:32 UTC (permalink / raw
  To: gentoo-commits

commit:     71bc0bcda2366db7287f4c0e556394d7b471f420
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  9 07:29:47 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep  9 07:32:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71bc0bcd

media-libs/libopenraw: drop 0.1.3, 0.3.5

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |   2 -
 media-libs/libopenraw/libopenraw-0.1.3.ebuild |  56 --------------
 media-libs/libopenraw/libopenraw-0.3.5.ebuild | 102 --------------------------
 3 files changed, 160 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 455b48ce71c1..78f306e42f29 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -13,9 +13,7 @@ DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db86
 DIST hermit-abi-0.1.8.crate 7581 BLAKE2B 90fef564dd39973c5ff8ee3d4a9b129f1ca00800ca459c644ee08df1542c5adbc06881a7a59d37fe6e03a72a2df21917e38544759a2833dd8f8c065261cc1512 SHA512 25f7806834ea007174001284200201895f4536d5a447dea6c165b43c30b30871f78da5f3ef0d79579e3195951e6fd7ee5e21ec80811c515fd096f2e7b3bf7b9b
 DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c
 DIST libc-0.2.126.crate 590481 BLAKE2B 1000de6b9fa2b3ff025b961e504d6d20b401f37cdeda6710187d18ad2dfe8ec89142bba65486d7853f1796897b58f343c5a34dd6381a0d0794b615635ac31175 SHA512 9bbb17f64a7503819616a71076ebe8ee317daf07b17b9fff783a4459da0439aecee535c09e7185bf148b1993e6fc958d182a490fc9c9a7b9fb635429c491ca44
-DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
-DIST libopenraw-0.3.5.tar.xz 2533200 BLAKE2B 8d708640951c9dae1bf0c809219d7fbf94cb4df6d0568cbaf6927968b63d3ce32d054766e0708ddd4d492f8d54cbd8797fdf8a67ceb8985ddde644ebbc45fa4b SHA512 deaa5e8c95be4eba0d0bd6f8cbb38e16ab6dd0ea0a93885ef79719154ece0bb2d1ca13b2ef75481ced4a282c9c788c5372f01df51d0f3ebc965e85dddf423a58
 DIST libopenraw-0.3.6.tar.xz 2536224 BLAKE2B 675e31773db55d00843779f7e42b11f51b2060e6a9cc30e70b0cc34da6821241616e9e6f2f4f9d441464760643ef124e857b732ba3752ecae40b69753ca4911b SHA512 be6de3b264145297801513bccc49f18684242db71fcbdbc288132b05b805d9c0e1f194db3baab3f233ca3ca98df865bcc4f0b41812afbd5b3957843026293536
 DIST libopenraw-0.3.7.tar.xz 2536380 BLAKE2B 22aacfb085c59fa4b763abc3454839812327d1b6506b2e531783b0529ca3a5e24605a010e6c510d942741d4f0afc208ca626bdef1a93ad42fbf0f5c1e347f5cb SHA512 0781e9377100e954f8a7f020da537ec2af033b23341a7944fc346a973fecb463ed29b375275ae8b4bd6f40721ee4f12480729df80337d57cac30627e084594d1
 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
deleted file mode 100644
index a853e4038806..000000000000
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils
-
-DESCRIPTION="RAW image formats decoding library"
-HOMEPAGE="https://libopenraw.freedesktop.org/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0/7"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="gtk test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-libs/libxml2
-	virtual/jpeg:0
-	gtk? (
-		dev-libs/glib:2
-		>=x11-libs/gdk-pixbuf-2.24.0:2
-	)
-"
-DEPEND="${RDEPEND}
-	dev-libs/boost
-"
-BDEPEND="
-	virtual/pkgconfig
-	test? ( net-misc/curl )
-"
-
-src_configure() {
-	econf \
-		--with-boost="${EPREFIX}"/usr \
-		--disable-static \
-		$(use_enable gtk gnome)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
-	use gtk && gnome2_gdk_pixbuf_update
-}
-
-pkg_postrm() {
-	use gtk && gnome2_gdk_pixbuf_update
-}

diff --git a/media-libs/libopenraw/libopenraw-0.3.5.ebuild b/media-libs/libopenraw/libopenraw-0.3.5.ebuild
deleted file mode 100644
index 87e173870614..000000000000
--- a/media-libs/libopenraw/libopenraw-0.3.5.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Run cargo-build or cargo fetch in lib/mp4 to get this list
-# TODO: >0.3.4 contains vendor/ but doesn't seem to work for now?
-CRATES="
-ahash-0.7.6
-aho-corasick-0.7.18
-atty-0.2.14
-autocfg-1.0.0
-bitreader-0.3.2
-byteorder-1.2.2
-cfg-if-0.1.10
-cfg-if-1.0.0
-env_logger-0.8.4
-fallible_collections-0.4.4
-getrandom-0.2.7
-hashbrown-0.11.2
-hermit-abi-0.1.8
-humantime-2.1.0
-libc-0.2.126
-log-0.4.17
-memchr-2.5.0
-num-traits-0.2.15
-once_cell-1.12.0
-regex-1.5.6
-regex-syntax-0.6.26
-static_assertions-1.1.0
-termcolor-1.1.3
-version_check-0.9.4
-wasi-0.11.0+wasi-snapshot-preview1
-winapi-0.3.8
-winapi-i686-pc-windows-gnu-0.4.0
-winapi-util-0.1.5
-winapi-x86_64-pc-windows-gnu-0.4.0
-"
-
-inherit cargo gnome2-utils
-
-DESCRIPTION="RAW image formats decoding library"
-HOMEPAGE="https://libopenraw.freedesktop.org/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
-SRC_URI+=" $(cargo_crate_uris)"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="gtk test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-libs/libxml2
-	media-libs/libjpeg-turbo:=
-	gtk? (
-		dev-libs/glib:2
-		>=x11-libs/gdk-pixbuf-2.24.0:2
-	)
-"
-DEPEND="
-	${RDEPEND}
-	dev-libs/boost
-"
-BDEPEND="
-	virtual/pkgconfig
-	test? ( net-misc/curl )
-"
-
-src_configure() {
-	econf \
-		--with-boost="${EPREFIX}"/usr \
-		$(use_enable gtk gnome)
-}
-
-src_compile() {
-	# Avoid cargo_src_compile
-	default
-}
-
-src_test() {
-	# Avoid cargo_src_test
-	default
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
-	use gtk && gnome2_gdk_pixbuf_update
-}
-
-pkg_postrm() {
-	use gtk && gnome2_gdk_pixbuf_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-09-09  7:54 Andreas Sturmlechner
  0 siblings, 0 replies; 62+ messages in thread
From: Andreas Sturmlechner @ 2023-09-09  7:54 UTC (permalink / raw
  To: gentoo-commits

commit:     7745cc5f54e5045635be11582e65fc470912b275
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  9 07:52:08 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep  9 07:54:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7745cc5f

media-libs/libopenraw: re-add 0.1.3

media-libs/libopenraw[gtk] is still required by:
- xfce-base/tumbler
- media-gfx/raw-thumbnailer

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 56 +++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 78f306e42f29..62a2ad29b816 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -13,6 +13,7 @@ DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db86
 DIST hermit-abi-0.1.8.crate 7581 BLAKE2B 90fef564dd39973c5ff8ee3d4a9b129f1ca00800ca459c644ee08df1542c5adbc06881a7a59d37fe6e03a72a2df21917e38544759a2833dd8f8c065261cc1512 SHA512 25f7806834ea007174001284200201895f4536d5a447dea6c165b43c30b30871f78da5f3ef0d79579e3195951e6fd7ee5e21ec80811c515fd096f2e7b3bf7b9b
 DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c
 DIST libc-0.2.126.crate 590481 BLAKE2B 1000de6b9fa2b3ff025b961e504d6d20b401f37cdeda6710187d18ad2dfe8ec89142bba65486d7853f1796897b58f343c5a34dd6381a0d0794b615635ac31175 SHA512 9bbb17f64a7503819616a71076ebe8ee317daf07b17b9fff783a4459da0439aecee535c09e7185bf148b1993e6fc958d182a490fc9c9a7b9fb635429c491ca44
+DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST libopenraw-0.3.6.tar.xz 2536224 BLAKE2B 675e31773db55d00843779f7e42b11f51b2060e6a9cc30e70b0cc34da6821241616e9e6f2f4f9d441464760643ef124e857b732ba3752ecae40b69753ca4911b SHA512 be6de3b264145297801513bccc49f18684242db71fcbdbc288132b05b805d9c0e1f194db3baab3f233ca3ca98df865bcc4f0b41812afbd5b3957843026293536
 DIST libopenraw-0.3.7.tar.xz 2536380 BLAKE2B 22aacfb085c59fa4b763abc3454839812327d1b6506b2e531783b0529ca3a5e24605a010e6c510d942741d4f0afc208ca626bdef1a93ad42fbf0f5c1e347f5cb SHA512 0781e9377100e954f8a7f020da537ec2af033b23341a7944fc346a973fecb463ed29b375275ae8b4bd6f40721ee4f12480729df80337d57cac30627e084594d1

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
new file mode 100644
index 000000000000..8b153ba9a75a
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils
+
+DESCRIPTION="RAW image formats decoding library"
+HOMEPAGE="https://libopenraw.freedesktop.org/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/7"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="gtk test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2
+	virtual/jpeg:0
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="${RDEPEND}
+	dev-libs/boost
+"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		--disable-static \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2023-11-07 20:35 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2023-11-07 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c497bf6ecd4eb8e30f51a17a28970b04d29b5e87
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Tue Nov  7 06:11:16 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 20:33:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c497bf6e

media-libs/libopenraw: Stabilize 0.3.6 sparc, #910515

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index 69a413249049..cceb7d7eb319 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 # MPL-2.0 for mp4parse (https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/15)
 LICENSE="GPL-3 LGPL-3 MPL-2.0"
 SLOT="0/9"
-KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="gtk test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2024-02-06 11:02 Michał Górny
  0 siblings, 0 replies; 62+ messages in thread
From: Michał Górny @ 2024-02-06 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c1e653e3ed4069f367e9a8a645f4bd2db2a0c5db
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 10:15:07 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 11:02:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e653e3

media-libs/libopenraw: Remove obsolete gnome2_gdk_pixbuf_savelist

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 6 +-----
 media-libs/libopenraw/libopenraw-0.3.3.ebuild | 6 +-----
 media-libs/libopenraw/libopenraw-0.3.6.ebuild | 6 +-----
 media-libs/libopenraw/libopenraw-0.3.7.ebuild | 6 +-----
 4 files changed, 4 insertions(+), 20 deletions(-)

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index 8b153ba9a75a..7d92ec146e70 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -43,10 +43,6 @@ src_install() {
 	find "${D}" -name '*.la' -delete || die
 }
 
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
 pkg_postinst() {
 	use gtk && gnome2_gdk_pixbuf_update
 }

diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
index fe4172ab5d39..68753f784fc6 100644
--- a/media-libs/libopenraw/libopenraw-0.3.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -88,10 +88,6 @@ src_install() {
 	find "${ED}" -name '*.la' -delete || die
 }
 
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
 pkg_postinst() {
 	use gtk && gnome2_gdk_pixbuf_update
 }

diff --git a/media-libs/libopenraw/libopenraw-0.3.6.ebuild b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
index cceb7d7eb319..47b0d0c24b6d 100644
--- a/media-libs/libopenraw/libopenraw-0.3.6.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -56,10 +56,6 @@ src_install() {
 	find "${ED}" -name '*.la' -delete || die
 }
 
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
 pkg_postinst() {
 	use gtk && gnome2_gdk_pixbuf_update
 }

diff --git a/media-libs/libopenraw/libopenraw-0.3.7.ebuild b/media-libs/libopenraw/libopenraw-0.3.7.ebuild
index 983e99ac325e..51dac50a7387 100644
--- a/media-libs/libopenraw/libopenraw-0.3.7.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.3.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -56,10 +56,6 @@ src_install() {
 	find "${ED}" -name '*.la' -delete || die
 }
 
-pkg_preinst() {
-	use gtk && gnome2_gdk_pixbuf_savelist
-}
-
 pkg_postinst() {
 	use gtk && gnome2_gdk_pixbuf_update
 }


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
@ 2024-04-19 10:38 Sam James
  0 siblings, 0 replies; 62+ messages in thread
From: Sam James @ 2024-04-19 10:38 UTC (permalink / raw
  To: gentoo-commits

commit:     4826521fb04e0e5d5632bd33054a0288bfd958c9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 09:38:16 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 10:38:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4826521f

media-libs/libopenraw: switch to smaller distfile

Contents are identical.

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

 media-libs/libopenraw/Manifest                | 2 +-
 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 62a2ad29b816..1f2e797c68fc 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -13,7 +13,7 @@ DIST hashbrown-0.11.2.crate 85713 BLAKE2B 402f9f1bdcb92631206f9b72923ee35e28db86
 DIST hermit-abi-0.1.8.crate 7581 BLAKE2B 90fef564dd39973c5ff8ee3d4a9b129f1ca00800ca459c644ee08df1542c5adbc06881a7a59d37fe6e03a72a2df21917e38544759a2833dd8f8c065261cc1512 SHA512 25f7806834ea007174001284200201895f4536d5a447dea6c165b43c30b30871f78da5f3ef0d79579e3195951e6fd7ee5e21ec80811c515fd096f2e7b3bf7b9b
 DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c
 DIST libc-0.2.126.crate 590481 BLAKE2B 1000de6b9fa2b3ff025b961e504d6d20b401f37cdeda6710187d18ad2dfe8ec89142bba65486d7853f1796897b58f343c5a34dd6381a0d0794b615635ac31175 SHA512 9bbb17f64a7503819616a71076ebe8ee317daf07b17b9fff783a4459da0439aecee535c09e7185bf148b1993e6fc958d182a490fc9c9a7b9fb635429c491ca44
-DIST libopenraw-0.1.3.tar.bz2 565458 BLAKE2B dec7cda78b6ff4b1411b93c0d48758920b73e087eaca3c262a0850eb5a3423fee38ba7537694b1a04bdafa6bbb34b290c059f483a5a6af339b76c132ac77c413 SHA512 c56d84610f0cf5da970c4c0c791fccf2f7e9f7c7dacf2aeac0b2702ce9a0cd3aaa2f6db0794b0466e1dd8316771973db1e64d013f635c1166b7ff2eebdcbf029
+DIST libopenraw-0.1.3.tar.xz 452020 BLAKE2B 7779039046eaaeff437d81a6504a2082ef88d6b44185a99469dad7df4f8eff9ba3f4f168ef0b630923f3f210930e26c454ac318c7278b676d39210e6c3eeb2a2 SHA512 54f0b151f572086ed2551d05f2700cb2a4e3aeea26a26fe49f137cd0819411c289944f07626a643a902196fd9ff7c8daf8987b0ba821f6045554aeda3854bde2
 DIST libopenraw-0.3.3.tar.xz 570284 BLAKE2B 3c0902e4d525aab919e8856041c563c4a56a58db70771b24d3c12bc9db268bb0a7a32a9a64604dcf6d1719c632663bea8e1d9c94c160ba3468466f333598ab93 SHA512 8c4894a0119c7f58fe965002b69cb2caa0c5b9d2e3656dddc0da0c07674290b155d50338a3f4b62e4faccaa908028ecf4c26a80b8a95d51638bf4bd7bec6c9e1
 DIST libopenraw-0.3.6.tar.xz 2536224 BLAKE2B 675e31773db55d00843779f7e42b11f51b2060e6a9cc30e70b0cc34da6821241616e9e6f2f4f9d441464760643ef124e857b732ba3752ecae40b69753ca4911b SHA512 be6de3b264145297801513bccc49f18684242db71fcbdbc288132b05b805d9c0e1f194db3baab3f233ca3ca98df865bcc4f0b41812afbd5b3957843026293536
 DIST libopenraw-0.3.7.tar.xz 2536380 BLAKE2B 22aacfb085c59fa4b763abc3454839812327d1b6506b2e531783b0529ca3a5e24605a010e6c510d942741d4f0afc208ca626bdef1a93ad42fbf0f5c1e347f5cb SHA512 0781e9377100e954f8a7f020da537ec2af033b23341a7944fc346a973fecb463ed29b375275ae8b4bd6f40721ee4f12480729df80337d57cac30627e084594d1

diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
index 7d92ec146e70..fddc9bedbef9 100644
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
@@ -7,7 +7,7 @@ inherit gnome2-utils
 
 DESCRIPTION="RAW image formats decoding library"
 HOMEPAGE="https://libopenraw.freedesktop.org/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0/7"


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

end of thread, other threads:[~2024-04-19 10:38 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-17 18:48 [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/ Gilles Dartiguelongue
  -- strict thread matches above, loose matches on Subject: below --
2024-04-19 10:38 Sam James
2024-02-06 11:02 Michał Górny
2023-11-07 20:35 Sam James
2023-09-09  7:54 Andreas Sturmlechner
2023-09-09  7:32 Andreas Sturmlechner
2023-09-07 20:15 Sam James
2023-08-04  9:28 Sam James
2023-07-24 20:12 WANG Xuerui
2023-07-19  9:33 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-06-12  0:45 Sam James
2023-05-03  7:49 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-01-13 16:47 Sam James
2023-01-13 16:31 Arthur Zamarin
2023-01-13 13:37 Arthur Zamarin
2023-01-13 12:20 Arthur Zamarin
2022-12-31 23:09 Sam James
2022-12-31 23:09 Sam James
2022-12-18 20:33 Arthur Zamarin
2022-12-18 20:17 Arthur Zamarin
2022-11-29 15:58 WANG Xuerui
2022-10-29 20:17 Sam James
2022-10-29 20:16 Sam James
2021-08-23 22:59 Marek Szuba
2021-04-12 23:33 Sam James
2021-02-15  9:03 Andreas Sturmlechner
2021-02-15  0:38 Sam James
2021-02-05 12:29 Sam James
2021-02-03  3:11 Sam James
2021-02-02  4:19 Sam James
2021-02-01 22:15 Sam James
2021-02-01 22:15 Sam James
2021-02-01 17:31 Andreas Sturmlechner
2020-12-02  0:32 Aaron Bauman
2018-11-18  0:36 Gilles Dartiguelongue
2018-11-17 21:18 Gilles Dartiguelongue
2018-09-30 17:45 Andreas Sturmlechner
2018-07-20 22:24 Sergei Trofimovich
2018-03-31 18:01 Sebastian Pipping
2018-03-29  6:37 Sergei Trofimovich
2018-03-25 17:18 Markus Meier
2018-03-20  8:21 Sergei Trofimovich
2018-03-06 13:32 Tobias Klausmann
2018-02-21 18:48 Jason Zaman
2018-02-12 20:06 Sergei Trofimovich
2018-02-11 19:13 Thomas Deutschmann
2018-02-10 18:38 Sergei Trofimovich
2018-02-10 12:56 Jeroen Roovers
2018-01-20 23:03 Andreas Sturmlechner
2017-06-27 12:24 Michael Palimaka
2017-04-16 15:43 Gilles Dartiguelongue

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