From: František Dvořák Date: Tue, 6 Dec 2016 16:24:10 +0000 (+0100) Subject: google-gson X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=64a18bb7446cadedb70f8599991e018fd8512549;p=packaging-rpm-jOCCI.git google-gson --- diff --git a/gogole-gson/google-gson.spec b/gogole-gson/google-gson.spec new file mode 100644 index 0000000..a56aade --- /dev/null +++ b/gogole-gson/google-gson.spec @@ -0,0 +1,131 @@ +Name: google-gson +Version: 2.3.1 +Release: 4%{?dist} +Summary: Java lib for conversion of Java objects into JSON representation +License: ASL 2.0 +URL: https://github.com/google/gson +Source0: https://github.com/google/gson/archive/gson-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: maven-local +BuildRequires: mvn(junit:junit) +BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin) +BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:) + +%description +Gson is a Java library that can be used to convert a Java object into its +JSON representation. It can also be used to convert a JSON string into an +equivalent Java object. Gson can work with arbitrary Java objects including +pre-existing objects that you do not have source-code of. + +%package javadoc +Summary: API documentation for %{name} + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n gson-gson-%{version} + +# convert CR+LF to LF +sed -i 's/\r//g' LICENSE + +# Test requires network +rm src/test/java/com/google/gson/DefaultInetAddressTypeAdapterTest.java + +# Throwable has more fields serialized, probably incorrect test expectations +rm src/test/java/com/google/gson/functional/ThrowableFunctionalTest.java + +# Fixes build with new maven-jar-plugin +%pom_xpath_inject "pom:plugin[pom:artifactId='maven-jar-plugin']/pom:executions" " + + default-jar + skip + " + +%build +# LANG="C" or LANG="en_US.utf8" needed for the tests +%mvn_build + +%install +%mvn_install + +%files -f .mfiles +%doc LICENSE README + +%files javadoc -f .mfiles-javadoc +%doc LICENSE + +%changelog +* Thu Jun 02 2016 Michael Simacek - 2.3.1-4 +- Skip default jar plugin execution to fix FTBFS + +* Wed Feb 03 2016 Fedora Release Engineering - 2.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 2.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Apr 26 2015 Michael Simacek - 2.3.1-1 +- Update to upstream version 2.3.1 + +* Mon Apr 20 2015 Michael Simacek - 2.2.4-8 +- Remove test that relies on networking + +* Mon Mar 30 2015 Michael Simacek - 2.2.4-7 +- Remove dependency on cobertura + +* Tue Jun 10 2014 Severin Gehwolf - 2.2.4-6 +- Move to xmvn style packaging. +- Fix FTBFS. Resolves RHBZ#1106707. + +* Sat Jun 07 2014 Fedora Release Engineering - 2.2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri Mar 28 2014 Michael Simacek - 2.2.4-4 +- Use Requires: java-headless rebuild (#1067528) + +* Mon Aug 05 2013 Severin Gehwolf 2.2.4-3 +- Add BR maven-install-plugin, resolves RHBZ#992422. + +* Sat Aug 03 2013 Fedora Release Engineering - 2.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue May 14 2013 Alexander Kurtakov 2.2.4-1 +- Update to newer upstream release. + +* Thu Feb 14 2013 Fedora Release Engineering - 2.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Feb 06 2013 Java SIG - 2.2.2-3 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Wed Dec 19 2012 Severin Gehwolf 2.2.2-2 +- Add BR for surefire junit provider. + +* Wed Dec 19 2012 Severin Gehwolf 2.2.2-1 +- Update to latest upstream release. + +* Thu Jul 19 2012 Fedora Release Engineering - 2.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 2 2012 Alexander Kurtakov 2.2.1-2 +- Add missing BR on maven-enforcer-plugin. +- Remove no longer needed parts of the spec. + +* Mon Jul 2 2012 Krzysztof Daniel 2.2.1-1 +- Update to latest upstream 2.2.1 + +* Fri Jan 13 2012 Fedora Release Engineering - 1.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri May 13 2011 Jaromir Capik - 1.7.1-3 +- Removal of failing testInetAddressSerializationAndDeserialization + +* Wed May 11 2011 Jaromir Capik - 1.7.1-2 +- Conversion of CR+LF to LF in the license file + +* Tue May 10 2011 Jaromir Capik - 1.7.1-1 +- Initial version of the package