public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/musl:master commit in: media-libs/libopenraw/, media-libs/libopenraw/files/
@ 2021-03-13 21:02 Sam James
  0 siblings, 0 replies; only message in thread
From: Sam James @ 2021-03-13 21:02 UTC (permalink / raw
  To: gentoo-commits

commit:     86d9e4bdb2023e21bf835e72cad837c8f7c2c950
Author:     Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
AuthorDate: Sat Mar 13 15:07:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 21:02:39 2021 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=86d9e4bd

media-libs/libopenraw: remove from overlay

Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --force
Manifest-Sign-Key: 0xA1919C830E9498E0
Signed-off-by: Dave Hughes <davidhughes205 <AT> gmail.com>
Closes: https://github.com/gentoo/musl/pull/418
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/libopenraw/Manifest                     |  1 -
 .../files/libopenraw-0.0.9-jpeg-9a.patch           | 23 ---------
 .../libopenraw-0.0.9-rename-posix_close.patch      | 30 ------------
 media-libs/libopenraw/libopenraw-0.0.9.ebuild      | 57 ----------------------
 media-libs/libopenraw/metadata.xml                 |  7 ---
 5 files changed, 118 deletions(-)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
deleted file mode 100644
index 3acd570..0000000
--- a/media-libs/libopenraw/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libopenraw-0.0.9.tar.bz2 478687 SHA256 49fd1adf0a0228c7a17a79bf98d8d03664195feae1e50f4ddd1b20162626e18f SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5 WHIRLPOOL 52d407b1d443fe7c38c59274b3267feb4dffeca9114a39cad925c346ae21d1378cbceba4ce1973657073f8890bf50a18c476ba3451d806fe7f50824bb935c559

diff --git a/media-libs/libopenraw/files/libopenraw-0.0.9-jpeg-9a.patch b/media-libs/libopenraw/files/libopenraw-0.0.9-jpeg-9a.patch
deleted file mode 100644
index bfb99fa..0000000
--- a/media-libs/libopenraw/files/libopenraw-0.0.9-jpeg-9a.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-http://bugs.gentoo.org/520888
-http://sourceforge.net/p/fink/package-submissions/4336/
-
---- lib/jfifcontainer.cpp
-+++ lib/jfifcontainer.cpp
-@@ -145,7 +145,7 @@
- 		{
- 			int ret = 0;
- 			if (::setjmp(m_jpegjmp) == 0) {
--				ret = JPEG::jpeg_read_header(&m_cinfo, TRUE);
-+				ret = JPEG::jpeg_read_header(&m_cinfo, JPEG::TRUE);
- 				//Trace(DEBUG1) << "jpeg_read_header " << ret << "\n";
- 				
- 				JPEG::jpeg_calc_output_dimensions(&m_cinfo);
-@@ -181,7 +181,7 @@
- 				src->pub.next_input_byte = NULL;
- 				src->pub.bytes_in_buffer = 0;
- 			}
--			return TRUE;
-+			return JPEG::TRUE;
- 		}
- 
- 

diff --git a/media-libs/libopenraw/files/libopenraw-0.0.9-rename-posix_close.patch b/media-libs/libopenraw/files/libopenraw-0.0.9-rename-posix_close.patch
deleted file mode 100644
index e928086..0000000
--- a/media-libs/libopenraw/files/libopenraw-0.0.9-rename-posix_close.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Naur libopenraw-0.0.9.orig/lib/io/posix_io.c libopenraw-0.0.9/lib/io/posix_io.c
---- libopenraw-0.0.9.orig/lib/io/posix_io.c	2011-11-12 16:46:29.000000000 +0000
-+++ libopenraw-0.0.9/lib/io/posix_io.c	2015-07-18 12:12:24.088623814 +0000
-@@ -39,7 +39,7 @@
- };
- 
- static IOFileRef posix_open(const char *path, int mode);
--static int posix_close(IOFileRef f);
-+static int posix_close1(IOFileRef f);
- static int posix_seek(IOFileRef f, off_t offset, int whence);
- static int posix_read(IOFileRef f, void *buf, size_t count);
- static off_t posix_filesize(IOFileRef f);
-@@ -49,7 +49,7 @@
- /** posix io methods instance. Constant. */
- struct io_methods posix_io_methods = {
- 	&posix_open,
--	&posix_close,
-+	&posix_close1,
- 	&posix_seek,
- 	&posix_read,
- 	&posix_filesize,
-@@ -85,7 +85,7 @@
- 
- 
- /** posix implementation for close() */
--static int posix_close(IOFileRef f)
-+static int posix_close1(IOFileRef f)
- {
- 	int retval = 0;
- 	struct io_data_posix *data = (struct io_data_posix*)f->_private;

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 b75a938..0000000
--- a/media-libs/libopenraw/libopenraw-0.0.9.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2016 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="http://libopenraw.freedesktop.org/wiki/"
-SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc x86"
-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() {
-	epatch "${FILESDIR}"/${P}-rename-posix_close.patch
-	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
-}

diff --git a/media-libs/libopenraw/metadata.xml b/media-libs/libopenraw/metadata.xml
deleted file mode 100644
index fb76b94..0000000
--- a/media-libs/libopenraw/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-<email>freedesktop-bugs@gentoo.org</email>
-</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-13 21:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-13 21:02 [gentoo-commits] proj/musl:master commit in: media-libs/libopenraw/, media-libs/libopenraw/files/ Sam James

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