From e138793e4e36911111b48d0684941fc470b4bea0 Mon Sep 17 00:00:00 2001 From: Jussi Lehtola Date: Wed, 30 Sep 2009 09:31:58 +0000 Subject: [PATCH 01/31] Import in Fedora. --- .cvsignore | 1 + import.log | 1 + sources | 1 + vecmath.spec | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 import.log create mode 100644 vecmath.spec diff --git a/.cvsignore b/.cvsignore index e69de29..135e7b2 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +vecmath-20090922.tar.xz diff --git a/import.log b/import.log new file mode 100644 index 0000000..af8ac40 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +vecmath-0-2_20090922cvs_fc11:HEAD:vecmath-0-2.20090922cvs.fc11.src.rpm:1254302971 diff --git a/sources b/sources index e69de29..8a83648 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f4ade6e893a52ff15998066bfeb0ad1f vecmath-20090922.tar.xz diff --git a/vecmath.spec b/vecmath.spec new file mode 100644 index 0000000..c7ec852 --- /dev/null +++ b/vecmath.spec @@ -0,0 +1,60 @@ +%global tardate 20090922 + +Name: vecmath +Version: 0 +Release: 2.%{tardate}cvs%{?dist} +Summary: The 3D vector math Java package, javax.vecmath +Group: Development/Libraries +# License is GNU General Public License, version 2, with the Classpath Exception +License: GPLv2 with exceptions +URL: https://vecmath.dev.java.net/ +## Source pulled from upstream CVS. +# https://vecmath.dev.java.net/servlets/ProjectSource +## Tarball created with +## (you need to create a username) +# cvs -d :pserver:username@cvs.dev.java.net:/cvs login +# cvs -d :pserver:username@cvs.dev.java.net:/cvs checkout vecmath +# tar cf vecmath-%{tardate}.tar vecmath +# xz vecmath-%{tardate}.tar +Source0: %{name}-%{tardate}.tar.xz +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +BuildArch: noarch + +BuildRequires: ant +BuildRequires: java-devel >= 1:1.6.0 +BuildRequires: jpackage-utils +# For EPEL 5 +BuildRequires: xz + +Requires: java >= 1:1.6.0 +Requires: jpackage-utils + +%description +The 3D vector math Java package, javax.vecmath. + +%prep +%setup -q -n %{name} +find -name '*.class' -exec rm -f '{}' \; +find -name '*.jar' -exec rm -f '{}' \; + +%build +ant + +%install +rm -rf %{buildroot} +install -D -p -m 644 build/debug/lib/ext/vecmath.jar %{buildroot}%{_javadir}/vecmath.jar + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc docs/api-changes* LICENSE.txt LICENSE-SPEC.html +%{_javadir}/vecmath.jar + +%changelog +* Mon Sep 28 2009 Jussi Lehtola - 0-2.20090922cvs +- Minor review fixes. + +* Tue Sep 22 2009 Jussi Lehtola - 0-1.20090922cvs +- First release. From 80eaf47abc28b91de0d473803cbf82b2806812c2 Mon Sep 17 00:00:00 2001 From: Jussi Lehtola Date: Wed, 30 Sep 2009 09:49:12 +0000 Subject: [PATCH 02/31] Use bz2 source instead of xz which doesn't work on EPEL. --- .cvsignore | 2 +- sources | 2 +- vecmath.spec | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index 135e7b2..3741b63 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -vecmath-20090922.tar.xz +vecmath-20090922.tar.bz2 diff --git a/sources b/sources index 8a83648..6b6bd4f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f4ade6e893a52ff15998066bfeb0ad1f vecmath-20090922.tar.xz +0bf68079840358b3606f7b8833d26857 vecmath-20090922.tar.bz2 diff --git a/vecmath.spec b/vecmath.spec index c7ec852..98098e4 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -16,15 +16,13 @@ URL: https://vecmath.dev.java.net/ # cvs -d :pserver:username@cvs.dev.java.net:/cvs checkout vecmath # tar cf vecmath-%{tardate}.tar vecmath # xz vecmath-%{tardate}.tar -Source0: %{name}-%{tardate}.tar.xz +Source0: %{name}-%{tardate}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: ant BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils -# For EPEL 5 -BuildRequires: xz Requires: java >= 1:1.6.0 Requires: jpackage-utils From bf18d033e0b5be3c24db520961c5ee03f00ab3e1 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:20 +0000 Subject: [PATCH 03/31] 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 a71f501..a01f030 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: vecmath -# $Id$ +# $Id: Makefile,v 1.1 2009/09/29 20:10:00 kevin Exp $ NAME := vecmath 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 e4120bd7607aadec7b0eda8648a28b2f268561a5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:56:58 +0000 Subject: [PATCH 04/31] 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 a01f030..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vecmath -# $Id: Makefile,v 1.1 2009/09/29 20:10:00 kevin Exp $ -NAME := vecmath -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 af8ac40..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -vecmath-0-2_20090922cvs_fc11:HEAD:vecmath-0-2.20090922cvs.fc11.src.rpm:1254302971 From 02af0571a68cb108f6b9f54d01707e1693858444 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:14:35 -0600 Subject: [PATCH 05/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 98098e4..4a3ed70 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -2,7 +2,7 @@ Name: vecmath Version: 0 -Release: 2.%{tardate}cvs%{?dist} +Release: 3.%{tardate}cvs%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_javadir}/vecmath.jar %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0-3.20090922cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Sep 28 2009 Jussi Lehtola - 0-2.20090922cvs - Minor review fixes. From e8166869d920b411639bfaa9c0af6bf3c7e42c82 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:49:51 -0600 Subject: [PATCH 06/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 4a3ed70..0565759 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -2,7 +2,7 @@ Name: vecmath Version: 0 -Release: 3.%{tardate}cvs%{?dist} +Release: 4.%{tardate}cvs%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_javadir}/vecmath.jar %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0-4.20090922cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 0-3.20090922cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 141500e4a7054cfc485a717c72696dea5dab453c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 21:33:00 -0500 Subject: [PATCH 07/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 0565759..e8ec62f 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -2,7 +2,7 @@ Name: vecmath Version: 0 -Release: 4.%{tardate}cvs%{?dist} +Release: 5.%{tardate}cvs%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_javadir}/vecmath.jar %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0-5.20090922cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 0-4.20090922cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 6bd6560b35f1fe723928920ae9de57feffa4674a Mon Sep 17 00:00:00 2001 From: Jussi Lehtola Date: Thu, 29 Nov 2012 01:14:28 +0200 Subject: [PATCH 08/31] Minor fixes by Gil Cattaneo. --- sources | 2 +- vecmath.spec | 118 +++++++++++++++++++++++++++++++++++---------------- 2 files changed, 83 insertions(+), 37 deletions(-) diff --git a/sources b/sources index 6b6bd4f..fb8f86a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0bf68079840358b3606f7b8833d26857 vecmath-20090922.tar.bz2 +3c14389a28ee4e297a4bfe44cfdc5b90 vecmath-1.5.2-clean-src-svn.tar.gz diff --git a/vecmath.spec b/vecmath.spec index e8ec62f..9807ac8 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -1,56 +1,102 @@ -%global tardate 20090922 - -Name: vecmath -Version: 0 -Release: 5.%{tardate}cvs%{?dist} -Summary: The 3D vector math Java package, javax.vecmath -Group: Development/Libraries +Name: vecmath +Version: 1.5.2 +Release: 1%{?dist} +Summary: The 3D vector math Java package, javax.vecmath +Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception -License: GPLv2 with exceptions -URL: https://vecmath.dev.java.net/ -## Source pulled from upstream CVS. -# https://vecmath.dev.java.net/servlets/ProjectSource -## Tarball created with -## (you need to create a username) -# cvs -d :pserver:username@cvs.dev.java.net:/cvs login -# cvs -d :pserver:username@cvs.dev.java.net:/cvs checkout vecmath -# tar cf vecmath-%{tardate}.tar vecmath -# xz vecmath-%{tardate}.tar -Source0: %{name}-%{tardate}.tar.bz2 -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildArch: noarch +License: GPLv2 with exceptions +URL: http://java.net/projects/vecmath +# svn export https://svn.java.net/svn/vecmath~svn/tags/rel-1_5_2-fcs vecmath-1.5.2/vecmath +# svn export https://svn.java.net/svn/vecmath-test~svn/tags/rel-1_5_2-fcs vecmath-1.5.2/vecmath-test +# find vecmath-1.5.2 -name "*.class" -delete +# find vecmath-1.5.2 -name "*.jar" -delete +# find vecmath-1.5.2 -name "*.so" -delete +# find vecmath-1.5.2 -name "unzip*" -delete +# tar czf vecmath-1.5.2-clean-src-svn.tar.gz vecmath-1.5.2 +Source0: %{name}-%{version}-clean-src-svn.tar.gz +# originally taken from http://repo1.maven.org/maven2/java3d/ +Source1: %{name}-%{version}.pom +Patch0: %{name}-%{version}-javadoc-link.patch +Patch1: %{name}-%{version}-fix-incorrect-fsf-address.patch -BuildRequires: ant -BuildRequires: java-devel >= 1:1.6.0 -BuildRequires: jpackage-utils +BuildArch: noarch -Requires: java >= 1:1.6.0 -Requires: jpackage-utils +BuildRequires: ant +BuildRequires: ant-junit +BuildRequires: junit +BuildRequires: java-devel >= 1:1.6.0 +BuildRequires: java-javadoc +BuildRequires: jpackage-utils + +Requires: java >= 1:1.6.0 +Requires: jpackage-utils %description The 3D vector math Java package, javax.vecmath. +%package javadoc +Group: Documentation +Summary: Javadoc for %{name} +Requires: jpackage-utils + +%description javadoc +This package contains javadoc for %{name}. + %prep -%setup -q -n %{name} -find -name '*.class' -exec rm -f '{}' \; -find -name '*.jar' -exec rm -f '{}' \; +%setup -q +%patch0 -p0 +%patch1 -p0 + +iconv -f iso8859-1 -t utf-8 vecmath/COPYRIGHT.txt > vecmath/COPYRIGHT.txt.conv && mv -f vecmath/COPYRIGHT.txt.conv vecmath/COPYRIGHT.txt +sed -i 's/\r//' vecmath/COPYRIGHT.txt vecmath/LICENSE.txt + +cp -pr vecmath/docs . +cp -p vecmath/COPYRIGHT.txt . +cp -p vecmath/LICENSE.txt . +cp -p vecmath/LICENSE-SPEC.html . %build -ant + +( + cd %{name} + %ant jar docs +) %install -rm -rf %{buildroot} -install -D -p -m 644 build/debug/lib/ext/vecmath.jar %{buildroot}%{_javadir}/vecmath.jar -%clean -rm -rf %{buildroot} +install -D -p -m 644 %{name}/build/opt/lib/ext/%{name}.jar %{buildroot}%{_javadir}/%{name}.jar + +mkdir -p %{buildroot}%{_mavenpomdir} +install -pm 644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom +%add_maven_depmap + +mkdir -p %{buildroot}%{_javadocdir}/%{name} +cp -a %{name}/build/javadocs/* %{buildroot}%{_javadocdir}/%{name} + +%check +( + cd %{name}-test + export CLASSPATH=$(built-classpath junit) + %ant test +) %files -%defattr(-,root,root,-) -%doc docs/api-changes* LICENSE.txt LICENSE-SPEC.html -%{_javadir}/vecmath.jar +%doc docs/api-changes* COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html +%{_javadir}/%{name}.jar +%{_mavenpomdir}/JPP-%{name}.pom +%{_mavendepmapfragdir}/%{name} + +%files javadoc +%doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html +%{_javadocdir}/%{name} %changelog +* Fri Sep 07 2012 gil cattaneo 1.5.2-1 +- Use tarball from 1.5.2 tag (no change in source code) +- Added maven pom +- Adapt to current guideline +- Added javadoc sub package + * Sun Jul 22 2012 Fedora Release Engineering - 0-5.20090922cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 8626e0d75f4ec5cc6cb1b3892341e60779c1790a Mon Sep 17 00:00:00 2001 From: Jussi Lehtola Date: Thu, 29 Nov 2012 01:46:46 +0200 Subject: [PATCH 09/31] Added missing files. --- vecmath-1.5.2-fix-incorrect-fsf-address.patch | 22 +++++++++++++++++++ vecmath-1.5.2-javadoc-link.patch | 10 +++++++++ 2 files changed, 32 insertions(+) create mode 100644 vecmath-1.5.2-fix-incorrect-fsf-address.patch create mode 100644 vecmath-1.5.2-javadoc-link.patch diff --git a/vecmath-1.5.2-fix-incorrect-fsf-address.patch b/vecmath-1.5.2-fix-incorrect-fsf-address.patch new file mode 100644 index 0000000..cf861dc --- /dev/null +++ b/vecmath-1.5.2-fix-incorrect-fsf-address.patch @@ -0,0 +1,22 @@ +--- vecmath/LICENSE.txt 2008-02-28 21:18:51.000000000 +0100 ++++ vecmath/LICENSE.txt-gil 2012-11-28 21:06:34.586611326 +0100 +@@ -3,7 +3,7 @@ + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. +-59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ++51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Everyone is permitted to copy and distribute verbatim copies of this license + document, but changing it is not allowed. +@@ -287,8 +287,8 @@ + more details. + + You should have received a copy of the GNU General Public License along +- with this program; if not, write to the Free Software Foundation, Inc., 59 +- Temple Place, Suite 330, Boston, MA 02111-1307 USA ++ with this program; if not, write to the Free Software Foundation, Inc., 51 ++ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Also add information on how to contact you by electronic and paper mail. + diff --git a/vecmath-1.5.2-javadoc-link.patch b/vecmath-1.5.2-javadoc-link.patch new file mode 100644 index 0000000..acfca07 --- /dev/null +++ b/vecmath-1.5.2-javadoc-link.patch @@ -0,0 +1,10 @@ +--- vecmath/build.xml 2008-02-28 21:18:51.000000000 +0100 ++++ vecmath/build.xml-gil 2012-11-28 20:53:54.171726954 +0100 +@@ -185,6 +185,7 @@ + maxmemory="128m" + destdir="${build}/javadocs" + windowtitle="Vecmath ${version}"> ++ + + + From 851e315c7f0b31b2da70958d04908ef5bb16fab1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:43:24 -0600 Subject: [PATCH 10/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 9807ac8..3908ba5 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -1,6 +1,6 @@ Name: vecmath Version: 1.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -91,6 +91,9 @@ cp -a %{name}/build/javadocs/* %{buildroot}%{_javadocdir}/%{name} %{_javadocdir}/%{name} %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 1.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Sep 07 2012 gil cattaneo 1.5.2-1 - Use tarball from 1.5.2 tag (no change in source code) - Added maven pom From 2a30f75fa13f4072ad25ac027ace97e86e8676ef Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:04:51 -0500 Subject: [PATCH 11/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 3908ba5..513ba07 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -1,6 +1,6 @@ Name: vecmath Version: 1.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -91,6 +91,9 @@ cp -a %{name}/build/javadocs/* %{buildroot}%{_javadocdir}/%{name} %{_javadocdir}/%{name} %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 1.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 21b2aa1bb9849d1044c0943ec8c1738a15d6cc81 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Thu, 5 Sep 2013 18:29:09 +0300 Subject: [PATCH 12/31] Update to 1.6.0, fixing FTBFS. --- .gitignore | 2 ++ sources | 2 +- vecmath-1.5.2-fix-incorrect-fsf-address.patch | 22 ------------------- vecmath-1.5.2-javadoc-link.patch | 10 --------- vecmath-1.6.0-javadoc-link.patch | 12 ++++++++++ 5 files changed, 15 insertions(+), 33 deletions(-) delete mode 100644 vecmath-1.5.2-fix-incorrect-fsf-address.patch delete mode 100644 vecmath-1.5.2-javadoc-link.patch create mode 100644 vecmath-1.6.0-javadoc-link.patch diff --git a/.gitignore b/.gitignore index 3741b63..8b80371 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ vecmath-20090922.tar.bz2 +/vecmath-1.6.0-be715bd.tar.gz +/vecmath-1.6.0-41fddda.tar.gz diff --git a/sources b/sources index fb8f86a..733ec19 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3c14389a28ee4e297a4bfe44cfdc5b90 vecmath-1.5.2-clean-src-svn.tar.gz +0a82e273f2d1de1811ff6fa65858388f vecmath-1.6.0-41fddda.tar.gz diff --git a/vecmath-1.5.2-fix-incorrect-fsf-address.patch b/vecmath-1.5.2-fix-incorrect-fsf-address.patch deleted file mode 100644 index cf861dc..0000000 --- a/vecmath-1.5.2-fix-incorrect-fsf-address.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- vecmath/LICENSE.txt 2008-02-28 21:18:51.000000000 +0100 -+++ vecmath/LICENSE.txt-gil 2012-11-28 21:06:34.586611326 +0100 -@@ -3,7 +3,7 @@ - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. --59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - Everyone is permitted to copy and distribute verbatim copies of this license - document, but changing it is not allowed. -@@ -287,8 +287,8 @@ - more details. - - You should have received a copy of the GNU General Public License along -- with this program; if not, write to the Free Software Foundation, Inc., 59 -- Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ with this program; if not, write to the Free Software Foundation, Inc., 51 -+ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - Also add information on how to contact you by electronic and paper mail. - diff --git a/vecmath-1.5.2-javadoc-link.patch b/vecmath-1.5.2-javadoc-link.patch deleted file mode 100644 index acfca07..0000000 --- a/vecmath-1.5.2-javadoc-link.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- vecmath/build.xml 2008-02-28 21:18:51.000000000 +0100 -+++ vecmath/build.xml-gil 2012-11-28 20:53:54.171726954 +0100 -@@ -185,6 +185,7 @@ - maxmemory="128m" - destdir="${build}/javadocs" - windowtitle="Vecmath ${version}"> -+ - - - diff --git a/vecmath-1.6.0-javadoc-link.patch b/vecmath-1.6.0-javadoc-link.patch new file mode 100644 index 0000000..64578f0 --- /dev/null +++ b/vecmath-1.6.0-javadoc-link.patch @@ -0,0 +1,12 @@ +diff --git a/build.xml b/build.xml +index f33f185..4531b27 100644 +--- build.xml ++++ build.xml +@@ -76,6 +76,7 @@ + packagenames="javax.vecmath.*" + destdir="${javadoc.dir}" + windowtitle="Vecmath ${version_base}"> ++ + + + From 8d6676a7aa7c52bb7bb7d5cfa2f61cf1e7a947a8 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Thu, 5 Sep 2013 18:34:00 +0300 Subject: [PATCH 13/31] Update to 1.6.0, fixing FTBFS. --- vecmath.spec | 62 ++++++++++++++-------------------------------------- 1 file changed, 16 insertions(+), 46 deletions(-) diff --git a/vecmath.spec b/vecmath.spec index 513ba07..f2541d5 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -1,24 +1,17 @@ +%global commit 41fddda1a4f430e45bef0154e1fdfe5671025f1e +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + Name: vecmath -Version: 1.5.2 -Release: 3%{?dist} +Version: 1.6.0 +Release: 0.1.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions -URL: http://java.net/projects/vecmath -# svn export https://svn.java.net/svn/vecmath~svn/tags/rel-1_5_2-fcs vecmath-1.5.2/vecmath -# svn export https://svn.java.net/svn/vecmath-test~svn/tags/rel-1_5_2-fcs vecmath-1.5.2/vecmath-test -# find vecmath-1.5.2 -name "*.class" -delete -# find vecmath-1.5.2 -name "*.jar" -delete -# find vecmath-1.5.2 -name "*.so" -delete -# find vecmath-1.5.2 -name "unzip*" -delete -# tar czf vecmath-1.5.2-clean-src-svn.tar.gz vecmath-1.5.2 -Source0: %{name}-%{version}-clean-src-svn.tar.gz -# originally taken from http://repo1.maven.org/maven2/java3d/ -Source1: %{name}-%{version}.pom +URL: http://github.com/hharrison/vecmath +Source0: https://github.com/hharrison/vecmath/archive/%{commit}/%{name}-%{version}-%{shortcommit}.tar.gz +# Fix link to javadoc Patch0: %{name}-%{version}-javadoc-link.patch -Patch1: %{name}-%{version}-fix-incorrect-fsf-address.patch - BuildArch: noarch BuildRequires: ant @@ -43,54 +36,31 @@ Requires: jpackage-utils This package contains javadoc for %{name}. %prep -%setup -q +%setup -qn %{name}-%{commit} %patch0 -p0 -%patch1 -p0 - -iconv -f iso8859-1 -t utf-8 vecmath/COPYRIGHT.txt > vecmath/COPYRIGHT.txt.conv && mv -f vecmath/COPYRIGHT.txt.conv vecmath/COPYRIGHT.txt -sed -i 's/\r//' vecmath/COPYRIGHT.txt vecmath/LICENSE.txt - -cp -pr vecmath/docs . -cp -p vecmath/COPYRIGHT.txt . -cp -p vecmath/LICENSE.txt . -cp -p vecmath/LICENSE-SPEC.html . %build - -( - cd %{name} - %ant jar docs -) +%ant jar docs %install - -install -D -p -m 644 %{name}/build/opt/lib/ext/%{name}.jar %{buildroot}%{_javadir}/%{name}.jar - -mkdir -p %{buildroot}%{_mavenpomdir} -install -pm 644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom -%add_maven_depmap +install -D -p -m 644 build/jars/%{name}.jar %{buildroot}%{_javadir}/%{name}.jar mkdir -p %{buildroot}%{_javadocdir}/%{name} -cp -a %{name}/build/javadocs/* %{buildroot}%{_javadocdir}/%{name} - -%check -( - cd %{name}-test - export CLASSPATH=$(built-classpath junit) - %ant test -) +cp -a build/javadoc/* %{buildroot}%{_javadocdir}/%{name} %files %doc docs/api-changes* COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %{_javadir}/%{name}.jar -%{_mavenpomdir}/JPP-%{name}.pom -%{_mavendepmapfragdir}/%{name} %files javadoc %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %{_javadocdir}/%{name} %changelog +* Thu Sep 5 2013 Harvey Harrison - 1.6.0-0.1.20130710git41fddda +- change upstream source to github +- upgrade to 1.6.0 + * Sun Aug 04 2013 Fedora Release Engineering - 1.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 9492ebe40e8db9c3d0198ad629e623835d097bcc Mon Sep 17 00:00:00 2001 From: Michael Simacek Date: Fri, 28 Mar 2014 18:33:47 +0100 Subject: [PATCH 14/31] Use Requires: java-headless rebuild (#1067528) Signed-off-by: Michael Simacek Signed-off-by: Mikolaj Izdebski --- vecmath.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vecmath.spec b/vecmath.spec index f2541d5..e19f1a0 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.1.20130710git41fddda%{?dist} +Release: 0.2.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -21,7 +21,7 @@ BuildRequires: java-devel >= 1:1.6.0 BuildRequires: java-javadoc BuildRequires: jpackage-utils -Requires: java >= 1:1.6.0 +Requires: java-headless >= 1:1.6.0 Requires: jpackage-utils %description @@ -57,6 +57,9 @@ cp -a build/javadoc/* %{buildroot}%{_javadocdir}/%{name} %{_javadocdir}/%{name} %changelog +* Fri Mar 28 2014 Michael Simacek - 1.6.0-0.2.20130710git41fddda +- Use Requires: java-headless rebuild (#1067528) + * Thu Sep 5 2013 Harvey Harrison - 1.6.0-0.1.20130710git41fddda - change upstream source to github - upgrade to 1.6.0 From fc424193d6662e7741296caa7ca04157b1597863 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 22:31:04 -0500 Subject: [PATCH 15/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index e19f1a0..a9ff9f7 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.2.20130710git41fddda%{?dist} +Release: 0.3.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -57,6 +57,9 @@ cp -a build/javadoc/* %{buildroot}%{_javadocdir}/%{name} %{_javadocdir}/%{name} %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.6.0-0.3.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Fri Mar 28 2014 Michael Simacek - 1.6.0-0.2.20130710git41fddda - Use Requires: java-headless rebuild (#1067528) From 987851cef2e2efb3436dc2d055e77410e8aee815 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:55:57 +0000 Subject: [PATCH 16/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index a9ff9f7..299bb14 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.3.20130710git41fddda%{?dist} +Release: 0.4.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -57,6 +57,9 @@ cp -a build/javadoc/* %{buildroot}%{_javadocdir}/%{name} %{_javadocdir}/%{name} %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 1.6.0-0.4.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.6.0-0.3.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 8eaea4b81d23040e0d7c339d7900a4f616154ecf Mon Sep 17 00:00:00 2001 From: Dominik 'Rathann' Mierzejewski Date: Thu, 24 Sep 2015 18:35:54 +0200 Subject: [PATCH 17/31] build with maven - re-add maven pom (rhbz#1022506) - fix javadoc errors --- .gitignore | 1 + sources | 1 + vecmath-1.6.0-javadoc-link.patch | 12 -------- vecmath-javadoc.patch | 47 ++++++++++++++++++++++++++++++++ vecmath.spec | 38 ++++++++++++++------------ 5 files changed, 69 insertions(+), 30 deletions(-) delete mode 100644 vecmath-1.6.0-javadoc-link.patch create mode 100644 vecmath-javadoc.patch diff --git a/.gitignore b/.gitignore index 8b80371..e7c9fd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ vecmath-20090922.tar.bz2 /vecmath-1.6.0-be715bd.tar.gz /vecmath-1.6.0-41fddda.tar.gz +/vecmath-1.5.2.pom diff --git a/sources b/sources index 733ec19..f73b7df 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ 0a82e273f2d1de1811ff6fa65858388f vecmath-1.6.0-41fddda.tar.gz +dbb569a1b1974289387c7574996b605e vecmath-1.5.2.pom diff --git a/vecmath-1.6.0-javadoc-link.patch b/vecmath-1.6.0-javadoc-link.patch deleted file mode 100644 index 64578f0..0000000 --- a/vecmath-1.6.0-javadoc-link.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/build.xml b/build.xml -index f33f185..4531b27 100644 ---- build.xml -+++ build.xml -@@ -76,6 +76,7 @@ - packagenames="javax.vecmath.*" - destdir="${javadoc.dir}" - windowtitle="Vecmath ${version_base}"> -+ - - - diff --git a/vecmath-javadoc.patch b/vecmath-javadoc.patch new file mode 100644 index 0000000..994ad8a --- /dev/null +++ b/vecmath-javadoc.patch @@ -0,0 +1,47 @@ +diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml +--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml.javadoc 2013-07-10 18:32:13.000000000 +0200 ++++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml 2015-09-24 18:24:14.843127653 +0200 +@@ -76,6 +76,7 @@ + packagenames="javax.vecmath.*" + destdir="${javadoc.dir}" + windowtitle="Vecmath ${version_base}"> ++ + + + +diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java +--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc 2013-07-10 18:32:13.000000000 +0200 ++++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java 2015-09-24 18:23:13.080312295 +0200 +@@ -159,7 +159,7 @@ public class GVector implements java.io. + * Constructs a new GVector of the specified length and + * initializes it by copying the specified number of elements from + * the specified array. The array must contain at least +- * length elements (i.e., vector.length >= ++ * length elements (i.e., vector.length ≥ + * length. The length of this new GVector is set to + * the specified length. + * @param vector The array from which the values will be copied. +diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java +--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc 2013-07-10 18:32:13.000000000 +0200 ++++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java 2015-09-24 18:23:13.080312295 +0200 +@@ -36,7 +36,7 @@ package javax.vecmath; + * bytes were unsigned. + * Values greater than 127 can be assigned to a byte variable using a + * type cast. For example: +- *
    byteVariable = (byte) intValue; // intValue can be > 127
