From cfcc0043d0ab2f1a8a571004e646a8cb3c4ec1bf Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 21 Dec 2008 04:22:18 +0000 Subject: [PATCH 01/10] Setup of module mingw32-bzip2 --- .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..bb3ef09 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: mingw32-bzip2 +# $Id$ +NAME := mingw32-bzip2 +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/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/sources b/sources new file mode 100644 index 0000000..e69de29 From b062ec87ff9ff63954a95f89f5f6ac8250b6f56a Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sun, 21 Dec 2008 11:16:37 +0000 Subject: [PATCH 02/10] Initial import. --- .cvsignore | 1 + bzip2-1.0.4-bzip2recover.patch | 12 +++ bzip2-1.0.4-cflags.patch | 11 +++ bzip2-1.0.4-saneso.patch | 11 +++ import.log | 1 + mingw32-bzip2-1.0.5-dll.patch | 15 ++++ mingw32-bzip2-1.0.5-slash.patch | 11 +++ mingw32-bzip2.spec | 153 ++++++++++++++++++++++++++++++++ sources | 1 + 9 files changed, 216 insertions(+) create mode 100644 bzip2-1.0.4-bzip2recover.patch create mode 100644 bzip2-1.0.4-cflags.patch create mode 100644 bzip2-1.0.4-saneso.patch create mode 100644 import.log create mode 100644 mingw32-bzip2-1.0.5-dll.patch create mode 100644 mingw32-bzip2-1.0.5-slash.patch create mode 100644 mingw32-bzip2.spec diff --git a/.cvsignore b/.cvsignore index e69de29..889b8be 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +bzip2-1.0.5.tar.gz diff --git a/bzip2-1.0.4-bzip2recover.patch b/bzip2-1.0.4-bzip2recover.patch new file mode 100644 index 0000000..e2bfe1c --- /dev/null +++ b/bzip2-1.0.4-bzip2recover.patch @@ -0,0 +1,12 @@ +--- bzip2-1.0.4/bzip2recover.c.pom 2007-01-03 03:00:55.000000000 +0100 ++++ bzip2-1.0.4/bzip2recover.c 2007-02-05 11:55:17.000000000 +0100 +@@ -309,7 +309,8 @@ + UInt32 buffHi, buffLo, blockCRC; + Char* p; + +- strcpy ( progName, argv[0] ); ++ strncpy ( progName, argv[0], BZ_MAX_FILENAME-1); ++ progName[BZ_MAX_FILENAME-1]='\0'; + inFileName[0] = outFileName[0] = 0; + + fprintf ( stderr, diff --git a/bzip2-1.0.4-cflags.patch b/bzip2-1.0.4-cflags.patch new file mode 100644 index 0000000..cd3ba90 --- /dev/null +++ b/bzip2-1.0.4-cflags.patch @@ -0,0 +1,11 @@ +--- bzip2-1.0.4/Makefile-libbz2_so.cflags 2007-01-08 09:47:27.000000000 +0100 ++++ bzip2-1.0.4/Makefile-libbz2_so 2007-01-08 09:48:47.000000000 +0100 +@@ -35,7 +35,7 @@ + bzlib.o + + all: $(OBJS) +- $(CC) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.4 $(OBJS) ++ $(CC) $(CFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.4 $(OBJS) + $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.4 + rm -f libbz2.so.1.0 + ln -s libbz2.so.1.0.4 libbz2.so.1.0 diff --git a/bzip2-1.0.4-saneso.patch b/bzip2-1.0.4-saneso.patch new file mode 100644 index 0000000..d3b3cbc --- /dev/null +++ b/bzip2-1.0.4-saneso.patch @@ -0,0 +1,11 @@ +--- bzip2-1.0.4/Makefile-libbz2_so.senaso 2007-01-03 03:00:55.000000000 +0100 ++++ bzip2-1.0.4/Makefile-libbz2_so 2007-01-08 09:12:42.000000000 +0100 +@@ -35,7 +35,7 @@ + bzlib.o + + all: $(OBJS) +- $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.4 $(OBJS) ++ $(CC) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.4 $(OBJS) + $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.4 + rm -f libbz2.so.1.0 + ln -s libbz2.so.1.0.4 libbz2.so.1.0 diff --git a/import.log b/import.log new file mode 100644 index 0000000..f76d6b2 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +mingw32-bzip2-1_0_5-5_fc10:HEAD:mingw32-bzip2-1.0.5-5.fc10.src.rpm:1229857848 diff --git a/mingw32-bzip2-1.0.5-dll.patch b/mingw32-bzip2-1.0.5-dll.patch new file mode 100644 index 0000000..0b6f23c --- /dev/null +++ b/mingw32-bzip2-1.0.5-dll.patch @@ -0,0 +1,15 @@ +--- bzip2-1.0.5/Makefile-libbz2_so 2008-09-25 12:52:11.000000000 +0100 ++++ bzip2-1.0.5.dll/Makefile-libbz2_so 2008-09-25 12:59:22.000000000 +0100 +@@ -35,10 +35,8 @@ + bzlib.o + + all: $(OBJS) +- $(CC) $(CFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.4 $(OBJS) +- $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.4 +- rm -f libbz2.so.1.0 +- ln -s libbz2.so.1.0.4 libbz2.so.1.0 ++ $(CC) $(CFLAGS) -shared -Wl,--out-implib -Wl,bz2.dll.a -Wl,-soname -Wl,bz2-1.dll -o bz2-1.dll $(OBJS) ++ $(CC) $(CFLAGS) -o bzip2-shared bzip2.c bz2-1.dll + + clean: + rm -f $(OBJS) bzip2.o libbz2.so.1.0.4 libbz2.so.1.0 bzip2-shared diff --git a/mingw32-bzip2-1.0.5-slash.patch b/mingw32-bzip2-1.0.5-slash.patch new file mode 100644 index 0000000..3b5ed14 --- /dev/null +++ b/mingw32-bzip2-1.0.5-slash.patch @@ -0,0 +1,11 @@ +--- bzip2-1.0.5.orig/bzip2.c 2007-12-09 12:22:06.000000000 +0000 ++++ bzip2-1.0.5/bzip2.c 2008-09-25 12:31:02.000000000 +0100 +@@ -128,7 +128,7 @@ + #if BZ_LCCWIN32 + # include + # include +-# include ++# include + + # define NORETURN /**/ + # define PATH_SEP '\\' diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec new file mode 100644 index 0000000..84b4ce6 --- /dev/null +++ b/mingw32-bzip2.spec @@ -0,0 +1,153 @@ +%define __strip %{_mingw32_strip} +%define __objdump %{_mingw32_objdump} +%define _use_internal_dependency_generator 0 +%define __find_requires %{_mingw32_findrequires} +%define __find_provides %{_mingw32_findprovides} + +%define library_version 1.0.4 + +# Running the tests requires Wine. +%define run_tests 0 + +Name: mingw32-bzip2 +Version: 1.0.5 +Release: 5%{?dist} +Summary: MinGW port of bzip2 file compression utility + +License: BSD +Group: Development/Libraries +URL: http://www.bzip.org/ +Source0: http://www.bzip.org/%{version}/bzip2-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch + +Patch0: bzip2-1.0.4-saneso.patch +Patch5: bzip2-1.0.4-cflags.patch +Patch6: bzip2-1.0.4-bzip2recover.patch + +Patch10: mingw32-bzip2-1.0.5-slash.patch +Patch11: mingw32-bzip2-1.0.5-dll.patch + +BuildRequires: mingw32-filesystem >= 26 +BuildRequires: mingw32-gcc +BuildRequires: mingw32-binutils + +%if %{run_tests} +BuildRequires: wine +%endif + + +%description +Bzip2 is a freely available, patent-free, high quality data compressor. +Bzip2 compresses files to within 10 to 15 percent of the capabilities +of the best techniques available. However, bzip2 has the added benefit +of being approximately two times faster at compression and six times +faster at decompression than those techniques. Bzip2 is not the +fastest compression utility, but it does strike a balance between speed +and compression capability. + +This package contains development tools and libraries for use when +cross-compiling Windows software in Fedora. + + +%prep +%setup -q -n bzip2-%{version} + +%patch0 -p1 -b .saneso +%patch5 -p1 -b .cflags +%patch6 -p1 -b .bz2recover + +%patch10 -p1 -b .slash +%patch11 -p1 -b .dll + + +%build +make -f Makefile-libbz2_so \ + CC="%{_mingw32_cc}" \ + AR="%{_mingw32_ar}" \ + RANLIB="%{_mingw32_ranlib}" \ + CFLAGS="%{_mingw32_cflags} -D_FILE_OFFSET_BITS=64" \ + %{?_smp_mflags} all + +rm -f *.o +make CC="%{_mingw32_cc}" \ + AR="%{_mingw32_ar}" \ + RANLIB="%{_mingw32_ranlib}" \ + CFLAGS="%{_mingw32_cflags} -D_FILE_OFFSET_BITS=64" \ + %{?_smp_mflags} \ +%if %{run_tests} + all +%else + libbz2.a bzip2 bzip2recover +%endif + + +%install +rm -rf $RPM_BUILD_ROOT +make PREFIX=$RPM_BUILD_ROOT%{_mingw32_prefix} install + +# The binaries which are symlinks contain the full buildroot +# name in the symlink, so replace those. +pushd $RPM_BUILD_ROOT%{_mingw32_bindir} +rm bzcmp bzegrep bzfgrep bzless +ln -s bzdiff bzcmp +ln -s bzgrep bzegrep +ln -s bzgrep bzfgrep +ln -s bzmore bzless +popd + +# Remove the manpages, they're duplicates of the native package, +# and located in the wrong place anyway. +rm -rf $RPM_BUILD_ROOT%{_mingw32_prefix}/man + +# The Makefile doesn't install the DLL. +# Rename the library so that libtool can find it. +install bz2.dll.a $RPM_BUILD_ROOT%{_mingw32_libdir}/libbz2.dll.a +install bz2-1.dll $RPM_BUILD_ROOT%{_mingw32_bindir}/ + +# Remove the static library. +rm $RPM_BUILD_ROOT%{_mingw32_libdir}/libbz2.a + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root) +%doc LICENSE + +%{_mingw32_bindir}/bz2-1.dll +%{_mingw32_libdir}/libbz2.dll.a + +%{_mingw32_bindir}/bunzip2 +%{_mingw32_bindir}/bzcat +%{_mingw32_bindir}/bzcmp +%{_mingw32_bindir}/bzdiff +%{_mingw32_bindir}/bzegrep +%{_mingw32_bindir}/bzfgrep +%{_mingw32_bindir}/bzgrep +%{_mingw32_bindir}/bzip2 +%{_mingw32_bindir}/bzip2recover +%{_mingw32_bindir}/bzless +%{_mingw32_bindir}/bzmore + +%{_mingw32_includedir}/bzlib.h + + +%changelog +* Thu Dec 18 2008 Richard Jones - 1.0.5-5 +- Include the LICENSE file in doc section. + +* Sat Nov 22 2008 Richard Jones - 1.0.5-4 +- Rename the implib as libbz2.dll.a so that libtool can find it. + +* Wed Oct 29 2008 Richard Jones - 1.0.5-3 +- Fix mixed spaces/tabs in specfile. + +* Fri Oct 10 2008 Richard Jones - 1.0.5-2 +- Allow the tests to be disabled selectively. + +* Thu Sep 25 2008 Richard Jones - 1.0.5-1 +- Initial RPM release. diff --git a/sources b/sources index e69de29..7c28e65 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +3c15a0c8d1d3ee1c46a1634d00617b1a bzip2-1.0.5.tar.gz From be7b081678cdf87b72057c1e695fd964bf7beabe Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 20 Feb 2009 22:48:51 +0000 Subject: [PATCH 03/10] Rebuild for mingw32-gcc 4.4 --- mingw32-bzip2.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 84b4ce6..4a0db1a 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -29,7 +29,7 @@ Patch6: bzip2-1.0.4-bzip2recover.patch Patch10: mingw32-bzip2-1.0.5-slash.patch Patch11: mingw32-bzip2-1.0.5-dll.patch -BuildRequires: mingw32-filesystem >= 26 +BuildRequires: mingw32-filesystem >= 49 BuildRequires: mingw32-gcc BuildRequires: mingw32-binutils @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 20 2009 Richard W.M. Jones - 1.0.5-6 +- Rebuild for mingw32-gcc 4.4 + * Thu Dec 18 2008 Richard Jones - 1.0.5-5 - Include the LICENSE file in doc section. From bf8e0dc3e0a601d88f92699481250a5b0a9dd64c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 00:55:56 +0000 Subject: [PATCH 04/10] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- mingw32-bzip2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 4a0db1a..0f62b5e 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Feb 20 2009 Richard W.M. Jones - 1.0.5-6 - Rebuild for mingw32-gcc 4.4 From 5bc66a71777892b91c5458d9d586038f09831866 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 12:14:52 +0000 Subject: [PATCH 05/10] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- mingw32-bzip2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 0f62b5e..9d474da 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 5199e367df88b0bff8d1a65bbb2bee03a2361bfe Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:18:47 +0000 Subject: [PATCH 06/10] 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 bb3ef09..2164e9e 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: mingw32-bzip2 -# $Id$ +# $Id: Makefile,v 1.1 2008/12/21 04:22:17 kevin Exp $ NAME := mingw32-bzip2 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 24add36e5b41f5b8957eb8e9aab2669b3896a42d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 03:18:38 +0000 Subject: [PATCH 07/10] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2164e9e..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: mingw32-bzip2 -# $Id: Makefile,v 1.1 2008/12/21 04:22:17 kevin Exp $ -NAME := mingw32-bzip2 -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index f76d6b2..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -mingw32-bzip2-1_0_5-5_fc10:HEAD:mingw32-bzip2-1.0.5-5.fc10.src.rpm:1229857848 From c84672cd3ced538d818460684e882a4096bcb858 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 12:20:29 -0600 Subject: [PATCH 08/10] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- mingw32-bzip2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 9d474da..237e514 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 1.0.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Jul 25 2009 Fedora Release Engineering - 1.0.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 64ba0512ebd6ae97db814d30d31b6754ec7a1cf1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 03:55:51 -0600 Subject: [PATCH 09/10] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- mingw32-bzip2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 237e514..3770026 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 1.0.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Feb 08 2011 Fedora Release Engineering - 1.0.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 1a41b684f243c59c7d8a5b93671f5531bd2cfc90 Mon Sep 17 00:00:00 2001 From: Erik van Pienbroek Date: Mon, 27 Feb 2012 20:34:28 +0100 Subject: [PATCH 10/10] Rebuild against the mingw-w64 toolchain --- mingw32-bzip2.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw32-bzip2.spec b/mingw32-bzip2.spec index 3770026..414bfa3 100644 --- a/mingw32-bzip2.spec +++ b/mingw32-bzip2.spec @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 27 2012 Erik van Pienbroek - 1.0.5-11 +- Rebuild against the mingw-w64 toolchain + * Fri Jan 13 2012 Fedora Release Engineering - 1.0.5-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild