From 08e1f0cd9add860a3033a3e5c9e271f523550a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 14 Oct 2020 21:43:57 +0200 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/apache-commons-exec#20a46e4864eefa33a46f31d0232d4ded4fb9bbb1 --- .gitignore | 4 + apache-commons-exec.spec | 182 +++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 187 insertions(+) create mode 100644 apache-commons-exec.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..bfb0f37 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,4 @@ +commons-exec-1.0.1-src.tar.gz +/commons-exec-1.1-src.tar.gz +/commons-exec-1.2-src.tar.gz +/commons-exec-1.3-src.tar.gz diff --git a/apache-commons-exec.spec b/apache-commons-exec.spec new file mode 100644 index 0000000..0b86c78 --- /dev/null +++ b/apache-commons-exec.spec @@ -0,0 +1,182 @@ +%global base_name exec +%global short_name commons-%{base_name} + +Name: apache-commons-exec +Version: 1.3 +Release: 17%{?dist} +Summary: Java library to reliably execute external processes from within the JVM +License: ASL 2.0 +URL: http://commons.apache.org/exec/ +BuildArch: noarch + +Source0: http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz + +BuildRequires: maven-local +BuildRequires: mvn(junit:junit) +BuildRequires: mvn(org.apache.commons:commons-parent:pom:) +BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin) + +# Tests execute /usr/bin/ping +BuildRequires: iputils + +%description +Commons Exec is a library for dealing with external process execution and +environment management in Java. + + +%package javadoc +Summary: Javadocs for %{name} + +%description javadoc +This package contains the API documentation for %{name}. + + +%prep +%setup -q -n %{short_name}-%{version}-src + +# Fix wrong end-of-line encoding +for file in LICENSE.txt NOTICE.txt RELEASE-NOTES.txt STATUS; do + sed -i.orig "s/\r//" $file && \ + touch -r $file.orig $file && \ + rm $file.orig +done + +# Shell scripts used for unit tests must be executable (see +# http://commons.apache.org/exec/faq.html#environment-testing) +chmod a+x src/test/scripts/*.sh + +# Skip Exec57Test (it is unstable), see rhbz#1202260 +find -name Exec57Test.java -delete + +%pom_xpath_set pom:properties/pom:maven.compiler.source 6 +%pom_xpath_set pom:properties/pom:maven.compiler.target 6 + +%mvn_file :%{short_name} %{short_name} %{name} + + +%build +%mvn_build -- -Dcommons.osgi.symbolicName=org.apache.commons.exec + +%install +%mvn_install + +%files -f .mfiles +%license LICENSE.txt NOTICE.txt +%doc STATUS RELEASE-NOTES.txt + + +%files javadoc -f .mfiles-javadoc +%license LICENSE.txt NOTICE.txt + +%changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 13 2020 Jiri Vanek - 1.3-16 +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + +* Sat Jul 11 2020 Mohamed El Morabity - 1.3-15 +- Fix build with JDK-11 + +* Fri Jul 10 2020 Jiri Vanek - 1.3-14 +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + +* Tue Jan 28 2020 Fedora Release Engineering - 1.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Jul 24 2019 Fedora Release Engineering - 1.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 08 2019 Mat Booth - 1.3-11 +- Rebuild to regenerate OSGi metadata + +* Thu Jan 31 2019 Fedora Release Engineering - 1.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Jul 12 2018 Fedora Release Engineering - 1.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Jun 15 2016 Mikolaj Izdebski - 1.3-5 +- Regenerate build-requires + +* Wed Feb 03 2016 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Mar 16 2015 Mikolaj Izdebski - 1.3-2 +- Skip running unstable Exec57Test +- Resolves: rhbz#1202260 + +* Tue Dec 02 2014 Mohamed El Morabity - 1.3-1 +- Update to 1.3 + +* Sat Jun 07 2014 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue Mar 04 2014 Stanislav Ochotnicky - 1.2-2 +- Use Requires: java-headless rebuild (#1067528) + +* Mon Feb 03 2014 Mohamed El Morabity - 1.2-1 +- Update to 1.2 +- Adapt to current guidelines + +* Sat Aug 03 2013 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon Jul 15 2013 Mat Booth - 1.1-10 +- Add missing BRs + +* Mon Jul 15 2013 Mikolaj Izdebski - 1.1-9 +- Install NOTICE file with javadoc package +- Resolves: rhbz#984417 + +* Mon Feb 18 2013 Java SIG - 1.1-8 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Wed Feb 13 2013 Fedora Release Engineering - 1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jul 18 2012 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu Jan 12 2012 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Nov 30 2011 Alexander Kurtakov 1.1-4 +- Build with maven 3. +- Adapt to current guidelines. + +* Mon Mar 07 2011 Tom Callaway - 1.1-3 +- fix maven fragment + +* Mon Feb 07 2011 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Dec 28 2010 Mohamed El Morabity - 1.1-1 +- Update to 1.1 + +* Wed Sep 1 2010 Alexander Kurtakov 1.0.1-4 +- BR iputils. Needed by tests. + +* Wed Sep 1 2010 Alexander Kurtakov 1.0.1-3 +- Change maven plugin names to the new ones. + +* Wed Feb 3 2010 ELMORABITY Mohamed 1.0.1-2 +- Add missing %%post/%%postun Requires +- Use macro %%{_mavendepmapfragdir} instead of %%{_datadir}/maven2/pom +- Unown directories %%{_mavenpomdir} and %%{_mavendepmapfragdir} + +* Mon Jan 18 2010 ELMORABITY Mohamed 1.0.1-1 +- Initial RPM release diff --git a/sources b/sources new file mode 100644 index 0000000..f6ee31b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +f7d050267a75115fcc4431bd7fa567fc commons-exec-1.3-src.tar.gz