From 3ef17008206dc18b37ad1189fbb4da9806200a7c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 9 Jan 2013 13:45:52 +0000 Subject: [PATCH 01/38] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From cb4d9a3543f4dcd83621ab1beb4f6411eeea9f32 Mon Sep 17 00:00:00 2001 From: "F. Cami" Date: Wed, 9 Jan 2013 15:59:03 +0100 Subject: [PATCH 02/38] Initial import for zathura-djvu (#891125) --- .gitignore | 1 + sources | 1 + ...2.1-use-stdlib-instead-stddef-header.patch | 9 ++++ zathura-djvu-fix_install.patch | 13 +++++ zathura-djvu.spec | 53 +++++++++++++++++++ 5 files changed, 77 insertions(+) create mode 100644 zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch create mode 100644 zathura-djvu-fix_install.patch create mode 100644 zathura-djvu.spec diff --git a/.gitignore b/.gitignore index e69de29..81b59ef 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/zathura-djvu-0.2.1.tar.gz diff --git a/sources b/sources index e69de29..e04af26 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +c3525b43b74bb0777a2b3561f7dcde06 zathura-djvu-0.2.1.tar.gz diff --git a/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch b/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch new file mode 100644 index 0000000..0366ffa --- /dev/null +++ b/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch @@ -0,0 +1,9 @@ +--- zathura-djvu-0.2.1-orig/page-text.c 2013-01-02 17:55:16.567766492 -0430 ++++ zathura-djvu-0.2.1/page-text.c 2013-01-02 20:55:47.514511728 -0430 +@@ -1,5 +1,6 @@ + /* See LICENSE file for license and copyright information */ + ++#include + #include + #include + #include diff --git a/zathura-djvu-fix_install.patch b/zathura-djvu-fix_install.patch new file mode 100644 index 0000000..aa0f1c7 --- /dev/null +++ b/zathura-djvu-fix_install.patch @@ -0,0 +1,13 @@ +--- Makefile.orig 2012-09-09 22:14:57.873155346 +0200 ++++ Makefile 2012-09-09 22:13:32.916945999 +0200 +@@ -70,9 +70,9 @@ + + doc: clean + $(QUIET)doxygen Doxyfile + +-install: all ++install: + $(ECHO) installing ${PLUGIN} plugin + $(QUIET)mkdir -p ${DESTDIR}${PLUGINDIR} + $(QUIET)cp -f ${PLUGIN}.so ${DESTDIR}${PLUGINDIR} + diff --git a/zathura-djvu.spec b/zathura-djvu.spec new file mode 100644 index 0000000..058b5ec --- /dev/null +++ b/zathura-djvu.spec @@ -0,0 +1,53 @@ +Name: zathura-djvu +Version: 0.2.1 +Release: 2%{?dist} +Summary: DjVu support for zathura + +Group: Applications/Publishing +License: zlib +URL: http://pwmt.org/projects/zathura/plugins/%{name} +Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz + +Patch0: zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch +Patch1: zathura-djvu-fix_install.patch + +BuildRequires: djvulibre-devel +BuildRequires: zathura-devel >= 0.2.1 + + +%description +The zathura-djvu plugin adds DjVu support to zathura by +using the djvulibre library. + + +%prep +%setup -q +%if 0%{?fedora} <= 17 +%patch0 -p1 +%patch1 +%else +%patch1 +%endif + + +%build +CFLAGS='%{optflags}' make %{?_smp_mflags} LIBDIR=%{_libdir} debug +mv djvu-debug.so djvu.so + + +%install +make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install + + +%files +%doc AUTHORS LICENSE +%{_libdir}/zathura/djvu.so + + +%changelog +* Tue Jan 08 2013 François Cami - 0.2.1-2 +- Add fix for djvulibre-devel < 3.5.25 - Thanks to M. Schwendt and E. Echeverria + +* Tue Jan 01 2013 François Cami - 0.2.1-1 +- Initial package. + From 1efc0c51ff856e4b4191927afba2e5e687574374 Mon Sep 17 00:00:00 2001 From: "F. Cami" Date: Sat, 12 Jan 2013 01:24:06 +0100 Subject: [PATCH 03/38] depend on zathura --- zathura-djvu.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 058b5ec..8fef16d 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -11,6 +11,8 @@ Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{vers Patch0: zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch Patch1: zathura-djvu-fix_install.patch +Requires: zathura + BuildRequires: djvulibre-devel BuildRequires: zathura-devel >= 0.2.1 @@ -45,6 +47,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %changelog +* Sat Jan 12 2013 François Cami - 0.2.1-3 +- force-require zathura. + * Tue Jan 08 2013 François Cami - 0.2.1-2 - Add fix for djvulibre-devel < 3.5.25 - Thanks to M. Schwendt and E. Echeverria From d0bc921dcca0b9290a91862ddfadca712a8f1a0c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 22:17:03 -0600 Subject: [PATCH 04/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 8fef16d..74f4dae 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -47,6 +47,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Jan 12 2013 François Cami - 0.2.1-3 - force-require zathura. From b192483e5778dd8ee70279be296f5dadf0082a04 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 29 Mar 2013 20:08:01 -0600 Subject: [PATCH 05/38] Update to 0.2.2 --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 81b59ef..c88efb2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /zathura-djvu-0.2.1.tar.gz +/zathura-djvu-0.2.2.tar.gz diff --git a/sources b/sources index e04af26..96821b6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c3525b43b74bb0777a2b3561f7dcde06 zathura-djvu-0.2.1.tar.gz +38344cb762e1f5b5fe66f6ef49ac173f zathura-djvu-0.2.2.tar.gz diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 74f4dae..e880146 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu -Version: 0.2.1 -Release: 4%{?dist} +Version: 0.2.2 +Release: 1%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -14,7 +14,7 @@ Patch1: zathura-djvu-fix_install.patch Requires: zathura BuildRequires: djvulibre-devel -BuildRequires: zathura-devel >= 0.2.1 +BuildRequires: zathura-devel >= 0.2.2 %description @@ -47,6 +47,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %changelog +* Fri Mar 29 2013 Kevin Fenzi 0.2.2-1 +- Update to 0.2.2 + * Fri Feb 15 2013 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 9adfff92a68b0d6dc4ed517144a7db61f04931a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 21 May 2013 17:44:26 +0200 Subject: [PATCH 06/38] 0.2.3 bump - Dropping the now unneeded patches --- .gitignore | 1 + sources | 2 +- ...2.1-use-stdlib-instead-stddef-header.patch | 9 ------ zathura-djvu-fix_install.patch | 13 --------- zathura-djvu.spec | 29 +++++-------------- 5 files changed, 10 insertions(+), 44 deletions(-) delete mode 100644 zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch delete mode 100644 zathura-djvu-fix_install.patch diff --git a/.gitignore b/.gitignore index c88efb2..2c92d74 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /zathura-djvu-0.2.1.tar.gz /zathura-djvu-0.2.2.tar.gz +/zathura-djvu-0.2.3.tar.gz diff --git a/sources b/sources index 96821b6..f78375f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -38344cb762e1f5b5fe66f6ef49ac173f zathura-djvu-0.2.2.tar.gz +a472f706d6f6384d8bc2750141a84fc6 zathura-djvu-0.2.3.tar.gz diff --git a/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch b/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch deleted file mode 100644 index 0366ffa..0000000 --- a/zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- zathura-djvu-0.2.1-orig/page-text.c 2013-01-02 17:55:16.567766492 -0430 -+++ zathura-djvu-0.2.1/page-text.c 2013-01-02 20:55:47.514511728 -0430 -@@ -1,5 +1,6 @@ - /* See LICENSE file for license and copyright information */ - -+#include - #include - #include - #include diff --git a/zathura-djvu-fix_install.patch b/zathura-djvu-fix_install.patch deleted file mode 100644 index aa0f1c7..0000000 --- a/zathura-djvu-fix_install.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.orig 2012-09-09 22:14:57.873155346 +0200 -+++ Makefile 2012-09-09 22:13:32.916945999 +0200 -@@ -70,9 +70,9 @@ - - doc: clean - $(QUIET)doxygen Doxyfile - --install: all -+install: - $(ECHO) installing ${PLUGIN} plugin - $(QUIET)mkdir -p ${DESTDIR}${PLUGINDIR} - $(QUIET)cp -f ${PLUGIN}.so ${DESTDIR}${PLUGINDIR} - diff --git a/zathura-djvu.spec b/zathura-djvu.spec index e880146..34f2979 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,5 +1,5 @@ Name: zathura-djvu -Version: 0.2.2 +Version: 0.2.3 Release: 1%{?dist} Summary: DjVu support for zathura @@ -7,46 +7,34 @@ Group: Applications/Publishing License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz - -Patch0: zathura-djvu-0.2.1-use-stdlib-instead-stddef-header.patch -Patch1: zathura-djvu-fix_install.patch - Requires: zathura - BuildRequires: djvulibre-devel -BuildRequires: zathura-devel >= 0.2.2 - +BuildRequires: zathura-devel >= 0.2.3 %description The zathura-djvu plugin adds DjVu support to zathura by using the djvulibre library. - %prep %setup -q -%if 0%{?fedora} <= 17 -%patch0 -p1 -%patch1 -%else -%patch1 -%endif - %build CFLAGS='%{optflags}' make %{?_smp_mflags} LIBDIR=%{_libdir} debug mv djvu-debug.so djvu.so - %install make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install - %files -%doc AUTHORS LICENSE +%doc AUTHORS LICENSE %{_libdir}/zathura/djvu.so - +%{_datadir}/applications/%{name}.desktop %changelog +* Tue May 21 2013 Petr Šabata - 0.2.3-1 +- 0.2.3 bump +- Dropping the now unneeded patches + * Fri Mar 29 2013 Kevin Fenzi 0.2.2-1 - Update to 0.2.2 @@ -61,4 +49,3 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install * Tue Jan 01 2013 François Cami - 0.2.1-1 - Initial package. - From abee2c431aa421b4d5dbf4d120fc1f5088c47e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 29 May 2013 14:17:52 +0200 Subject: [PATCH 07/38] Fix a debuginfo regression (#967954) --- zathura-djvu.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 34f2979..31ca83c 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -17,6 +17,8 @@ using the djvulibre library. %prep %setup -q +# Don't rebuild during install phase +sed -i 's/^install:\s*all/install:/' Makefile %build CFLAGS='%{optflags}' make %{?_smp_mflags} LIBDIR=%{_libdir} debug @@ -31,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Wed May 29 2013 Petr Šabata - 0.2.3-2 +- Fix a debuginfo regression (#967954) + * Tue May 21 2013 Petr Šabata - 0.2.3-1 - 0.2.3 bump - Dropping the now unneeded patches From 9610ef8703e53271d937255a047de250e4ed1955 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 04:45:21 -0500 Subject: [PATCH 08/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 31ca83c..eb0b70f 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -33,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed May 29 2013 Petr Šabata - 0.2.3-2 - Fix a debuginfo regression (#967954) From eb18d638d2c4c8ec2491296db29c74e76a34bdba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Thu, 6 Mar 2014 10:11:35 +0100 Subject: [PATCH 09/38] bump release and rebuild after updating girara+zathura --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index eb0b70f..65058ad 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -33,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Thu Mar 06 2014 François Cami - 0.2.3-4 +- Bump for rawhide + * Sun Aug 04 2013 Fedora Release Engineering - 0.2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 32a88aca4c3d34041968bdee1f9610290f24d507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Thu, 6 Mar 2014 21:17:06 +0100 Subject: [PATCH 10/38] bump release again --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 65058ad..c58fb71 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -33,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Thu Mar 06 2014 François Cami - 0.2.3-5 +- Bump for rawhide (again) + * Thu Mar 06 2014 François Cami - 0.2.3-4 - Bump for rawhide From 673c9f9618b4e16807026a925d7804273a3380b8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 13:03:21 -0500 Subject: [PATCH 11/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index c58fb71..7f285ba 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -33,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Thu Mar 06 2014 François Cami - 0.2.3-5 - Bump for rawhide (again) From 552ab8ae3b4febdc9505ec8858d91632ab0c5005 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 11:31:26 +0000 Subject: [PATCH 12/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 7f285ba..06dd026 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -33,6 +33,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.2.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From d9ec0e983dd766332568344651d2b15907edb0c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 17 Oct 2014 15:43:53 +0200 Subject: [PATCH 13/38] 0.2.4 bump --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2c92d74..e066256 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /zathura-djvu-0.2.1.tar.gz /zathura-djvu-0.2.2.tar.gz /zathura-djvu-0.2.3.tar.gz +/zathura-djvu-0.2.4.tar.gz diff --git a/sources b/sources index f78375f..6ad03c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a472f706d6f6384d8bc2750141a84fc6 zathura-djvu-0.2.3.tar.gz +672a25dc9433b2541971c2e4e052bdd3 zathura-djvu-0.2.4.tar.gz diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 06dd026..4e4641f 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu -Version: 0.2.3 -Release: 7%{?dist} +Version: 0.2.4 +Release: 1%{?dist} Summary: DjVu support for zathura Group: Applications/Publishing @@ -9,6 +9,7 @@ URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz Requires: zathura BuildRequires: djvulibre-devel +BuildRequires: glib2-devel BuildRequires: zathura-devel >= 0.2.3 %description @@ -33,6 +34,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Fri Oct 17 2014 Petr Šabata - 0.2.4-1 +- 0.2.4 bump + * Mon Aug 18 2014 Fedora Release Engineering - 0.2.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 90cbe6bd0ee687f770ae5ad280f1729c4b8b3633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 9 Jun 2015 17:16:44 +0200 Subject: [PATCH 14/38] Fix the dep list, install LICENSE with the %license macro --- zathura-djvu.spec | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 4e4641f..8e4b17a 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,16 +1,19 @@ Name: zathura-djvu Version: 0.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DjVu support for zathura - -Group: Applications/Publishing License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz +BuildRequires: coreutils +BuildRequires: make +BuildRequires: sed +BuildRequires: pkgconfig(cairo) +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(ddjvuapi) +BuildRequires: pkgconfig(girara-gtk3) +BuildRequires: pkgconfig(zathura) Requires: zathura -BuildRequires: djvulibre-devel -BuildRequires: glib2-devel -BuildRequires: zathura-devel >= 0.2.3 %description The zathura-djvu plugin adds DjVu support to zathura by @@ -29,11 +32,15 @@ mv djvu-debug.so djvu.so make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %files -%doc AUTHORS LICENSE +%license LICENSE +%doc AUTHORS %{_libdir}/zathura/djvu.so %{_datadir}/applications/%{name}.desktop %changelog +* Tue Jun 09 2015 Petr Šabata - 0.2.4-2 +- Fix the dep list, install LICENSE with the %%license macro + * Fri Oct 17 2014 Petr Šabata - 0.2.4-1 - 0.2.4 bump From ae10a948a50073a3788255e20eedca40a37be305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 9 Jun 2015 17:20:48 +0200 Subject: [PATCH 15/38] Add a compiler too. --- zathura-djvu.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 8e4b17a..905c893 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -6,6 +6,7 @@ License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz BuildRequires: coreutils +BuildRequires: gcc BuildRequires: make BuildRequires: sed BuildRequires: pkgconfig(cairo) From ee555ccb44536c7cb5c723f6fba5fc38d19098de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 9 Jun 2015 17:25:07 +0200 Subject: [PATCH 16/38] We also need a linker. --- zathura-djvu.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 905c893..dfd20ee 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -5,6 +5,7 @@ Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz +BuildRequires: binutils BuildRequires: coreutils BuildRequires: gcc BuildRequires: make From 843f8ad839ff6fed0a2afb3f85b9a0340e10fefa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 10 Jun 2015 12:40:12 +0200 Subject: [PATCH 17/38] Rebuild for new girara --- zathura-djvu.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index dfd20ee..0278417 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -9,6 +9,7 @@ BuildRequires: binutils BuildRequires: coreutils BuildRequires: gcc BuildRequires: make +BuildRequires: pkgconfig BuildRequires: sed BuildRequires: pkgconfig(cairo) BuildRequires: pkgconfig(glib-2.0) @@ -40,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Wed Jun 10 2015 Petr Šabata - 0.2.4-3 +- Rebuild for new girara + * Tue Jun 09 2015 Petr Šabata - 0.2.4-2 - Fix the dep list, install LICENSE with the %%license macro From 47c1e52b93d5e7f64f866e95ab33ca260bd88910 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 04:44:09 +0000 Subject: [PATCH 18/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 0278417..d4c6cda 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -41,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Jun 10 2015 Petr Šabata - 0.2.4-3 - Rebuild for new girara From 5d1b9b492eaeff5d03f6171ba7d2d05f424c8cf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 2 Jul 2015 16:52:26 +0200 Subject: [PATCH 19/38] Install the desktop file correctly --- zathura-djvu.spec | 50 +++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index d4c6cda..4d8d01f 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,22 +1,24 @@ -Name: zathura-djvu -Version: 0.2.4 -Release: 4%{?dist} -Summary: DjVu support for zathura -License: zlib -URL: http://pwmt.org/projects/zathura/plugins/%{name} -Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz -BuildRequires: binutils -BuildRequires: coreutils -BuildRequires: gcc -BuildRequires: make -BuildRequires: pkgconfig -BuildRequires: sed -BuildRequires: pkgconfig(cairo) -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(ddjvuapi) -BuildRequires: pkgconfig(girara-gtk3) -BuildRequires: pkgconfig(zathura) -Requires: zathura +Name: zathura-djvu +Version: 0.2.4 +Release: 5%{?dist} +Summary: DjVu support for zathura +License: zlib +URL: http://pwmt.org/projects/zathura/plugins/%{name} +Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz +BuildRequires: binutils +BuildRequires: coreutils +BuildRequires: gcc +BuildRequires: make +BuildRequires: pkgconfig +BuildRequires: sed +BuildRequires: pkgconfig(cairo) +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(ddjvuapi) +BuildRequires: pkgconfig(girara-gtk3) +BuildRequires: pkgconfig(zathura) +Requires: zathura +Requires(post): desktop-file-utils +Requires(postun): desktop-file-utils %description The zathura-djvu plugin adds DjVu support to zathura by @@ -33,6 +35,13 @@ mv djvu-debug.so djvu.so %install make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install +desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop + +%post +update-desktop-database &> /dev/null || : + +%postun +update-desktop-database &> /dev/null || : %files %license LICENSE @@ -41,6 +50,9 @@ make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 02 2015 Petr Šabata - 0.2.4-5 +- Install the desktop file correctly + * Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From ddf51f3b3c411b7be69d9af397950671311d24d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 04:03:54 +0000 Subject: [PATCH 20/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 4d8d01f..9571a32 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -50,6 +50,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jul 02 2015 Petr Šabata - 0.2.4-5 - Install the desktop file correctly From 600d389f37fff6b4b34290a5adf21b12e766dbf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 26 Feb 2016 18:27:54 +0100 Subject: [PATCH 21/38] 0.2.5 bump --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e066256..0313c47 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /zathura-djvu-0.2.2.tar.gz /zathura-djvu-0.2.3.tar.gz /zathura-djvu-0.2.4.tar.gz +/zathura-djvu-0.2.5.tar.gz diff --git a/sources b/sources index 6ad03c0..12d0d34 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -672a25dc9433b2541971c2e4e052bdd3 zathura-djvu-0.2.4.tar.gz +b7fcd813a8eba888340e9556769eaf62 zathura-djvu-0.2.5.tar.gz diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 9571a32..4fa75fa 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,12 +1,13 @@ Name: zathura-djvu -Version: 0.2.4 -Release: 6%{?dist} +Version: 0.2.5 +Release: 1%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz BuildRequires: binutils BuildRequires: coreutils +BuildRequires: desktop-file-utils BuildRequires: gcc BuildRequires: make BuildRequires: pkgconfig @@ -50,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Fri Feb 26 2016 Petr Šabata - 0.2.5-1 +- 0.2.5 bump + * Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 5833a389aa989ccd8269e7b4e84a019fca7fa22b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Sun, 15 Jan 2017 19:44:20 +0100 Subject: [PATCH 22/38] 0.2.6 bump --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0313c47..c871e35 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /zathura-djvu-0.2.3.tar.gz /zathura-djvu-0.2.4.tar.gz /zathura-djvu-0.2.5.tar.gz +/zathura-djvu-0.2.6.tar.gz diff --git a/sources b/sources index 12d0d34..8996e61 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b7fcd813a8eba888340e9556769eaf62 zathura-djvu-0.2.5.tar.gz +SHA512 (zathura-djvu-0.2.6.tar.gz) = 8534faa0de896ffea8d8d6f2d0c22697f2fd6ae3f73e955f5077e0a0656c13fd8823580f1b89c4b5aebb5189c69642ef690fc9167be178ce9533e9bb5d483dac diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 4fa75fa..0d3bfae 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,5 +1,5 @@ Name: zathura-djvu -Version: 0.2.5 +Version: 0.2.6 Release: 1%{?dist} Summary: DjVu support for zathura License: zlib @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jan 15 2017 Petr Šabata - 0.2.6-1 +- 0.2.6 bump + * Fri Feb 26 2016 Petr Šabata - 0.2.5-1 - 0.2.5 bump From 786969716ed17bfc4930541c371ef42c6e1c5fea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 18:22:14 +0000 Subject: [PATCH 23/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 0d3bfae..30b759a 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sun Jan 15 2017 Petr Šabata - 0.2.6-1 - 0.2.6 bump From af4cf4b115638be9487706bee24b3180f1df863a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 22:40:23 +0000 Subject: [PATCH 24/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 30b759a..f702ad0 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 662d50d13e46277fcb1ebc9f53da09e6b1076fcd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 11:08:52 +0000 Subject: [PATCH 25/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index f702ad0..b08bca0 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.2.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 092b8e952e755040a423cdad393cf5ba1000d254 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 22:24:11 +0000 Subject: [PATCH 26/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index b08bca0..4ee9b33 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null || : %{_datadir}/applications/%{name}.desktop %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.2.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 4c9d0ed6ebad953eafed09a1696d5bb4992050c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 10 Apr 2018 22:44:24 +0200 Subject: [PATCH 27/38] 0.2.8 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 52 ++++++++++++++++++++++------------------------- 3 files changed, 26 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index c871e35..4670270 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /zathura-djvu-0.2.4.tar.gz /zathura-djvu-0.2.5.tar.gz /zathura-djvu-0.2.6.tar.gz +/zathura-djvu-0.2.8.tar.xz diff --git a/sources b/sources index 8996e61..6403f96 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zathura-djvu-0.2.6.tar.gz) = 8534faa0de896ffea8d8d6f2d0c22697f2fd6ae3f73e955f5077e0a0656c13fd8823580f1b89c4b5aebb5189c69642ef690fc9167be178ce9533e9bb5d483dac +SHA512 (zathura-djvu-0.2.8.tar.xz) = ec51d339a01e7f2d063d21ab0e32624770398a21727fe6714b8fa8f9a1ef46909d58fa26c4a50430234f04377cce076312ebefb8a6cbdc28ba5de1c205d944a9 diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 4ee9b33..3bab780 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,25 +1,24 @@ Name: zathura-djvu -Version: 0.2.6 -Release: 5%{?dist} +Version: 0.2.8 +Release: 1%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} -Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.gz +Source0: http://pwmt.org/projects/zathura/plugins/download/%{name}-%{version}.tar.xz BuildRequires: binutils +BuildRequires: cairo-devel BuildRequires: coreutils +BuildRequires: djvulibre-devel +# Needed to validate the desktop file BuildRequires: desktop-file-utils +BuildRequires: girara-devel +BuildRequires: glib2-devel +# Needed to validate appdata +BuildRequires: libappstream-glib +BuildRequires: meson >= 0.43 BuildRequires: gcc -BuildRequires: make -BuildRequires: pkgconfig -BuildRequires: sed -BuildRequires: pkgconfig(cairo) -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(ddjvuapi) -BuildRequires: pkgconfig(girara-gtk3) -BuildRequires: pkgconfig(zathura) -Requires: zathura -Requires(post): desktop-file-utils -Requires(postun): desktop-file-utils +BuildRequires: zathura-devel >= 0.3.8 +Requires: zathura >= 0.3.8 %description The zathura-djvu plugin adds DjVu support to zathura by @@ -27,30 +26,27 @@ using the djvulibre library. %prep %setup -q -# Don't rebuild during install phase -sed -i 's/^install:\s*all/install:/' Makefile %build -CFLAGS='%{optflags}' make %{?_smp_mflags} LIBDIR=%{_libdir} debug -mv djvu-debug.so djvu.so +%meson +%meson_build %install -make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install -desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop - -%post -update-desktop-database &> /dev/null || : - -%postun -update-desktop-database &> /dev/null || : +%meson_install +desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop +appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainfo.xml %files %license LICENSE %doc AUTHORS -%{_libdir}/zathura/djvu.so -%{_datadir}/applications/%{name}.desktop +%{_libdir}/zathura/libdjvu.so +%{_datadir}/applications/org.pwmt.zathura-djvu.desktop +%{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Tue Apr 10 2018 Petr Šabata - 0.2.8-1 +- 0.2.8 bump + * Fri Feb 09 2018 Fedora Release Engineering - 0.2.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 66e53fd795b41b27920f9f24c9b10bd192b1d575 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:47:57 +0000 Subject: [PATCH 28/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 3bab780..fc89aea 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.2.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Tue Apr 10 2018 Petr Šabata - 0.2.8-1 - 0.2.8 bump From a0c3abe76b783b7aec28a42a1aac385347f49161 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 13:07:44 +0000 Subject: [PATCH 29/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index fc89aea..33b1b49 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 0.2.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 0.2.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From ddc5e41d7daf3e2d9ba65b5f53fcf179d417f85e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 04:56:22 +0000 Subject: [PATCH 30/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 33b1b49..8d27fa7 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 0.2.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 0.2.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 51776007b188e1db53565e8f8905262a2c745bd6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 05:14:47 +0000 Subject: [PATCH 31/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 8d27fa7..7c20e52 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.2.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 0.2.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 88ce64f10d86de2928d4f736ed9a394ba356c7f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 15 Apr 2020 15:35:22 +0200 Subject: [PATCH 32/38] Updating to the latest release, 0.2.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + sources | 2 +- zathura-djvu.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4670270..d754975 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /zathura-djvu-0.2.5.tar.gz /zathura-djvu-0.2.6.tar.gz /zathura-djvu-0.2.8.tar.xz +/zathura-djvu-0.2.9.tar.xz diff --git a/sources b/sources index 6403f96..a761a04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zathura-djvu-0.2.8.tar.xz) = ec51d339a01e7f2d063d21ab0e32624770398a21727fe6714b8fa8f9a1ef46909d58fa26c4a50430234f04377cce076312ebefb8a6cbdc28ba5de1c205d944a9 +SHA512 (zathura-djvu-0.2.9.tar.xz) = 3c2815e7f1cdfb9fc594dc6ad65359245f322e5fa27f018fb9431747e4d474734f5efd134aaeb9dabde09b01de603b1d1dc7aede883b1ef81266e067b0490726 diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 7c20e52..cf5a080 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu -Version: 0.2.8 -Release: 5%{?dist} +Version: 0.2.9 +Release: 1%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Wed Apr 15 2020 Petr Šabata - 0.2.9-1 +- 0.2.9 bump + * Fri Jan 31 2020 Fedora Release Engineering - 0.2.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 3c5a9afa793402d6dfaba085c45a8f51b03871cf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 15:19:51 +0000 Subject: [PATCH 33/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index cf5a080..016a281 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.2.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Apr 15 2020 Petr Šabata - 0.2.9-1 - 0.2.9 bump From 84f0966d6dd23da8328f69bdbd9b51bc1055aa95 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 28 Jan 2021 00:38:46 +0000 Subject: [PATCH 34/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 016a281..ca35554 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Thu Jan 28 2021 Fedora Release Engineering - 0.2.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.2.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 7fc68a2c494a81a914d014f11c54e4230b29cfc0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 22:14:21 +0000 Subject: [PATCH 35/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index ca35554..7a92396 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.2.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jan 28 2021 Fedora Release Engineering - 0.2.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 6faebf0c5ed3767926f9242ff27db578c0d11694 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:47:58 +0000 Subject: [PATCH 36/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 7a92396..909d8da 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.2.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.2.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 1745a138b0276f18a9d7585db6ea6ab67fdba7d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:51:12 +0000 Subject: [PATCH 37/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- zathura-djvu.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zathura-djvu.spec b/zathura-djvu.spec index 909d8da..0494743 100644 --- a/zathura-djvu.spec +++ b/zathura-djvu.spec @@ -1,6 +1,6 @@ Name: zathura-djvu Version: 0.2.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DjVu support for zathura License: zlib URL: http://pwmt.org/projects/zathura/plugins/%{name} @@ -44,6 +44,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.2.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 0.2.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 548cddca80a77629e723da8c214d114bc282d259 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:40:38 +0300 Subject: [PATCH 38/38] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index a761a04..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (zathura-djvu-0.2.9.tar.xz) = 3c2815e7f1cdfb9fc594dc6ad65359245f322e5fa27f018fb9431747e4d474734f5efd134aaeb9dabde09b01de603b1d1dc7aede883b1ef81266e067b0490726