From b73f54832db7ce276d2d1ae9490d8d26c9ecaab9 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Apr 02 2019 18:30:31 +0000 Subject: Revert "Orphaned for 6+ weeks" Unretirement for https://pagure.io/releng/issue/8255 This reverts commit 50ceea12103fdd83ab50cda57a3cd729995fd29f. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0c0e79 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +/args4j-2.0.16.tar.xz +/args4j-site-2.0.23.tar.gz +/args4j-site-2.0.25.tar.gz +/args4j-site-2.0.26.tar.gz +/args4j-site-2.0.27.tar.gz +/args4j-site-2.0.28.tar.gz +/args4j-site-2.0.30.tar.gz +/args4j-site-2.32.tar.gz +/args4j-site-2.33.tar.gz diff --git a/args4j.spec b/args4j.spec new file mode 100644 index 0000000..a9062fa --- /dev/null +++ b/args4j.spec @@ -0,0 +1,192 @@ +Name: args4j +Version: 2.33 +Release: 6%{?dist} +Summary: Java command line arguments parser +License: MIT +URL: http://args4j.kohsuke.org +Source0: https://github.com/kohsuke/%{name}/archive/%{name}-site-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: maven-local +BuildRequires: mvn(com.sun:tools) +BuildRequires: mvn(junit:junit) +BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: mvn(org.kohsuke:pom:pom:) +BuildRequires: mvn(org.mockito:mockito-all) + +%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 tools +Summary: Development-time tool for generating additional artifacits + +%description tools +This package contains args4j development-time tool for generating +additional artifacits. + +%package parent +Summary: args4j parent POM + +%description parent +This package contains parent POM for args4j project. + +%package javadoc +Summary: API documentation for %{name} + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n %{name}-%{name}-site-%{version} + +# removing classpath addition +sed -i 's/true/false/g' %{name}-tools/pom.xml + +# fix ant group id +sed -i 's/ant/org.apache.ant/g' %{name}-tools/pom.xml + +# removing bundled stuff +find -name '*.class' -exec rm -f '{}' \; +find -name '*.jar' -exec rm -f '{}' \; + +%pom_remove_plugin :maven-shade-plugin %{name}-tools +%pom_remove_plugin -r :maven-site-plugin + +# XMvn cannot generate requires on dependecies with scope "system" +%pom_xpath_remove "pom:profile[pom:id[text()='jdk-tools-jar']]" %{name}-tools +%pom_add_dep com.sun:tools %{name}-tools + +# we don't need these now +%pom_disable_module args4j-maven-plugin +%pom_disable_module args4j-maven-plugin-example + +# put args4j-tools and parent POM to separate subpackages +%mvn_package :args4j-tools::{}: %{name}-tools +%mvn_package :args4j-site::{}: %{name}-parent + +# install also compat symlinks +%mvn_file ":{*}" %{name}/@1 @1 + +%build +%mvn_build + +%install +%mvn_install + +%files -f .mfiles +%license %{name}/LICENSE.txt + +%files tools -f .mfiles-%{name}-tools + +%files parent -f .mfiles-%{name}-parent +%license %{name}/LICENSE.txt + +%files javadoc -f .mfiles-javadoc +%license %{name}/LICENSE.txt + +%changelog +* Thu Jan 31 2019 Fedora Release Engineering - 2.33-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Jul 12 2018 Fedora Release Engineering - 2.33-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 2.33-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 2.33-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Feb 06 2017 Michael Simacek - 2.33-2 +- Remove BR on site-plugin + +* Tue Jul 19 2016 Michael Simacek - 2.33-1 +- Update to upstream version 2.33 + +* Wed Feb 03 2016 Fedora Release Engineering - 2.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Aug 03 2015 Michael Simacek - 2.32-2 +- Remove uberjar generation + +* Thu Jul 02 2015 Michal Srb - 2.32-1 +- Update to upstream release 2.32 + +* Wed Jun 17 2015 Fedora Release Engineering - 2.0.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Sep 22 2014 Michal Srb - 2.0.30-2 +- Move args4j-tools and parent POM into subpackages (Resolves: #1144991) + +* Mon Sep 01 2014 Michal Srb - 2.0.30-1 +- Update to upstream version 2.0.30 + +* Sat Jun 07 2014 Fedora Release Engineering - 2.0.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* 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 diff --git a/dead.package b/dead.package deleted file mode 100644 index 5204a84..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Orphaned for 6+ weeks diff --git a/sources b/sources new file mode 100644 index 0000000..346a00d --- /dev/null +++ b/sources @@ -0,0 +1 @@ +a63d8701c5c32ed0a45723f58562c5a8 args4j-site-2.33.tar.gz