till pushed to djview4 (el6). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 15:58:00 UTC 2015


>From 7332342d64f7e2ffd7b21f89b2262288b612626f Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 17:57:40 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 197af5c..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-djview4-4.5.tar.gz
-/djview4-4.6.tar.gz
-/djview-4.8.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..b634127
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/djview-4.8-include.patch b/djview-4.8-include.patch
deleted file mode 100644
index 7407996..0000000
--- a/djview-4.8-include.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/npdjvu/npdjvu.cpp b/npdjvu/npdjvu.cpp
-index 69f8462..e374d72 100644
---- a/npdjvu/npdjvu.cpp
-+++ b/npdjvu/npdjvu.cpp
-@@ -18,6 +18,7 @@
- #include "config.h"
- #include <locale.h>
- #include <stdio.h>
-+#include <stdint.h>
- #include <string.h>
- 
- // Qt includes
diff --git a/djview-4.8-swap.patch b/djview-4.8-swap.patch
deleted file mode 100644
index 828eaaa..0000000
--- a/djview-4.8-swap.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- djview-4.8/src/qdjvuwidget.cpp~	2011-08-17 16:24:20.000000000 +0200
-+++ djview-4.8/src/qdjvuwidget.cpp	2011-10-03 20:48:49.000000000 +0200
-@@ -153,7 +153,7 @@
- }
- 
- template<class T> static inline void 
--swap(T& x, T& y)
-+swapper(T& x, T& y)
- {
-   T tmp;
-   tmp = x;
-@@ -173,11 +173,11 @@
-       /* Sort v[lo], v[m], v[hi] by insertion */
-       m = (lo+hi)/2;
-       if (v[lo]>v[m])
--        swap(v[lo],v[m]);
-+        swapper(v[lo],v[m]);
-       if (v[m]>v[hi]) {
--        swap(v[m],v[hi]);
-+        swapper(v[m],v[hi]);
-         if (v[lo]>v[m])
--          swap(v[lo],v[m]);
-+          swapper(v[lo],v[m]);
-       }
-       /* Extract pivot, place sentinel */
-       pivot = v[m];
-@@ -191,7 +191,7 @@
-       do ++l; while (v[l]<pivot);
-       do --h; while (v[h]>pivot);
-       if (l < h) { 
--        swap(v[l],v[h]); 
-+        swapper(v[l],v[h]); 
-         goto loop; 
-       }
-       /* Finish up */
diff --git a/djview4.spec b/djview4.spec
deleted file mode 100644
index 130fdb5..0000000
--- a/djview4.spec
+++ /dev/null
@@ -1,150 +0,0 @@
-Summary:       DjVu viewer
-Name:          djview4
-Version:       4.8
-Release:       6%{?dist}.2
-License:       GPLv2+
-Group:         Applications/Publishing
-URL:           http://djvu.sourceforge.net/djview4.html
-Source:        http://downloads.sourceforge.net/project/djvu/DjView/%{version}/djview-%{version}.tar.gz
-Patch0:        djview-4.8-swap.patch
-Patch1:        djview-4.8-include.patch
-BuildRequires: qt4-devel >= 4.2 
-BuildRequires: desktop-file-utils
-BuildRequires: djvulibre-devel >= 3.5.19 
-# For plugin, see #756950
-BuildRequires: glib2-devel
-BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-%description 
-DjView4 is a DjVu document viewer with the following features:
- o continuous scrolling of pages
- o side-by-side display of pages
- o display thumbnails as a grid
- o display outlines
- o page names supported
- o metadata dialog
-
-It's based on DjVuLibre and Qt4.
-
-%package       plugin
-Summary:       Browser plugin for DjVu viewer
-Group:         Applications/Publishing
-Requires:      %{name} = %{version}-%{release}
-
-%description   plugin
-This package provides a browser plugin for the DjVu document viewer.
-
-%prep
-%setup -q -n djview-%{version}
-%patch0 -p1
-%patch1 -p1
-%{__sed} -i -e '1 d' desktopfiles/djvulibre-djview4.desktop
-
-%build
-QTDIR=%{_libdir}/qt4 QMAKE=%{_bindir}/qmake-qt4 %configure --enable-nsdejavu
-%{__make} %{?_smp_mflags}
-
-%install
-%{__rm} -rf %{buildroot}
-%{__make} DESTDIR=%{buildroot} INSTALL="%{__install} -p" \
-    install-djview install-nsdejavu plugindir=%{_libdir}/mozilla/plugins
-
-# djview is taken from djvulibre
-%{__rm} %{buildroot}%{_bindir}/djview %{buildroot}%{_mandir}/man1/djview.1*
-
-# desktop file
-%{__install} -p -m 0644 -D desktopfiles/hi32-djview4.png \
-    %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/djvulibre-djview4.png
-desktop-file-install --vendor fedora --dir %{buildroot}%{_datadir}/applications \
-    desktopfiles/djvulibre-djview4.desktop
-
-%clean
-%{__rm} -rf %{buildroot}
-
-%post
-update-mime-database %{_datadir}/mime &> /dev/null || :
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
-  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
-
-%postun
-update-mime-database %{_datadir}/mime &> /dev/null || :
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
-  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
-
-%files
-%defattr(-, root, root)
-%doc COPYRIGHT COPYING NEWS README
-%{_bindir}/%{name}
-%dir %{_datadir}/djvu
-%{_datadir}/djvu/%{name}
-%{_mandir}/man1/%{name}.1*
-%{_datadir}/applications/fedora-djvulibre-%{name}.desktop
-%{_datadir}/icons/hicolor/32x32/apps/djvulibre-%{name}.png
-
-%files plugin
-%{_libdir}/mozilla
-%{_mandir}/man1/nsdejavu.1*
-
-%changelog
-* Sat May  5 2012 Jonathan G. Underwood <jonathan.underwood at gmail.com> - 4.8-6.2
-- Set full path for QMAKE during configure
-- BuildRequire qt4-devel rather than qt-devel, which pulls in qt3-devel
-
-* Sat May  5 2012 Jonathan G. Underwood <jonathan.underwood at gmail.com> - 4.8-6.1
-- Bump and rebuild against newer 3.5.24 djvulibre libs
-
-* Fri Jan 13 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.8-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Tue Nov 29 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.8-5
-- Add glib2 to buildreq
-
-* Tue Nov 29 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.8-4
-- Build with correct options
-
-* Mon Nov 28 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.8-3
-- Enable browser plugin
-- Add patch to fix includes for plugin
-
-* Mon Oct 03 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.8-2
-- Add patch to build with newer gcc
-
-* Fri Sep 30 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.8-1
-- 4.8
-
-* Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.6-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Sun Jan 29 2011 Terje Rosten <terje.rosten at ntnu.no> - 4.6-1
-- 4.6
-
-* Sun Dec 06 2009 Terje Rosten <terje.rosten at ntnu.no> - 4.5-1
-- 4.5
-
-* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.4-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Sun Feb  8 2009 Terje Rosten <terje.rosten at ntnu.no> - 4.4-1
-- 4.4
-- Own all dirs
-
-* Sat Jan 17 2009 Rakesh Pandit <rakesh at fedoraproject.org> - 4.3-3
-- Rebuild with new djvulibre
-
-* Tue Aug 12 2008 Terje Rosten <terje.rosten at ntnu.no> - 4.3-2
-- Add gtk-update-icon-cache scriptlet
-
-* Fri Apr 25 2008 Terje Rosten <terje.rosten at ntnu.no> - 4.3-1
-- 4.3
-- Loads of fixes
-
-* Sat Jan 27 2007 Leon Bottou <leonb at users.sourceforge.net> 4.0-1
-- initial release.
-
diff --git a/sources b/sources
deleted file mode 100644
index 9497228..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-70ef8f416c7d6892cc0cf012bfd0ae07  djview-4.8.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/djview4.git/commit/?h=el6&id=7332342d64f7e2ffd7b21f89b2262288b612626f


More information about the scm-commits mailing list