++ *
byteVariable = (byte) intValue; // intValue can be > 127
+ * If intValue is greater than 127, then byteVariable will be negative. The + * correct value will be extracted when it is used (by masking off the upper + * bits). +diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java +--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc 2013-07-10 18:32:13.000000000 +0200 ++++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java 2015-09-24 18:23:13.081312292 +0200 +@@ -36,7 +36,7 @@ package javax.vecmath; + * bytes were unsigned. + * Values greater than 127 can be assigned to a byte variable using a + * type cast. For example: +- *
    byteVariable = (byte) intValue; // intValue can be > 127
++ *
byteVariable = (byte) intValue; // intValue can be > 127
+ * If intValue is greater than 127, then byteVariable will be negative. The + * correct value will be extracted when it is used (by masking off the upper + * bits). diff --git a/vecmath.spec b/vecmath.spec index 299bb14..a98765d 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,26 +3,26 @@ Name: vecmath Version: 1.6.0 -Release: 0.4.20130710git41fddda%{?dist} +Release: 0.5.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions URL: http://github.com/hharrison/vecmath Source0: https://github.com/hharrison/vecmath/archive/%{commit}/%{name}-%{version}-%{shortcommit}.tar.gz -# Fix link to javadoc -Patch0: %{name}-%{version}-javadoc-link.patch +# missing pom file +# https://bugzilla.redhat.com/show_bug.cgi?id=1022506 +Source1: https://repo1.maven.org/maven2/javax/vecmath/vecmath/1.5.2/vecmath-1.5.2.pom +# Fix link to javadoc and javadoc errors +Patch0: vecmath-javadoc.patch BuildArch: noarch BuildRequires: ant -BuildRequires: ant-junit -BuildRequires: junit BuildRequires: java-devel >= 1:1.6.0 BuildRequires: java-javadoc -BuildRequires: jpackage-utils +BuildRequires: javapackages-local Requires: java-headless >= 1:1.6.0 -Requires: jpackage-utils %description The 3D vector math Java package, javax.vecmath. @@ -30,33 +30,35 @@ The 3D vector math Java package, javax.vecmath. %package javadoc Group: Documentation Summary: Javadoc for %{name} -Requires: jpackage-utils %description javadoc This package contains javadoc for %{name}. %prep %setup -qn %{name}-%{commit} -%patch0 -p0 +%patch0 -p1 +sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{name}.pom +%mvn_file javax.vecmath:vecmath %{name} %build -%ant jar docs +%ant %install -install -D -p -m 644 build/jars/%{name}.jar %{buildroot}%{_javadir}/%{name}.jar +%mvn_artifact %{name}.pom build/jars/%{name}.jar +%mvn_install -J build/javadoc -mkdir -p %{buildroot}%{_javadocdir}/%{name} -cp -a build/javadoc/* %{buildroot}%{_javadocdir}/%{name} - -%files +%files -f .mfiles %doc docs/api-changes* COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html -%{_javadir}/%{name}.jar -%files javadoc +%files javadoc -f .mfiles-javadoc %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html -%{_javadocdir}/%{name} %changelog +* Thu Sep 24 2015 Dominik 'Rathann' Mierzejewski - 1.6.0-0.5.20130710git41fddda +- build with maven +- re-add maven pom (rhbz#1022506) +- fix javadoc errors + * Fri Jun 19 2015 Fedora Release Engineering - 1.6.0-0.4.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From e8bfa94e77c4fc8397a11075260334eaf1e1787c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:38:32 +0000 Subject: [PATCH 18/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index a98765d..ae65a83 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.5.20130710git41fddda%{?dist} +Release: 0.6.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -54,6 +54,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 1.6.0-0.6.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Sep 24 2015 Dominik 'Rathann' Mierzejewski - 1.6.0-0.5.20130710git41fddda - build with maven - re-add maven pom (rhbz#1022506) From 4d7fcb3cb2a1e5b0adc7d19524cdb64f1be91f84 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:01:21 +0000 Subject: [PATCH 19/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index ae65a83..a4e4966 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.6.20130710git41fddda%{?dist} +Release: 0.7.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -54,6 +54,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.6.0-0.7.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 1.6.0-0.6.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 8e69ef296a8e46ac06aefac147b5b8bf614025cc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:15:31 +0000 Subject: [PATCH 20/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index a4e4966..6998d97 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.7.20130710git41fddda%{?dist} +Release: 0.8.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -54,6 +54,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.6.0-0.8.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.6.0-0.7.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From b9fa761340aa2683b135621cfe6440661a749ee0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:25:59 +0000 Subject: [PATCH 21/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 6998d97..2429ebf 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.8.20130710git41fddda%{?dist} +Release: 0.9.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -54,6 +54,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.6.0-0.9.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.6.0-0.8.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 08960bc320c706f04c8f030c2818602df799fc27 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:29:16 +0000 Subject: [PATCH 22/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 2429ebf..3a60a8a 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.9.20130710git41fddda%{?dist} +Release: 0.10.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception @@ -54,6 +54,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.6.0-0.10.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.6.0-0.9.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 33efc6fec7c1f1377fe6193c48e750b5f9bbb17b Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 23/31] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- vecmath.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vecmath.spec b/vecmath.spec index 3a60a8a..31a3304 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -5,7 +5,6 @@ Name: vecmath Version: 1.6.0 Release: 0.10.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath -Group: Development/Libraries # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions URL: http://github.com/hharrison/vecmath @@ -28,7 +27,6 @@ Requires: java-headless >= 1:1.6.0 The 3D vector math Java package, javax.vecmath. %package javadoc -Group: Documentation Summary: Javadoc for %{name} %description javadoc From 8a3ee4103de0170638996c66692b7a4f41725f1b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:12:12 +0000 Subject: [PATCH 24/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 31a3304..53b299d 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.10.20130710git41fddda%{?dist} +Release: 0.11.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -52,6 +52,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 1.6.0-0.11.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.6.0-0.10.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 4104905d61281ac97d765bab5f18cd62098185c4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:53:58 +0000 Subject: [PATCH 25/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 53b299d..75f9133 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.11.20130710git41fddda%{?dist} +Release: 0.12.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -52,6 +52,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 1.6.0-0.12.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 1.6.0-0.11.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 5d0160f8a35596096deaee24a702c9dbfd33ec4f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:03:27 +0000 Subject: [PATCH 26/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 75f9133..aabc4ee 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.12.20130710git41fddda%{?dist} +Release: 0.13.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -52,6 +52,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.6.0-0.13.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 1.6.0-0.12.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 73796a653451c16496049dcb9e030ddf5059fd7f Mon Sep 17 00:00:00 2001 From: Jiri Date: Sat, 11 Jul 2020 08:06:00 +0200 Subject: [PATCH 27/31] Rebuilt for JDK-11 --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index aabc4ee..cf60f57 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.13.20130710git41fddda%{?dist} +Release: 0.14.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -52,6 +52,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Sat Jul 11 2020 Jiri Vanek - 1.6.0-0.14.20130710git41fddda +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + * Fri Jan 31 2020 Fedora Release Engineering - 1.6.0-0.13.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From ac3c541c13e2be00ea8da2106c92d8e1eb533e72 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 21 Jul 2020 11:10:30 +0200 Subject: [PATCH 28/31] override javac source / target version with 1.8 to fix building with Java 11 --- javac-1.8-source-target.patch | 13 +++++++++++++ vecmath.spec | 8 +++++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 javac-1.8-source-target.patch diff --git a/javac-1.8-source-target.patch b/javac-1.8-source-target.patch new file mode 100644 index 0000000..45bcd1f --- /dev/null +++ b/javac-1.8-source-target.patch @@ -0,0 +1,13 @@ +diff --git a/build.xml b/build.xml +index f33f185..27da458 100644 +--- a/build.xml ++++ b/build.xml +@@ -43,7 +43,7 @@ + + + 1.5.2|1.6.0|" %{SOURCE1} > %{name}.pom %mvn_file javax.vecmath:vecmath %{name} @@ -52,6 +55,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Tue Jul 21 2020 Fabio Valentini - 1.6.0-0.15.20130710git41fddda +- Override javac source / target version with 1.8 to fix building with Java 11. + * Sat Jul 11 2020 Jiri Vanek - 1.6.0-0.14.20130710git41fddda - Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 From 6aafe6b602ab0527c44103a2354198a3ef85f80f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:38:14 +0000 Subject: [PATCH 29/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index 6c474eb..be5cd33 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.15.20130710git41fddda%{?dist} +Release: 0.16.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -55,6 +55,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.6.0-0.16.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 21 2020 Fabio Valentini - 1.6.0-0.15.20130710git41fddda - Override javac source / target version with 1.8 to fix building with Java 11. From ef77c169899867fe8b07364714328f326c0e3379 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:59:44 +0000 Subject: [PATCH 30/31] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vecmath.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vecmath.spec b/vecmath.spec index be5cd33..b88b612 100644 --- a/vecmath.spec +++ b/vecmath.spec @@ -3,7 +3,7 @@ Name: vecmath Version: 1.6.0 -Release: 0.16.20130710git41fddda%{?dist} +Release: 0.17.20130710git41fddda%{?dist} Summary: The 3D vector math Java package, javax.vecmath # License is GNU General Public License, version 2, with the Classpath Exception License: GPLv2 with exceptions @@ -55,6 +55,9 @@ sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{nam %doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.6.0-0.17.20130710git41fddda +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.6.0-0.16.20130710git41fddda - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From a1d8cfffd8ef5a55dd2be03646e9a2a6de3dba8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 15 Jun 2021 03:00:01 +0200 Subject: [PATCH 31/31] Orphaned for 6+ weeks --- .gitignore | 4 - dead.package | 1 + javac-1.8-source-target.patch | 13 ---- sources | 2 - vecmath-javadoc.patch | 47 ------------ vecmath.spec | 137 ---------------------------------- 6 files changed, 1 insertion(+), 203 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 javac-1.8-source-target.patch delete mode 100644 sources delete mode 100644 vecmath-javadoc.patch delete mode 100644 vecmath.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index e7c9fd3..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -vecmath-20090922.tar.bz2 -/vecmath-1.6.0-be715bd.tar.gz -/vecmath-1.6.0-41fddda.tar.gz -/vecmath-1.5.2.pom diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/javac-1.8-source-target.patch b/javac-1.8-source-target.patch deleted file mode 100644 index 45bcd1f..0000000 --- a/javac-1.8-source-target.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/build.xml b/build.xml -index f33f185..27da458 100644 ---- a/build.xml -+++ b/build.xml -@@ -43,7 +43,7 @@ - - - -+ - - - -diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java ---- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc 2013-07-10 18:32:13.000000000 +0200 -+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java 2015-09-24 18:23:13.080312295 +0200 -@@ -159,7 +159,7 @@ public class GVector implements java.io. - * Constructs a new GVector of the specified length and - * initializes it by copying the specified number of elements from - * the specified array. The array must contain at least -- * length elements (i.e., vector.length >= -+ * length elements (i.e., vector.length ≥ - * length. The length of this new GVector is set to - * the specified length. - * @param vector The array from which the values will be copied. -diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java ---- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc 2013-07-10 18:32:13.000000000 +0200 -+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java 2015-09-24 18:23:13.080312295 +0200 -@@ -36,7 +36,7 @@ package javax.vecmath; - * bytes were unsigned. - * Values greater than 127 can be assigned to a byte variable using a - * type cast. For example: -- *
    byteVariable = (byte) intValue; // intValue can be > 127
