From 67b048222ca39e37dc68435a050318aa48828596 Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Sun, 13 Mar 2011 12:01:32 +0100 Subject: [PATCH 01/40] Rebuild (poppler-0.16.3) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 0aa240f..f912743 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Sun Mar 13 2011 Marek Kasik - 0.7-8 +- Rebuild (poppler-0.16.3) + * Mon Feb 07 2011 Fedora Release Engineering - 0.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 8008b3954d232ba7812492c76521f3696d0af7d6 Mon Sep 17 00:00:00 2001 From: "Tom \"spot\" Callaway" Date: Tue, 23 Aug 2011 13:46:09 -0400 Subject: [PATCH 02/40] fix compile against gpsd 2.96 --- vifir-0.9-gpsd-2.96.patch | 77 +++++++++++++++++++++++++++++++++++++++ vifir.spec | 27 +++++--------- 2 files changed, 87 insertions(+), 17 deletions(-) create mode 100644 vifir-0.9-gpsd-2.96.patch diff --git a/vifir-0.9-gpsd-2.96.patch b/vifir-0.9-gpsd-2.96.patch new file mode 100644 index 0000000..c0ae675 --- /dev/null +++ b/vifir-0.9-gpsd-2.96.patch @@ -0,0 +1,77 @@ +diff -up vifir-0.9/src/GPS.cpp.gpsd296 vifir-0.9/src/GPS.cpp +--- vifir-0.9/src/GPS.cpp.gpsd296 2010-10-12 08:36:14.000000000 -0400 ++++ vifir-0.9/src/GPS.cpp 2011-08-23 13:38:54.465863249 -0400 +@@ -54,14 +54,22 @@ bool GPS::Activate() { + { + case Config::gpsd: + /* gpsd.mainframe.cx:2947 and gpsd.rellim.com:2947 have gpsd data sources we can connect to for testing */ ++#if GPSD_API_MAJOR_VERSION >= 5 ++ if (!gps_open (Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str(), &gpsdata_buf)) { ++ gpsddata = &gpsdata_buf; ++ } else { ++ gpsddata = NULL; ++ } ++#else + gpsddata=gps_open(Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str()); ++#endif + if (!gpsddata) { + fprintf(stderr,"Failure in gps_open(%s,%s)\n",Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str()); + return false; + } + #if GPSD_API_MAJOR_VERSION==3 + gps_query(gpsddata,"w+x\n"); +-#elif GPSD_API_MAJOR_VERSION==4 ++#elif GPSD_API_MAJOR_VERSION>=4 + gps_stream(gpsddata, WATCH_ENABLE, NULL); + #else + # error Unsupported GPSd library version +@@ -91,7 +99,11 @@ void GPS::Deactivate() { + #ifdef HAVE_LIBGPS + if (gpsddata) { + gps_close(gpsddata); ++#if GPSD_API_MAJOR_VERSION >= 5 ++ delete gpsddata; ++#else + gpsddata=NULL; ++#endif + } + ActiveFlag=false; + #endif +@@ -129,14 +141,24 @@ bool GPS::GetFix(double *Lon, double *La + if ((pfd.revents|POLLIN)==POLLIN) { + int result; + errno=0; ++#if GPSD_API_MAJOR_VERSION >= 5 ++ result=gps_read(gpsddata); ++ if (result > 0) ++ result=0; ++#else + result=gps_poll(gpsddata); ++#endif + if (result!=0) { + if (errno==0) { + /* Connection to gpsd closed */ + fprintf(stderr,"Connection to gpsd lost.\n"); + } else { + /* Read error */ ++#if GPSD_API_MAJOR_VERSION >= 5 ++ perror("gps_read()"); ++#else + perror("gps_poll()"); ++#endif + } + Deactivate(); + return false; +diff -up vifir-0.9/src/GPS.h.gpsd296 vifir-0.9/src/GPS.h +--- vifir-0.9/src/GPS.h.gpsd296 2010-05-23 00:10:44.000000000 -0400 ++++ vifir-0.9/src/GPS.h 2011-08-23 13:37:18.403202488 -0400 +@@ -47,6 +47,9 @@ public: + private: + #ifdef HAVE_LIBGPS + gps_data_t *gpsddata; ++#if GPSD_API_MAJOR_VERSION >= 5 ++ gps_data_t gpsdata_buf; ++#endif + pthread_t handler; + #endif + bool ActiveFlag; diff --git a/vifir.spec b/vifir.spec index 31ddcd4..fa96e53 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,19 +1,12 @@ -%global name vifir -%global version 0.9 -%global release 1%{?dist} -%global _prefix /usr - -Name: %{name} -Version: %{version} -Release: %{release} +Name: vifir +Version: 0.9 +Release: 2%{?dist} Summary: A viewer for electronic aviation charts - Group: Applications/Communications License: GPLv3 URL: http://vifir.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - +Patch0: vifir-0.9-gpsd-2.96.patch BuildRequires: gtkmm24-devel BuildRequires: gpsd-devel BuildRequires: libgeotiff-devel @@ -42,6 +35,7 @@ Bag. %prep %setup -q +%patch0 -p1 -b .gpsd296 %build @@ -51,7 +45,6 @@ make %{?_smp_mflags} %install -rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" desktop-file-install \ --delete-original \ @@ -59,12 +52,7 @@ desktop-file-install \ %{buildroot}%{_datadir}/applications/%{name}.desktop -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING DEVELOPERS README THANKS TODO %{_bindir}/%{name} %{_bindir}/llepdftopng @@ -74,6 +62,11 @@ rm -rf %{buildroot} %changelog +* Tue Aug 23 2011 Tom Callaway - 0.9-2 +- cleanup spec file (I have no idea how it got past review with those + redundant globals) +- enable gpsd 2.96+ support + * Sun Jul 31 2011 Dave Ludlow - 0.9-1 - Fix off-by-one error causing a crash upon loading a chart From 4e6271c8341886e8b4f045ad8c357d5821d8dd09 Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Mon, 19 Sep 2011 15:58:37 +0200 Subject: [PATCH 03/40] Rebuild (poppler-0.17.3) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index fa96e53..2342dd8 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Mon Sep 19 2011 Marek Kasik - 0.9-3 +- Rebuild (poppler-0.17.3) + * Tue Aug 23 2011 Tom Callaway - 0.9-2 - cleanup spec file (I have no idea how it got past review with those redundant globals) From 4c0150f6e68038d6f0aaec94fb2199f323d73d62 Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Fri, 30 Sep 2011 11:46:40 +0200 Subject: [PATCH 04/40] Rebuild (poppler-0.18.0) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 2342dd8..ecd57f0 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Fri Sep 30 2011 Marek Kasik - 0.9-4 +- Rebuild (poppler-0.18.0) + * Mon Sep 19 2011 Marek Kasik - 0.9-3 - Rebuild (poppler-0.17.3) From 1f84a2feb817483f9cd1295f5b499cbdf8457ed9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 28 Oct 2011 13:19:01 -0500 Subject: [PATCH 05/40] rebuild(poppler) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index ecd57f0..b305a24 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Fri Oct 28 2011 Rex Dieter - 0.9-5 +- rebuild(poppler) + * Fri Sep 30 2011 Marek Kasik - 0.9-4 - Rebuild (poppler-0.18.0) From 6382609d9c96a86d6f79991684779c15aba27537 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:54:18 -0600 Subject: [PATCH 06/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index b305a24..6c61604 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Fri Oct 28 2011 Rex Dieter - 0.9-5 - rebuild(poppler) From 84745424538aac2eaef62359dd7e0f0f2d28e03b Mon Sep 17 00:00:00 2001 From: remi Date: Sat, 4 Feb 2012 16:01:16 +0100 Subject: [PATCH 07/40] rebuild for libzip 0.10 --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 6c61604..07229c0 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Sat Feb 04 2012 Remi Collet - 0.9-7 +- rebuild for new libzip + * Sat Jan 14 2012 Fedora Release Engineering - 0.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 3ae9b2e7ff86164e183fc3b0b0360e3ac562d19c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 28 Feb 2012 14:32:09 -0600 Subject: [PATCH 08/40] - Rebuilt for c++ ABI breakage --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 07229c0..e543de2 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -62,6 +62,9 @@ desktop-file-install \ %changelog +* Tue Feb 28 2012 Fedora Release Engineering - 0.9-8 +- Rebuilt for c++ ABI breakage + * Sat Feb 04 2012 Remi Collet - 0.9-7 - rebuild for new libzip From 72ed272c37b9d8f2fdf8a81a92e64182757bc7be Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 10 May 2012 22:58:03 +0200 Subject: [PATCH 09/40] * Thu May 10 2012 Fabian Affolter - 0.9-9 - Rebuild for libtiff --- vifir.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/vifir.spec b/vifir.spec index e543de2..31a4746 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,12 +1,13 @@ Name: vifir Version: 0.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 URL: http://vifir.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Patch0: vifir-0.9-gpsd-2.96.patch + BuildRequires: gtkmm24-devel BuildRequires: gpsd-devel BuildRequires: libgeotiff-devel @@ -62,6 +63,9 @@ desktop-file-install \ %changelog +* Thu May 10 2012 Fabian Affolter - 0.9-9 +- Rebuild for libtiff + * Tue Feb 28 2012 Fedora Release Engineering - 0.9-8 - Rebuilt for c++ ABI breakage @@ -106,10 +110,10 @@ desktop-file-install \ * Wed Dec 15 2010 Rex Dieter - 0.7-5 - rebuild (poppler) -* Sat Nov 06 2010 Fabian Affolter - 0.7-4 +* Sat Nov 06 2010 Fabian Affolter - 0.7-4 - rebuild (poppler) -* Thu Sep 30 2010 Fabian Affolter - 0.7-3 +* Thu Sep 30 2010 Fabian Affolter - 0.7-3 - rebuild (poppler) - Duplicated variable definitions removed @@ -139,13 +143,13 @@ desktop-file-install \ - Reduce nuisance warnings - Incorporate some changes from Fabian Affolter's Fedora .spec file. -* Sun May 09 2010 Fabian Affolter - 0.4-3 +* Sun May 09 2010 Fabian Affolter - 0.4-3 - Rebuild for new gpsd -* Thu May 06 2010 Fabian Affolter - 0.4-2 +* Thu May 06 2010 Fabian Affolter - 0.4-2 - Rebuild for new poppler -* Sun Jul 26 2009 Fabian Affolter - 0.4-1 +* Sun Jul 26 2009 Fabian Affolter - 0.4-1 - Initial package for Fedora * Fri Jun 12 2009 Dave Ludlow 0.4-1 From 717085742ca66fc48f684269131b25c70323c72e Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Wed, 16 May 2012 17:49:53 +0200 Subject: [PATCH 10/40] Rebuild (poppler-0.20.0) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 31a4746..eaa51a0 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -63,6 +63,9 @@ desktop-file-install \ %changelog +* Wed May 16 2012 Marek Kasik - 0.9-10 +- Rebuild (poppler-0.20.0) + * Thu May 10 2012 Fabian Affolter - 0.9-9 - Rebuild for libtiff From 0908f5c342ca1ac33868c8928839b1658b8c1a11 Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Mon, 2 Jul 2012 14:58:13 +0200 Subject: [PATCH 11/40] Rebuild (poppler-0.20.1) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index eaa51a0..caac229 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -63,6 +63,9 @@ desktop-file-install \ %changelog +* Mon Jul 2 2012 Marek Kasik - 0.9-11 +- Rebuild (poppler-0.20.1) + * Wed May 16 2012 Marek Kasik - 0.9-10 - Rebuild (poppler-0.20.0) From b3e627400013767bd7bbe3c20e4397466856c015 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 21:42:55 -0500 Subject: [PATCH 12/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index caac229..347d035 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications License: GPLv3 @@ -63,6 +63,9 @@ desktop-file-install \ %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Mon Jul 2 2012 Marek Kasik - 0.9-11 - Rebuild (poppler-0.20.1) From aeac80149f535ca434d26344303e0397646c13d0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 10 Nov 2012 16:13:48 +0100 Subject: [PATCH 13/40] * Sat Nov 10 2012 Fabian Affolter - 0.9-13 - Rebuild for F19 --- vifir.spec | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/vifir.spec b/vifir.spec index 347d035..0220c15 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,7 +1,8 @@ Name: vifir Version: 0.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A viewer for electronic aviation charts + Group: Applications/Communications License: GPLv3 URL: http://vifir.sourceforge.net/ @@ -27,24 +28,20 @@ BuildRequires: libzip-devel Requires: evince - %description Vifir processes and displays electronic aviation charts produced by the U.S. National Aeronautical Charting Office in a similar way to an Electronic Flight Bag. - %prep %setup -q %patch0 -p1 -b .gpsd296 - %build export CXXFLAGS="$RPM_OPT_FLAGS" %configure --prefix=%{_prefix} --libdir=%{_libdir} make %{?_smp_mflags} - %install make install DESTDIR=%{buildroot} INSTALL="install -p" desktop-file-install \ @@ -52,7 +49,6 @@ desktop-file-install \ --dir=%{buildroot}%{_datadir}/applications \ %{buildroot}%{_datadir}/applications/%{name}.desktop - %files %doc AUTHORS ChangeLog COPYING DEVELOPERS README THANKS TODO %{_bindir}/%{name} @@ -61,8 +57,10 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/*.png - %changelog +* Sat Nov 10 2012 Fabian Affolter - 0.9-13 +- Rebuild for F19 + * Sun Jul 22 2012 Fedora Release Engineering - 0.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 3ef7a69b3673b29e8577e561c022818de05328dd Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Fri, 18 Jan 2013 14:00:58 +0100 Subject: [PATCH 14/40] Rebuild (poppler-0.22.0) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 0220c15..689f4f2 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Fri Jan 18 2013 Marek Kasik - 0.9-14 +- Rebuild (poppler-0.22.0) + * Sat Nov 10 2012 Fabian Affolter - 0.9-13 - Rebuild for F19 From e156d167697e95f793d7efa8f6ff75162eb8ca22 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:46:54 -0600 Subject: [PATCH 15/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 689f4f2..1ec8413 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.9-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jan 18 2013 Marek Kasik - 0.9-14 - Rebuild (poppler-0.22.0) From 21717893d4e7f04b742e5e7421de35980090f063 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 26 Jun 2013 09:13:15 +0200 Subject: [PATCH 16/40] * Wed Jun 26 2013 Fabian Affolter - 0.9-16 - Rebuild poppler --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 1ec8413..83f5ea6 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Wed Jun 26 2013 Fabian Affolter - 0.9-16 +- Rebuild poppler + * Fri Feb 15 2013 Fedora Release Engineering - 0.9-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 0a72346cc87f6e5ed2551f346c3b6e0b27d7e489 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 30 Jun 2013 11:11:53 -0500 Subject: [PATCH 17/40] Rebuild for poppler soname bump It looks like someone else tried this a few days ago but it didn't work. It built locally for me today, so maybe some other build root issue has been fixed since then. --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 83f5ea6..4441e63 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sun Jun 30 3013 Bruno Wolff III - 0.9-17 +- Rebuild for poppler soname bump + * Wed Jun 26 2013 Fabian Affolter - 0.9-16 - Rebuild poppler From d6e360703ff3428b2320f21a580ebcfc68809895 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 30 Jun 2013 11:15:17 -0500 Subject: [PATCH 18/40] Fix typo in date --- vifir.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 4441e63..eae594e 100644 --- a/vifir.spec +++ b/vifir.spec @@ -58,7 +58,7 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog -* Sun Jun 30 3013 Bruno Wolff III - 0.9-17 +* Sun Jun 30 2013 Bruno Wolff III - 0.9-17 - Rebuild for poppler soname bump * Wed Jun 26 2013 Fabian Affolter - 0.9-16 From f0abf2a215f8c8a1d44c2a2ff16e1c1751e5adba Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:11:15 -0500 Subject: [PATCH 19/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index eae594e..241776b 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 17%{?dist} +Release: 18%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.9-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Sun Jun 30 2013 Bruno Wolff III - 0.9-17 - Rebuild for poppler soname bump From 995145306a810f846acdfed16f2784cd8db8b0cb Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Mon, 19 Aug 2013 17:17:12 +0200 Subject: [PATCH 20/40] Rebuild (poppler-0.24.0) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 241776b..2a0a393 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 18%{?dist} +Release: 19%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Mon Aug 19 2013 Marek Kasik - 0.9-19 +- Rebuild (poppler-0.24.0) + * Sun Aug 04 2013 Fedora Release Engineering - 0.9-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 134147250313f09b3c112a968103d2512ad7f7ed Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Nov 2013 10:10:42 +0100 Subject: [PATCH 21/40] * Thu Nov 28 2013 Fabian Affolter - 0.9-20 - Rebuild for libgps --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 2a0a393..3aba3bc 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 19%{?dist} +Release: 20%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -58,6 +58,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Thu Nov 28 2013 Fabian Affolter - 0.9-20 +- Rebuild for libgps + * Mon Aug 19 2013 Marek Kasik - 0.9-19 - Rebuild (poppler-0.24.0) From 2b54b6f2f0c4e845061263772a820d7663a84149 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 21 Dec 2013 16:34:03 +0100 Subject: [PATCH 22/40] * Sat Dec 21 2013 Fabian Affolter - 0.9-21 - Remove poppler dep (rhbz#1043506) --- vifir.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vifir.spec b/vifir.spec index 3aba3bc..2a111d6 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 20%{?dist} +Release: 21%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -15,8 +15,6 @@ BuildRequires: libgeotiff-devel BuildRequires: dbus-devel BuildRequires: dbus-glib-devel BuildRequires: proj-devel -BuildRequires: poppler-devel -BuildRequires: poppler-glib-devel BuildRequires: libxml++-devel BuildRequires: libglademm24-devel BuildRequires: libcurl-devel @@ -58,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sat Dec 21 2013 Fabian Affolter - 0.9-21 +- Remove poppler dep (rhbz#1043506) + * Thu Nov 28 2013 Fabian Affolter - 0.9-20 - Rebuild for libgps From cc3d95bbddc27c12cda94e7b6dc5e6a6c7b38f4b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 22:39:21 -0500 Subject: [PATCH 23/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 2a111d6..e1919f1 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 21%{?dist} +Release: 22%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.9-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Dec 21 2013 Fabian Affolter - 0.9-21 - Remove poppler dep (rhbz#1043506) From 1850f59c2dbdb5df9a527adbea8b6b154c70441d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 13 Jul 2014 12:24:48 +0200 Subject: [PATCH 24/40] * Sun Jul 13 2014 Fabian Affolter - 0.9-23 - Rebuild (libgeotiff) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index e1919f1..8fc765d 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 22%{?dist} +Release: 23%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sun Jul 13 2014 Fabian Affolter - 0.9-23 +- Rebuild (libgeotiff) + * Sun Jun 08 2014 Fedora Release Engineering - 0.9-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From d7a71d3e9c4959a30424c108ff61584b3c2c06ca Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Tue, 15 Jul 2014 11:20:33 -0600 Subject: [PATCH 25/40] Rebuild for libgeotiff rollback --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 8fc765d..99e88a7 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 23%{?dist} +Release: 24%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Tue Jul 15 2014 Orion Poplawski - 0.9-24 +- Rebuild for libgeotiff rollback + * Sun Jul 13 2014 Fabian Affolter - 0.9-23 - Rebuild (libgeotiff) From 8bc293bc9ed944539f7f3bce7969968ee98d1894 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 28 Jul 2014 20:02:39 +0100 Subject: [PATCH 26/40] rebuild (libnova) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 99e88a7..a80c14d 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 24%{?dist} +Release: 25%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Mon Jul 28 2014 Peter Robinson 0.9-25 +- rebuild (libnova) + * Tue Jul 15 2014 Orion Poplawski - 0.9-24 - Rebuild for libgeotiff rollback From f9b3da0211999a27cdaed6a5958da7ebe73fbaaa Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 07:50:58 +0000 Subject: [PATCH 27/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index a80c14d..7a977a6 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 25%{?dist} +Release: 26%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.9-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Mon Jul 28 2014 Peter Robinson 0.9-25 - rebuild (libnova) From a14e3160d3946dd8215caf65353bc380a1d44724 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 23 Aug 2014 09:28:47 +0200 Subject: [PATCH 28/40] * Sat Aug 23 2014 Fabian Affolter - 0.9-27 - Rebuild (libgeotiff) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 7a977a6..fd518ec 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 26%{?dist} +Release: 27%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sat Aug 23 2014 Fabian Affolter - 0.9-27 +- Rebuild (libgeotiff) + * Mon Aug 18 2014 Fedora Release Engineering - 0.9-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 7783d8719c67d4cb0f0f55e095d6cb2e5151754b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 7 Mar 2015 18:29:13 +0100 Subject: [PATCH 29/40] * Sat Mar 07 2015 Fabian Affolter - 0.9-28 - Rebuild (libgps) --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index fd518ec..c3f2a11 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 27%{?dist} +Release: 28%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sat Mar 07 2015 Fabian Affolter - 0.9-28 +- Rebuild (libgps) + * Sat Aug 23 2014 Fabian Affolter - 0.9-27 - Rebuild (libgeotiff) From f3002e1181a91515a8f3fa44deac6b284589258f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Devrim=20G=C3=BCnd=C3=BCz?= Date: Wed, 11 Mar 2015 19:05:57 +0200 Subject: [PATCH 30/40] - Rebuild for Proj 4.9.1 --- vifir.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vifir.spec b/vifir.spec index c3f2a11..7ecd17d 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 28%{?dist} +Release: 29%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -17,7 +17,7 @@ BuildRequires: dbus-glib-devel BuildRequires: proj-devel BuildRequires: libxml++-devel BuildRequires: libglademm24-devel -BuildRequires: libcurl-devel +BuildRequires: libcurl-devel BuildRequires: desktop-file-utils BuildRequires: freetype-devel BuildRequires: intltool @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Wed Mar 11 2015 Devrim Gündüz - 0.9-29 +- Rebuild for Proj 4.9.1 + * Sat Mar 07 2015 Fabian Affolter - 0.9-28 - Rebuild (libgps) From 336571e0a988df6f4e3e987b7d5669f348976906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Devrim=20G=C3=BCnd=C3=BCz?= Date: Thu, 19 Mar 2015 16:54:15 +0200 Subject: [PATCH 31/40] Rebuild for Proj 4.9.1 and new gpsd --- vifir.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 7ecd17d..30bea4f 100644 --- a/vifir.spec +++ b/vifir.spec @@ -57,7 +57,7 @@ desktop-file-install \ %changelog * Wed Mar 11 2015 Devrim Gündüz - 0.9-29 -- Rebuild for Proj 4.9.1 +- Rebuild for Proj 4.9.1 and new gpsd * Sat Mar 07 2015 Fabian Affolter - 0.9-28 - Rebuild (libgps) From bf93b3a8f6117906fe727ccd0ee9380ef7086fd9 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 18:31:15 +0200 Subject: [PATCH 32/40] Rebuilt for GCC 5 C++11 ABI change --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 30bea4f..5cd9690 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 29%{?dist} +Release: 30%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sat May 02 2015 Kalev Lember - 0.9-30 +- Rebuilt for GCC 5 C++11 ABI change + * Wed Mar 11 2015 Devrim Gündüz - 0.9-29 - Rebuild for Proj 4.9.1 and new gpsd From 69e7577e43cb09cfdb605d34d932c425e280c4c9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 6 May 2015 10:22:31 +0200 Subject: [PATCH 33/40] rebuild for new libzip --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 5cd9690..1f15741 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 30%{?dist} +Release: 31%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Wed May 06 2015 Remi Collet - 0.9-31 +- rebuild for new libzip + * Sat May 02 2015 Kalev Lember - 0.9-30 - Rebuilt for GCC 5 C++11 ABI change From 75feb291a54a6a49101280569aeafbcc5d39370d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:59:41 +0000 Subject: [PATCH 34/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 1f15741..84bbab4 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 31%{?dist} +Release: 32%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.9-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed May 06 2015 Remi Collet - 0.9-31 - rebuild for new libzip From 30daeb23917b933ff3b8eb1345a6bef0e1ca2199 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:41:37 +0000 Subject: [PATCH 35/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index 84bbab4..22337f8 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 32%{?dist} +Release: 33%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -56,6 +56,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.9-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.9-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 1490ad92915a0648eac11593795dada079612004 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 31 Jan 2017 10:08:30 +0100 Subject: [PATCH 36/40] * Tue Jan 31 2017 Fabian Affolter - 0.9-27 - Rebuild (libproj) --- vifir.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vifir.spec b/vifir.spec index 22337f8..dc28dea 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 33%{?dist} +Release: 34%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -48,7 +48,8 @@ desktop-file-install \ %{buildroot}%{_datadir}/applications/%{name}.desktop %files -%doc AUTHORS ChangeLog COPYING DEVELOPERS README THANKS TODO +%doc AUTHORS ChangeLog DEVELOPERS README THANKS TODO +%license COPYING %{_bindir}/%{name} %{_bindir}/llepdftopng %{_datadir}/%{name}/ @@ -56,6 +57,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Tue Jan 31 2017 Fabian Affolter - 0.9-27 +- Rebuild (libproj) + * Fri Feb 05 2016 Fedora Release Engineering - 0.9-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From c4a9494b7f78767e0b5e044b5c3a180f41251d19 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:04:05 +0000 Subject: [PATCH 37/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index dc28dea..f5562ec 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 34%{?dist} +Release: 35%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -57,6 +57,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.9-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Tue Jan 31 2017 Fabian Affolter - 0.9-27 - Rebuild (libproj) From 23cfeb1450ff8a435ed11f008b8fcc05ca24f612 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 28 Feb 2017 16:19:47 +0100 Subject: [PATCH 38/40] rebuild for new libzip --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index f5562ec..acdd9ca 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 35%{?dist} +Release: 36%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -57,6 +57,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Tue Feb 28 2017 Remi Collet - 0.9-36 +- rebuild for new libzip + * Sat Feb 11 2017 Fedora Release Engineering - 0.9-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From d396cf359bc9704b6158b038eeb32c3b262eddfa Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 3 Apr 2017 17:08:47 +0200 Subject: [PATCH 39/40] * Mon Apr 03 2017 Fabian Affolter - 0.9-37 - Rebuild --- vifir.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vifir.spec b/vifir.spec index acdd9ca..8deb45a 100644 --- a/vifir.spec +++ b/vifir.spec @@ -1,6 +1,6 @@ Name: vifir Version: 0.9 -Release: 36%{?dist} +Release: 37%{?dist} Summary: A viewer for electronic aviation charts Group: Applications/Communications @@ -57,6 +57,9 @@ desktop-file-install \ %{_datadir}/pixmaps/*.png %changelog +* Mon Apr 03 2017 Fabian Affolter - 0.9-37 +- Rebuild + * Tue Feb 28 2017 Remi Collet - 0.9-36 - rebuild for new libzip From 1ff08f2cd3e0c0f926e7d7a946f1def9ab82a4f8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 3 Apr 2017 17:24:37 +0200 Subject: [PATCH 40/40] Upstream dead for years --- .gitignore | 1 - dead.package | 1 + sources | 1 - vifir-0.9-gpsd-2.96.patch | 77 ------------ vifir.spec | 258 -------------------------------------- 5 files changed, 1 insertion(+), 337 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 vifir-0.9-gpsd-2.96.patch delete mode 100644 vifir.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ffde73f..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/vifir-0.9.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..3726517 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Upstream dead for years diff --git a/sources b/sources deleted file mode 100644 index 229c87a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -680a37d611253ec3b64e835e06c9207c vifir-0.9.tar.gz diff --git a/vifir-0.9-gpsd-2.96.patch b/vifir-0.9-gpsd-2.96.patch deleted file mode 100644 index c0ae675..0000000 --- a/vifir-0.9-gpsd-2.96.patch +++ /dev/null @@ -1,77 +0,0 @@ -diff -up vifir-0.9/src/GPS.cpp.gpsd296 vifir-0.9/src/GPS.cpp ---- vifir-0.9/src/GPS.cpp.gpsd296 2010-10-12 08:36:14.000000000 -0400 -+++ vifir-0.9/src/GPS.cpp 2011-08-23 13:38:54.465863249 -0400 -@@ -54,14 +54,22 @@ bool GPS::Activate() { - { - case Config::gpsd: - /* gpsd.mainframe.cx:2947 and gpsd.rellim.com:2947 have gpsd data sources we can connect to for testing */ -+#if GPSD_API_MAJOR_VERSION >= 5 -+ if (!gps_open (Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str(), &gpsdata_buf)) { -+ gpsddata = &gpsdata_buf; -+ } else { -+ gpsddata = NULL; -+ } -+#else - gpsddata=gps_open(Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str()); -+#endif - if (!gpsddata) { - fprintf(stderr,"Failure in gps_open(%s,%s)\n",Cfg->GetgpsdHost().c_str(),Cfg->GetgpsdPort().c_str()); - return false; - } - #if GPSD_API_MAJOR_VERSION==3 - gps_query(gpsddata,"w+x\n"); --#elif GPSD_API_MAJOR_VERSION==4 -+#elif GPSD_API_MAJOR_VERSION>=4 - gps_stream(gpsddata, WATCH_ENABLE, NULL); - #else - # error Unsupported GPSd library version -@@ -91,7 +99,11 @@ void GPS::Deactivate() { - #ifdef HAVE_LIBGPS - if (gpsddata) { - gps_close(gpsddata); -+#if GPSD_API_MAJOR_VERSION >= 5 -+ delete gpsddata; -+#else - gpsddata=NULL; -+#endif - } - ActiveFlag=false; - #endif -@@ -129,14 +141,24 @@ bool GPS::GetFix(double *Lon, double *La - if ((pfd.revents|POLLIN)==POLLIN) { - int result; - errno=0; -+#if GPSD_API_MAJOR_VERSION >= 5 -+ result=gps_read(gpsddata); -+ if (result > 0) -+ result=0; -+#else - result=gps_poll(gpsddata); -+#endif - if (result!=0) { - if (errno==0) { - /* Connection to gpsd closed */ - fprintf(stderr,"Connection to gpsd lost.\n"); - } else { - /* Read error */ -+#if GPSD_API_MAJOR_VERSION >= 5 -+ perror("gps_read()"); -+#else - perror("gps_poll()"); -+#endif - } - Deactivate(); - return false; -diff -up vifir-0.9/src/GPS.h.gpsd296 vifir-0.9/src/GPS.h ---- vifir-0.9/src/GPS.h.gpsd296 2010-05-23 00:10:44.000000000 -0400 -+++ vifir-0.9/src/GPS.h 2011-08-23 13:37:18.403202488 -0400 -@@ -47,6 +47,9 @@ public: - private: - #ifdef HAVE_LIBGPS - gps_data_t *gpsddata; -+#if GPSD_API_MAJOR_VERSION >= 5 -+ gps_data_t gpsdata_buf; -+#endif - pthread_t handler; - #endif - bool ActiveFlag; diff --git a/vifir.spec b/vifir.spec deleted file mode 100644 index 8deb45a..0000000 --- a/vifir.spec +++ /dev/null @@ -1,258 +0,0 @@ -Name: vifir -Version: 0.9 -Release: 37%{?dist} -Summary: A viewer for electronic aviation charts - -Group: Applications/Communications -License: GPLv3 -URL: http://vifir.sourceforge.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -Patch0: vifir-0.9-gpsd-2.96.patch - -BuildRequires: gtkmm24-devel -BuildRequires: gpsd-devel -BuildRequires: libgeotiff-devel -BuildRequires: dbus-devel -BuildRequires: dbus-glib-devel -BuildRequires: proj-devel -BuildRequires: libxml++-devel -BuildRequires: libglademm24-devel -BuildRequires: libcurl-devel -BuildRequires: desktop-file-utils -BuildRequires: freetype-devel -BuildRequires: intltool -BuildRequires: libnova-devel -BuildRequires: libzip-devel - -Requires: evince - -%description -Vifir processes and displays electronic aviation charts produced by the U.S. -National Aeronautical Charting Office in a similar way to an Electronic Flight -Bag. - -%prep -%setup -q -%patch0 -p1 -b .gpsd296 - -%build -export CXXFLAGS="$RPM_OPT_FLAGS" -%configure --prefix=%{_prefix} --libdir=%{_libdir} -make %{?_smp_mflags} - -%install -make install DESTDIR=%{buildroot} INSTALL="install -p" -desktop-file-install \ - --delete-original \ - --dir=%{buildroot}%{_datadir}/applications \ - %{buildroot}%{_datadir}/applications/%{name}.desktop - -%files -%doc AUTHORS ChangeLog DEVELOPERS README THANKS TODO -%license COPYING -%{_bindir}/%{name} -%{_bindir}/llepdftopng -%{_datadir}/%{name}/ -%{_datadir}/applications/%{name}.desktop -%{_datadir}/pixmaps/*.png - -%changelog -* Mon Apr 03 2017 Fabian Affolter - 0.9-37 -- Rebuild - -* Tue Feb 28 2017 Remi Collet - 0.9-36 -- rebuild for new libzip - -* Sat Feb 11 2017 Fedora Release Engineering - 0.9-35 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Jan 31 2017 Fabian Affolter - 0.9-27 -- Rebuild (libproj) - -* Fri Feb 05 2016 Fedora Release Engineering - 0.9-33 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 0.9-32 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Wed May 06 2015 Remi Collet - 0.9-31 -- rebuild for new libzip - -* Sat May 02 2015 Kalev Lember - 0.9-30 -- Rebuilt for GCC 5 C++11 ABI change - -* Wed Mar 11 2015 Devrim Gündüz - 0.9-29 -- Rebuild for Proj 4.9.1 and new gpsd - -* Sat Mar 07 2015 Fabian Affolter - 0.9-28 -- Rebuild (libgps) - -* Sat Aug 23 2014 Fabian Affolter - 0.9-27 -- Rebuild (libgeotiff) - -* Mon Aug 18 2014 Fedora Release Engineering - 0.9-26 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Mon Jul 28 2014 Peter Robinson 0.9-25 -- rebuild (libnova) - -* Tue Jul 15 2014 Orion Poplawski - 0.9-24 -- Rebuild for libgeotiff rollback - -* Sun Jul 13 2014 Fabian Affolter - 0.9-23 -- Rebuild (libgeotiff) - -* Sun Jun 08 2014 Fedora Release Engineering - 0.9-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Dec 21 2013 Fabian Affolter - 0.9-21 -- Remove poppler dep (rhbz#1043506) - -* Thu Nov 28 2013 Fabian Affolter - 0.9-20 -- Rebuild for libgps - -* Mon Aug 19 2013 Marek Kasik - 0.9-19 -- Rebuild (poppler-0.24.0) - -* Sun Aug 04 2013 Fedora Release Engineering - 0.9-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sun Jun 30 2013 Bruno Wolff III - 0.9-17 -- Rebuild for poppler soname bump - -* Wed Jun 26 2013 Fabian Affolter - 0.9-16 -- Rebuild poppler - -* Fri Feb 15 2013 Fedora Release Engineering - 0.9-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Jan 18 2013 Marek Kasik - 0.9-14 -- Rebuild (poppler-0.22.0) - -* Sat Nov 10 2012 Fabian Affolter - 0.9-13 -- Rebuild for F19 - -* Sun Jul 22 2012 Fedora Release Engineering - 0.9-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Mon Jul 2 2012 Marek Kasik - 0.9-11 -- Rebuild (poppler-0.20.1) - -* Wed May 16 2012 Marek Kasik - 0.9-10 -- Rebuild (poppler-0.20.0) - -* Thu May 10 2012 Fabian Affolter - 0.9-9 -- Rebuild for libtiff - -* Tue Feb 28 2012 Fedora Release Engineering - 0.9-8 -- Rebuilt for c++ ABI breakage - -* Sat Feb 04 2012 Remi Collet - 0.9-7 -- rebuild for new libzip - -* Sat Jan 14 2012 Fedora Release Engineering - 0.9-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Fri Oct 28 2011 Rex Dieter - 0.9-5 -- rebuild(poppler) - -* Fri Sep 30 2011 Marek Kasik - 0.9-4 -- Rebuild (poppler-0.18.0) - -* Mon Sep 19 2011 Marek Kasik - 0.9-3 -- Rebuild (poppler-0.17.3) - -* Tue Aug 23 2011 Tom Callaway - 0.9-2 -- cleanup spec file (I have no idea how it got past review with those - redundant globals) -- enable gpsd 2.96+ support - -* Sun Jul 31 2011 Dave Ludlow - 0.9-1 -- Fix off-by-one error causing a crash upon loading a chart - -* Fri Jul 15 2011 Marek Kasik - 0.8-2 -- Rebuild (poppler-0.17.0) - -* Mon Mar 14 2011 Dave Ludlow - 0.8-1 -- Clip airport elevations to 32,767 feet when importing X-Plane data - -* Sun Mar 13 2011 Marek Kasik - 0.7-8 -- Rebuild (poppler-0.16.3) - -* Mon Feb 07 2011 Fedora Release Engineering - 0.7-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Jan 02 2011 Rex Dieter - 0.7-6 -- rebuild (poppler) - -* Wed Dec 15 2010 Rex Dieter - 0.7-5 -- rebuild (poppler) - -* Sat Nov 06 2010 Fabian Affolter - 0.7-4 -- rebuild (poppler) - -* Thu Sep 30 2010 Fabian Affolter - 0.7-3 -- rebuild (poppler) -- Duplicated variable definitions removed - -* Thu Aug 19 2010 Rex Dieter - 0.7-2 -- rebuild (poppler) - -* Tue Jul 20 2010 Dave Ludlow - 0.7-1 -- Improve handling of unexpected data/conditions from the GPS -- Improve signal-to-noise ratio on stderr output - -* Mon Jul 05 2010 Dave Ludlow - 0.6-1 -- Support the gpsd version 4 API -- Improve the gps data timeout calculation -- Fix checking for valid lat/lon data -- Add gpsd host/port configuration options -- Add ccache compiler-cache support -- Prevent crashes when no data volume is active - -* Fri May 14 2010 Dave Ludlow - 0.5-1 -- Add X-Plane 9.00 airport data import support -- Numerous tweaks for future Win32 support -- Code style/standardization support -- Fix runway headings import decimal shifting -- Data import performance tweaks -- Add airport info dialog -- Add i18n support -- Reduce nuisance warnings -- Incorporate some changes from Fabian Affolter's Fedora .spec file. - -* Sun May 09 2010 Fabian Affolter - 0.4-3 -- Rebuild for new gpsd - -* Thu May 06 2010 Fabian Affolter - 0.4-2 -- Rebuild for new poppler - -* Sun Jul 26 2009 Fabian Affolter - 0.4-1 -- Initial package for Fedora - -* Fri Jun 12 2009 Dave Ludlow 0.4-1 -- Aircraft data storage -- Performance improvements on slower systems -- METAR download and graphics support -- Add flashlight support -- Shapefile support -- Improve chart scrolling performance -- Simple on-screen keyboard support - -* Sat Jul 5 2008 Dave Ludlow 0.3-1 -- dTPP (approach plate) support -- National Flight Database support -- Route support -- Data overlay support -- Add screensaver & powersave disable hooks -- Multiple data volume support - -* Thu Aug 23 2007 Dave Ludlow 0.2-1 -- Improve look and feel somewhat -- Add GPSD integration and moving map support -- Make recent files menu actually functional -- Add a configuration dialog and persistent storage -- Add approach plate support - -* Thu Aug 9 2007 Dave Ludlow 0.1-1 -- Initial packaging