From c7331e62da2022addfe84a8b4cd263b06904887f Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 03:59:59 +0000 Subject: [PATCH 01/59] Setup of module aalib --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..908340f --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: aalib +# $Id$ +NAME := aalib +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 +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Rootx && { 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/sources b/sources new file mode 100644 index 0000000..e69de29 From bba5ee419c4ef2620c2dce658c2c476f5510c540 Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 04:00:01 +0000 Subject: [PATCH 02/59] auto-import changelog data from aalib-1.4.0-0.fdr.0.8.rc5.rh80.src.rpm 1.4.0-0.fdr.0.8.rc5 - devel package now requires info - Rewrote scriplets - buildroot -> RPM_BUILD_ROOT - Moved info files into devel package 1.4.0-0.fdr.0.7.rc5 - Removed '-p /sbin/ldconfig' in post scriptlet 1.4.0-0.fdr.0.6.rc5 - Added missing gpm-devel *Requires 1.4.0-0.fdr.0.5.rc5 - Moved configure from prep to build section. - Modified post* and pre* scriplets 1.4.0-0.fdr.0.4.rc5 - Fix things between exclude, rm -f, lib*.la, and infodir/dir things - Added URL in Source0. 1.4.0-0.fdr.0.3.rc5 - Modified devel Requires: - Removed gcc as requirement 1.4.0-0.fdr.0.2.rc5 - Applied spec modifications from Adrian Reber Tue Apr 01 2003 Dams - Initial build. --- .cvsignore | 1 + aalib.spec | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 127 insertions(+) create mode 100644 aalib.spec diff --git a/.cvsignore b/.cvsignore index e69de29..c338db7 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +aalib-1.4rc5.tar.gz diff --git a/aalib.spec b/aalib.spec new file mode 100644 index 0000000..c700492 --- /dev/null +++ b/aalib.spec @@ -0,0 +1,125 @@ +%define rc_subver rc5 + +Summary: An ASCII art library. +Name: aalib +Version: 1.4.0 +Release: 0.fdr.0.8.%{rc_subver}.rh80 +Epoch: 0 +License: LGPL +Group: System Environment/Libraries +URL: http://aa-project.sourceforge.net/aalib/ +Source0: http://prdownloads.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot +BuildRequires: slang-devel XFree86-devel gpm-devel + +%package devel +Summary: aalib development files +Group: Development/Libraries +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires(post,postun): info +Requires: XFree86-devel, slang-devel, gpm-devel + +#--------------------------------------------------------------------- + +%description +AA-lib is a low level gfx library just as many other libraries are. The +main difference is that AA-lib does not require graphics device. In +fact, there is no graphical output possible. AA-lib replaces those +old-fashioned output methods with a powerful ASCII art renderer. The API +is designed to be similar to other graphics libraries. + +%description devel +This package contains header files and other files needed to develop +with the aalib + +#--------------------------------------------------------------------- + +%prep +%setup -q + +#--------------------------------------------------------------------- + +%build +%configure +make %{?_smp_mflags} + +#--------------------------------------------------------------------- + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall +# Just to be sure.. +rm -f $RPM_BUILD_ROOT/%{_infodir}/dir 2>/dev/null + + +#--------------------------------------------------------------------- + +%clean +rm -rf $RPM_BUILD_ROOT + +#--------------------------------------------------------------------- + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%post devel +/sbin/install-info %{_infodir}/libaa.info.gz %{_infodir}/dir 2>/dev/null || : + +%preun devel +if [ "$1" = "0" ]; then + /sbin/install-info --delete %{_infodir}/libaa.info.gz %{_infodir}/dir 2>/dev/null || : +fi + +#--------------------------------------------------------------------- + +%files +%exclude %{_libdir}/libaa.la +%defattr(-,root,root,-) +%doc README COPYING ChangeLog NEWS +%{_bindir}/aafire +%{_bindir}/aainfo +%{_bindir}/aasavefont +%{_bindir}/aatest +%{_libdir}/libaa.so.* +%{_mandir}/man1/aafire.1* + +%files devel +%defattr(-,root,root,-) +%{_bindir}/aalib-config +%{_mandir}/man3/ +%{_libdir}/libaa.a +%{_libdir}/libaa.so +%{_includedir}/aalib.h +%{_infodir}/aalib.info* +%{_datadir}/aclocal/aalib.m4 + +%changelog +* Thu Aug 21 2003 Dams 0:1.4.0-0.fdr.0.8.rc5 +- devel package now requires info +- Rewrote scriplets +- buildroot -> RPM_BUILD_ROOT +- Moved info files into devel package + +* Tue Aug 5 2003 Dams 0:1.4.0-0.fdr.0.7.rc5 +- Removed '-p /sbin/ldconfig' in post scriptlet + +* Thu Apr 10 2003 Dams 0:1.4.0-0.fdr.0.6.rc5 +- Added missing gpm-devel *Requires + +* Mon Apr 7 2003 Dams 0:1.4.0-0.fdr.0.5.rc5 +- Moved configure from prep to build section. +- Modified post* and pre* scriplets + +* Thu Apr 3 2003 Dams 0:1.4.0-0.fdr.0.4.rc5 +- Fix things between exclude, rm -f, lib*.la, and infodir/dir things +- Added URL in Source0. + +* Thu Apr 3 2003 Dams 0:1.4.0-0.fdr.0.3.rc5 +- Modified devel Requires: +- Removed gcc as requirement + +* Wed Apr 2 2003 Dams 0:1.4.0-0.fdr.0.2.rc5 +- Applied spec modifications from Adrian Reber + +* Tue Apr 1 2003 Dams +- Initial build. diff --git a/sources b/sources index e69de29..d31b3e6 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +9801095c42bba12edebd1902bcf0a990 aalib-1.4rc5.tar.gz From 4e310ef8c7e5163f11e94b6be160785f9636ffc4 Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 04:00:07 +0000 Subject: [PATCH 03/59] auto-import aalib-1.4.0-0.fdr.0.8.rc5.rh90 from aalib-1.4.0-0.fdr.0.8.rc5.rh90.src.rpm --- aalib.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index c700492..5973afc 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.fdr.0.8.%{rc_subver}.rh80 +Release: 0.fdr.0.8.%{rc_subver}.rh90 Epoch: 0 License: LGPL Group: System Environment/Libraries From 0d086de2268dd24e98aa6349f287d44e4e32ad54 Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 04:00:13 +0000 Subject: [PATCH 04/59] auto-import aalib-1.4.0-0.fdr.0.8.rc5.1 from aalib-1.4.0-0.fdr.0.8.rc5.1.src.rpm --- aalib.spec | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/aalib.spec b/aalib.spec index 5973afc..66709c6 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.fdr.0.8.%{rc_subver}.rh90 +Release: 0.fdr.0.8.%{rc_subver}.1 Epoch: 0 License: LGPL Group: System Environment/Libraries @@ -19,7 +19,6 @@ Requires: %{name} = %{epoch}:%{version}-%{release} Requires(post,postun): info Requires: XFree86-devel, slang-devel, gpm-devel -#--------------------------------------------------------------------- %description AA-lib is a low level gfx library just as many other libraries are. The @@ -32,18 +31,15 @@ is designed to be similar to other graphics libraries. This package contains header files and other files needed to develop with the aalib -#--------------------------------------------------------------------- %prep %setup -q -#--------------------------------------------------------------------- %build %configure make %{?_smp_mflags} -#--------------------------------------------------------------------- %install rm -rf $RPM_BUILD_ROOT @@ -52,12 +48,10 @@ rm -rf $RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_infodir}/dir 2>/dev/null -#--------------------------------------------------------------------- %clean rm -rf $RPM_BUILD_ROOT -#--------------------------------------------------------------------- %post -p /sbin/ldconfig %postun -p /sbin/ldconfig @@ -70,7 +64,6 @@ if [ "$1" = "0" ]; then /sbin/install-info --delete %{_infodir}/libaa.info.gz %{_infodir}/dir 2>/dev/null || : fi -#--------------------------------------------------------------------- %files %exclude %{_libdir}/libaa.la From 13f116d0b7e86ed4a8dd67b3177d6c4791fc1b94 Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 04:00:19 +0000 Subject: [PATCH 05/59] auto-import changelog data from aalib-1.4.0-0.fdr.0.9.rc5.2.src.rpm 1.4.0-0.fdr.0.9.rc5 - Fix underquoted definition in aalib.m4 to appease aclocal >= 1.8. - Avoid rpath in aalib-config. - Split Requires(post,postun) into two to work around a rpm bug. - Other minor specfile improvements. --- aalib-aclocal.patch | 11 +++++++++++ aalib-config-rpath.patch | 17 +++++++++++++++++ aalib.spec | 28 +++++++++++++++++++--------- 3 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 aalib-aclocal.patch create mode 100644 aalib-config-rpath.patch diff --git a/aalib-aclocal.patch b/aalib-aclocal.patch new file mode 100644 index 0000000..17f2431 --- /dev/null +++ b/aalib-aclocal.patch @@ -0,0 +1,11 @@ +--- aalib.m4~ 2001-04-26 17:37:31.000000000 +0300 ++++ aalib.m4 2004-07-16 01:22:13.035644150 +0300 +@@ -9,7 +9,7 @@ + dnl AM_PATH_AALIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) + dnl Test for AALIB, and define AALIB_CFLAGS and AALIB_LIBS + dnl +-AC_DEFUN(AM_PATH_AALIB, ++AC_DEFUN([AM_PATH_AALIB], + [dnl + dnl Get the cflags and libraries from the aalib-config script + dnl diff --git a/aalib-config-rpath.patch b/aalib-config-rpath.patch new file mode 100644 index 0000000..c045a40 --- /dev/null +++ b/aalib-config-rpath.patch @@ -0,0 +1,17 @@ +--- aalib-config.in~ 2001-04-26 17:37:31.000000000 +0300 ++++ aalib-config.in 2004-07-16 01:33:03.740515009 +0300 +@@ -48,12 +48,12 @@ + echo -I@includedir@ @AALIB_CFLAGS@ + ;; + @ENABLE_SHARED_TRUE@ --libs) +-@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@ @AALIB_RLD_FLAGS@" ++@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@" + @ENABLE_SHARED_TRUE@ echo $libdirs @AALIB_LIBS@ + @ENABLE_SHARED_TRUE@ ;; + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) +-@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@ @AALIB_RLD_FLAGS@" ++@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@" + @ENABLE_STATIC_TRUE@ echo $libdirs @AALIB_LIBS@ + @ENABLE_STATIC_TRUE@ ;; + *) diff --git a/aalib.spec b/aalib.spec index 66709c6..64cd3ae 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,12 +3,14 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.fdr.0.8.%{rc_subver}.1 +Release: 0.fdr.0.9.%{rc_subver}.2 Epoch: 0 License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ -Source0: http://prdownloads.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz +Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz +Patch0: %{name}-aclocal.patch +Patch1: %{name}-config-rpath.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: slang-devel XFree86-devel gpm-devel @@ -16,8 +18,9 @@ BuildRequires: slang-devel XFree86-devel gpm-devel Summary: aalib development files Group: Development/Libraries Requires: %{name} = %{epoch}:%{version}-%{release} -Requires(post,postun): info Requires: XFree86-devel, slang-devel, gpm-devel +Requires(post): /sbin/install-info +Requires(postun): /sbin/install-info %description @@ -29,11 +32,13 @@ is designed to be similar to other graphics libraries. %description devel This package contains header files and other files needed to develop -with the aalib +with aalib. %prep %setup -q +%patch0 -p0 +%patch1 -p0 %build @@ -43,12 +48,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall -# Just to be sure.. +make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_infodir}/dir 2>/dev/null - %clean rm -rf $RPM_BUILD_ROOT @@ -57,11 +60,12 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %post devel -/sbin/install-info %{_infodir}/libaa.info.gz %{_infodir}/dir 2>/dev/null || : +/sbin/install-info %{_infodir}/libaa.info %{_infodir}/dir 2>/dev/null || : %preun devel if [ "$1" = "0" ]; then - /sbin/install-info --delete %{_infodir}/libaa.info.gz %{_infodir}/dir 2>/dev/null || : + /sbin/install-info --delete %{_infodir}/libaa.info %{_infodir}/dir \ + 2>/dev/null || : fi @@ -87,6 +91,12 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jul 16 2004 Ville Skyttä - 0:1.4.0-0.fdr.0.9.rc5 +- Fix underquoted definition in aalib.m4 to appease aclocal >= 1.8. +- Avoid rpath in aalib-config. +- Split Requires(post,postun) into two to work around a rpm bug. +- Other minor specfile improvements. + * Thu Aug 21 2003 Dams 0:1.4.0-0.fdr.0.8.rc5 - devel package now requires info - Rewrote scriplets From 4ce1dc72c33963ebe52a862d2b88541d78b7bf61 Mon Sep 17 00:00:00 2001 From: Matthias Saou Date: Thu, 11 Nov 2004 19:21:36 +0000 Subject: [PATCH 06/59] Release bumping to provide upgrade path from non-fedora.us packages. A few minor tweaks here and there. --- aalib.spec | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/aalib.spec b/aalib.spec index 64cd3ae..4cd9cac 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,8 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.fdr.0.9.%{rc_subver}.2 -Epoch: 0 +Release: 0.%{rc_subver}.2 License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -49,7 +48,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT/%{_infodir}/dir 2>/dev/null +rm -f $RPM_BUILD_ROOT/%{_infodir}/dir || : %clean @@ -63,7 +62,7 @@ rm -rf $RPM_BUILD_ROOT /sbin/install-info %{_infodir}/libaa.info %{_infodir}/dir 2>/dev/null || : %preun devel -if [ "$1" = "0" ]; then +if [ $1 -eq 0 ]; then /sbin/install-info --delete %{_infodir}/libaa.info %{_infodir}/dir \ 2>/dev/null || : fi @@ -83,7 +82,7 @@ fi %files devel %defattr(-,root,root,-) %{_bindir}/aalib-config -%{_mandir}/man3/ +%{_mandir}/man3/* %{_libdir}/libaa.a %{_libdir}/libaa.so %{_includedir}/aalib.h @@ -91,6 +90,12 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Nov 10 2004 Matthias Saou 1.4.0-0.rc5.2 +- Bump release for compatibility (still, it'll break *sigh*). +- Fix possible non zero exit status from %%install. +- Fix owning the entire man3/ directory. +- Pending possible changes : --with-ncurses & ncurses-devel build dep. + * Fri Jul 16 2004 Ville Skyttä - 0:1.4.0-0.fdr.0.9.rc5 - Fix underquoted definition in aalib.m4 to appease aclocal >= 1.8. - Avoid rpath in aalib-config. From 7c479153685af66c5e1d24d1f468a456fbe3a007 Mon Sep 17 00:00:00 2001 From: gafton Date: Wed, 24 Nov 2004 03:09:36 +0000 Subject: [PATCH 07/59] Fix braindead import typo artifact in the default generated Makefile. Oh well, the fedora extras commits list needs a workout anyway... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 908340f..22ca719 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common -test -f CVS/Rootx && { 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 +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)) From 964e960f5c49218c2a8d30c4755d86e2f4c64387 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 16 Dec 2004 20:40:23 +0000 Subject: [PATCH 08/59] Fix undefined epoch in aalib-devel dependency --- aalib.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/aalib.spec b/aalib.spec index 4cd9cac..85c732f 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.2 +Release: 0.%{rc_subver}.3 License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -16,7 +16,7 @@ BuildRequires: slang-devel XFree86-devel gpm-devel %package devel Summary: aalib development files Group: Development/Libraries -Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name} = %{version}-%{release} Requires: XFree86-devel, slang-devel, gpm-devel Requires(post): /sbin/install-info Requires(postun): /sbin/install-info @@ -90,6 +90,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Dec 16 2004 Michael Schwendt 1.4.0-0.rc5.3 +- If Epoch is dropped, %%epoch must not be used anywhere else. + * Wed Nov 10 2004 Matthias Saou 1.4.0-0.rc5.2 - Bump release for compatibility (still, it'll break *sigh*). - Fix possible non zero exit status from %%install. From 8336e7ba306fda5bac86f3fda0a470c7faff6013 Mon Sep 17 00:00:00 2001 From: Matthias Saou Date: Sat, 5 Mar 2005 21:10:20 +0000 Subject: [PATCH 09/59] Further mass cleanup. One or more apply : - Remove (hopefully) all zero epoch remains. - Remove trailing spaces and tabs. - Keep consistency between tabs and spaces. - Clean up summary. --- aalib.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 85c732f..a557046 100644 --- a/aalib.spec +++ b/aalib.spec @@ -132,5 +132,5 @@ fi * Wed Apr 2 2003 Dams 0:1.4.0-0.fdr.0.2.rc5 - Applied spec modifications from Adrian Reber -* Tue Apr 1 2003 Dams +* Tue Apr 1 2003 Dams - Initial build. From 8a6b79522a818878b4a5f0806cbe8d92ae083b0b Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Wed, 6 Apr 2005 22:10:46 +0000 Subject: [PATCH 10/59] mass release bump for packages not rebuilt after FC-3-split --- aalib.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index a557046..c3d835d 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,8 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.3 +Release: 0.%{rc_subver}.4 + License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -90,6 +91,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Apr 7 2005 Michael Schwendt +- rebuilt + * Thu Dec 16 2004 Michael Schwendt 1.4.0-0.rc5.3 - If Epoch is dropped, %%epoch must not be used anywhere else. From 8478dc6bd9727805ca00ad921c2ce806894c21bc Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Fri, 1 Jul 2005 21:01:06 +0000 Subject: [PATCH 11/59] - fix missing return value (#149361) --- aalib-1.4rc5-bug149361.patch | 12 ++++++++++++ aalib.spec | 9 +++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 aalib-1.4rc5-bug149361.patch diff --git a/aalib-1.4rc5-bug149361.patch b/aalib-1.4rc5-bug149361.patch new file mode 100644 index 0000000..66d7619 --- /dev/null +++ b/aalib-1.4rc5-bug149361.patch @@ -0,0 +1,12 @@ +diff -Nur aalib-1.4.0-orig/src/aalinuxkbd.c aalib-1.4.0/src/aalinuxkbd.c +--- aalib-1.4.0-orig/src/aalinuxkbd.c 2001-04-26 16:37:31.000000000 +0200 ++++ aalib-1.4.0/src/aalinuxkbd.c 2005-07-01 22:57:59.000000000 +0200 +@@ -200,7 +200,7 @@ + static int rawmode_init(void) + { + if (!closed) +- return; ++ return 0; + mypid = getpid(); + if (tty_fd == -1) { + tty_fd = fileno(stdin); diff --git a/aalib.spec b/aalib.spec index c3d835d..b08e13d 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.4 +Release: 0.%{rc_subver}.5 License: LGPL Group: System Environment/Libraries @@ -11,6 +11,7 @@ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz Patch0: %{name}-aclocal.patch Patch1: %{name}-config-rpath.patch +Patch2: aalib-1.4rc5-bug149361.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: slang-devel XFree86-devel gpm-devel @@ -39,6 +40,7 @@ with aalib. %setup -q %patch0 -p0 %patch1 -p0 +%patch2 -p1 -b .bug149361 %build @@ -91,7 +93,10 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog -* Fri Apr 7 2005 Michael Schwendt +* Fri Jul 1 2005 Michael Schwendt 1.4.0-0.rc5.5 +- fix missing return value (#149361) + +* Thu Apr 7 2005 Michael Schwendt 1.4.0-0.rc5.4 - rebuilt * Thu Dec 16 2004 Michael Schwendt 1.4.0-0.rc5.3 From 95ef2103e5eec9947a54bf21e015474396d9465d Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Fri, 1 Jul 2005 22:35:02 +0000 Subject: [PATCH 12/59] inverted --- aalib-1.4rc5-bug149361.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aalib-1.4rc5-bug149361.patch b/aalib-1.4rc5-bug149361.patch index 66d7619..40f1f49 100644 --- a/aalib-1.4rc5-bug149361.patch +++ b/aalib-1.4rc5-bug149361.patch @@ -6,7 +6,7 @@ diff -Nur aalib-1.4.0-orig/src/aalinuxkbd.c aalib-1.4.0/src/aalinuxkbd.c { if (!closed) - return; -+ return 0; ++ return 1; mypid = getpid(); if (tty_fd == -1) { tty_fd = fileno(stdin); From aab663a08e3372a39efd604f7bb6b9af779f7645 Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Mon, 21 Nov 2005 20:47:42 +0000 Subject: [PATCH 13/59] - remove .a - XFree86-devel -> libX11-devel --- aalib.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/aalib.spec b/aalib.spec index b08e13d..7ac21fd 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.5 +Release: 0.%{rc_subver}.6 License: LGPL Group: System Environment/Libraries @@ -13,13 +13,13 @@ Patch0: %{name}-aclocal.patch Patch1: %{name}-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot -BuildRequires: slang-devel XFree86-devel gpm-devel +BuildRequires: slang-devel libX11-devel gpm-devel %package devel Summary: aalib development files Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: XFree86-devel, slang-devel, gpm-devel +Requires: libX11-devel, slang-devel, gpm-devel Requires(post): /sbin/install-info Requires(postun): /sbin/install-info @@ -86,13 +86,17 @@ fi %defattr(-,root,root,-) %{_bindir}/aalib-config %{_mandir}/man3/* -%{_libdir}/libaa.a +%exclude %{_libdir}/libaa.a %{_libdir}/libaa.so %{_includedir}/aalib.h %{_infodir}/aalib.info* %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Nov 21 2005 Warren Togami - 1.4.0-0.rc5.6 +- remove .a +- XFree86-devel -> libX11-devel + * Fri Jul 1 2005 Michael Schwendt 1.4.0-0.rc5.5 - fix missing return value (#149361) From f530c55fb01d329ce06a57ec5204c6d9d9cea602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 28 Nov 2005 10:12:05 +0000 Subject: [PATCH 14/59] - Fix modular X dependencies. - Rebuild against new slang. - Disable static lib, not shipping it anyway. - Prune unneeded libs from aalib-config (and corresponding deps from -devel). - Don't use %exclude. --- aalib.spec | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/aalib.spec b/aalib.spec index 7ac21fd..854cfe0 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.6 +Release: 0.%{rc_subver}.7 License: LGPL Group: System Environment/Libraries @@ -13,13 +13,12 @@ Patch0: %{name}-aclocal.patch Patch1: %{name}-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot -BuildRequires: slang-devel libX11-devel gpm-devel +BuildRequires: slang-devel libXt-devel gpm-devel %package devel Summary: aalib development files Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: libX11-devel, slang-devel, gpm-devel Requires(post): /sbin/install-info Requires(postun): /sbin/install-info @@ -41,17 +40,18 @@ with aalib. %patch0 -p0 %patch1 -p0 %patch2 -p1 -b .bug149361 +sed -i -e 's/^\(.*SHARED.*\)@AALIB_LIBS@/\1 -laa/' aalib-config.in %build -%configure +%configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT/%{_infodir}/dir || : +rm -f $RPM_BUILD_ROOT{%{_libdir}/libaa.la,%{_infodir}/dir} %clean @@ -72,7 +72,6 @@ fi %files -%exclude %{_libdir}/libaa.la %defattr(-,root,root,-) %doc README COPYING ChangeLog NEWS %{_bindir}/aafire @@ -86,13 +85,19 @@ fi %defattr(-,root,root,-) %{_bindir}/aalib-config %{_mandir}/man3/* -%exclude %{_libdir}/libaa.a %{_libdir}/libaa.so %{_includedir}/aalib.h %{_infodir}/aalib.info* %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Nov 28 2005 Ville Skyttä - 1.4.0-0.rc5.7 +- Fix modular X dependencies. +- Rebuild against new slang. +- Disable static lib, not shipping it anyway. +- Prune unneeded libs from aalib-config (and corresponding deps from -devel). +- Don't use %%exclude. + * Mon Nov 21 2005 Warren Togami - 1.4.0-0.rc5.6 - remove .a - XFree86-devel -> libX11-devel From cff1fc1d5e538e9aca36273f9599eac5148ca0be Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 23 Jul 2006 07:16:07 +0000 Subject: [PATCH 15/59] - Taking over as maintainer since Anvil has other priorities - Long long due rebuild with new gcc for FC-5 (bug 185870) - Add %{?dist} tag - Make release field comply with the Package Naming guidelines for pre releases. Luckily according to rpm 8 > rc5 so this can be done. --- aalib.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 854cfe0..0efb9bb 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: An ASCII art library. Name: aalib Version: 1.4.0 -Release: 0.%{rc_subver}.7 +Release: 0.8.%{rc_subver}%{?dist} License: LGPL Group: System Environment/Libraries @@ -91,6 +91,13 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Sun Jul 23 2006 Hans de Goede 1.4.0-0.8.rc5 +- Taking over as maintainer since Anvil has other priorities +- Long long due rebuild with new gcc for FC-5 (bug 185870) +- Add %%{?dist} tag +- Make release field comply with the Package Naming guidelines for + pre releases. Luckily according to rpm 8 > rc5 so this can be done. + * Mon Nov 28 2005 Ville Skyttä - 1.4.0-0.rc5.7 - Fix modular X dependencies. - Rebuild against new slang. From d1b5828a9d32393335662970bef7c1d14bbc0a9a Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 23 Jul 2006 08:14:30 +0000 Subject: [PATCH 16/59] - Taking over as maintainer since Anvil has other priorities - Long long due rebuild with new gcc for FC-5 (bug 185870) - Add %{?dist} tag - Make release field comply with the Package Naming guidelines for pre releases. Luckily according to rpm 8 > rc5 so this can be done. - Fix some rpmlint warnings - Fix (remove) use of rpath --- aalib-1.4rc5-rpath.patch | 40 ++++++++++++++++++++++++++ aalib.spec | 62 ++++++++++++++++++++++++---------------- 2 files changed, 77 insertions(+), 25 deletions(-) create mode 100644 aalib-1.4rc5-rpath.patch diff --git a/aalib-1.4rc5-rpath.patch b/aalib-1.4rc5-rpath.patch new file mode 100644 index 0000000..45a9154 --- /dev/null +++ b/aalib-1.4rc5-rpath.patch @@ -0,0 +1,40 @@ +--- aalib-1.4.0/configure.in~ 2006-07-23 09:29:19.000000000 +0200 ++++ aalib-1.4.0/configure.in 2006-07-23 09:29:19.000000000 +0200 +@@ -371,17 +371,6 @@ + ;; + esac + +-# Set runtime shared library paths as needed +- +-if test $ARCH = linux -o $ARCH = freebsd -o $ARCH = bsdi; then +- AALIB_RLD_FLAGS="-Wl,-rpath,\${exec_prefix}/lib" +-fi +- +-if test $ARCH = solaris; then +- AALIB_RLD_FLAGS="-R\${exec_prefix}/lib" +-fi +- +- + dnl Expand the cflags and libraries needed by apps using AALIB + AC_SUBST(AALIB_CFLAGS) + AC_SUBST(AALIB_LIBS) +--- aalib-1.4.0/configure~ 2006-07-23 09:29:18.000000000 +0200 ++++ aalib-1.4.0/configure 2006-07-23 09:29:18.000000000 +0200 +@@ -4313,17 +4313,6 @@ + ;; + esac + +-# Set runtime shared library paths as needed +- +-if test $ARCH = linux -o $ARCH = freebsd -o $ARCH = bsdi; then +- AALIB_RLD_FLAGS="-Wl,-rpath,\${exec_prefix}/lib" +-fi +- +-if test $ARCH = solaris; then +- AALIB_RLD_FLAGS="-R\${exec_prefix}/lib" +-fi +- +- + + + diff --git a/aalib.spec b/aalib.spec index 0efb9bb..b81f1bd 100644 --- a/aalib.spec +++ b/aalib.spec @@ -1,27 +1,19 @@ -%define rc_subver rc5 - -Summary: An ASCII art library. -Name: aalib -Version: 1.4.0 -Release: 0.8.%{rc_subver}%{?dist} - -License: LGPL -Group: System Environment/Libraries -URL: http://aa-project.sourceforge.net/aalib/ -Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz -Patch0: %{name}-aclocal.patch -Patch1: %{name}-config-rpath.patch -Patch2: aalib-1.4rc5-bug149361.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot -BuildRequires: slang-devel libXt-devel gpm-devel - -%package devel -Summary: aalib development files -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires(post): /sbin/install-info -Requires(postun): /sbin/install-info - +%define rc_subver rc5 + +Summary: ASCII art library +Name: aalib +Version: 1.4.0 +Release: 0.8.%{rc_subver}%{?dist} +License: LGPL +Group: System Environment/Libraries +URL: http://aa-project.sourceforge.net/aalib/ +Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz +Patch0: aalib-aclocal.patch +Patch1: aalib-config-rpath.patch +Patch2: aalib-1.4rc5-bug149361.patch +Patch3: aalib-1.4rc5-rpath.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: slang-devel libXt-devel gpm-devel %description AA-lib is a low level gfx library just as many other libraries are. The @@ -30,6 +22,14 @@ fact, there is no graphical output possible. AA-lib replaces those old-fashioned output methods with a powerful ASCII art renderer. The API is designed to be similar to other graphics libraries. + +%package devel +Summary: Development files for aalib +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires(post): /sbin/install-info +Requires(postun): /sbin/install-info + %description devel This package contains header files and other files needed to develop with aalib. @@ -40,11 +40,21 @@ with aalib. %patch0 -p0 %patch1 -p0 %patch2 -p1 -b .bug149361 +%patch3 -p1 -b .rpath sed -i -e 's/^\(.*SHARED.*\)@AALIB_LIBS@/\1 -laa/' aalib-config.in +# sigh stop autoxxx from rerunning because of our patches above. +touch aclocal.m4 +touch configure +touch src/stamp-h.in +touch src/config.h.in +touch `find -name Makefile.in` %build %configure --disable-static +# Don't use rpath! +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} @@ -97,6 +107,8 @@ fi - Add %%{?dist} tag - Make release field comply with the Package Naming guidelines for pre releases. Luckily according to rpm 8 > rc5 so this can be done. +- Fix some rpmlint warnings +- Fix (remove) use of rpath * Mon Nov 28 2005 Ville Skyttä - 1.4.0-0.rc5.7 - Fix modular X dependencies. @@ -127,7 +139,7 @@ fi * Fri Jul 16 2004 Ville Skyttä - 0:1.4.0-0.fdr.0.9.rc5 - Fix underquoted definition in aalib.m4 to appease aclocal >= 1.8. - Avoid rpath in aalib-config. -- Split Requires(post,postun) into two to work around a rpm bug. +- Split Requires for post and postun into two to work around a rpm bug. - Other minor specfile improvements. * Thu Aug 21 2003 Dams 0:1.4.0-0.fdr.0.8.rc5 From 5da03149fc5bbde4043e00ae888a35b025e53478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 27 Aug 2006 20:13:43 +0000 Subject: [PATCH 17/59] http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild --- needs.rebuild | 1 + 1 file changed, 1 insertion(+) create mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild new file mode 100644 index 0000000..815fd29 --- /dev/null +++ b/needs.rebuild @@ -0,0 +1 @@ +http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From 3b36db769651485edf6eb69643ceb9ef071e9eeb Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Mon, 28 Aug 2006 05:05:47 +0000 Subject: [PATCH 18/59] - FE6 Rebuild --- aalib.spec | 5 ++++- needs.rebuild | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 needs.rebuild diff --git a/aalib.spec b/aalib.spec index b81f1bd..ef1b4ad 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.8.%{rc_subver}%{?dist} +Release: 0.9.%{rc_subver}%{?dist} License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -101,6 +101,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Aug 28 2006 Hans de Goede 1.4.0-0.8.rc6 +- FE6 Rebuild + * Sun Jul 23 2006 Hans de Goede 1.4.0-0.8.rc5 - Taking over as maintainer since Anvil has other priorities - Long long due rebuild with new gcc for FC-5 (bug 185870) diff --git a/needs.rebuild b/needs.rebuild deleted file mode 100644 index 815fd29..0000000 --- a/needs.rebuild +++ /dev/null @@ -1 +0,0 @@ -http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From 60a168800a30616cad8b6697632147677acc5054 Mon Sep 17 00:00:00 2001 From: Garrick Staples Date: Thu, 19 Oct 2006 17:26:58 +0000 Subject: [PATCH 19/59] - Rebuild with ncurses support --- aalib.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/aalib.spec b/aalib.spec index ef1b4ad..a2f4731 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.9.%{rc_subver}%{?dist} +Release: 0.10.%{rc_subver}%{?dist} License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -13,7 +13,7 @@ Patch1: aalib-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch Patch3: aalib-1.4rc5-rpath.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: slang-devel libXt-devel gpm-devel +BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel %description AA-lib is a low level gfx library just as many other libraries are. The @@ -51,7 +51,7 @@ touch `find -name Makefile.in` %build -%configure --disable-static +%configure --disable-static --with-curses-driver=yes --with-ncurses # Don't use rpath! sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -101,6 +101,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Oct 19 2006 Garrick Staples 1.4.0-0.10.rc6 +- Rebuild with ncurses support + * Mon Aug 28 2006 Hans de Goede 1.4.0-0.8.rc6 - FE6 Rebuild From e868d94155d155bbddaa51a7b3f0ddb0335e6f57 Mon Sep 17 00:00:00 2001 From: Garrick Staples Date: Thu, 19 Oct 2006 17:49:49 +0000 Subject: [PATCH 20/59] - incorrect subversion in previous two changelog entries --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index a2f4731..555eb7d 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.10.%{rc_subver}%{?dist} +Release: 0.11.%{rc_subver}%{?dist} License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -101,6 +101,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Oct 19 2006 Garrick Staples 1.4.0-0.11.rc5 +- incorrect subversion in previous two changelog entries + * Thu Oct 19 2006 Garrick Staples 1.4.0-0.10.rc6 - Rebuild with ncurses support From 05ab7c5ac0749573f5825ddb9977167f4fe5f86d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 4 May 2007 21:13:25 +0000 Subject: [PATCH 21/59] fix ppc64 build (#239101) --- aalib-ppc.patch | 19 +++++++++++++++++++ aalib.spec | 7 ++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 aalib-ppc.patch diff --git a/aalib-ppc.patch b/aalib-ppc.patch new file mode 100644 index 0000000..617f01f --- /dev/null +++ b/aalib-ppc.patch @@ -0,0 +1,19 @@ +--- aalib-1.4.0/ltconfig.foo 2007-05-04 08:47:13.000000000 -0400 ++++ aalib-1.4.0/ltconfig 2007-05-04 08:48:26.000000000 -0400 +@@ -1994,16 +1994,6 @@ linux-gnu*) + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + deplibs_check_method=pass_all +- +- if test -f /lib/ld.so.1; then +- dynamic_linker='GNU ld.so' +- else +- # Only the GNU ld.so supports shared libraries on MkLinux. +- case "$host_cpu" in +- powerpc*) dynamic_linker=no ;; +- *) dynamic_linker='Linux ld.so' ;; +- esac +- fi + ;; + + netbsd*) diff --git a/aalib.spec b/aalib.spec index 555eb7d..a45f876 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.11.%{rc_subver}%{?dist} +Release: 0.12.%{rc_subver}%{?dist} License: LGPL Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -12,6 +12,7 @@ Patch0: aalib-aclocal.patch Patch1: aalib-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch Patch3: aalib-1.4rc5-rpath.patch +Patch4: aalib-ppc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel @@ -41,6 +42,7 @@ with aalib. %patch1 -p0 %patch2 -p1 -b .bug149361 %patch3 -p1 -b .rpath +%patch4 -p1 -b .ppc sed -i -e 's/^\(.*SHARED.*\)@AALIB_LIBS@/\1 -laa/' aalib-config.in # sigh stop autoxxx from rerunning because of our patches above. touch aclocal.m4 @@ -101,6 +103,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri May 4 2007 Bill Nottingham 1.4.0-0.12.rc5 +- remove some dainbramage in ltconfig so it builds shared libs on ppc64 + * Thu Oct 19 2006 Garrick Staples 1.4.0-0.11.rc5 - incorrect subversion in previous two changelog entries From fc291758b7994ed4f666b13897e228d3955f4f60 Mon Sep 17 00:00:00 2001 From: Garrick Staples Date: Thu, 16 Aug 2007 06:00:14 +0000 Subject: [PATCH 22/59] - correct License: tag --- aalib.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/aalib.spec b/aalib.spec index a45f876..354961b 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,8 +3,8 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.12.%{rc_subver}%{?dist} -License: LGPL +Release: 0.13.%{rc_subver}%{?dist} +License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -103,6 +103,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Aug 15 2007 Garrick Staples 1.4.0-0.13.rc5 +- correct License: tag + * Fri May 4 2007 Bill Nottingham 1.4.0-0.12.rc5 - remove some dainbramage in ltconfig so it builds shared libs on ppc64 From cfbf879133de18c593ba9ec30eebf096dc15b4bf Mon Sep 17 00:00:00 2001 From: Garrick Staples Date: Thu, 14 Feb 2008 21:41:02 +0000 Subject: [PATCH 23/59] - fix multilib conflicts by splitting out libs package and fix timestamps and aalib-config --- aalib-1.4rc5-x_libs.patch | 13 +++++++++++ aalib-config-rpath.patch | 4 ++-- aalib.spec | 47 ++++++++++++++++++++++++--------------- 3 files changed, 44 insertions(+), 20 deletions(-) create mode 100644 aalib-1.4rc5-x_libs.patch diff --git a/aalib-1.4rc5-x_libs.patch b/aalib-1.4rc5-x_libs.patch new file mode 100644 index 0000000..3340e7d --- /dev/null +++ b/aalib-1.4rc5-x_libs.patch @@ -0,0 +1,13 @@ +--- aalib-1.4.0/configure.in.X_LIBS 2007-12-12 17:48:53.000000000 -0800 ++++ aalib-1.4.0/configure.in 2007-12-12 17:49:11.000000000 -0800 +@@ -103,8 +103,8 @@ AC_PATH_XTRA + if test "x$no_x" = x; then + x_driver=true + AC_DEFINE(X11_DRIVER) +- LIBS="$LIBS $X_EXTRA_LIBS $X_LIBS -lX11" +- AALIB_LIBS="$AALIB_LIBS $X_EXTRA_LIBS $X_LIBS -lX11" ++ LIBS="$LIBS $X_EXTRA_LIBS -lX11" ++ AALIB_LIBS="$AALIB_LIBS $X_EXTRA_LIBS -lX11" + CFLAGS="$CFLAGS $X_CFLAGS" + fi + diff --git a/aalib-config-rpath.patch b/aalib-config-rpath.patch index c045a40..c325ad9 100644 --- a/aalib-config-rpath.patch +++ b/aalib-config-rpath.patch @@ -5,13 +5,13 @@ ;; @ENABLE_SHARED_TRUE@ --libs) -@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@ @AALIB_RLD_FLAGS@" -+@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@" ++@ENABLE_SHARED_TRUE@ libdirs="" @ENABLE_SHARED_TRUE@ echo $libdirs @AALIB_LIBS@ @ENABLE_SHARED_TRUE@ ;; @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) -@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@ @AALIB_RLD_FLAGS@" -+@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@" ++@ENABLE_STATIC_TRUE@ libdirs="" @ENABLE_STATIC_TRUE@ echo $libdirs @AALIB_LIBS@ @ENABLE_STATIC_TRUE@ ;; *) diff --git a/aalib.spec b/aalib.spec index 354961b..2808046 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.13.%{rc_subver}%{?dist} +Release: 0.14.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -12,9 +12,10 @@ Patch0: aalib-aclocal.patch Patch1: aalib-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch Patch3: aalib-1.4rc5-rpath.patch -Patch4: aalib-ppc.patch +Patch4: aalib-1.4rc5-x_libs.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel +BuildRequires: autoconf libtool %description AA-lib is a low level gfx library just as many other libraries are. The @@ -23,6 +24,13 @@ fact, there is no graphical output possible. AA-lib replaces those old-fashioned output methods with a powerful ASCII art renderer. The API is designed to be similar to other graphics libraries. +%package libs +Summary: Library files for aalib +Group: System/Libraries +Requires: %{name} = %{version}-%{release} +Obsoletes: aalib < 1.4.0-0.14 +%description libs +This package contains library files for aalib. %package devel Summary: Development files for aalib @@ -42,36 +50,32 @@ with aalib. %patch1 -p0 %patch2 -p1 -b .bug149361 %patch3 -p1 -b .rpath -%patch4 -p1 -b .ppc -sed -i -e 's/^\(.*SHARED.*\)@AALIB_LIBS@/\1 -laa/' aalib-config.in -# sigh stop autoxxx from rerunning because of our patches above. -touch aclocal.m4 -touch configure -touch src/stamp-h.in -touch src/config.h.in -touch `find -name Makefile.in` - +%patch4 -p1 -b .x_libs +# included libtool is too old, we need to rebuild +autoreconf -v -f -i %build %configure --disable-static --with-curses-driver=yes --with-ncurses -# Don't use rpath! -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" rm -f $RPM_BUILD_ROOT{%{_libdir}/libaa.la,%{_infodir}/dir} +# clean up multilib conflicts +touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/aclocal/aalib.m4 + + %clean rm -rf $RPM_BUILD_ROOT -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig %post devel /sbin/install-info %{_infodir}/libaa.info %{_infodir}/dir 2>/dev/null || : @@ -90,9 +94,12 @@ fi %{_bindir}/aainfo %{_bindir}/aasavefont %{_bindir}/aatest -%{_libdir}/libaa.so.* %{_mandir}/man1/aafire.1* +%files libs +%defattr(-,root,root,-) +%{_libdir}/libaa.so.* + %files devel %defattr(-,root,root,-) %{_bindir}/aalib-config @@ -103,6 +110,10 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Feb 14 2008 Garrick Staples 1.4.0-0.14.rc5 +- fix multilib conflicts by splitting out libs package and fix + timestamps and aalib-config + * Wed Aug 15 2007 Garrick Staples 1.4.0-0.13.rc5 - correct License: tag From 66f1a7efae9e234714afa944a0fb045e8455685e Mon Sep 17 00:00:00 2001 From: Garrick Staples Date: Tue, 25 Mar 2008 03:48:14 +0000 Subject: [PATCH 24/59] - remove unnecessary link bloat from aalib-config - libs package doesn't need to require base package - move docs to libs package --- aalib-1.4rc5-libflag.patch | 17 +++++++++++++++++ aalib.spec | 14 ++++++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 aalib-1.4rc5-libflag.patch diff --git a/aalib-1.4rc5-libflag.patch b/aalib-1.4rc5-libflag.patch new file mode 100644 index 0000000..cb7588e --- /dev/null +++ b/aalib-1.4rc5-libflag.patch @@ -0,0 +1,17 @@ +--- aalib-config.in.libflag 2008-03-24 20:42:47.000000000 -0700 ++++ aalib-config.in 2008-03-24 20:44:24.000000000 -0700 +@@ -49,12 +49,12 @@ while test $# -gt 0; do + ;; + @ENABLE_SHARED_TRUE@ --libs) + @ENABLE_SHARED_TRUE@ libdirs="" +-@ENABLE_SHARED_TRUE@ echo $libdirs @AALIB_LIBS@ ++@ENABLE_SHARED_TRUE@ echo $libdirs -laa + @ENABLE_SHARED_TRUE@ ;; + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) + @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) + @ENABLE_STATIC_TRUE@ libdirs="" +-@ENABLE_STATIC_TRUE@ echo $libdirs @AALIB_LIBS@ ++@ENABLE_STATIC_TRUE@ echo $libdirs -laa + @ENABLE_STATIC_TRUE@ ;; + *) + echo "${usage}" 1>&2 diff --git a/aalib.spec b/aalib.spec index 2808046..3afd997 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.14.%{rc_subver}%{?dist} +Release: 0.15.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -13,6 +13,7 @@ Patch1: aalib-config-rpath.patch Patch2: aalib-1.4rc5-bug149361.patch Patch3: aalib-1.4rc5-rpath.patch Patch4: aalib-1.4rc5-x_libs.patch +Patch5: aalib-1.4rc5-libflag.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel BuildRequires: autoconf libtool @@ -27,7 +28,6 @@ is designed to be similar to other graphics libraries. %package libs Summary: Library files for aalib Group: System/Libraries -Requires: %{name} = %{version}-%{release} Obsoletes: aalib < 1.4.0-0.14 %description libs This package contains library files for aalib. @@ -35,7 +35,7 @@ This package contains library files for aalib. %package devel Summary: Development files for aalib Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} Requires(post): /sbin/install-info Requires(postun): /sbin/install-info @@ -51,6 +51,7 @@ with aalib. %patch2 -p1 -b .bug149361 %patch3 -p1 -b .rpath %patch4 -p1 -b .x_libs +%patch5 -p0 -b .libflag # included libtool is too old, we need to rebuild autoreconf -v -f -i @@ -89,7 +90,6 @@ fi %files %defattr(-,root,root,-) -%doc README COPYING ChangeLog NEWS %{_bindir}/aafire %{_bindir}/aainfo %{_bindir}/aasavefont @@ -98,6 +98,7 @@ fi %files libs %defattr(-,root,root,-) +%doc README COPYING ChangeLog NEWS %{_libdir}/libaa.so.* %files devel @@ -110,6 +111,11 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Mar 24 2008 Garrick Staples 1.4.0-0.15.rc5 +- remove unnecessary link bloat from aalib-config +- libs package doesn't need to require base package +- move docs to libs package + * Thu Feb 14 2008 Garrick Staples 1.4.0-0.14.rc5 - fix multilib conflicts by splitting out libs package and fix timestamps and aalib-config From affce4efb14538301e735f1ad3b036d84ffc5553 Mon Sep 17 00:00:00 2001 From: Caolan McNamara Date: Fri, 18 Jul 2008 11:42:27 +0000 Subject: [PATCH 25/59] rebuild for gpm --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 3afd997..4ee4850 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.15.%{rc_subver}%{?dist} +Release: 0.16.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jul 18 2008 Caolán McNamara 1.4.0-0.16.rc5 +- rebuild for new libgpm + * Mon Mar 24 2008 Garrick Staples 1.4.0-0.15.rc5 - remove unnecessary link bloat from aalib-config - libs package doesn't need to require base package From 9439ce11772ea7bc2891e82fe3f3ddaab7a86eda Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 23 Feb 2009 23:49:22 +0000 Subject: [PATCH 26/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 4ee4850..ea87f6e 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.16.%{rc_subver}%{?dist} +Release: 0.17.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Feb 23 2009 Fedora Release Engineering - 1.4.0-0.17.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Jul 18 2008 Caolán McNamara 1.4.0-0.16.rc5 - rebuild for new libgpm From 4bc729111ae79360804df335ab1112d25a11f43e Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:28:40 +0000 Subject: [PATCH 27/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index ea87f6e..4519dda 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.17.%{rc_subver}%{?dist} +Release: 0.18.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-0.18.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.0-0.17.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From c744152b583ccac31a19a29bb9d9e8c2e3d01fb9 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:37:59 +0000 Subject: [PATCH 28/59] 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 22ca719..64c8af2 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := aalib 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 0dab2b491eedcc0bd21bb1ecf842015c0384385e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:30:02 +0000 Subject: [PATCH 29/59] 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 64c8af2..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: aalib -# $Id$ -NAME := aalib -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 9d78f33e1788518a50624cafffbe3117fc18323b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:04:34 -0600 Subject: [PATCH 30/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 4519dda..49a6744 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.18.%{rc_subver}%{?dist} +Release: 0.19.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.4.0-0.19.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-0.18.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 45ed6171dac4b04edc203ee32ff28a1caf2d1161 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 14:56:05 -0600 Subject: [PATCH 31/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 49a6744..4d12176 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.19.%{rc_subver}%{?dist} +Release: 0.20.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 1.4.0-0.20.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 1.4.0-0.19.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 4b97a4642a375ba366d2c965a4237b6767d15e5f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:25:59 -0500 Subject: [PATCH 32/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 4d12176..082e604 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.20.%{rc_subver}%{?dist} +Release: 0.21.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 1.4.0-0.21.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jan 12 2012 Fedora Release Engineering - 1.4.0-0.20.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 8b0698e4ca018d70575668cf131e2553f0d65f6e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 10:11:59 -0600 Subject: [PATCH 33/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 082e604..c628113 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.21.%{rc_subver}%{?dist} +Release: 0.22.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 1.4.0-0.22.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Jul 18 2012 Fedora Release Engineering - 1.4.0-0.21.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 43f3b8931856e88f280ae4d1d8f007543355b4bd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:05:35 -0500 Subject: [PATCH 34/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index c628113..25aa5a1 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.22.%{rc_subver}%{?dist} +Release: 0.23.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.4.0-0.23.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Feb 13 2013 Fedora Release Engineering - 1.4.0-0.22.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 420ee2d2391f8f69c157d98b0df63e789385d56c Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Wed, 28 Aug 2013 09:42:42 -0400 Subject: [PATCH 35/59] drop ancient obsoletes --- aalib.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aalib.spec b/aalib.spec index 25aa5a1..151ecdd 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.23.%{rc_subver}%{?dist} +Release: 0.24.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -28,7 +28,6 @@ is designed to be similar to other graphics libraries. %package libs Summary: Library files for aalib Group: System/Libraries -Obsoletes: aalib < 1.4.0-0.14 %description libs This package contains library files for aalib. @@ -111,6 +110,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Aug 28 2013 Tom Callaway - 1.4.0-0.24.rc5 +- rebuild to drop ancient obsoletes + * Sat Aug 03 2013 Fedora Release Engineering - 1.4.0-0.23.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 44d0c96089d94974d4ae069be94f1b3cce28eb98 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 18:55:58 -0500 Subject: [PATCH 36/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 151ecdd..388e798 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.24.%{rc_subver}%{?dist} +Release: 0.25.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -110,6 +110,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jun 06 2014 Fedora Release Engineering - 1.4.0-0.25.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Wed Aug 28 2013 Tom Callaway - 1.4.0-0.24.rc5 - rebuild to drop ancient obsoletes From 987ba2bdfeb25b0803f4be3103c667e077496d9b Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 13 Aug 2014 12:39:09 +0200 Subject: [PATCH 37/59] aalib.spec: fixed Group There is no Group "System/Libraries" in /usr/share/doc/rpm/GROUPS --- aalib.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 388e798..d5762be 100644 --- a/aalib.spec +++ b/aalib.spec @@ -27,7 +27,7 @@ is designed to be similar to other graphics libraries. %package libs Summary: Library files for aalib -Group: System/Libraries +Group: System Environment/Libraries %description libs This package contains library files for aalib. From c2c128c9c80050d3ff4ec0453cf636cdb285c1c4 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 15 Aug 2014 19:50:37 +0000 Subject: [PATCH 38/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index d5762be..e990d4b 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.25.%{rc_subver}%{?dist} +Release: 0.26.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -110,6 +110,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Aug 15 2014 Fedora Release Engineering - 1.4.0-0.26.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Fri Jun 06 2014 Fedora Release Engineering - 1.4.0-0.25.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From c98c8ae142574b70ab193f893425ad48f146ba6a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:31:12 +0000 Subject: [PATCH 39/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index e990d4b..11ebd9b 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.26.%{rc_subver}%{?dist} +Release: 0.27.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -110,6 +110,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.4.0-0.27.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Fri Aug 15 2014 Fedora Release Engineering - 1.4.0-0.26.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From a41a05eee71cf223750000b5c48bcf0b1ea95c31 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 19 Jan 2016 22:38:40 -0500 Subject: [PATCH 40/59] spec cleanups --- aalib.spec | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/aalib.spec b/aalib.spec index 11ebd9b..dfaebc4 100644 --- a/aalib.spec +++ b/aalib.spec @@ -1,9 +1,9 @@ -%define rc_subver rc5 +%global rc_subver rc5 Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.27.%{rc_subver}%{?dist} +Release: 0.28.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -14,7 +14,6 @@ Patch2: aalib-1.4rc5-bug149361.patch Patch3: aalib-1.4rc5-rpath.patch Patch4: aalib-1.4rc5-x_libs.patch Patch5: aalib-1.4rc5-libflag.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel BuildRequires: autoconf libtool @@ -61,19 +60,12 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" rm -f $RPM_BUILD_ROOT{%{_libdir}/libaa.la,%{_infodir}/dir} # clean up multilib conflicts touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/aclocal/aalib.m4 - - -%clean -rm -rf $RPM_BUILD_ROOT - - %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -88,7 +80,6 @@ fi %files -%defattr(-,root,root,-) %{_bindir}/aafire %{_bindir}/aainfo %{_bindir}/aasavefont @@ -96,12 +87,11 @@ fi %{_mandir}/man1/aafire.1* %files libs -%defattr(-,root,root,-) -%doc README COPYING ChangeLog NEWS +%doc README ChangeLog NEWS +%license COPYING %{_libdir}/libaa.so.* %files devel -%defattr(-,root,root,-) %{_bindir}/aalib-config %{_mandir}/man3/* %{_libdir}/libaa.so @@ -110,6 +100,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Tue Jan 19 2016 Tom Callaway - 1.4.0-0.28.rc5 +- spec cleanups + * Tue Jun 16 2015 Fedora Release Engineering - 1.4.0-0.27.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 551782488f03777cc8c93ef42024d593ae62779d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 15:54:35 +0000 Subject: [PATCH 41/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index dfaebc4..d6caae5 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.28.%{rc_subver}%{?dist} +Release: 0.29.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -100,6 +100,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.4.0-0.29.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Jan 19 2016 Tom Callaway - 1.4.0-0.28.rc5 - spec cleanups From 2ab1f4c0f271e34f457765648d7bf8a3b08ed935 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:39:43 +0000 Subject: [PATCH 42/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index d6caae5..e11e5f7 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.29.%{rc_subver}%{?dist} +Release: 0.30.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -100,6 +100,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.4.0-0.30.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 1.4.0-0.29.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 75c9f91df0992693559a8a018cdf449ec306b143 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:29:36 +0000 Subject: [PATCH 43/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index e11e5f7..4e4d7f0 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.30.%{rc_subver}%{?dist} +Release: 0.31.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -100,6 +100,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.4.0-0.31.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.4.0-0.30.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From eefe6e769153425412524baeb696cc7d1eb8a376 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:20:19 +0000 Subject: [PATCH 44/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 4e4d7f0..5b1f302 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.31.%{rc_subver}%{?dist} +Release: 0.32.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -100,6 +100,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 1.4.0-0.32.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.4.0-0.31.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From c0a6cc3f932266c01dd951c6865a2ce0680f4dd4 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 4 Feb 2018 11:31:54 +0100 Subject: [PATCH 45/59] Switch to %ldconfig_scriptlets Signed-off-by: Igor Gnatenko --- aalib.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/aalib.spec b/aalib.spec index 5b1f302..d50e14c 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.32.%{rc_subver}%{?dist} +Release: 0.33.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -66,8 +66,7 @@ rm -f $RPM_BUILD_ROOT{%{_libdir}/libaa.la,%{_infodir}/dir} # clean up multilib conflicts touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/aclocal/aalib.m4 -%post libs -p /sbin/ldconfig -%postun libs -p /sbin/ldconfig +%ldconfig_scriptlets libs %post devel /sbin/install-info %{_infodir}/libaa.info %{_infodir}/dir 2>/dev/null || : @@ -100,6 +99,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Sun Feb 04 2018 Igor Gnatenko - 1.4.0-0.33.rc5 +- Switch to %%ldconfig_scriptlets + * Wed Aug 02 2017 Fedora Release Engineering - 1.4.0-0.32.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From b402ba901da04a128981f3fead5e61a94ff881c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 01:42:30 +0000 Subject: [PATCH 46/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index d50e14c..248f912 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.33.%{rc_subver}%{?dist} +Release: 0.34.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -99,6 +99,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.4.0-0.34.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Sun Feb 04 2018 Igor Gnatenko - 1.4.0-0.33.rc5 - Switch to %%ldconfig_scriptlets From 5afe6902cfdf2ec13fffe131f160b8a1d9e7e4e5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 19:54:34 +0000 Subject: [PATCH 47/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 248f912..c1db479 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.34.%{rc_subver}%{?dist} +Release: 0.35.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -99,6 +99,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.4.0-0.35.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.4.0-0.34.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From ff1e7a22be2965a82155a4c590edbe62c8ee732d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 27 Jan 2019 15:23:39 +0100 Subject: [PATCH 48/59] Remove obsolete scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- aalib.spec | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/aalib.spec b/aalib.spec index c1db479..94d5b51 100644 --- a/aalib.spec +++ b/aalib.spec @@ -34,8 +34,6 @@ This package contains library files for aalib. Summary: Development files for aalib Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} -Requires(post): /sbin/install-info -Requires(postun): /sbin/install-info %description devel This package contains header files and other files needed to develop @@ -68,16 +66,6 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %ldconfig_scriptlets libs -%post devel -/sbin/install-info %{_infodir}/libaa.info %{_infodir}/dir 2>/dev/null || : - -%preun devel -if [ $1 -eq 0 ]; then - /sbin/install-info --delete %{_infodir}/libaa.info %{_infodir}/dir \ - 2>/dev/null || : -fi - - %files %{_bindir}/aafire %{_bindir}/aainfo From 928bdc698e5b4188fd65c94bac2bd98dbf6c6502 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:38 +0100 Subject: [PATCH 49/59] Remove obsolete Group tag Signed-off-by: Igor Gnatenko --- aalib.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/aalib.spec b/aalib.spec index 94d5b51..4f7d506 100644 --- a/aalib.spec +++ b/aalib.spec @@ -5,7 +5,6 @@ Name: aalib Version: 1.4.0 Release: 0.35.%{rc_subver}%{?dist} License: LGPLv2+ -Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz Patch0: aalib-aclocal.patch @@ -26,13 +25,11 @@ is designed to be similar to other graphics libraries. %package libs Summary: Library files for aalib -Group: System Environment/Libraries %description libs This package contains library files for aalib. %package devel Summary: Development files for aalib -Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} %description devel From 8f42ec85237fcbdd1c3983306a1405e35ea25c9b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 12:50:22 +0000 Subject: [PATCH 50/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 4f7d506..32eb272 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.35.%{rc_subver}%{?dist} +Release: 0.36.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -84,6 +84,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.4.0-0.36.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jul 12 2018 Fedora Release Engineering - 1.4.0-0.35.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 12094584631f8d5354a543aa75fcdf3f8a17068f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:24:47 +0000 Subject: [PATCH 51/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 32eb272..5d994d6 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.36.%{rc_subver}%{?dist} +Release: 0.37.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -84,6 +84,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.4.0-0.37.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 1.4.0-0.36.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From b467e55e97ffc574fc61e0325155770d6c2c40a6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:04:55 +0000 Subject: [PATCH 52/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 5d994d6..67e5b57 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.37.%{rc_subver}%{?dist} +Release: 0.38.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -84,6 +84,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.4.0-0.38.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Jul 24 2019 Fedora Release Engineering - 1.4.0-0.37.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 17f9bdd77c0405139823dfe7183ea5d0289ee886 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:38:08 +0000 Subject: [PATCH 53/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 67e5b57..d6a3556 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.38.%{rc_subver}%{?dist} +Release: 0.39.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -84,6 +84,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.4.0-0.39.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jan 28 2020 Fedora Release Engineering - 1.4.0-0.38.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From dd1b1e2533ca73084450a169d2b82557e7b92101 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jul 2020 23:46:13 +0000 Subject: [PATCH 54/59] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index d6a3556..e51bd3f 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.39.%{rc_subver}%{?dist} +Release: 0.40.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -84,6 +84,10 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jul 31 2020 Fedora Release Engineering - 1.4.0-0.40.rc5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.4.0-0.39.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 24c519a12a2bc7e53b95b77e5d4700b6252f85b1 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 15 Dec 2020 01:38:05 +0000 Subject: [PATCH 55/59] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- aalib.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/aalib.spec b/aalib.spec index e51bd3f..0751843 100644 --- a/aalib.spec +++ b/aalib.spec @@ -15,6 +15,7 @@ Patch4: aalib-1.4rc5-x_libs.patch Patch5: aalib-1.4rc5-libflag.patch BuildRequires: slang-devel libXt-devel gpm-devel ncurses-devel BuildRequires: autoconf libtool +BuildRequires: make %description AA-lib is a low level gfx library just as many other libraries are. The From 40f58ecd29740ebeca251931564a7bdd4a24fe79 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 25 Jan 2021 23:42:07 +0000 Subject: [PATCH 56/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index 0751843..cc28e88 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.40.%{rc_subver}%{?dist} +Release: 0.41.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -85,6 +85,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Mon Jan 25 2021 Fedora Release Engineering - 1.4.0-0.41.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Fri Jul 31 2020 Fedora Release Engineering - 1.4.0-0.40.rc5 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 349ccbc7d7eac5d1cf556acf4b8f78bfc13572c4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:09:03 +0000 Subject: [PATCH 58/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- aalib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aalib.spec b/aalib.spec index cc28e88..bcc0be7 100644 --- a/aalib.spec +++ b/aalib.spec @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.41.%{rc_subver}%{?dist} +Release: 0.42.%{rc_subver}%{?dist} License: LGPLv2+ URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz @@ -85,6 +85,9 @@ touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/aalib-config $RPM_BUILD_ROOT%{_datadir}/ %{_datadir}/aclocal/aalib.m4 %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 1.4.0-0.42.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Jan 25 2021 Fedora Release Engineering - 1.4.0-0.41.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 58827f47d4f002c5ac51da83d56862f049de7830 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 17:49:45 +0300 Subject: [PATCH 59/59] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index d31b3e6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -9801095c42bba12edebd1902bcf0a990 aalib-1.4rc5.tar.gz