diff --git a/.gitignore b/.gitignore index e69de29..e61253a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,14 @@ +/results_* +/*.src.rpm + +/fasterxml-oss-parent-3-src-git.tar.xz +/fasterxml-oss-parent-4-src-git.tar.xz +/oss-parent-10.tar.gz +/oss-parent-11.tar.gz +/oss-parent-16.tar.gz +/18e.tar.gz +/oss-parent-24.tar.gz +/oss-parent-26.tar.gz +/oss-parent-34.tar.gz +/oss-parent-38.tar.gz +/oss-parent-40.tar.gz diff --git a/fasterxml-oss-parent.spec b/fasterxml-oss-parent.spec new file mode 100644 index 0000000..1a120f2 --- /dev/null +++ b/fasterxml-oss-parent.spec @@ -0,0 +1,150 @@ +%global srcname oss-parent + +Name: fasterxml-oss-parent +Version: 40 +Release: 1%{?dist} +Summary: FasterXML parent pom +License: ASL 2.0 + +URL: https://github.com/FasterXML/oss-parent +Source0: %{url}/archive/%{srcname}-%{version}.tar.gz + +BuildRequires: maven-local +BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin) + +BuildArch: noarch + +%description +FasterXML is the business behind the Woodstox streaming XML parser, +Jackson streaming JSON parser, the Aalto non-blocking XML parser, and +a growing family of utility libraries and extensions. + +FasterXML offers consulting services for adoption, performance tuning, +and extension. + +This package contains the parent pom file for FasterXML.com projects. + +%prep +%setup -q -n %{srcname}-%{srcname}-%{version} + +# Stuff unnecessary for RPM builds +%pom_remove_plugin :jacoco-maven-plugin +%pom_remove_plugin :maven-enforcer-plugin +%pom_remove_plugin :maven-javadoc-plugin +%pom_remove_plugin :maven-pmd-plugin +%pom_remove_plugin :maven-scm-plugin +%pom_remove_plugin :maven-site-plugin +%pom_remove_plugin :nexus-maven-plugin +%pom_remove_plugin :jdepend-maven-plugin +%pom_remove_plugin :taglist-maven-plugin +%pom_xpath_remove "pom:build/pom:extensions" + +%build +%mvn_build + +%install +%mvn_install + +%files -f .mfiles +%doc README.creole +%license LICENSE NOTICE + +%changelog +* Mon Aug 10 2020 Fabio Valentini - 40-1 +- Update to version 40. + +* Mon Jul 27 2020 Fedora Release Engineering - 38-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 10 2020 Jiri Vanek - 38-3 +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + +* Tue Jan 28 2020 Fedora Release Engineering - 38-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Oct 05 2019 Fabio Valentini - 38-1 +- Update to version 38. + +* Thu Jul 25 2019 Fedora Release Engineering - 34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Feb 20 2019 Mat Booth - 34-1 +- Update to latest upstream version + +* Thu Jan 31 2019 Fedora Release Engineering - 26-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 26-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 26-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Aug 07 2017 Michael Simacek - 26-5 +- Fix license tag + +* Wed Jul 26 2017 Fedora Release Engineering - 26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Feb 02 2017 Michael Simacek - 26-2 +- Remove site-plugin from build + +* Mon Aug 22 2016 gil cattaneo 26-1 +- update to 26 + +* Wed Feb 03 2016 Fedora Release Engineering - 24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Sun Oct 25 2015 gil cattaneo 24-2 +- disable maven-enforcer-plugin support + +* Mon Sep 28 2015 gil cattaneo 24-1 +- update to 24 + +* Wed Jun 17 2015 Fedora Release Engineering - 18e-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jan 31 2015 gil cattaneo 18e-1 +- update to 18e + +* Wed Jul 02 2014 gil cattaneo 16-2 +- remove com.google.code.maven-replacer-plugin:replacer references + +* Wed Jul 02 2014 gil cattaneo 16-1 +- update to 16 + +* Sat Jun 07 2014 Fedora Release Engineering - 11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 28 2014 Mikolaj Izdebski - 11-3 +- Rebuild to regenerate Maven auto-requires + +* Sat Aug 03 2013 Fedora Release Engineering - 11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 16 2013 gil cattaneo 11-1 +- update to 11 + +* Sat Jul 06 2013 gil cattaneo 10-2 +- switch to XMvn +- minor changes to adapt to current guideline + +* Tue May 07 2013 gil cattaneo 10-1 +- update to 10 + +* Wed Feb 13 2013 Fedora Release Engineering - 4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Feb 06 2013 Java SIG - 4-2 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Wed Oct 24 2012 gil cattaneo 4-1 +- update to 4 + +* Thu Sep 13 2012 gil cattaneo 3-1 +- initial rpm diff --git a/sources b/sources new file mode 100644 index 0000000..85d91ac --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (oss-parent-40.tar.gz) = 7b5c6c1f9d31faabb299e39fede843786863faac63d3cf65502cb25c57811071ec26de15912ce8e47149324f15810c944a59e48f2fc5041a5ee350898356ade9