From 1a3c4c8db6b0b638f076826c021ce4d7023d3baf Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 30 2014 09:39:42 +0000 Subject: import devtoolset-3-args4j-2.0.28-1.el7 --- diff --git a/.devtoolset-3-args4j.metadata b/.devtoolset-3-args4j.metadata new file mode 100644 index 0000000..ec2954e --- /dev/null +++ b/.devtoolset-3-args4j.metadata @@ -0,0 +1 @@ +477339c61e16ddc284e6bbca2341803614d0e4b5 SOURCES/args4j-site-2.0.28.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ed407b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/args4j-site-2.0.28.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/args4j.spec b/SPECS/args4j.spec new file mode 100644 index 0000000..05b4ce8 --- /dev/null +++ b/SPECS/args4j.spec @@ -0,0 +1,141 @@ +%{?scl:%scl_package args4j} +%{!?scl:%global pkg_name %{name}} +%{!?maven_scl:%global maven_scl_prefix %{nil}} + +Name: %{?scl_prefix}args4j +Version: 2.0.28 +Release: 1%{?dist} +Summary: Java command line arguments parser +License: MIT +URL: http://args4j.kohsuke.org/ +Source0: https://github.com/kohsuke/%{pkg_name}/archive/%{pkg_name}-site-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: %{?maven_scl_prefix}maven-local +BuildRequires: %{?maven_scl_prefix}mvn(com.sun:tools) +BuildRequires: mvn(junit:junit) +BuildRequires: %{?maven_scl_prefix}mvn(org.apache.ant:ant) +BuildRequires: %{?maven_scl_prefix}mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: %{?maven_scl_prefix}mvn(org.apache.maven.plugins:maven-shade-plugin) +BuildRequires: %{?maven_scl_prefix}mvn(org.apache.maven.plugins:maven-site-plugin) + +%description +args4j is a small Java class library that makes it easy +to parse command line options/arguments in your CUI application. +- It makes the command line parsing very easy by using annotations +- You can generate the usage screen very easily +- You can generate HTML/XML that lists all options for your documentation +- Fully supports localization +- It is designed to parse javac like options (as opposed to GNU-style + where ls -lR is considered to have two options l and R) + +%package javadoc +Summary: API documentation for %{name} + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n %{pkg_name}-%{pkg_name}-site-%{version} +%{?scl:scl enable %{scl} - <<"EOF"} +# removing classpath addition +sed -i 's/true/false/g' %{pkg_name}-tools/pom.xml + +# fix ant group id +sed -i 's/ant/org.apache.ant/g' %{pkg_name}-tools/pom.xml + +# removing bundled stuff +find -name '*.class' -exec rm -f '{}' \; +find -name '*.jar' -exec rm -f '{}' \; + +# XMvn cannot generate requires on dependecies with scope "system" +%pom_xpath_remove "pom:profile[pom:id[text()='jdk-tools-jar']]" %{pkg_name}-tools +%pom_add_dep com.sun:tools %{pkg_name}-tools + +# we don't need these now +%pom_disable_module args4j-maven-plugin +%pom_disable_module args4j-maven-plugin-example +%pom_remove_parent + +# install also compat symlinks +%mvn_file ":{*}" %{pkg_name}/@1 @1 +%{?scl:EOF} + +%build +%{?scl:scl enable %{scl} - <<"EOF"} +%mvn_build -f +%{?scl:EOF} + +%install +%{?scl:scl enable %{scl} - <<"EOF"} +%mvn_install +%{?scl:EOF} + + +%files -f .mfiles +%dir %{_javadir}/%{pkg_name} +%doc %{pkg_name}/LICENSE.txt + +%files javadoc -f .mfiles-javadoc +%doc %{pkg_name}/LICENSE.txt + +%changelog +* Mon May 12 2014 Michal Srb - 2.0.28-1 +- Update to upstream version 2.0.28 + +* Wed May 07 2014 Michal Srb - 2.0.27-1 +- Update to upstream version 2.0.27 + +* Tue May 06 2014 Michal Srb - 2.0.26-4 +- Port to JSR-269 + +* Tue Mar 04 2014 Stanislav Ochotnicky - 2.0.26-3 +- Use Requires: java-headless rebuild (#1067528) + +* Thu Feb 20 2014 Michal Srb - 2.0.26-2 +- Adapt to current guidelines + +* Thu Feb 20 2014 Michal Srb - 2.0.26-1 +- Update to latest upstream 2.0.26 + +* Sat Aug 10 2013 Mat Booth - 2.0.25-1 +- Update to latest upstream, fixes #981339 + +* Sat Aug 03 2013 Fedora Release Engineering - 2.0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Jun 27 2013 Mat Booth - 2.0.23-1 +- Update to latest upstream, fixes #808703 +- Also drop unneeded patches + +* Wed Feb 13 2013 Fedora Release Engineering - 2.0.16-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Feb 06 2013 Java SIG - 2.0.16-10 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Thu Dec 13 2012 Roland Grunberg - 2.0.16-9 +- Update to conform with latest Java packaging guidelines. + +* Wed Jul 18 2012 Fedora Release Engineering - 2.0.16-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jan 31 2012 Ville Skyttä - 2.0.16-7 +- Apply upstream source encoding patch to fix build with java 1.7. + +* Thu Jan 12 2012 Fedora Release Engineering - 2.0.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Jun 13 2011 Jaromir Capik - 2.0.16-4 +- OSGi metadata generated + +* Mon May 30 2011 Jaromir Capik - 2.0.16-3 +- Removal of bundled stuff in args4j/lib + +* Wed May 25 2011 Jaromir Capik - 2.0.16-2 +- Removal of unused ant dependency + +* Tue May 24 2011 Jaromir Capik - 2.0.16-1 +- Initial version of the package