Orphaned for 6+ weeks
This commit is contained in:
parent
91d5f556dd
commit
47ee63016f
5 changed files with 1 additions and 160 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
|||
/annox-0.5.0-src-svn.tar.gz
|
||||
/annox-b8565e1faa39c4eb8841902cf65a1615f5a933d7.tar.gz
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
Copyright (c) 2006-2009, Aleksei Valikov
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
Neither the name of Alexey Valikov nor the name of Highsource nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
146
annox.spec
146
annox.spec
|
|
@ -1,146 +0,0 @@
|
|||
%global githash b8565e1faa39c4eb8841902cf65a1615f5a933d7
|
||||
Name: annox
|
||||
Version: 1.0.1
|
||||
Release: 8%{?dist}
|
||||
Summary: Java annotations in XML resources
|
||||
License: BSD
|
||||
Url: http://java.net/projects/annox
|
||||
# https://svn.java.net/svn/annox~svn/tags/
|
||||
Source0: https://github.com/highsource/annox/archive/%{githash}/%{name}-%{githash}.tar.gz
|
||||
# from http://confluence.highsource.org/display/ANX/License
|
||||
# annox package don't include the license file
|
||||
# but annox developers allowed us to redistribute their
|
||||
# work only if we include this notice. So we HAVE TO include these notices.
|
||||
# https://github.com/highsource/annox/issues/3
|
||||
Source1: annox-LICENSE
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(com.google.code.javaparser:javaparser)
|
||||
BuildRequires: mvn(com.sun.xml.bind:jaxb-impl)
|
||||
BuildRequires: mvn(commons-io:commons-io)
|
||||
BuildRequires: mvn(javax.transaction:jta)
|
||||
BuildRequires: mvn(junit:junit)
|
||||
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
||||
BuildRequires: mvn(org.apache.maven.plugins:maven-assembly-plugin)
|
||||
BuildRequires: mvn(org.hibernate:hibernate-search-engine)
|
||||
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Annox is an open source project which allows you to
|
||||
read arbitrary Java annotations from XML resources.
|
||||
JAXB users may be interested in Annox annotation
|
||||
reader for JAXB RI which allows you to define JAXB
|
||||
Java/XML mappings in XML resources (instead of
|
||||
annotations).
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
|
||||
%description javadoc
|
||||
This package contains javadoc for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{githash}
|
||||
# Cleanup
|
||||
find -name "*.bat" -print -delete
|
||||
find -name "*.class" -print -delete
|
||||
find -name "*.jar" -print -delete
|
||||
|
||||
%pom_disable_module samples
|
||||
|
||||
%pom_remove_plugin :maven-deploy-plugin
|
||||
|
||||
%pom_change_dep :ant-optional org.apache.ant:ant
|
||||
|
||||
%pom_xpath_set "pom:dependency[pom:artifactId = 'tools' ]/pom:groupId" com.sun
|
||||
%pom_xpath_remove "pom:dependency[pom:artifactId = 'tools' ]/pom:scope"
|
||||
%pom_xpath_remove "pom:dependency[pom:artifactId = 'tools' ]/pom:systemPath"
|
||||
|
||||
%pom_change_dep -r :hibernate-search :hibernate-search-engine
|
||||
sed -i "s|org.hibernate.search.annotations.Field(index=TOKENIZED, store=NO|org.hibernate.search.annotations.Field(store=NO|" \
|
||||
core/src/test/java/org/jvnet/annox/parser/tests/XAnnotationParserTest.java
|
||||
sed -i '/TOKENIZED/d' core/src/test/resources/org/jvnet/annox/parser/tests/field.xml
|
||||
|
||||
cp -p %{SOURCE1} LICENSE
|
||||
sed -i 's/\r//' LICENSE
|
||||
|
||||
%mvn_file :%{name} %{name}
|
||||
|
||||
%build
|
||||
|
||||
# unavailable deps for run test: org.hibernate hibernate-search 3.0.0.GA
|
||||
%mvn_build
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jul 31 2015 gil cattaneo <puntogil@libero.it> 1.0.1-1
|
||||
- update to 1.0.1
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Jan 29 2015 gil cattaneo <puntogil@libero.it> - 0.5.0-10
|
||||
- introduce license macro
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Mar 28 2014 Michael Simacek <msimacek@redhat.com> - 0.5.0-8
|
||||
- Use Requires: java-headless rebuild (#1067528)
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Sat Jul 06 2013 gil cattaneo <puntogil@libero.it> 0.5.0-6
|
||||
- switch to XMvn
|
||||
- minor changes to adapt to current guideline
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0.5.0-4
|
||||
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||
- Replace maven BuildRequires with maven-local
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu May 10 2012 gil cattaneo <puntogil@libero.it> 0.5.0-2
|
||||
- add license
|
||||
|
||||
* Sat Mar 31 2012 gil cattaneo <puntogil@libero.it> 0.5.0-1
|
||||
- initial rpm
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
b7cd8c81375422a032c135e1defb95da annox-b8565e1faa39c4eb8841902cf65a1615f5a933d7.tar.gz
|
||||
Reference in a new issue