-+ *
byteVariable = (byte) intValue; // intValue can be > 127
- * If intValue is greater than 127, then byteVariable will be negative. The - * correct value will be extracted when it is used (by masking off the upper - * bits). -diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java ---- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc 2013-07-10 18:32:13.000000000 +0200 -+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java 2015-09-24 18:23:13.081312292 +0200 -@@ -36,7 +36,7 @@ package javax.vecmath; - * bytes were unsigned. - * Values greater than 127 can be assigned to a byte variable using a - * type cast. For example: -- *
    byteVariable = (byte) intValue; // intValue can be > 127
-+ *
byteVariable = (byte) intValue; // intValue can be > 127
- * If intValue is greater than 127, then byteVariable will be negative. The - * correct value will be extracted when it is used (by masking off the upper - * bits). diff --git a/vecmath.spec b/vecmath.spec deleted file mode 100644 index b88b612..0000000 --- a/vecmath.spec +++ /dev/null @@ -1,137 +0,0 @@ -%global commit 41fddda1a4f430e45bef0154e1fdfe5671025f1e -%global shortcommit %(c=%{commit}; echo ${c:0:7}) - -Name: vecmath -Version: 1.6.0 -Release: 0.17.20130710git41fddda%{?dist} -Summary: The 3D vector math Java package, javax.vecmath -# License is GNU General Public License, version 2, with the Classpath Exception -License: GPLv2 with exceptions -URL: http://github.com/hharrison/vecmath -Source0: https://github.com/hharrison/vecmath/archive/%{commit}/%{name}-%{version}-%{shortcommit}.tar.gz -# missing pom file -# https://bugzilla.redhat.com/show_bug.cgi?id=1022506 -Source1: https://repo1.maven.org/maven2/javax/vecmath/vecmath/1.5.2/vecmath-1.5.2.pom -# Fix link to javadoc and javadoc errors -Patch0: vecmath-javadoc.patch -Patch1: javac-1.8-source-target.patch -BuildArch: noarch - -BuildRequires: ant -BuildRequires: java-devel >= 1:1.6.0 -BuildRequires: java-javadoc -BuildRequires: javapackages-local - -Requires: java-headless >= 1:1.6.0 - -%description -The 3D vector math Java package, javax.vecmath. - -%package javadoc -Summary: Javadoc for %{name} - -%description javadoc -This package contains javadoc for %{name}. - -%prep -%setup -qn %{name}-%{commit} -%patch0 -p1 -%patch1 -p1 - -sed -e "s|1.5.2|1.6.0|" %{SOURCE1} > %{name}.pom -%mvn_file javax.vecmath:vecmath %{name} - -%build -%ant - -%install -%mvn_artifact %{name}.pom build/jars/%{name}.jar -%mvn_install -J build/javadoc - -%files -f .mfiles -%doc docs/api-changes* COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html - -%files javadoc -f .mfiles-javadoc -%doc COPYRIGHT.txt LICENSE.txt LICENSE-SPEC.html - -%changelog -* Wed Jan 27 2021 Fedora Release Engineering - 1.6.0-0.17.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering - 1.6.0-0.16.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 21 2020 Fabio Valentini - 1.6.0-0.15.20130710git41fddda -- Override javac source / target version with 1.8 to fix building with Java 11. - -* Sat Jul 11 2020 Jiri Vanek - 1.6.0-0.14.20130710git41fddda -- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 - -* Fri Jan 31 2020 Fedora Release Engineering - 1.6.0-0.13.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Sat Jul 27 2019 Fedora Release Engineering - 1.6.0-0.12.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 1.6.0-0.11.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering - 1.6.0-0.10.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 1.6.0-0.9.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.6.0-0.8.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 1.6.0-0.7.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Feb 05 2016 Fedora Release Engineering - 1.6.0-0.6.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Sep 24 2015 Dominik 'Rathann' Mierzejewski - 1.6.0-0.5.20130710git41fddda -- build with maven -- re-add maven pom (rhbz#1022506) -- fix javadoc errors - -* Fri Jun 19 2015 Fedora Release Engineering - 1.6.0-0.4.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 1.6.0-0.3.20130710git41fddda -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Fri Mar 28 2014 Michael Simacek - 1.6.0-0.2.20130710git41fddda -- Use Requires: java-headless rebuild (#1067528) - -* Thu Sep 5 2013 Harvey Harrison - 1.6.0-0.1.20130710git41fddda -- change upstream source to github -- upgrade to 1.6.0 - -* Sun Aug 04 2013 Fedora Release Engineering - 1.5.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 1.5.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Sep 07 2012 gil cattaneo 1.5.2-1 -- Use tarball from 1.5.2 tag (no change in source code) -- Added maven pom -- Adapt to current guideline -- Added javadoc sub package - -* Sun Jul 22 2012 Fedora Release Engineering - 0-5.20090922cvs -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 0-4.20090922cvs -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 0-3.20090922cvs -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Sep 28 2009 Jussi Lehtola - 0-2.20090922cvs -- Minor review fixes. - -* Tue Sep 22 2009 Jussi Lehtola - 0-1.20090922cvs -- First release.