From 4610ef006a8eb9dbd485539f7b01565ab6776c09 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 14 Apr 2009 16:09:13 +0000 Subject: [PATCH 01/56] Initialize branch EL-5 for xa --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From 62e3d484fae5c0df51654720f481041251f22cf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 14 Apr 2009 16:26:38 +0000 Subject: [PATCH 02/56] initial import --- .cvsignore | 1 + sources | 1 + xa-2.3.5-getline.patch | 30 ++++++++++++++++ xa-2.3.5-make.patch | 48 ++++++++++++++++++++++++++ xa.spec | 78 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 158 insertions(+) create mode 100644 xa-2.3.5-getline.patch create mode 100644 xa-2.3.5-make.patch create mode 100644 xa.spec diff --git a/.cvsignore b/.cvsignore index e69de29..dcfb9f3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xa-2.3.5.tar.gz diff --git a/sources b/sources index e69de29..03df594 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +edd15aa8674fb86225faf34e56d5cab2 xa-2.3.5.tar.gz diff --git a/xa-2.3.5-getline.patch b/xa-2.3.5-getline.patch new file mode 100644 index 0000000..92a1633 --- /dev/null +++ b/xa-2.3.5-getline.patch @@ -0,0 +1,30 @@ +diff -Nrup xa-2.3.5.orig/src/xa.c xa-2.3.5/src/xa.c +--- xa-2.3.5.orig/src/xa.c 2009-01-21 17:57:32.000000000 +0100 ++++ xa-2.3.5/src/xa.c 2009-03-31 16:47:33.000000000 +0200 +@@ -87,7 +87,7 @@ static int pass2(void); + static int puttmp(int); + static int puttmps(signed char *, int); + static void chrput(int); +-static int getline(char *); ++static int xgetline(char *); + static void lineout(void); + static long ga_p1(void); + static long gm_p1(void); +@@ -763,7 +763,7 @@ static int pass1(void) + temp_er = 0; + + /*FIXIT*/ +- while(!(er=getline(s))) ++ while(!(er=xgetline(s))) + { + er=t_p1((signed char*)s,o,&l,&al); + switch(segment) { +@@ -1002,7 +1002,7 @@ static int puttmps(signed char *s, int l + + static char l[MAXLINE]; + +-static int getline(char *s) ++static int xgetline(char *s) + { + static int ec; + diff --git a/xa-2.3.5-make.patch b/xa-2.3.5-make.patch new file mode 100644 index 0000000..692394b --- /dev/null +++ b/xa-2.3.5-make.patch @@ -0,0 +1,48 @@ +diff -Nup xa-2.3.5.orig/Makefile xa-2.3.5/Makefile +--- xa-2.3.5.orig/Makefile 2009-02-08 07:49:30.000000000 +0100 ++++ xa-2.3.5/Makefile 2009-04-02 11:18:47.000000000 +0200 +@@ -15,11 +15,12 @@ LDFLAGS = -lc + #CFLAGS = + #LD = ld + +-DESTDIR = /usr/local ++DESTDIR = ++PREFIX = /usr/local + +-BINDIR = $(DESTDIR)/bin +-MANDIR = $(DESTDIR)/share/man/man1 +-DOCDIR = $(DESTDIR)/share/doc ++BINDIR = $(DESTDIR)$(PREFIX)/bin ++MANDIR = $(DESTDIR)$(PREFIX)/share/man/man1 ++DOCDIR = $(DESTDIR)$(PREFIX)/share/doc + + MKDIR = mkdir -p + INSTALL = install +@@ -27,13 +28,13 @@ INSTALL = install + all: xa uncpk + + xa: +- (cd src && LD=${LD} CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd src && LD=${LD} CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + load: +- (cd loader && CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd loader && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + uncpk: +- (cd misc && CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd misc && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + dos: clean + (cd src && LD=gcc-go32 CC=gcc-go32 CFLAGS="-W -Wall -pedantic" ${MAKE}) +@@ -53,8 +54,8 @@ clean: + install: xa uncpk + $(MKDIR) $(BINDIR) + $(MKDIR) $(MANDIR) +- $(INSTALL) xa reloc65 ldo65 file65 printcbm uncpk $(BINDIR) +- $(INSTALL) man/file65.1 man/ldo65.1 man/printcbm.1 man/reloc65.1 man/uncpk.1 man/xa.1 $(MANDIR) ++ $(INSTALL) -m 0755 xa reloc65 ldo65 file65 printcbm uncpk $(BINDIR) ++ $(INSTALL) -m 0644 man/file65.1 man/ldo65.1 man/printcbm.1 man/reloc65.1 man/uncpk.1 man/xa.1 $(MANDIR) + #$(MKDIR) $(DOCDIR)/xa65 + + dist: clean diff --git a/xa.spec b/xa.spec new file mode 100644 index 0000000..c759efc --- /dev/null +++ b/xa.spec @@ -0,0 +1,78 @@ +Name: xa +Version: 2.3.5 +Release: 3%{?dist} +Summary: 6502/65816 cross-assembler + +Group: Development/Tools +License: GPLv2+ +URL: http://www.floodgap.com/retrotech/xa/ +Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz +# fix conflict with recent glibc, reported in private email +Patch0: %{name}-2.3.5-getline.patch +# update the build system, reported in private email +Patch1: %{name}-2.3.5-make.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + + +%description +xa is a high-speed, two-pass portable cross-assembler. It understands +mnemonics and generates code for NMOS 6502s (such as 6502A, 6504, 6507, +6510, 7501, 8500, 8501, 8502 ...), CMOS 6502s (65C02 and Rockwell R65C02) +and the 65816. + +Key amongst its features: + + * C-like preprocessor (and understands cpp for additional feature support) + * rich expression syntax and pseudo-op vocabulary + * multiple character sets + * binary linking + * supports o65 relocatable objects with a full linker and relocation suite, + as well as "bare" plain binary object files + * block structure for label scoping + + +%prep +%setup -q +%patch0 -p1 -b .getline +%patch1 -p1 -b .make + +# fix encoding +for f in ChangeLog +do + iconv -f ISO-8859-1 -t UTF-8 < $f > $f.new + touch -r $f $f.new + mv $f.new $f +done + + +%build +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING ChangeLog README.1st doc/xa.txt +%{_bindir}/* +%{_mandir}/man1/* + + +%changelog +* Tue Apr 14 2009 Dan Horák - 2.3.5-3 +- move the INSTALL override to "make install" +- comment the patches + +* Tue Mar 31 2009 Dan Horák - 2.3.5-2 +- don't use hardcoded /usr +- preserve timestamps when using "install" + +* Sat Feb 21 2009 Dan Horák - 2.3.5-1 +- initial Fedora version From 8dfe9c6fe29a435d4065e9693048fbb94d9cf7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Wed, 15 Apr 2009 07:45:44 +0000 Subject: [PATCH 03/56] initial import --- .cvsignore | 1 + sources | 1 + xa-2.3.5-getline.patch | 30 ++++++++++++++++ xa-2.3.5-make.patch | 48 ++++++++++++++++++++++++++ xa.spec | 78 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 158 insertions(+) create mode 100644 xa-2.3.5-getline.patch create mode 100644 xa-2.3.5-make.patch create mode 100644 xa.spec diff --git a/.cvsignore b/.cvsignore index e69de29..dcfb9f3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xa-2.3.5.tar.gz diff --git a/sources b/sources index e69de29..03df594 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +edd15aa8674fb86225faf34e56d5cab2 xa-2.3.5.tar.gz diff --git a/xa-2.3.5-getline.patch b/xa-2.3.5-getline.patch new file mode 100644 index 0000000..92a1633 --- /dev/null +++ b/xa-2.3.5-getline.patch @@ -0,0 +1,30 @@ +diff -Nrup xa-2.3.5.orig/src/xa.c xa-2.3.5/src/xa.c +--- xa-2.3.5.orig/src/xa.c 2009-01-21 17:57:32.000000000 +0100 ++++ xa-2.3.5/src/xa.c 2009-03-31 16:47:33.000000000 +0200 +@@ -87,7 +87,7 @@ static int pass2(void); + static int puttmp(int); + static int puttmps(signed char *, int); + static void chrput(int); +-static int getline(char *); ++static int xgetline(char *); + static void lineout(void); + static long ga_p1(void); + static long gm_p1(void); +@@ -763,7 +763,7 @@ static int pass1(void) + temp_er = 0; + + /*FIXIT*/ +- while(!(er=getline(s))) ++ while(!(er=xgetline(s))) + { + er=t_p1((signed char*)s,o,&l,&al); + switch(segment) { +@@ -1002,7 +1002,7 @@ static int puttmps(signed char *s, int l + + static char l[MAXLINE]; + +-static int getline(char *s) ++static int xgetline(char *s) + { + static int ec; + diff --git a/xa-2.3.5-make.patch b/xa-2.3.5-make.patch new file mode 100644 index 0000000..692394b --- /dev/null +++ b/xa-2.3.5-make.patch @@ -0,0 +1,48 @@ +diff -Nup xa-2.3.5.orig/Makefile xa-2.3.5/Makefile +--- xa-2.3.5.orig/Makefile 2009-02-08 07:49:30.000000000 +0100 ++++ xa-2.3.5/Makefile 2009-04-02 11:18:47.000000000 +0200 +@@ -15,11 +15,12 @@ LDFLAGS = -lc + #CFLAGS = + #LD = ld + +-DESTDIR = /usr/local ++DESTDIR = ++PREFIX = /usr/local + +-BINDIR = $(DESTDIR)/bin +-MANDIR = $(DESTDIR)/share/man/man1 +-DOCDIR = $(DESTDIR)/share/doc ++BINDIR = $(DESTDIR)$(PREFIX)/bin ++MANDIR = $(DESTDIR)$(PREFIX)/share/man/man1 ++DOCDIR = $(DESTDIR)$(PREFIX)/share/doc + + MKDIR = mkdir -p + INSTALL = install +@@ -27,13 +28,13 @@ INSTALL = install + all: xa uncpk + + xa: +- (cd src && LD=${LD} CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd src && LD=${LD} CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + load: +- (cd loader && CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd loader && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + uncpk: +- (cd misc && CC="${CC} ${CFLAGS}" ${MAKE}) ++ (cd misc && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) + + dos: clean + (cd src && LD=gcc-go32 CC=gcc-go32 CFLAGS="-W -Wall -pedantic" ${MAKE}) +@@ -53,8 +54,8 @@ clean: + install: xa uncpk + $(MKDIR) $(BINDIR) + $(MKDIR) $(MANDIR) +- $(INSTALL) xa reloc65 ldo65 file65 printcbm uncpk $(BINDIR) +- $(INSTALL) man/file65.1 man/ldo65.1 man/printcbm.1 man/reloc65.1 man/uncpk.1 man/xa.1 $(MANDIR) ++ $(INSTALL) -m 0755 xa reloc65 ldo65 file65 printcbm uncpk $(BINDIR) ++ $(INSTALL) -m 0644 man/file65.1 man/ldo65.1 man/printcbm.1 man/reloc65.1 man/uncpk.1 man/xa.1 $(MANDIR) + #$(MKDIR) $(DOCDIR)/xa65 + + dist: clean diff --git a/xa.spec b/xa.spec new file mode 100644 index 0000000..c759efc --- /dev/null +++ b/xa.spec @@ -0,0 +1,78 @@ +Name: xa +Version: 2.3.5 +Release: 3%{?dist} +Summary: 6502/65816 cross-assembler + +Group: Development/Tools +License: GPLv2+ +URL: http://www.floodgap.com/retrotech/xa/ +Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz +# fix conflict with recent glibc, reported in private email +Patch0: %{name}-2.3.5-getline.patch +# update the build system, reported in private email +Patch1: %{name}-2.3.5-make.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + + +%description +xa is a high-speed, two-pass portable cross-assembler. It understands +mnemonics and generates code for NMOS 6502s (such as 6502A, 6504, 6507, +6510, 7501, 8500, 8501, 8502 ...), CMOS 6502s (65C02 and Rockwell R65C02) +and the 65816. + +Key amongst its features: + + * C-like preprocessor (and understands cpp for additional feature support) + * rich expression syntax and pseudo-op vocabulary + * multiple character sets + * binary linking + * supports o65 relocatable objects with a full linker and relocation suite, + as well as "bare" plain binary object files + * block structure for label scoping + + +%prep +%setup -q +%patch0 -p1 -b .getline +%patch1 -p1 -b .make + +# fix encoding +for f in ChangeLog +do + iconv -f ISO-8859-1 -t UTF-8 < $f > $f.new + touch -r $f $f.new + mv $f.new $f +done + + +%build +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING ChangeLog README.1st doc/xa.txt +%{_bindir}/* +%{_mandir}/man1/* + + +%changelog +* Tue Apr 14 2009 Dan Horák - 2.3.5-3 +- move the INSTALL override to "make install" +- comment the patches + +* Tue Mar 31 2009 Dan Horák - 2.3.5-2 +- don't use hardcoded /usr +- preserve timestamps when using "install" + +* Sat Feb 21 2009 Dan Horák - 2.3.5-1 +- initial Fedora version From e9a69c8fef6e6c613da11b61f52b0053f6189c8d Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:33:15 +0000 Subject: [PATCH 04/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index c759efc..d6968cc 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Dan Horák - 2.3.5-3 - move the INSTALL override to "make install" - comment the patches From 51fe76bb0c9a7810039a6f31353c6fb50c2a2aee Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:53 +0000 Subject: [PATCH 05/56] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ec5624..a884e95 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xa -# $Id$ +# $Id: Makefile,v 1.1 2009/04/14 16:09:05 kevin Exp $ NAME := xa 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 42fe883652714f7a22a5bd378a837c4ab0c41d25 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:28:46 +0000 Subject: [PATCH 06/56] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ec5624..a884e95 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xa -# $Id$ +# $Id: Makefile,v 1.1 2009/04/14 16:09:05 kevin Exp $ NAME := xa 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 91e9136b7ebede1cec9d8748a4f0e87d5a16aa3c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:30:50 +0000 Subject: [PATCH 07/56] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile 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 a884e95..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xa -# $Id: Makefile,v 1.1 2009/04/14 16:09:05 kevin Exp $ -NAME := xa -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) From 114837d5ebda5f9e6c6b463afc4c3d94585cc65f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:30:50 +0000 Subject: [PATCH 08/56] 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 a884e95..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xa -# $Id: Makefile,v 1.1 2009/04/14 16:09:05 kevin Exp $ -NAME := xa -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 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 From c490ca9291f1cb8bca0671ceb72edf2c3a8b54ab Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 21:27:01 -0600 Subject: [PATCH 09/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index d6968cc..971c541 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 2.3.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 2.3.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From c87608b3c82273ce47dddd748cbb24c1338d9a1f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:34:41 -0600 Subject: [PATCH 10/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 971c541..46a0053 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 2.3.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 2.3.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From cdac241be6c928f463718508851efb6c8b9ce389 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 23:15:50 -0500 Subject: [PATCH 11/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 46a0053..8b42722 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 2.3.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 2.3.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 1fcafbecc316486bd123370c43416a86411a2f95 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:24:20 -0600 Subject: [PATCH 12/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 8b42722..64eeb4b 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 2.3.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 2.3.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From ba00a10a2d6e70b84ee4fed464e5351ceaca4ad6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 02:29:28 -0500 Subject: [PATCH 13/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 64eeb4b..c578cc9 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 2.3.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 2.3.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 9e05f674e5bed72732c2f812ebe5b9583cbced06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sun, 20 Apr 2014 12:11:38 +0200 Subject: [PATCH 14/56] - spec cleanup --- xa.spec | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/xa.spec b/xa.spec index c578cc9..fe3f06f 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -11,7 +11,6 @@ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{versio Patch0: %{name}-2.3.5-getline.patch # update the build system, reported in private email Patch1: %{name}-2.3.5-make.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -50,22 +49,19 @@ make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install -rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" -%clean -rm -rf $RPM_BUILD_ROOT - - %files -%defattr(-,root,root,-) %doc COPYING ChangeLog README.1st doc/xa.txt %{_bindir}/* %{_mandir}/man1/* %changelog +* Sun Apr 20 2014 Dan Horák - 2.3.5-10 +- spec cleanup + * Sun Aug 04 2013 Fedora Release Engineering - 2.3.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 63b0992794c8f75271160efad6613ee0df7b6e70 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:07:22 -0500 Subject: [PATCH 15/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index fe3f06f..0692d85 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -59,6 +59,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 2.3.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Apr 20 2014 Dan Horák - 2.3.5-10 - spec cleanup From 27b8ddb5177ff12d338f2bde3a8282b4e3627799 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 09:08:45 +0000 Subject: [PATCH 16/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 0692d85..727c31f 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -59,6 +59,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 2.3.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 2.3.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 5459bfe97b4593dc579cdd1c8d2ecbc9590ae997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 17 Nov 2014 23:28:48 +0100 Subject: [PATCH 17/56] - updated to version 2.3.6 --- .gitignore | 1 + sources | 2 +- xa-2.3.5-getline.patch | 30 ------------------------------ xa.spec | 18 +++++++++--------- 4 files changed, 11 insertions(+), 40 deletions(-) delete mode 100644 xa-2.3.5-getline.patch diff --git a/.gitignore b/.gitignore index dcfb9f3..6370fcb 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ xa-2.3.5.tar.gz +/xa-2.3.6.tar.gz diff --git a/sources b/sources index 03df594..56aaa8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -edd15aa8674fb86225faf34e56d5cab2 xa-2.3.5.tar.gz +6e7ee302fc4cd8de3bf7f07abb336aca xa-2.3.6.tar.gz diff --git a/xa-2.3.5-getline.patch b/xa-2.3.5-getline.patch deleted file mode 100644 index 92a1633..0000000 --- a/xa-2.3.5-getline.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -Nrup xa-2.3.5.orig/src/xa.c xa-2.3.5/src/xa.c ---- xa-2.3.5.orig/src/xa.c 2009-01-21 17:57:32.000000000 +0100 -+++ xa-2.3.5/src/xa.c 2009-03-31 16:47:33.000000000 +0200 -@@ -87,7 +87,7 @@ static int pass2(void); - static int puttmp(int); - static int puttmps(signed char *, int); - static void chrput(int); --static int getline(char *); -+static int xgetline(char *); - static void lineout(void); - static long ga_p1(void); - static long gm_p1(void); -@@ -763,7 +763,7 @@ static int pass1(void) - temp_er = 0; - - /*FIXIT*/ -- while(!(er=getline(s))) -+ while(!(er=xgetline(s))) - { - er=t_p1((signed char*)s,o,&l,&al); - switch(segment) { -@@ -1002,7 +1002,7 @@ static int puttmps(signed char *s, int l - - static char l[MAXLINE]; - --static int getline(char *s) -+static int xgetline(char *s) - { - static int ec; - diff --git a/xa.spec b/xa.spec index 727c31f..21e006b 100644 --- a/xa.spec +++ b/xa.spec @@ -1,16 +1,14 @@ Name: xa -Version: 2.3.5 -Release: 12%{?dist} +Version: 2.3.6 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools License: GPLv2+ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz -# fix conflict with recent glibc, reported in private email -Patch0: %{name}-2.3.5-getline.patch # update the build system, reported in private email -Patch1: %{name}-2.3.5-make.patch +Patch0: %{name}-2.3.5-make.patch %description @@ -32,11 +30,10 @@ Key amongst its features: %prep %setup -q -%patch0 -p1 -b .getline -%patch1 -p1 -b .make +%patch0 -p1 -b .make # fix encoding -for f in ChangeLog +for f in ChangeLog doc/fileformat.txt do iconv -f ISO-8859-1 -t UTF-8 < $f > $f.new touch -r $f $f.new @@ -53,12 +50,15 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %files -%doc COPYING ChangeLog README.1st doc/xa.txt +%doc COPYING ChangeLog README.1st doc/fileformat.txt %{_bindir}/* %{_mandir}/man1/* %changelog +* Mon Nov 17 2014 Dan Horák - 2.3.6-1 +- updated to version 2.3.6 + * Mon Aug 18 2014 Fedora Release Engineering - 2.3.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From f70f234ed6eb65f2b0a9f015d43480c4afaecbb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sat, 3 Jan 2015 16:12:00 +0100 Subject: [PATCH 18/56] - updated to version 2.3.7 - enable test-suite --- xa-2.3.5-make.patch => xa-2.3.7-make.patch | 27 ++++------------------ xa.spec | 12 ++++++++-- 2 files changed, 15 insertions(+), 24 deletions(-) rename xa-2.3.5-make.patch => xa-2.3.7-make.patch (51%) diff --git a/xa-2.3.5-make.patch b/xa-2.3.7-make.patch similarity index 51% rename from xa-2.3.5-make.patch rename to xa-2.3.7-make.patch index 692394b..780d3bb 100644 --- a/xa-2.3.5-make.patch +++ b/xa-2.3.7-make.patch @@ -1,7 +1,7 @@ -diff -Nup xa-2.3.5.orig/Makefile xa-2.3.5/Makefile ---- xa-2.3.5.orig/Makefile 2009-02-08 07:49:30.000000000 +0100 -+++ xa-2.3.5/Makefile 2009-04-02 11:18:47.000000000 +0200 -@@ -15,11 +15,12 @@ LDFLAGS = -lc +diff -up xa-2.3.7/Makefile.make xa-2.3.7/Makefile +--- xa-2.3.7/Makefile.make 2014-12-27 19:45:21.000000000 +0100 ++++ xa-2.3.7/Makefile 2015-01-03 15:36:18.000000000 +0100 +@@ -17,11 +17,12 @@ LDFLAGS = -lc #CFLAGS = #LD = ld @@ -18,24 +18,7 @@ diff -Nup xa-2.3.5.orig/Makefile xa-2.3.5/Makefile MKDIR = mkdir -p INSTALL = install -@@ -27,13 +28,13 @@ INSTALL = install - all: xa uncpk - - xa: -- (cd src && LD=${LD} CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd src && LD=${LD} CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) - - load: -- (cd loader && CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd loader && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) - - uncpk: -- (cd misc && CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd misc && CC="${CC}" CFLAGS="${CFLAGS}" ${MAKE}) - - dos: clean - (cd src && LD=gcc-go32 CC=gcc-go32 CFLAGS="-W -Wall -pedantic" ${MAKE}) -@@ -53,8 +54,8 @@ clean: +@@ -58,8 +59,8 @@ clean: install: xa uncpk $(MKDIR) $(BINDIR) $(MKDIR) $(MANDIR) diff --git a/xa.spec b/xa.spec index 21e006b..1c64a21 100644 --- a/xa.spec +++ b/xa.spec @@ -1,5 +1,5 @@ Name: xa -Version: 2.3.6 +Version: 2.3.7 Release: 1%{?dist} Summary: 6502/65816 cross-assembler @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email -Patch0: %{name}-2.3.5-make.patch +Patch0: %{name}-2.3.7-make.patch %description @@ -45,6 +45,10 @@ done make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" +%check +make test + + %install make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" @@ -56,6 +60,10 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sat Jan 03 2015 Dan Horák - 2.3.7-1 +- updated to version 2.3.7 +- enable test-suite + * Mon Nov 17 2014 Dan Horák - 2.3.6-1 - updated to version 2.3.6 From 0af01d53f2637e95d813805f5d926c0b02490041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sat, 3 Jan 2015 16:55:13 +0100 Subject: [PATCH 19/56] upload new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6370fcb..a59620a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ xa-2.3.5.tar.gz /xa-2.3.6.tar.gz +/xa-2.3.7.tar.gz diff --git a/sources b/sources index 56aaa8a..eafa7ba 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6e7ee302fc4cd8de3bf7f07abb336aca xa-2.3.6.tar.gz +431468305f37aa971e945215f8856006 xa-2.3.7.tar.gz From a0f64a942143bdef58e982ef900b5728faa9e88a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 03:41:34 +0000 Subject: [PATCH 20/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 1c64a21..d9d9a54 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -60,6 +60,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 2.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jan 03 2015 Dan Horák - 2.3.7-1 - updated to version 2.3.7 - enable test-suite From 17d8bd3f4e5b802a9cdc511b31ad9f8fd2d48890 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:14:39 +0000 Subject: [PATCH 21/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index d9d9a54..b7ae199 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -60,6 +60,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 2.3.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 2.3.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 76d94139d839125ffc359ab43585cf311bd648e7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:37:24 +0000 Subject: [PATCH 22/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index b7ae199..74ae288 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -60,6 +60,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 2.3.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 2.3.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 1fe32cf546f9088b098339410acbdb9e1cff6e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 13 Feb 2017 17:17:24 +0100 Subject: [PATCH 23/56] add missing BR --- xa.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xa.spec b/xa.spec index 74ae288..b2ec07e 100644 --- a/xa.spec +++ b/xa.spec @@ -9,6 +9,8 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch +# Perl needed for test-suite +BuildRequires: perl-generators %description From 6636ef212d786b6e9f7c0a2bf32af33bbf9dda6b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:51:13 +0000 Subject: [PATCH 24/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index b2ec07e..8fd9249 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 2.3.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 2.3.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 291e4e3bc675160ba7159acba9c68ec3ce0b2362 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:26:41 +0000 Subject: [PATCH 25/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 8fd9249..5b12c34 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 2.3.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 2.3.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 539e1743d04419936082f0b96cc25bfce01d1cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Wed, 11 Oct 2017 23:20:37 +0200 Subject: [PATCH 26/56] - updated to version 2.3.8 --- .gitignore | 1 + sources | 2 +- xa.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a59620a..9d0342d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ xa-2.3.5.tar.gz /xa-2.3.6.tar.gz /xa-2.3.7.tar.gz +/xa-2.3.8.tar.gz diff --git a/sources b/sources index eafa7ba..d119063 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -431468305f37aa971e945215f8856006 xa-2.3.7.tar.gz +SHA512 (xa-2.3.8.tar.gz) = 8d53f17262d7e3cb15019e1199d3463bc38ed87cd506b3aa08f3cc1d6004b1ce2e7607054f51c7632483a1c4e9fd2777206a0f892663aff5cf6cbeb6e10063b4 diff --git a/xa.spec b/xa.spec index 5b12c34..3857517 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.7 -Release: 6%{?dist} +Version: 2.3.8 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Wed Oct 11 2017 Dan Horák - 2.3.8-1 +- updated to version 2.3.8 + * Thu Aug 03 2017 Fedora Release Engineering - 2.3.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 289b0fe8faee3ab119894d10c56a419b32b739f6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:17:15 +0000 Subject: [PATCH 27/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 3857517..90038d1 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 2.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Oct 11 2017 Dan Horák - 2.3.8-1 - updated to version 2.3.8 From 9d72008eddb08d74b1c5d4de0033c7cc928c3dc4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:04:26 +0000 Subject: [PATCH 28/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 90038d1..d7069e5 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 2.3.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 2.3.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From b59070560e51af985a203c158851e894c006c1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 16 Jul 2018 14:55:26 +0200 Subject: [PATCH 29/56] add BR: gcc --- xa.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xa.spec b/xa.spec index d7069e5..eec9b14 100644 --- a/xa.spec +++ b/xa.spec @@ -9,6 +9,7 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch +BuildRequires: gcc # Perl needed for test-suite BuildRequires: perl-generators From 65116989cbc0ca812f486fb99ef187ca7d33db8c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:30 +0100 Subject: [PATCH 30/56] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xa.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xa.spec b/xa.spec index eec9b14..24d1560 100644 --- a/xa.spec +++ b/xa.spec @@ -3,7 +3,6 @@ Version: 2.3.8 Release: 3%{?dist} Summary: 6502/65816 cross-assembler -Group: Development/Tools License: GPLv2+ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz From 592b6373ce2e5f381ce7e0251f9ed96fc0eacc26 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:03:53 +0000 Subject: [PATCH 31/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 24d1560..ffecc87 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 2.3.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 2.3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 07722a2dbc456b66ef7963cc6fbbdabd8caa9db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sat, 9 Feb 2019 16:53:47 +0100 Subject: [PATCH 32/56] - updated to version 2.3.9 --- .gitignore | 1 + sources | 2 +- xa.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9d0342d..18d61db 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ xa-2.3.5.tar.gz /xa-2.3.6.tar.gz /xa-2.3.7.tar.gz /xa-2.3.8.tar.gz +/xa-2.3.9.tar.gz diff --git a/sources b/sources index d119063..cf7128a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.8.tar.gz) = 8d53f17262d7e3cb15019e1199d3463bc38ed87cd506b3aa08f3cc1d6004b1ce2e7607054f51c7632483a1c4e9fd2777206a0f892663aff5cf6cbeb6e10063b4 +SHA512 (xa-2.3.9.tar.gz) = 9e140192f7daae8b5042a01c81c85f6ec4e53c727fa5af624fbe94a8ce85fbf821a1ee94dc9c11e8087b08a4060010b989f95b77cbcd2b550ab552c3b5455dfe diff --git a/xa.spec b/xa.spec index ffecc87..42ac266 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.8 -Release: 4%{?dist} +Version: 2.3.9 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sat Feb 09 2019 Dan Horák - 2.3.9-1 +- updated to version 2.3.9 + * Sun Feb 03 2019 Fedora Release Engineering - 2.3.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 637641fa24de7b7182575bb32a6c01c9fbec0a32 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:50:12 +0000 Subject: [PATCH 33/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 42ac266..b391d0f 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2.3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 09 2019 Dan Horák - 2.3.9-1 - updated to version 2.3.9 From 1228a12a885c4357946693428b28e7207065cc5c Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Tue, 28 Jan 2020 22:04:38 -0500 Subject: [PATCH 34/56] updated to 2.3.10 --- .gitignore | 1 + sources | 2 +- xa.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 18d61db..055f2a1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ xa-2.3.5.tar.gz /xa-2.3.7.tar.gz /xa-2.3.8.tar.gz /xa-2.3.9.tar.gz +/xa-2.3.10.tar.gz diff --git a/sources b/sources index cf7128a..705073a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.9.tar.gz) = 9e140192f7daae8b5042a01c81c85f6ec4e53c727fa5af624fbe94a8ce85fbf821a1ee94dc9c11e8087b08a4060010b989f95b77cbcd2b550ab552c3b5455dfe +SHA512 (xa-2.3.10.tar.gz) = 08b9994e295495744d5252fa983b111f41d0447cdb32d0c065f8fbd942ffa0899476d6cfebe1162e4aa08b1d0a2d8df74c2a60987d2509b8bca45da670f4a67f diff --git a/xa.spec b/xa.spec index b391d0f..3ebd700 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.9 -Release: 2%{?dist} +Version: 2.3.10 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Tue Jan 28 2020 Lars Kellogg-Stedman - 2.3.10-1 +- updated to version 2.3.10 + * Sat Jul 27 2019 Fedora Release Engineering - 2.3.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 2f7566d82a76e563447a9413477166142e60229c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 30 Jan 2020 16:38:37 +0100 Subject: [PATCH 35/56] - fix build with gcc 10 --- xa-2.3.10-extern.patch | 13 +++++++++++++ xa.spec | 10 +++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 xa-2.3.10-extern.patch diff --git a/xa-2.3.10-extern.patch b/xa-2.3.10-extern.patch new file mode 100644 index 0000000..a196541 --- /dev/null +++ b/xa-2.3.10-extern.patch @@ -0,0 +1,13 @@ +diff -up xa-2.3.10/src/xap.h.extern xa-2.3.10/src/xap.h +--- xa-2.3.10/src/xap.h.extern 2020-01-30 16:26:01.826285414 +0100 ++++ xa-2.3.10/src/xap.h 2020-01-30 16:26:10.625185114 +0100 +@@ -35,7 +35,7 @@ int gm_pp(void); + long gm_ppm(void); + long ga_ppm(void); + +-Datei *filep; +-char s[MAXLINE]; ++extern Datei *filep; ++extern char s[MAXLINE]; + + #endif /* __XA65_XAP_H__ */ diff --git a/xa.spec b/xa.spec index 3ebd700..79c0ec2 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -8,6 +8,8 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch +# https://gcc.gnu.org/gcc-10/porting_to.html#common +Patch1: %{name}-2.3.10-extern.patch BuildRequires: gcc # Perl needed for test-suite BuildRequires: perl-generators @@ -31,8 +33,7 @@ Key amongst its features: %prep -%setup -q -%patch0 -p1 -b .make +%autosetup -p1 # fix encoding for f in ChangeLog doc/fileformat.txt @@ -62,6 +63,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Thu Jan 30 2020 Dan Horák - 2.3.10-2 +- fix build with gcc 10 + * Tue Jan 28 2020 Lars Kellogg-Stedman - 2.3.10-1 - updated to version 2.3.10 From 81dbcaa720554f305fadb0fd1a9bdafecde02496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 5 May 2020 10:37:50 +0200 Subject: [PATCH 36/56] - updated to version 2.3.11 --- .gitignore | 1 + sources | 2 +- xa-2.3.10-extern.patch | 13 ------------- xa.spec | 9 +++++---- 4 files changed, 7 insertions(+), 18 deletions(-) delete mode 100644 xa-2.3.10-extern.patch diff --git a/.gitignore b/.gitignore index 055f2a1..9e1a179 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ xa-2.3.5.tar.gz /xa-2.3.8.tar.gz /xa-2.3.9.tar.gz /xa-2.3.10.tar.gz +/xa-2.3.11.tar.gz diff --git a/sources b/sources index 705073a..3b79422 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.10.tar.gz) = 08b9994e295495744d5252fa983b111f41d0447cdb32d0c065f8fbd942ffa0899476d6cfebe1162e4aa08b1d0a2d8df74c2a60987d2509b8bca45da670f4a67f +SHA512 (xa-2.3.11.tar.gz) = 1498591e9e778b55243174476df4de0d6f6f081a6ce136bd95658964b4a189fa17f08908f392fc4959b51efa521eee23a19991273a99058ef87c96b0d1ab9ca3 diff --git a/xa-2.3.10-extern.patch b/xa-2.3.10-extern.patch deleted file mode 100644 index a196541..0000000 --- a/xa-2.3.10-extern.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -up xa-2.3.10/src/xap.h.extern xa-2.3.10/src/xap.h ---- xa-2.3.10/src/xap.h.extern 2020-01-30 16:26:01.826285414 +0100 -+++ xa-2.3.10/src/xap.h 2020-01-30 16:26:10.625185114 +0100 -@@ -35,7 +35,7 @@ int gm_pp(void); - long gm_ppm(void); - long ga_ppm(void); - --Datei *filep; --char s[MAXLINE]; -+extern Datei *filep; -+extern char s[MAXLINE]; - - #endif /* __XA65_XAP_H__ */ diff --git a/xa.spec b/xa.spec index 79c0ec2..16a34e5 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.10 -Release: 2%{?dist} +Version: 2.3.11 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -8,8 +8,6 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch -# https://gcc.gnu.org/gcc-10/porting_to.html#common -Patch1: %{name}-2.3.10-extern.patch BuildRequires: gcc # Perl needed for test-suite BuildRequires: perl-generators @@ -63,6 +61,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Tue May 05 2020 Dan Horák - 2.3.11-1 +- updated to version 2.3.11 + * Thu Jan 30 2020 Dan Horák - 2.3.10-2 - fix build with gcc 10 From b3a9f3c1ac62eebe720afb9d50c5d502477e5992 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 7 May 2020 11:52:58 +0200 Subject: [PATCH 37/56] - rebuilt with new source archive --- sources | 2 +- xa.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 3b79422..53791ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.11.tar.gz) = 1498591e9e778b55243174476df4de0d6f6f081a6ce136bd95658964b4a189fa17f08908f392fc4959b51efa521eee23a19991273a99058ef87c96b0d1ab9ca3 +SHA512 (xa-2.3.11.tar.gz) = 2be31b6a67d30e94be616c465591614881028a8bc308202de7561a5719573582b3f29a205a0be76e1f9071621b4882c9aef95cf3494f376e88edc40afa1545dc diff --git a/xa.spec b/xa.spec index 16a34e5..716e42a 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -61,6 +61,9 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Thu May 07 2020 Dan Horák - 2.3.11-2 +- rebuilt with new source archive + * Tue May 05 2020 Dan Horák - 2.3.11-1 - updated to version 2.3.11 From d79ccf474299b5fada7ec05c803e24749a95be90 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 14 Jul 2020 14:49:38 +0000 Subject: [PATCH 38/56] Use make macros https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro --- xa.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/xa.spec b/xa.spec index 716e42a..03db2bf 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -43,7 +43,7 @@ done %build -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" +%make_build CFLAGS="$RPM_OPT_FLAGS" %check @@ -51,7 +51,7 @@ make test %install -make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" +%make_install PREFIX=%{_prefix} %files @@ -61,6 +61,10 @@ make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} INSTALL="install -p" %changelog +* Tue Jul 14 2020 Tom Stellard - 2.3.11-3 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + * Thu May 07 2020 Dan Horák - 2.3.11-2 - rebuilt with new source archive From 68abe0cc4a51ecce65f5f94859c05a28a94f2d73 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:25:33 +0000 Subject: [PATCH 39/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 03db2bf..9214d65 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -61,6 +61,9 @@ make test %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.3.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 14 2020 Tom Stellard - 2.3.11-3 - Use make macros - https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro From d38591e54f1c1f21d44991ed43746a869743c8cc Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:06:11 +0000 Subject: [PATCH 40/56] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xa.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xa.spec b/xa.spec index 9214d65..ed62596 100644 --- a/xa.spec +++ b/xa.spec @@ -8,6 +8,7 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch +BuildRequires: make BuildRequires: gcc # Perl needed for test-suite BuildRequires: perl-generators From 923462d5542238266edd1df820d6c9bc0be916f4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:46:03 +0000 Subject: [PATCH 41/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index ed62596..e472b5c 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2.3.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 2.3.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 722d52742c947980d8801d44a2dfd92d1a723a83 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:15:11 +0000 Subject: [PATCH 42/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index e472b5c..d9b67c6 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.3.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 2.3.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 7c119d3889e0bd1ff2083ddb36cdd94e22faaf08 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:46:47 +0000 Subject: [PATCH 43/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index d9b67c6..a4696b1 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2.3.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 2.3.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 5bb35c7ecbf5164e215d8e75f6b45eb8223f21d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:45:20 +0000 Subject: [PATCH 44/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index a4696b1..0b20f80 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.11 -Release: 7%{?dist} +Release: 8%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2.3.11-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 2.3.11-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 2f69d539b2e53b69e430f6d8720b5d67611d4bac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sun, 14 Aug 2022 23:30:59 +0200 Subject: [PATCH 45/56] - updated to version 2.3.13 --- .gitignore | 8 +------- sources | 2 +- xa.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 9e1a179..3ab1521 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1 @@ -xa-2.3.5.tar.gz -/xa-2.3.6.tar.gz -/xa-2.3.7.tar.gz -/xa-2.3.8.tar.gz -/xa-2.3.9.tar.gz -/xa-2.3.10.tar.gz -/xa-2.3.11.tar.gz +/xa-*.tar.gz diff --git a/sources b/sources index 53791ad..6ef2590 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.11.tar.gz) = 2be31b6a67d30e94be616c465591614881028a8bc308202de7561a5719573582b3f29a205a0be76e1f9071621b4882c9aef95cf3494f376e88edc40afa1545dc +SHA512 (xa-2.3.13.tar.gz) = b8a4c1856e51bbe212b98be06895987d6fb926a229511a67ea90a934da1fcc84daf29bd289c3c4c2254d2bce345333bb92747947f3286376761613b2e181e99b diff --git a/xa.spec b/xa.spec index 0b20f80..1136549 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.11 -Release: 8%{?dist} +Version: 2.3.13 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -8,7 +8,7 @@ URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email Patch0: %{name}-2.3.7-make.patch -BuildRequires: make +BuildRequires: make BuildRequires: gcc # Perl needed for test-suite BuildRequires: perl-generators @@ -44,7 +44,7 @@ done %build -%make_build CFLAGS="$RPM_OPT_FLAGS" +%make_build CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}" %check @@ -62,6 +62,9 @@ make test %changelog +* Sun Aug 14 2022 Dan Horák - 2.3.13-1 +- updated to version 2.3.13 + * Sat Jul 23 2022 Fedora Release Engineering - 2.3.11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 05451dcdf48e50fcd81b4402b7872161c665f9a4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:07:09 +0000 Subject: [PATCH 46/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 1136549..d33fb28 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2.3.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sun Aug 14 2022 Dan Horák - 2.3.13-1 - updated to version 2.3.13 From e7a64d599170d5e6f935ae9d15942b4d9fd26f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 16 Feb 2023 19:16:58 +0100 Subject: [PATCH 47/56] - updated to version 2.3.14 --- sources | 2 +- xa.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 6ef2590..00c475a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.13.tar.gz) = b8a4c1856e51bbe212b98be06895987d6fb926a229511a67ea90a934da1fcc84daf29bd289c3c4c2254d2bce345333bb92747947f3286376761613b2e181e99b +SHA512 (xa-2.3.14.tar.gz) = 71d4631cb3e698b6522ca76c4b34078ded0632533bdaaa8b8d584eb27f0958ed288a6765136ff0ad03cd861a2dccbb76c6d8db0abf277a61ae864ad23212653d diff --git a/xa.spec b/xa.spec index d33fb28..b045e1e 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa -Version: 2.3.13 -Release: 2%{?dist} +Version: 2.3.14 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Thu Feb 16 2023 Dan Horák - 2.3.14-1 +- updated to version 2.3.14 + * Sat Jan 21 2023 Fedora Release Engineering - 2.3.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From e1ef2a4131c2b225c3631a6e7eb1cea145c326ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:29:29 +0000 Subject: [PATCH 48/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index b045e1e..e2efb1c 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.3.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Feb 16 2023 Dan Horák - 2.3.14-1 - updated to version 2.3.14 From 3526552404b47ac1296d6fbf659551be88dd573e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:17:59 +0000 Subject: [PATCH 49/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index e2efb1c..7343b74 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502/65816 cross-assembler License: GPLv2+ @@ -62,6 +62,9 @@ make test %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.3.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 2.3.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 70227566fb2b7770f3551de4b9b87361d5d0a85b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 5 Mar 2024 18:17:45 +0100 Subject: [PATCH 50/56] - updated to version 2.4.0 --- sources | 2 +- xa-2.3.7-make.patch => xa-2.4.0-make.patch | 10 +++++----- xa.spec | 17 ++++++++++------- 3 files changed, 16 insertions(+), 13 deletions(-) rename xa-2.3.7-make.patch => xa-2.4.0-make.patch (78%) diff --git a/sources b/sources index 00c475a..1173f61 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.3.14.tar.gz) = 71d4631cb3e698b6522ca76c4b34078ded0632533bdaaa8b8d584eb27f0958ed288a6765136ff0ad03cd861a2dccbb76c6d8db0abf277a61ae864ad23212653d +SHA512 (xa-2.4.0.tar.gz) = eebaf67715324735203405016df7311bf2ed568ab0e609c0fec7d9d803c173cde5dea161b7f713cb5215454d1ce69acbde43372016dfe9866ed99acecb9aafb1 diff --git a/xa-2.3.7-make.patch b/xa-2.4.0-make.patch similarity index 78% rename from xa-2.3.7-make.patch rename to xa-2.4.0-make.patch index 780d3bb..4f1ed8b 100644 --- a/xa-2.3.7-make.patch +++ b/xa-2.4.0-make.patch @@ -1,6 +1,6 @@ -diff -up xa-2.3.7/Makefile.make xa-2.3.7/Makefile ---- xa-2.3.7/Makefile.make 2014-12-27 19:45:21.000000000 +0100 -+++ xa-2.3.7/Makefile 2015-01-03 15:36:18.000000000 +0100 +diff -up xa-2.4.0/Makefile.orig xa-2.4.0/Makefile +--- xa-2.4.0/Makefile.orig 2024-03-05 17:27:55.563481964 +0100 ++++ xa-2.4.0/Makefile 2024-03-05 17:28:10.411717189 +0100 @@ -17,11 +17,12 @@ LDFLAGS = -lc #CFLAGS = #LD = ld @@ -18,8 +18,8 @@ diff -up xa-2.3.7/Makefile.make xa-2.3.7/Makefile MKDIR = mkdir -p INSTALL = install -@@ -58,8 +59,8 @@ clean: - install: xa uncpk +@@ -63,8 +63,8 @@ clean: + install: all $(MKDIR) $(BINDIR) $(MKDIR) $(MANDIR) - $(INSTALL) xa reloc65 ldo65 file65 printcbm uncpk $(BINDIR) diff --git a/xa.spec b/xa.spec index 7343b74..a38a3ee 100644 --- a/xa.spec +++ b/xa.spec @@ -1,13 +1,13 @@ Name: xa -Version: 2.3.14 -Release: 3%{?dist} +Version: 2.4.0 +Release: 1%{?dist} Summary: 6502/65816 cross-assembler -License: GPLv2+ +License: GPL-2.0-or-later URL: http://www.floodgap.com/retrotech/xa/ Source0: http://www.floodgap.com/retrotech/%{name}/dists/%{name}-%{version}.tar.gz # update the build system, reported in private email -Patch0: %{name}-2.3.7-make.patch +Patch0: %{name}-2.4.0-make.patch BuildRequires: make BuildRequires: gcc # Perl needed for test-suite @@ -35,7 +35,7 @@ Key amongst its features: %autosetup -p1 # fix encoding -for f in ChangeLog doc/fileformat.txt +for f in ChangeLog do iconv -f ISO-8859-1 -t UTF-8 < $f > $f.new touch -r $f $f.new @@ -52,16 +52,19 @@ make test %install -%make_install PREFIX=%{_prefix} +%make_install PREFIX=%{_prefix} CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}" %files -%doc COPYING ChangeLog README.1st doc/fileformat.txt +%doc COPYING ChangeLog README.1st %{_bindir}/* %{_mandir}/man1/* %changelog +* Tue Mar 05 2024 Dan Horák - 2.4.0-1 +- updated to version 2.4.0 + * Sat Jan 27 2024 Fedora Release Engineering - 2.3.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 7d8fb53f1b5301bc55f6c8404591ca492bedace2 Mon Sep 17 00:00:00 2001 From: Fedora Release Monitoring Date: Wed, 6 Mar 2024 06:24:25 +0000 Subject: [PATCH 51/56] Update to 2.4.1 (rhbz#2268042) --- sources | 2 +- xa.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 1173f61..6203b8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xa-2.4.0.tar.gz) = eebaf67715324735203405016df7311bf2ed568ab0e609c0fec7d9d803c173cde5dea161b7f713cb5215454d1ce69acbde43372016dfe9866ed99acecb9aafb1 +SHA512 (xa-2.4.1.tar.gz) = aaec796bec362ab253abc33320cb36ef879fa661c2091c7e3b2ce96ccc56063c59335fb7eb1d6a3de9486ab8973cbbc71c445e1ef816572a55a1338ffed19dc0 diff --git a/xa.spec b/xa.spec index a38a3ee..e4fd952 100644 --- a/xa.spec +++ b/xa.spec @@ -1,5 +1,5 @@ Name: xa -Version: 2.4.0 +Version: 2.4.1 Release: 1%{?dist} Summary: 6502/65816 cross-assembler @@ -62,6 +62,9 @@ make test %changelog +* Wed Mar 06 2024 Fedora Release Monitoring - 2.4.1-1 +- Update to 2.4.1 (rhbz#2268042) + * Tue Mar 05 2024 Dan Horák - 2.4.0-1 - updated to version 2.4.0 From ee5d375d1cb1e5a8b0c1a3cfab2666913e851d66 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:40:48 +0000 Subject: [PATCH 52/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index e4fd952..e06800a 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 6502/65816 cross-assembler License: GPL-2.0-or-later @@ -62,6 +62,9 @@ make test %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Mar 06 2024 Fedora Release Monitoring - 2.4.1-1 - Update to 2.4.1 (rhbz#2268042) From f662958ed19d700aa3b62abb8c9bf8b12878929e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:23:31 +0000 Subject: [PATCH 53/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index e06800a..bda42ce 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502/65816 cross-assembler License: GPL-2.0-or-later @@ -62,6 +62,9 @@ make test %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 2.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 21f5b4c17e357917c4530a04b4362ef880efd0be Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:36:39 +0000 Subject: [PATCH 54/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index bda42ce..78b6874 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler License: GPL-2.0-or-later @@ -62,6 +62,9 @@ make test %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 2.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 046e1270f0237416b376c1e4fed307de7fbbdb6b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:26:19 +0000 Subject: [PATCH 55/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 78b6874..573064f 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 6502/65816 cross-assembler License: GPL-2.0-or-later @@ -62,6 +62,9 @@ make test %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 2.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 2.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 5da29e7299b2542f54aa7871272158dba9b14b60 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:59:51 +0000 Subject: [PATCH 56/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- xa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xa.spec b/xa.spec index 573064f..0b09c58 100644 --- a/xa.spec +++ b/xa.spec @@ -1,6 +1,6 @@ Name: xa Version: 2.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 6502/65816 cross-assembler License: GPL-2.0-or-later @@ -62,6 +62,9 @@ make test %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 2.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 2.4.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild