From 7c0e19fcdce37382563df573bdfa6ec0cc1aebb6 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 19 Aug 2019 07:24:40 +0200 Subject: [PATCH 1/3] "Adding package.cfg file" --- package.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 package.cfg diff --git a/package.cfg b/package.cfg new file mode 100644 index 0000000..66ea79d --- /dev/null +++ b/package.cfg @@ -0,0 +1,2 @@ +[koji] +targets = epel8 epel8-playground \ No newline at end of file From 2204b7e936f6906c8f00b50a0a30e37ecc3a0c2c Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Mon, 19 Aug 2019 22:56:56 +0200 Subject: [PATCH 2/3] Import from master --- .gitignore | 8 ++ sources | 1 + xerces-c.spec | 230 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 239 insertions(+) create mode 100644 .gitignore create mode 100644 xerces-c.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..755788d --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +xerces-c-3.0.1.tar.gz +/xerces-c-3.1.1.tar.gz +/xerces-c-3.1.2.tar.gz +/xerces-c-3.1.3.tar.gz +/xerces-c-3.1.4.tar.gz +/xerces-c-3.2.0.tar.gz +/xerces-c-3.2.1.tar.gz +/xerces-c-3.2.2.tar.gz diff --git a/sources b/sources index e69de29..a239dbd 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (xerces-c-3.2.2.tar.gz) = 13709b47b61d957d736f34b774dbc7fbd85171eedebd0cada41fd1d17929e6c42904c882b1e1d4f9b4fd464938b62e5ebb127187b4974dfade6a593e31471e80 diff --git a/xerces-c.spec b/xerces-c.spec new file mode 100644 index 0000000..dc612b3 --- /dev/null +++ b/xerces-c.spec @@ -0,0 +1,230 @@ +Name: xerces-c +Version: 3.2.2 +Release: 3%{?dist} +Summary: Validating XML Parser + +License: ASL 2.0 +URL: http://xml.apache.org/xerces-c/ +Source0: http://archive.apache.org/dist/xerces/c/3/sources/xerces-c-%{version}.tar.gz + +BuildRequires: gcc-c++ +BuildRequires: dos2unix + +%description +Xerces-C is a validating XML parser written in a portable +subset of C++. Xerces-C makes it easy to give your application the +ability to read and write XML data. A shared library is provided for +parsing, generating, manipulating, and validating XML +documents. Xerces-C is faithful to the XML 1.0 recommendation and +associated standards: XML 1.0 (Third Edition), XML 1.1 (First +Edition), DOM Level 1, 2, 3 Core, DOM Level 2.0 Traversal and Range, +DOM Level 3.0 Load and Save, SAX 1.0 and SAX 2.0, Namespaces in XML, +Namespaces in XML 1.1, XML Schema, XML Inclusions). + +%package devel +Summary: Header files, libraries and development documentation for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package contains the header files, static libraries and development +documentation for %{name}. If you like to develop programs using %{name}, +you will need to install %{name}-devel. + +%package doc +Summary: Documentation for Xerces-C++ validating XML parser +BuildArch: noarch + +%description doc +Documentation for Xerces-C++. + +Xerces-C++ is a validating XML parser written in a portable subset of C++. +Xerces-C++ makes it easy to give your application the ability to read and +write XML data. A shared library is provided for parsing, generating, +manipulating, and validating XML documents. + +%prep +%setup -q +# Copy samples before build to avoid including built binaries in -doc package +mkdir -p _docs +cp -a samples/ _docs/ + +%build +# --disable-sse2 makes sure explicit -msse2 isn't passed to gcc so +# the binaries would be compatible with non-SSE2 i686 hardware. +# This only affects i686, as on x86_64 the compiler uses SSE2 by default. +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" +export CXXFLAGS="$CFLAGS" +%configure --disable-static \ + --disable-sse2 +%make_build V=1 + +%install +%make_install +# Correct errors in encoding +iconv -f iso8859-1 -t utf-8 CREDITS > CREDITS.tmp && mv -f CREDITS.tmp CREDITS +# Correct errors in line endings +pushd doc; dos2unix -k *.xml; popd +# Remove unwanted binaries +rm -rf $RPM_BUILD_ROOT%{_bindir} +# Remove .la files +rm -f $RPM_BUILD_ROOT%{_libdir}/*.la + +%files +%license LICENSE +%{_libdir}/libxerces-c-3.2.so + +%files devel +%{_libdir}/libxerces-c.so +%{_libdir}/pkgconfig/xerces-c.pc +%{_includedir}/xercesc/ + +%files doc +%license LICENSE +%doc README NOTICE CREDITS doc _docs/* + +%changelog +* Sat Jul 27 2019 Fedora Release Engineering - 3.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 3.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Oct 03 2018 Kalev Lember - 3.2.2-1 +- Update to 3.2.2 + +* Sat Jul 14 2018 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Thu Mar 01 2018 Kalev Lember - 3.2.1-1 +- Update to 3.2.1 + +* Tue Feb 06 2018 Pete Walter - 3.2.0-1 +- Update to 3.2.0 +- Spec cleanup + +* Thu Aug 03 2017 Fedora Release Engineering - 3.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 3.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 3.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jun 30 2016 Kalev Lember - 3.1.4-1 +- Update to 3.1.4, fixing CVE-2016-2099 and CVE-2016-4463 + +* Thu Apr 07 2016 Kalev Lember - 3.1.3-1 +- Update to 3.1.3, fixing CVE-2016-0729 + +* Fri Feb 05 2016 Fedora Release Engineering - 3.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 3.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat May 02 2015 Kalev Lember - 3.1.2-2 +- Rebuilt for GCC 5 C++11 ABI change + +* Fri Mar 20 2015 Kalev Lember - 3.1.2-1 +- Update to 3.1.2, fixing CVE-2015-0252 +- Tighten -devel deps with the _isa macro +- Use the license macro for the LICENSE file + +* Mon Aug 18 2014 Fedora Release Engineering - 3.1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 3.1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 3.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 3.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 3.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 3.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Mar 09 2011 Kalev Lember - 3.1.1-1 +- Update to 3.1.1 +- Dropped CVE-2009-1885 patch. +- Use dos2unix -k instead of unrecognized option -U +- Removed the multilib conflict workaround as Xerces_autoconf_config.hpp + no longer contains the conflicting XERCES_SIZEOF_LONG define. + +* Mon Feb 07 2011 Fedora Release Engineering - 3.0.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Fri Jul 9 2010 Jonathan Robie - 3.0.1-20 +- Added no-strict-aliasing flag to stop rpmdiff from griping + +* Wed May 26 2010 Kalev Lember 3.0.1-19 +- Fix multilib conflict caused by Xerces_autoconf_config.hpp (#595923) + +* Fri May 14 2010 Kalev Lember 3.0.1-18 +- Build -doc subpackage as noarch + +* Fri May 14 2010 Kalev Lember 3.0.1-17 +- Disable explicit -msse2 to make sure the binaries run on non-SSE2 i686 + +* Sun Feb 07 2010 Kalev Lember 3.0.1-16 +- Reintroduce a patch for CVE-2009-1885 +- Don't build static library +- Use parallel make +- Spec file clean up + +* Thu Feb 4 2010 Jonathan Robie 3.0.1-15 +- Corrected .spec file + +* Wed Feb 3 2010 Jonathan Robie 3.0.1-1 +- Move to Xerces 3.0.1. + +* Thu Aug 6 2009 Peter Lemenkov 2.8.0-5 +- Fix CVE-2009-1885 + +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 2.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Jun 30 2008 Peter Lemenkov 2.8.0-2 +- Spec cleanups ( https://bugzilla.redhat.com/show_bug.cgi?id=435132 ) + +* Sun Feb 10 2008 Peter Lemenkov 2.8.0-1 +- Ver. 2.8.0 + +* Sat Nov 25 2006 Peter Lemenkov 2.7.0-6 +- typo fix + +* Sat Nov 25 2006 Peter Lemenkov 2.7.0-5 +- fixed some rpmlint warnings + +* Fri Nov 24 2006 Peter Lemenkov 2.7.0-4 +- Added samples to docs-package + +* Sat Nov 18 2006 Peter Lemenkov 2.7.0-3 +- improvements suggested by Aurelien Bompard + +* Sat Oct 14 2006 Peter Lemenkov 2.7.0-2 +- Disabled package 'samples' + +* Fri Oct 13 2006 Peter Lemenkov 2.7.0-1 +- initial build for FE + +* Fri Jan 06 2006 Dag Wieers - 2.7.0-1 - 3891/dag +- Cleaned SPEC file. + +* Tue Jan 03 2006 Dries Verachtert - 2.7.0-1 +- Updated to release 2.7.0. + +* Thu Sep 22 2005 C.Lee Taylor 2.6.1-1 +- Update to 2.6.1 +- Build for FC4 32/64bit + +* Sat Aug 20 2005 Che +- initial rpm release From ed89cc6213971fbabf711f327582089e1e280eae Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Mon, 31 Jan 2022 18:05:49 -0800 Subject: [PATCH 3/3] epel8-playground decommissioned : https://pagure.io/epel/issue/136 --- .cvsignore | 0 .gitignore | 8 -- Makefile | 21 ----- dead.package | 1 + package.cfg | 2 - sources | 1 - xerces-c.spec | 230 -------------------------------------------------- 7 files changed, 1 insertion(+), 262 deletions(-) delete mode 100644 .cvsignore delete mode 100644 .gitignore delete mode 100644 Makefile create mode 100644 dead.package delete mode 100644 package.cfg delete mode 100644 sources delete mode 100644 xerces-c.spec diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index e69de29..0000000 diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 755788d..0000000 --- a/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -xerces-c-3.0.1.tar.gz -/xerces-c-3.1.1.tar.gz -/xerces-c-3.1.2.tar.gz -/xerces-c-3.1.3.tar.gz -/xerces-c-3.1.4.tar.gz -/xerces-c-3.2.0.tar.gz -/xerces-c-3.2.1.tar.gz -/xerces-c-3.2.2.tar.gz diff --git a/Makefile b/Makefile deleted file mode 100644 index c11002e..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xerces-c -# $Id$ -NAME := xerces-c -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/dead.package b/dead.package new file mode 100644 index 0000000..a72aec0 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +epel8-playground decommissioned : https://pagure.io/epel/issue/136 diff --git a/package.cfg b/package.cfg deleted file mode 100644 index 66ea79d..0000000 --- a/package.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[koji] -targets = epel8 epel8-playground \ No newline at end of file diff --git a/sources b/sources deleted file mode 100644 index a239dbd..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (xerces-c-3.2.2.tar.gz) = 13709b47b61d957d736f34b774dbc7fbd85171eedebd0cada41fd1d17929e6c42904c882b1e1d4f9b4fd464938b62e5ebb127187b4974dfade6a593e31471e80 diff --git a/xerces-c.spec b/xerces-c.spec deleted file mode 100644 index dc612b3..0000000 --- a/xerces-c.spec +++ /dev/null @@ -1,230 +0,0 @@ -Name: xerces-c -Version: 3.2.2 -Release: 3%{?dist} -Summary: Validating XML Parser - -License: ASL 2.0 -URL: http://xml.apache.org/xerces-c/ -Source0: http://archive.apache.org/dist/xerces/c/3/sources/xerces-c-%{version}.tar.gz - -BuildRequires: gcc-c++ -BuildRequires: dos2unix - -%description -Xerces-C is a validating XML parser written in a portable -subset of C++. Xerces-C makes it easy to give your application the -ability to read and write XML data. A shared library is provided for -parsing, generating, manipulating, and validating XML -documents. Xerces-C is faithful to the XML 1.0 recommendation and -associated standards: XML 1.0 (Third Edition), XML 1.1 (First -Edition), DOM Level 1, 2, 3 Core, DOM Level 2.0 Traversal and Range, -DOM Level 3.0 Load and Save, SAX 1.0 and SAX 2.0, Namespaces in XML, -Namespaces in XML 1.1, XML Schema, XML Inclusions). - -%package devel -Summary: Header files, libraries and development documentation for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} - -%description devel -This package contains the header files, static libraries and development -documentation for %{name}. If you like to develop programs using %{name}, -you will need to install %{name}-devel. - -%package doc -Summary: Documentation for Xerces-C++ validating XML parser -BuildArch: noarch - -%description doc -Documentation for Xerces-C++. - -Xerces-C++ is a validating XML parser written in a portable subset of C++. -Xerces-C++ makes it easy to give your application the ability to read and -write XML data. A shared library is provided for parsing, generating, -manipulating, and validating XML documents. - -%prep -%setup -q -# Copy samples before build to avoid including built binaries in -doc package -mkdir -p _docs -cp -a samples/ _docs/ - -%build -# --disable-sse2 makes sure explicit -msse2 isn't passed to gcc so -# the binaries would be compatible with non-SSE2 i686 hardware. -# This only affects i686, as on x86_64 the compiler uses SSE2 by default. -export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" -export CXXFLAGS="$CFLAGS" -%configure --disable-static \ - --disable-sse2 -%make_build V=1 - -%install -%make_install -# Correct errors in encoding -iconv -f iso8859-1 -t utf-8 CREDITS > CREDITS.tmp && mv -f CREDITS.tmp CREDITS -# Correct errors in line endings -pushd doc; dos2unix -k *.xml; popd -# Remove unwanted binaries -rm -rf $RPM_BUILD_ROOT%{_bindir} -# Remove .la files -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la - -%files -%license LICENSE -%{_libdir}/libxerces-c-3.2.so - -%files devel -%{_libdir}/libxerces-c.so -%{_libdir}/pkgconfig/xerces-c.pc -%{_includedir}/xercesc/ - -%files doc -%license LICENSE -%doc README NOTICE CREDITS doc _docs/* - -%changelog -* Sat Jul 27 2019 Fedora Release Engineering - 3.2.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 3.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Oct 03 2018 Kalev Lember - 3.2.2-1 -- Update to 3.2.2 - -* Sat Jul 14 2018 Fedora Release Engineering - 3.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Mar 01 2018 Kalev Lember - 3.2.1-1 -- Update to 3.2.1 - -* Tue Feb 06 2018 Pete Walter - 3.2.0-1 -- Update to 3.2.0 -- Spec cleanup - -* Thu Aug 03 2017 Fedora Release Engineering - 3.1.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 3.1.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 3.1.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Jun 30 2016 Kalev Lember - 3.1.4-1 -- Update to 3.1.4, fixing CVE-2016-2099 and CVE-2016-4463 - -* Thu Apr 07 2016 Kalev Lember - 3.1.3-1 -- Update to 3.1.3, fixing CVE-2016-0729 - -* Fri Feb 05 2016 Fedora Release Engineering - 3.1.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 3.1.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat May 02 2015 Kalev Lember - 3.1.2-2 -- Rebuilt for GCC 5 C++11 ABI change - -* Fri Mar 20 2015 Kalev Lember - 3.1.2-1 -- Update to 3.1.2, fixing CVE-2015-0252 -- Tighten -devel deps with the _isa macro -- Use the license macro for the LICENSE file - -* Mon Aug 18 2014 Fedora Release Engineering - 3.1.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 3.1.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 3.1.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 3.1.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 3.1.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 3.1.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Mar 09 2011 Kalev Lember - 3.1.1-1 -- Update to 3.1.1 -- Dropped CVE-2009-1885 patch. -- Use dos2unix -k instead of unrecognized option -U -- Removed the multilib conflict workaround as Xerces_autoconf_config.hpp - no longer contains the conflicting XERCES_SIZEOF_LONG define. - -* Mon Feb 07 2011 Fedora Release Engineering - 3.0.1-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Fri Jul 9 2010 Jonathan Robie - 3.0.1-20 -- Added no-strict-aliasing flag to stop rpmdiff from griping - -* Wed May 26 2010 Kalev Lember 3.0.1-19 -- Fix multilib conflict caused by Xerces_autoconf_config.hpp (#595923) - -* Fri May 14 2010 Kalev Lember 3.0.1-18 -- Build -doc subpackage as noarch - -* Fri May 14 2010 Kalev Lember 3.0.1-17 -- Disable explicit -msse2 to make sure the binaries run on non-SSE2 i686 - -* Sun Feb 07 2010 Kalev Lember 3.0.1-16 -- Reintroduce a patch for CVE-2009-1885 -- Don't build static library -- Use parallel make -- Spec file clean up - -* Thu Feb 4 2010 Jonathan Robie 3.0.1-15 -- Corrected .spec file - -* Wed Feb 3 2010 Jonathan Robie 3.0.1-1 -- Move to Xerces 3.0.1. - -* Thu Aug 6 2009 Peter Lemenkov 2.8.0-5 -- Fix CVE-2009-1885 - -* Mon Jul 27 2009 Fedora Release Engineering - 2.8.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Feb 26 2009 Fedora Release Engineering - 2.8.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Jun 30 2008 Peter Lemenkov 2.8.0-2 -- Spec cleanups ( https://bugzilla.redhat.com/show_bug.cgi?id=435132 ) - -* Sun Feb 10 2008 Peter Lemenkov 2.8.0-1 -- Ver. 2.8.0 - -* Sat Nov 25 2006 Peter Lemenkov 2.7.0-6 -- typo fix - -* Sat Nov 25 2006 Peter Lemenkov 2.7.0-5 -- fixed some rpmlint warnings - -* Fri Nov 24 2006 Peter Lemenkov 2.7.0-4 -- Added samples to docs-package - -* Sat Nov 18 2006 Peter Lemenkov 2.7.0-3 -- improvements suggested by Aurelien Bompard - -* Sat Oct 14 2006 Peter Lemenkov 2.7.0-2 -- Disabled package 'samples' - -* Fri Oct 13 2006 Peter Lemenkov 2.7.0-1 -- initial build for FE - -* Fri Jan 06 2006 Dag Wieers - 2.7.0-1 - 3891/dag -- Cleaned SPEC file. - -* Tue Jan 03 2006 Dries Verachtert - 2.7.0-1 -- Updated to release 2.7.0. - -* Thu Sep 22 2005 C.Lee Taylor 2.6.1-1 -- Update to 2.6.1 -- Build for FC4 32/64bit - -* Sat Aug 20 2005 Che -- initial rpm release