commit:     c24344b6d652a33ab0689a7d960b260cb20e807b
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Mar 30 09:23:51 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 09:23:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24344b6

media-gfx/videorbits: Remove last-rited pkg

Closes: https://bugs.gentoo.org/772812
Closes: https://bugs.gentoo.org/731038
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-gfx/videorbits/Manifest                      |  1 -
 .../files/videorbits-2.201-libpng15.patch          | 30 ------------------
 .../files/videorbits-2.205-fix-buildsystem.patch   | 19 -----------
 ...videorbits-2.205-qa-implicit-declarations.patch | 23 --------------
 .../files/videorbits-2.205-remove-bits-nan.patch   | 35 --------------------
 media-gfx/videorbits/metadata.xml                  |  8 -----
 media-gfx/videorbits/videorbits-2.205.ebuild       | 37 ----------------------
 profiles/package.mask                              |  6 ----
 8 files changed, 159 deletions(-)

diff --git a/media-gfx/videorbits/Manifest b/media-gfx/videorbits/Manifest
deleted file mode 100644
index 71e2e446426..00000000000
--- a/media-gfx/videorbits/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST videorbits-2.205.tgz 672377 BLAKE2B 
e111d48c3a7e8c3fc1bf878249a07c799879fa3c68e8555c539fd4089800fd7695f1758188295f65aa62fababfc6cc3c534abae384eb820f80bb1bbe0eb4b92d
 SHA512 
faad5a7ab98167d67b7748b4b9aca1ced0e802ed85cba55ba9966d08c48045daa8fef8d387c576dcfa50ace8c4962bb0043bb83e3ba741844ede67d331e4fbf8

diff --git a/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch 
b/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch
deleted file mode 100644
index f87132b0be4..00000000000
--- a/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- videorbits-2.205/src/simple_png_read.c
-+++ videorbits-2.205/src/simple_png_read.c
-@@ -92,7 +92,7 @@
-     return -1;
-   }
- 
--  if (setjmp(png_ptr->jmpbuf)) {
-+  if (setjmp(png_jmpbuf(png_ptr))) {
-     fprintf(stderr, "simple_png_read: error (internal)\n"); 
-     png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
-     fclose(fp);
-@@ -226,7 +226,7 @@
-     return -1;
-   }
- 
--  if (setjmp(png_ptr->jmpbuf)) {
-+  if (setjmp(png_jmpbuf(png_ptr))) {
-     fprintf(stderr, "simple_png_read_header: error\n"); 
-     png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
-     fclose(fp);
---- videorbits-2.205/src/simple_png_write.c
-+++ videorbits-2.205/src/simple_png_write.c
-@@ -18,6 +18,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <png.h>
-+#include <zlib.h>
- 
- int simple_png_write_rgba(
-   char *filename, 

diff --git a/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch 
b/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch
deleted file mode 100644
index 8d2359232bc..00000000000
--- a/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix installation paths.
-
---- videorbits-2.205/images/Makefile.am
-+++ videorbits-2.205/images/Makefile.am
-@@ -1,4 +1,4 @@
--imagesdir = $(prefix)/images
--images_DATA= v04.pgm  v06.pgm
-+images_dir = $(datadir)/videorbits/images
-+images__DATA= v04.pgm  v06.pgm
- 
- 
---- videorbits-2.205/lookuptables/Makefile.am
-+++ videorbits-2.205/lookuptables/Makefile.am
-@@ -1,3 +1,3 @@
--lookuptablesdir = $(prefix)/lookuptables
--lookuptables_DATA=powLookup22.txt powLookup47.txt 
Kodak_DCS260_response_function 
-+lookuptables_dir = $(datadir)/videorbits/lookuptables
-+lookuptables__DATA=powLookup22.txt powLookup47.txt 
Kodak_DCS260_response_function 
- 

diff --git 
a/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch 
b/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch
deleted file mode 100644
index 1e46ccf5651..00000000000
--- a/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Fix implicit declarations caused by missing headers and
-failures caused by -Werror=format-security checks
-
---- videorbits-2.205/src/pchirp2nocrop.c
-+++ videorbits-2.205/src/pchirp2nocrop.c
-@@ -1,5 +1,6 @@
- #include <stdlib.h>
- #include <math.h>
-+#include <string.h>
- #include "PNMImageOffsetable.h"
- #include "mat_util.h"
- #include "boundingbox.h"
---- videorbits-2.205/src/par.c
-+++ videorbits-2.205/src/par.c
-@@ -111,7 +111,7 @@
- 
-   /* - - Write file-type number - - */ 
-   sprintf(magic_number, "P%d\n", data_type);
--  fprintf(file_ptr, magic_number); 
-+  fprintf(file_ptr, "%s", magic_number); 
- 
-   /* - - put comments - - */  /* !!!!!! break up long comments */
-   fprintf(file_ptr, "# %s\n", comments);  

diff --git a/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch 
b/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch
deleted file mode 100644
index 822b8dd8167..00000000000
--- a/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 27db38e20d2f1c685c9a4aa01cfbde96b0555d80 Mon Sep 17 00:00:00 2001
-From: Harri Nieminen <[email protected]>
-Date: Tue, 27 Mar 2018 19:45:19 +0300
-Subject: [PATCH] Don't include bits/nan.h
-
----
- src/cement.c     | 1 -
- src/cementinit.c | 1 -
- 2 files changed, 2 deletions(-)
-
-diff --git a/src/cement.c b/src/cement.c
-index 3dfb6f9..23c424c 100644
---- a/src/cement.c
-+++ b/src/cement.c
-@@ -1,7 +1,6 @@
- #include <stdlib.h>
- #include <stdio.h>
- #include <math.h>
--#include <bits/nan.h>
- #include <limits.h>
- #include <string.h>
- #include <errno.h>
-diff --git a/src/cementinit.c b/src/cementinit.c
-index 95850d9..afa160e 100644
---- a/src/cementinit.c
-+++ b/src/cementinit.c
-@@ -1,5 +1,4 @@
- #include <math.h>
--#include <bits/nan.h>
- /* NB:  supposedly nan.h is included from math.h when -std=c99 is on the
-  *      gcc compile line but that doesn't work so its included it directly.
-  *      Not having this line makes nan become unreliable, sometime it is
--- 
-2.16.3
-

diff --git a/media-gfx/videorbits/metadata.xml 
b/media-gfx/videorbits/metadata.xml
deleted file mode 100644
index e416281791b..00000000000
--- a/media-gfx/videorbits/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id type="sourceforge">comparametric</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/media-gfx/videorbits/videorbits-2.205.ebuild 
b/media-gfx/videorbits/videorbits-2.205.ebuild
deleted file mode 100644
index 6628294ba74..00000000000
--- a/media-gfx/videorbits/videorbits-2.205.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="a collection of programs for creating high dynamic range images"
-HOMEPAGE="http://comparametric.sourceforge.net/";
-SRC_URI="mirror://sourceforge/comparametric/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11
-       sys-libs/zlib
-       media-libs/libpng:0=
-       virtual/jpeg:0
-       sci-libs/fftw:2.1
-       media-libs/netpbm"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-2.201-libpng15.patch"
-       "${FILESDIR}/${P}-qa-implicit-declarations.patch"
-       "${FILESDIR}/${P}-fix-buildsystem.patch"
-       "${FILESDIR}/${P}-remove-bits-nan.patch"
-)
-DOCS=( AUTHORS README README.MORE )
-
-src_prepare() {
-       default
-       mv configure.{in,ac} || die
-       eautoreconf
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 6a93394ed9f..2cc93e82abe 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -405,12 +405,6 @@ dev-scheme/greg
 # packaged.  Removal on 2021-03-27.  Bug #683358, #696476, #741936.
 sys-auth/authenticator
 
-# David Seifert <[email protected]> (2021-02-25)
-# Last release in 2006, no other distro carries this anymore,
-# blocks sci-libs/fftw:2.1 removal, no revdeps.
-# Removal on 2021-03-27.  Bug #731038, #772812.
-media-gfx/videorbits
-
 # Sam James <[email protected]> (2021-02-18)
 # 0.9.27 included a regression wrt deletes
 # bug #768948

Reply via email to