From 65fdc2885e4b02867ee55aa0d0098e508d6b53d3 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 15 Jan 2009 20:46:00 +0000 Subject: [PATCH 01/47] Initialize branch F-10 for wxapt --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..dc32377 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-10 From 895b1aa97c0eac18456ae2400d624e1057ad6468 Mon Sep 17 00:00:00 2001 From: Randall 'Randy' Berry Date: Fri, 16 Jan 2009 03:11:54 +0000 Subject: [PATCH 02/47] import wxapt-1.3-3 source --- .cvsignore | 1 + import.log | 1 + sources | 1 + wxapt.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 55 insertions(+) create mode 100644 import.log create mode 100644 wxapt.spec diff --git a/.cvsignore b/.cvsignore index e69de29..00440ed 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wxapt-1.3.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..f48a411 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +wxapt-1_3-2_fc10:HEAD:wxapt-1.3-2.fc10.src.rpm:1232075409 diff --git a/sources b/sources index e69de29..dc03835 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +04bc342743af558cd7f95c62ce4a84bc wxapt-1.3.tar.gz diff --git a/wxapt.spec b/wxapt.spec new file mode 100644 index 0000000..9314066 --- /dev/null +++ b/wxapt.spec @@ -0,0 +1,52 @@ +Name: wxapt +Version: 1.3 +Release: 2%{?dist} +Summary: Console application for decoding and saving weather images + +Group: Applications/Communications +License: GPLv2+ +URL: http://5b4az.chronos.org.uk/pages/apt.html +Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: ncurses-devel +#Requires: + +%description +wxapt is a console application for decoding and saving weather images +transmitted in the APT format of NOAA and METEOR satellites. + +%prep +%setup -qn %{name} + + +%build +make CFLAGS="%{optflags}" %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +#skip make install and do manual install, it's just one file +install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} +#skip .desktop file as this is a command line application + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc AUTHORS README +%{_bindir}/* + + +%changelog +* Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-2 +- mock build F9/10/devel +- rpmlint 3 packages and 1 specfiles checked; 0 errors, 0 warnings. +- Submit for review + +* Sun Sep 21 2008 Randall J. Berry 'Dp67' 1.3-1 +- Build test for f9 + +* Sun Mar 02 2008 Sindre Pedersen Bjordal - 1.3-1 +- Initial build From e57eac74ad5d64e78bfde7c7a811ccb47916bb82 Mon Sep 17 00:00:00 2001 From: Randall 'Randy' Berry Date: Fri, 16 Jan 2009 03:50:38 +0000 Subject: [PATCH 03/47] Import wxapt-1.3-3 --- import.log | 1 + wxapt.makefile.patch | 35 +++++++++++++++++++++++++++++++++++ wxapt.spec | 15 ++++++++++++--- 3 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 wxapt.makefile.patch diff --git a/import.log b/import.log index f48a411..d220c7b 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ wxapt-1_3-2_fc10:HEAD:wxapt-1.3-2.fc10.src.rpm:1232075409 +wxapt-1_3-3_fc10:HEAD:wxapt-1.3-3.fc10.src.rpm:1232077758 diff --git a/wxapt.makefile.patch b/wxapt.makefile.patch new file mode 100644 index 0000000..36ad3d9 --- /dev/null +++ b/wxapt.makefile.patch @@ -0,0 +1,35 @@ +diff -up wxapt/Makefile.orig wxapt/Makefile +--- wxapt/Makefile.orig 2007-11-23 02:18:31.000000000 -0500 ++++ wxapt/Makefile 2009-01-14 10:29:28.000000000 -0500 +@@ -2,10 +2,12 @@ + + SHELL = /bin/sh + PROJECT = wxapt +-BINDIR = /usr/local/bin +-DOCDIR = /usr/local/share/doc/ ++BINDIR = /usr/bin ++DOCDIR = /usr/share/doc/ + CC = gcc -Wall -O2 -march=native + ++DESTDIR= ++ + objects = image.o sound.o wxapt.o + + $(PROJECT) : $(objects) +@@ -14,13 +16,10 @@ $(PROJECT) : $(objects) + $(objects) : $(PROJECT).h + + install : $(PROJECT) +- install -m 755 --strip $(PROJECT) $(BINDIR) +- install -m 644 doc/$(PROJECT).html $(DOCDIR) +- ++ install -D -m 755 $(PROJECT) $(DESTDIR)$(BINDIR)/$(PROJECT) + uninstall : +- rm $(BINDIR)/$(PROJECT) +- rm $(DOCDIR)/$(PROJECT).html +- ++ rm $(DESTDIR)$(BINDIR)/$(PROJECT) ++ rm $(DESTDIR)$(DOCDIR)/$(PROJECT).html + clean : + rm -f *.o *~ + diff --git a/wxapt.spec b/wxapt.spec index 9314066..1510db4 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,16 +1,19 @@ Name: wxapt Version: 1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications License: GPLv2+ URL: http://5b4az.chronos.org.uk/pages/apt.html Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz +Patch0: wxapt.makefile.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel -#Requires: +#Requires: +#ExcludeArch: PPC +#ExcludeArch: PPC64 %description wxapt is a console application for decoding and saving weather images @@ -18,7 +21,9 @@ transmitted in the APT format of NOAA and METEOR satellites. %prep %setup -qn %{name} - +%patch0 -p1 -b makefile.patch +#fix CFLAG from upstream +sed -i -e 's/-march=native//g' Makefile %build make CFLAGS="%{optflags}" %{?_smp_mflags} @@ -40,6 +45,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-3 +- Makefile patch change dir from /usr/local to /usr +- Build for ppc and ppc64 previously failed + * Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-2 - mock build F9/10/devel - rpmlint 3 packages and 1 specfiles checked; 0 errors, 0 warnings. From 9400115289ea8a24ee8d64ee1a0878e631bd2067 Mon Sep 17 00:00:00 2001 From: Randall 'Randy' Berry Date: Fri, 16 Jan 2009 04:03:34 +0000 Subject: [PATCH 04/47] Second build F10 --- .cvsignore | 1 + sources | 1 + wxapt.makefile.patch | 35 +++++++++++++++++++++++++ wxapt.spec | 61 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 wxapt.makefile.patch create mode 100644 wxapt.spec diff --git a/.cvsignore b/.cvsignore index e69de29..00440ed 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wxapt-1.3.tar.gz diff --git a/sources b/sources index e69de29..dc03835 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +04bc342743af558cd7f95c62ce4a84bc wxapt-1.3.tar.gz diff --git a/wxapt.makefile.patch b/wxapt.makefile.patch new file mode 100644 index 0000000..36ad3d9 --- /dev/null +++ b/wxapt.makefile.patch @@ -0,0 +1,35 @@ +diff -up wxapt/Makefile.orig wxapt/Makefile +--- wxapt/Makefile.orig 2007-11-23 02:18:31.000000000 -0500 ++++ wxapt/Makefile 2009-01-14 10:29:28.000000000 -0500 +@@ -2,10 +2,12 @@ + + SHELL = /bin/sh + PROJECT = wxapt +-BINDIR = /usr/local/bin +-DOCDIR = /usr/local/share/doc/ ++BINDIR = /usr/bin ++DOCDIR = /usr/share/doc/ + CC = gcc -Wall -O2 -march=native + ++DESTDIR= ++ + objects = image.o sound.o wxapt.o + + $(PROJECT) : $(objects) +@@ -14,13 +16,10 @@ $(PROJECT) : $(objects) + $(objects) : $(PROJECT).h + + install : $(PROJECT) +- install -m 755 --strip $(PROJECT) $(BINDIR) +- install -m 644 doc/$(PROJECT).html $(DOCDIR) +- ++ install -D -m 755 $(PROJECT) $(DESTDIR)$(BINDIR)/$(PROJECT) + uninstall : +- rm $(BINDIR)/$(PROJECT) +- rm $(DOCDIR)/$(PROJECT).html +- ++ rm $(DESTDIR)$(BINDIR)/$(PROJECT) ++ rm $(DESTDIR)$(DOCDIR)/$(PROJECT).html + clean : + rm -f *.o *~ + diff --git a/wxapt.spec b/wxapt.spec new file mode 100644 index 0000000..1510db4 --- /dev/null +++ b/wxapt.spec @@ -0,0 +1,61 @@ +Name: wxapt +Version: 1.3 +Release: 3%{?dist} +Summary: Console application for decoding and saving weather images + +Group: Applications/Communications +License: GPLv2+ +URL: http://5b4az.chronos.org.uk/pages/apt.html +Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz +Patch0: wxapt.makefile.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: ncurses-devel +#Requires: +#ExcludeArch: PPC +#ExcludeArch: PPC64 + +%description +wxapt is a console application for decoding and saving weather images +transmitted in the APT format of NOAA and METEOR satellites. + +%prep +%setup -qn %{name} +%patch0 -p1 -b makefile.patch +#fix CFLAG from upstream +sed -i -e 's/-march=native//g' Makefile + +%build +make CFLAGS="%{optflags}" %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +#skip make install and do manual install, it's just one file +install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} +#skip .desktop file as this is a command line application + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc AUTHORS README +%{_bindir}/* + + +%changelog +* Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-3 +- Makefile patch change dir from /usr/local to /usr +- Build for ppc and ppc64 previously failed + +* Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-2 +- mock build F9/10/devel +- rpmlint 3 packages and 1 specfiles checked; 0 errors, 0 warnings. +- Submit for review + +* Sun Sep 21 2008 Randall J. Berry 'Dp67' 1.3-1 +- Build test for f9 + +* Sun Mar 02 2008 Sindre Pedersen Bjordal - 1.3-1 +- Initial build From 2c2c81c09a607f99f024d370fc436537c2635614 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 07:28:24 +0000 Subject: [PATCH 05/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 1510db4..0ee5dd5 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Jan 14 2009 Randall J. Berry 'Dp67' 1.3-3 - Makefile patch change dir from /usr/local to /usr - Build for ppc and ppc64 previously failed From a96aad2ba84043b71f72acd372ef91e6d85c46d7 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:31:32 +0000 Subject: [PATCH 06/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 0ee5dd5..1dc212b 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 4a9429bc20cede212bca72c901a3c4887fe97035 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:17 +0000 Subject: [PATCH 07/47] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dfc35ca..6b64802 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wxapt SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From d98b8cfffdf6e113f0f0fbb109814c2f4db51607 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:19:28 +0000 Subject: [PATCH 08/47] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dfc35ca..6b64802 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wxapt SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 07124711789c10edb767e5567c8e5b2336282b9b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:29:29 +0000 Subject: [PATCH 09/47] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 2 -- 3 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 6b64802..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wxapt -# $Id$ -NAME := wxapt -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index d220c7b..0000000 --- a/import.log +++ /dev/null @@ -1,2 +0,0 @@ -wxapt-1_3-2_fc10:HEAD:wxapt-1.3-2.fc10.src.rpm:1232075409 -wxapt-1_3-3_fc10:HEAD:wxapt-1.3-3.fc10.src.rpm:1232077758 From a8d5caadf7a0fde00037f177f4440ea9c6ac9ebd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:29:29 +0000 Subject: [PATCH 10/47] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 6b64802..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wxapt -# $Id$ -NAME := wxapt -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index dc32377..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-10 From 6e3e6a94aa648790c8ebdfb6b706e57e36162ddc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 21:22:14 -0600 Subject: [PATCH 11/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 1dc212b..143b75b 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 842d6bcc12baf4d0da3b8726dc9e2347b0909b03 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:33:02 -0600 Subject: [PATCH 12/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 143b75b..f2b7d64 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 1.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 5b41880e6e32f754509913bc688a5a8dddd2ef4f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 23:11:56 -0500 Subject: [PATCH 13/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index f2b7d64..2c21fad 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From acdadcef15eb6a32c3cdecbe873dba7bbd3f120e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:22:24 -0600 Subject: [PATCH 14/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 2c21fad..264f9ab 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 1.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 1.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From ec516b92a76b54bf3045ed2b0c9dc5f129528100 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 02:25:09 -0500 Subject: [PATCH 15/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 264f9ab..2e70421 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 1.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From b0aa9f98f73a0cf7d8f082567cfba7d0b5f79e7d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:02:07 -0500 Subject: [PATCH 16/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 2e70421..fb8cf53 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 1.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 3df53a96c8b12931f41a50d703d17bb94b4ab8cc Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 09:02:11 +0000 Subject: [PATCH 17/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index fb8cf53..d11a4f2 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 1.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 453fe773bfe6bd30719fc2a5a358d462ef20246b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:39:34 +0000 Subject: [PATCH 18/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index d11a4f2..a558d37 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 1.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 1.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 2c2ec3ef069ed5b24cfde30ef9aff65f17c187d2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:12:45 +0000 Subject: [PATCH 19/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index a558d37..1295f97 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 1.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 1.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 10f066f6945c282057ee60ce3c1129c461105f90 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:35:28 +0000 Subject: [PATCH 20/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 1295f97..9205f70 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 1.3-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From ad06ae6fa133f715b5758c3cdb05329c6bc15350 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:49:15 +0000 Subject: [PATCH 21/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 9205f70..12bfdac 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.3-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From c0e6925cb5ce3da1815f2a57548c7e0234de3a30 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:24:54 +0000 Subject: [PATCH 22/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 12bfdac..29e6212 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.3-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 4ef0b84a366fe08acfb6902855703b84ad12f69a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:14:30 +0000 Subject: [PATCH 23/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 29e6212..6e9d6dc 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.3-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.3-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 7f4ea755d3df6c7656edf5e98c3cce0822bb8908 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:49:43 +0100 Subject: [PATCH 24/47] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- wxapt.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 6e9d6dc..6fdefb6 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -8,7 +8,6 @@ License: GPLv2+ URL: http://5b4az.chronos.org.uk/pages/apt.html Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz Patch0: wxapt.makefile.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel #Requires: From ca5c3c977c47a5ebb68daa86578e8dc9eb910856 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:59:45 +0100 Subject: [PATCH 25/47] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- wxapt.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/wxapt.spec b/wxapt.spec index 6fdefb6..9d8339e 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -33,9 +33,6 @@ rm -rf $RPM_BUILD_ROOT install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} #skip .desktop file as this is a command line application -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) From 96dfed8260de6bed5797a3d76bca11c53a8d7bbe Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:40:47 -0500 Subject: [PATCH 26/47] Remove needless use of %defattr --- wxapt.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 9d8339e..ea2112f 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -35,7 +35,6 @@ install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} %files -%defattr(-,root,root,-) %doc AUTHORS README %{_bindir}/* From 35111a02e5d1ecc2532439e1791e469f9d7eb69f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:02:40 +0000 Subject: [PATCH 27/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index ea2112f..54e4713 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -40,6 +40,9 @@ install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.3-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.3-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 5fc96e67bde0e9012c26bae967de569885aa1e30 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 24 Jul 2018 16:20:05 +0200 Subject: [PATCH 28/47] Add missing BuildRequires on gcc make: gcc: Command not found References: https://bugzilla.redhat.com/show_bug.cgi?id=1606712 Signed-off-by: Igor Gnatenko --- wxapt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/wxapt.spec b/wxapt.spec index 54e4713..301a516 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -9,6 +9,7 @@ URL: http://5b4az.chronos.org.uk/pages/apt.html Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz Patch0: wxapt.makefile.patch +BuildRequires: gcc BuildRequires: ncurses-devel #Requires: #ExcludeArch: PPC From 77c334bc656db2a3cd36ff5126ad428688d13042 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:30 +0100 Subject: [PATCH 29/47] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- wxapt.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 301a516..74be6bf 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -3,7 +3,6 @@ Version: 1.3 Release: 19%{?dist} Summary: Console application for decoding and saving weather images -Group: Applications/Communications License: GPLv2+ URL: http://5b4az.chronos.org.uk/pages/apt.html Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz From 9dbd80789e3877ea973ee70bdb9d83034120f611 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:00:45 +0000 Subject: [PATCH 30/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 74be6bf..861cc0e 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -40,6 +40,9 @@ install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 1.3-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.3-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 4ff56cfc247779aaca16dc1b69ca38e99d5688fc Mon Sep 17 00:00:00 2001 From: Richard Shaw Date: Tue, 5 Mar 2019 08:53:57 -0600 Subject: [PATCH 31/47] Update to 1.7.1. --- .gitignore | 1 + sources | 2 +- wxapt.makefile.patch | 35 ----------------------------------- wxapt.spec | 39 +++++++++++++++++++++------------------ 4 files changed, 23 insertions(+), 54 deletions(-) delete mode 100644 wxapt.makefile.patch diff --git a/.gitignore b/.gitignore index 00440ed..b504ebe 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ wxapt-1.3.tar.gz +/wxapt-1.7.1.tar.bz2 diff --git a/sources b/sources index dc03835..f5f6edb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -04bc342743af558cd7f95c62ce4a84bc wxapt-1.3.tar.gz +SHA512 (wxapt-1.7.1.tar.bz2) = 7faefbcae6e411ade931ee2103aac85338811048e773e131d6b9a1d8a62012d6800b8bdfab80a25ce46a4498f6d4b34cbd334e88d838f872a73d704b1b539501 diff --git a/wxapt.makefile.patch b/wxapt.makefile.patch deleted file mode 100644 index 36ad3d9..0000000 --- a/wxapt.makefile.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff -up wxapt/Makefile.orig wxapt/Makefile ---- wxapt/Makefile.orig 2007-11-23 02:18:31.000000000 -0500 -+++ wxapt/Makefile 2009-01-14 10:29:28.000000000 -0500 -@@ -2,10 +2,12 @@ - - SHELL = /bin/sh - PROJECT = wxapt --BINDIR = /usr/local/bin --DOCDIR = /usr/local/share/doc/ -+BINDIR = /usr/bin -+DOCDIR = /usr/share/doc/ - CC = gcc -Wall -O2 -march=native - -+DESTDIR= -+ - objects = image.o sound.o wxapt.o - - $(PROJECT) : $(objects) -@@ -14,13 +16,10 @@ $(PROJECT) : $(objects) - $(objects) : $(PROJECT).h - - install : $(PROJECT) -- install -m 755 --strip $(PROJECT) $(BINDIR) -- install -m 644 doc/$(PROJECT).html $(DOCDIR) -- -+ install -D -m 755 $(PROJECT) $(DESTDIR)$(BINDIR)/$(PROJECT) - uninstall : -- rm $(BINDIR)/$(PROJECT) -- rm $(DOCDIR)/$(PROJECT).html -- -+ rm $(DESTDIR)$(BINDIR)/$(PROJECT) -+ rm $(DESTDIR)$(DOCDIR)/$(PROJECT).html - clean : - rm -f *.o *~ - diff --git a/wxapt.spec b/wxapt.spec index 861cc0e..c18447f 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,45 +1,48 @@ Name: wxapt -Version: 1.3 -Release: 20%{?dist} +Version: 1.7.1 +Release: 1%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ -URL: http://5b4az.chronos.org.uk/pages/apt.html -Source0: http://5b4az.chronos.org.uk/pkg/apt/wxapt/%{name}-%{version}.tar.gz -Patch0: wxapt.makefile.patch +URL: http://www.5b4az.org/ +Source0: http://www.5b4az.org/pkg/apt/wxapt/%{name}-%{version}.tar.bz2 BuildRequires: gcc +BuildRequires: autoconf automake libtool gettext +BuildRequires: alsa-lib-devel BuildRequires: ncurses-devel -#Requires: -#ExcludeArch: PPC -#ExcludeArch: PPC64 +BuildRequires: rtl-sdr-devel %description wxapt is a console application for decoding and saving weather images transmitted in the APT format of NOAA and METEOR satellites. %prep -%setup -qn %{name} -%patch0 -p1 -b makefile.patch -#fix CFLAG from upstream -sed -i -e 's/-march=native//g' Makefile +%autosetup -p1 +autoreconf -fiv + %build -make CFLAGS="%{optflags}" %{?_smp_mflags} +%configure +%make_build + %install -rm -rf $RPM_BUILD_ROOT #skip make install and do manual install, it's just one file -install -D -m 0755 wxapt $RPM_BUILD_ROOT%{_bindir}/%{name} -#skip .desktop file as this is a command line application +mkdir -p %{buildroot}%{_bindir} +install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %files -%doc AUTHORS README -%{_bindir}/* +%doc AUTHORS NEWS README doc/*.html +%license COPYING LICENSE +%{_bindir}/%{name} %changelog +* Tue Mar 05 2019 Richard Shaw - 1.7.1-1 +- Update to 1.7.1. + * Sun Feb 03 2019 Fedora Release Engineering - 1.3-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From b6119841dd70d71baf2111ceb03e5c70fee86f02 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:47:43 +0000 Subject: [PATCH 32/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index c18447f..11544bc 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -40,6 +40,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 1.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Tue Mar 05 2019 Richard Shaw - 1.7.1-1 - Update to 1.7.1. From f5360eeecf9655c804a41da714a42684cb002b63 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:01:17 +0000 Subject: [PATCH 33/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 11544bc..97e5e74 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -40,6 +40,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 1.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 27a949dcaacded6ce6c67726eed73c94963e8122 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:23:33 +0000 Subject: [PATCH 34/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 97e5e74..dd02837 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -40,6 +40,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 1.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 0eda4f79409ed7a0bac8c3eee0b122fef066ac11 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:03:29 +0000 Subject: [PATCH 35/47] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- wxapt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/wxapt.spec b/wxapt.spec index dd02837..ef27dda 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -7,6 +7,7 @@ License: GPLv2+ URL: http://www.5b4az.org/ Source0: http://www.5b4az.org/pkg/apt/wxapt/%{name}-%{version}.tar.bz2 +BuildRequires: make BuildRequires: gcc BuildRequires: autoconf automake libtool gettext BuildRequires: alsa-lib-devel From bbaa45617b0567d888b0a09dbc3e207a62acf56b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:44:07 +0000 Subject: [PATCH 36/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index ef27dda..b5ea25d 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.7.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From be08c4260b93a3af7bb33a0a88d24a0fc353e9db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:12:47 +0000 Subject: [PATCH 37/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index b5ea25d..760293d 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.7.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.7.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From b56c9700a5150a746b0f04fb09042427e4ae6f86 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:44:24 +0000 Subject: [PATCH 38/47] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 760293d..a0838ca 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 1.7.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 1.7.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 6377e65d47c4ad4ca950cd9740b69a7243ff994f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:42:30 +0000 Subject: [PATCH 39/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index a0838ca..c14406e 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.7.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 1.7.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From f39ec05aac1acc111c739fa176d80f69badf1a9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:04:18 +0000 Subject: [PATCH 40/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index c14406e..3ed5fa3 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.7.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 1.7.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 0c35439aa1f696247b46524823f32fa53b5039b8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:26:53 +0000 Subject: [PATCH 41/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 3ed5fa3..2bf0edf 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 1.7.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 1.7.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 8864c79ae553299d6728d1fefa05fdd2865feb75 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:14:10 +0000 Subject: [PATCH 42/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 2bf0edf..079ab14 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 1.7.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.7.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 855a1ece58061fea94907d5104b48d42ddff53c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 9 Apr 2024 15:28:21 +0200 Subject: [PATCH 43/47] Rebuilt for new rtl-sdr --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 079ab14..cbdf5eb 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Tue Apr 09 2024 Jaroslav Škarvada - 1.7.1-12 +- Rebuilt for new rtl-sdr + * Sat Jan 27 2024 Fedora Release Engineering - 1.7.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 2c134bee7835d2b04c6d51d91de28ff1cdd22258 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:37:08 +0000 Subject: [PATCH 44/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index cbdf5eb..fc7c0a7 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Console application for decoding and saving weather images License: GPLv2+ @@ -41,6 +41,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.7.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Tue Apr 09 2024 Jaroslav Škarvada - 1.7.1-12 - Rebuilt for new rtl-sdr From b60fb55adb3bbfe2942bf426fce8edf5b9d203e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 26 Jul 2024 03:43:48 +0200 Subject: [PATCH 45/47] convert GPLv2+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- wxapt.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wxapt.spec b/wxapt.spec index fc7c0a7..839d2eb 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,9 +1,10 @@ Name: wxapt Version: 1.7.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Console application for decoding and saving weather images -License: GPLv2+ +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later URL: http://www.5b4az.org/ Source0: http://www.5b4az.org/pkg/apt/wxapt/%{name}-%{version}.tar.bz2 @@ -41,6 +42,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Fri Jul 26 2024 Miroslav Suchý - 1.7.1-14 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 1.7.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 328337b5f75a397f80d9a64c07eac85875197223 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:19:48 +0000 Subject: [PATCH 46/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 839d2eb..74746dc 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Console application for decoding and saving weather images # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -42,6 +42,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.7.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 1.7.1-14 - convert license to SPDX From 08193a1edb71d9aba85140b32b3d6089fad3ff1c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:34:47 +0000 Subject: [PATCH 47/47] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- wxapt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxapt.spec b/wxapt.spec index 74746dc..c490e4e 100644 --- a/wxapt.spec +++ b/wxapt.spec @@ -1,6 +1,6 @@ Name: wxapt Version: 1.7.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Console application for decoding and saving weather images # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -42,6 +42,9 @@ install -pm 0755 src/%{name} %{buildroot}%{_bindir}/ %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.7.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 1.7.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild