diff --git a/.gitignore b/.gitignore index e69de29..783e74b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/aalto-xml-1.0.0.tar.gz diff --git a/aalto-xml.spec b/aalto-xml.spec new file mode 100644 index 0000000..1be8112 --- /dev/null +++ b/aalto-xml.spec @@ -0,0 +1,84 @@ +Name: aalto-xml +Version: 1.0.0 +Release: 1%{?dist} +Summary: Ultra-high performance non-blocking XML processor (Stax/Stax2, SAX/SAX2) +# Source files without license headers https://github.com/FasterXML/aalto-xml/issues/38 +# See https://github.com/FasterXML/jackson-modules-base/issues/18, from main developer: +# "To whoever it concerns: policy of the Jackson project is to only include licensing information as project +# level metadata (in repo, pom.xml, artifact within source and binary jars), and not as headers in source files. +# Licensing is Apache License 2.0, for Jackson 2.x as indicated by various artifacts, and we have no plans to change this." +License: ASL 2.0 +URL: http://wiki.fasterxml.com/AaltoHome +Source0: https://github.com/FasterXML/aalto-xml/archive/%{name}-%{version}.tar.gz + +BuildRequires: maven-local +BuildRequires: mvn(com.fasterxml:oss-parent:pom:) +BuildRequires: mvn(junit:junit) +BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: mvn(org.codehaus.woodstox:stax2-api) + +BuildArch: noarch + +%description +The Aalto XML processor is a StAX XML processor implementation. It +is not directly related to other existing mature implementations +(such as Woodstox or Sun Java Streaming XML Parser), although it +did come about as a prototype for evaluating implementation strategies +that differ from those traditionally used for Java-based parsers. + +Two main goals (above and beyond stock StAX/SAX API implementation) are: + +° Ultra-high performance parsing by making the Common Case Fast + (similar to original RISC manifesto). This may mean limiting + functionality, but never compromising correctness. XML 1.0 + compliance is not sacrificed for speed. + +° Allowing non-block, asynchronous parsing: it should be possible to + "feed" more input and incrementally get more XML events out, without + forcing the current thread to block on I/O read operation. + +%package javadoc +Summary: Javadoc for %{name} + +%description javadoc +This package contains javadoc for %{name}. + +%prep +%setup -q -n %{name}-%{name}-%{version} +# Cleanup +find -name "*.class" -print -delete +find -name "*.jar" -print -delete + +sed -i 's/\r//' src/main/resources/META-INF/LICENSE +sed -i 's/\r//' release-notes/asl/* +mv release-notes/asl/ASL2.0 LICENSE +mv release-notes/asl/LICENSE NOTICE + +%if %{?fedora} < 25 +# use stax2-api 4.0.0 https://bugzilla.redhat.com/show_bug.cgi?id=1346421 +sed -i "s|SingletonIterator.create|new SingletonIterator|" \ + src/main/java/com/fasterxml/aalto/in/FixedNsContext.java +%endif + +%mvn_file : %{name} + +%build + +%mvn_build + +%install +%mvn_install + +%files -f .mfiles +%doc README.md release-notes/* +%license LICENSE NOTICE + +%files javadoc -f .mfiles-javadoc +%license LICENSE NOTICE + +%changelog +* Thu Nov 17 2016 gil cattaneo 1.0.0-1 +- Update to 1.0.0 + +* Tue Jun 14 2016 gil cattaneo 0.9.11-1 +- initial rpm diff --git a/sources b/sources index e69de29..5fd7611 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ddf09a40be0c93b1df62c24512377bf0 aalto-xml-1.0.0.tar.gz