Compare commits
No commits in common. "rawhide" and "f14" have entirely different histories.
6 changed files with 179 additions and 321 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -1,8 +1 @@
|
|||
/nekohtml-*.tar.gz
|
||||
/nekohtml-*/
|
||||
/nekohtml-*.pom
|
||||
/.build-*.log
|
||||
/noarch
|
||||
/*.src.rpm
|
||||
/.project
|
||||
/nekohtml-1.9.22.tar.bz2
|
||||
nekohtml-1.9.14.tar.gz
|
||||
|
|
|
|||
|
|
@ -1,27 +0,0 @@
|
|||
From 1cbc54dc98b762c4ba3b1daffc2cf5a1116732ef Mon Sep 17 00:00:00 2001
|
||||
From: Michael Simacek <msimacek@redhat.com>
|
||||
Date: Tue, 14 Jul 2015 11:21:21 +0200
|
||||
Subject: [PATCH 3/3] Add OSGi attributes
|
||||
|
||||
---
|
||||
build.xml | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/build.xml b/build.xml
|
||||
index 1f00059..194b0bf 100644
|
||||
--- a/build.xml
|
||||
+++ b/build.xml
|
||||
@@ -129,6 +129,10 @@
|
||||
<jar jarfile='${jar.file}'>
|
||||
<manifest>
|
||||
<attribute name="Built-By" value="${author}"/>
|
||||
+ <attribute name="Bundle-SymbolicName" value="${package}" />
|
||||
+ <attribute name="Bundle-Version" value="${version}" />
|
||||
+ <attribute name="Export-Package" value="org.cyberneko.html,org.cyberneko.html.filters,org.cyberneko.html.parsers,org.cyberneko.html.xercesbridge" />
|
||||
+ <attribute name="Import-Package" value="org.apache.xerces.util,org.apache.xerces.xni,org.apache.xerces.xni.parser,org.apache.xerces.impl" />
|
||||
<section name="org/cyberneko/html/">
|
||||
<attribute name="Specification-Title" value="Hyper-Text Markup Language (HTML)" />
|
||||
<attribute name="Specification-Version" value="4.01" />
|
||||
--
|
||||
2.1.0
|
||||
|
||||
|
|
@ -1,31 +1,18 @@
|
|||
From 085262f5d43cc9541480392910f29091ef678217 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Simacek <msimacek@redhat.com>
|
||||
Date: Tue, 14 Jul 2015 11:20:41 +0200
|
||||
Subject: [PATCH 1/3] Crosslink javadoc
|
||||
|
||||
---
|
||||
build.xml | 15 ++++++++++++---
|
||||
1 file changed, 12 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/build.xml b/build.xml
|
||||
index 8cbab8e..d36f42b 100644
|
||||
--- a/build.xml
|
||||
+++ b/build.xml
|
||||
@@ -41,7 +41,12 @@
|
||||
|
||||
--- nekohtml-1.9.11/build.xml.orig 2008-12-29 15:13:42.000000000 -0500
|
||||
+++ nekohtml-1.9.11/build.xml 2009-02-11 14:27:05.352730458 -0500
|
||||
@@ -42,6 +42,11 @@
|
||||
<property name='version.java.dir' value='${build.src.dir}/org/cyberneko/html'/>
|
||||
<property name='version.java' value='${version.java.dir}/Version.java'/>
|
||||
-
|
||||
+
|
||||
|
||||
+ <property name='bcel.javadoc' value='http://jakarta.apache.org/bcel/apidocs/'/>
|
||||
+ <property name='j2se.javadoc' value='http://java.sun.com/j2se/1.4.2/docs/api/'/>
|
||||
+ <property name='xni.javadoc' value='http://xml.apache.org/xerces2-j/javadocs/xni/'/>
|
||||
+ <property name='xerces.javadoc' value='http://xml.apache.org/xerces2-j/javadocs/xerces2/'/>
|
||||
+
|
||||
<!-- defined maven snapshots and staging repository id and url -->
|
||||
<property name="maven-snapshots-repository-id" value="sonatype-nexus-snapshots" />
|
||||
<property name="maven-snapshots-repository-url" value="https://oss.sonatype.org/content/repositories/snapshots/" />
|
||||
@@ -178,8 +183,12 @@
|
||||
<!-- DEPENDENCIES -->
|
||||
<available property='bcel.available' file='${lib.dir}/bcel-5.2.jar' />
|
||||
|
||||
@@ -171,8 +176,12 @@
|
||||
author='true' version='true' use='true'
|
||||
windowtitle="${Name} Implementation"
|
||||
doctitle="${Name}" encoding="ISO-8859-1"
|
||||
|
|
@ -40,6 +27,3 @@ index 8cbab8e..d36f42b 100644
|
|||
</target>
|
||||
|
||||
<target name='doc-init'>
|
||||
--
|
||||
2.1.0
|
||||
|
||||
|
|
@ -1,18 +1,7 @@
|
|||
From 03b255b50250861a630cd72cb3fae30c7f0f5987 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Simacek <msimacek@redhat.com>
|
||||
Date: Tue, 14 Jul 2015 11:20:59 +0200
|
||||
Subject: [PATCH 2/3] Jar paths
|
||||
|
||||
---
|
||||
build.xml | 20 +++++++++++---------
|
||||
1 file changed, 11 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/build.xml b/build.xml
|
||||
index d36f42b..1f00059 100644
|
||||
--- a/build.xml
|
||||
+++ b/build.xml
|
||||
@@ -54,7 +54,7 @@
|
||||
<property name="maven-staging-repository-url" value="https://oss.sonatype.org/service/local/staging/deploy/maven2/" />
|
||||
--- nekohtml-1.9.14/build.xml.orig 2010-07-19 13:56:56.190200850 -0400
|
||||
+++ nekohtml-1.9.14/build.xml 2010-07-19 14:06:07.908202000 -0400
|
||||
@@ -48,7 +48,7 @@
|
||||
<property name='xerces.javadoc' value='http://xml.apache.org/xerces2-j/javadocs/xerces2/'/>
|
||||
|
||||
<!-- DEPENDENCIES -->
|
||||
- <available property='bcel.available' file='${lib.dir}/bcel-5.2.jar' />
|
||||
|
|
@ -20,7 +9,7 @@ index d36f42b..1f00059 100644
|
|||
|
||||
<property name="xerces.version" value="2.9.1"/>
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
@@ -77,7 +77,7 @@
|
||||
source='${compile.source}' target='${compile.target}'
|
||||
includeAntRuntime='false'>
|
||||
<classpath>
|
||||
|
|
@ -29,7 +18,7 @@ index d36f42b..1f00059 100644
|
|||
</classpath>
|
||||
<src path='${src.dir}' />
|
||||
<src path='${build.src.dir}' />
|
||||
@@ -94,7 +94,7 @@
|
||||
@@ -88,7 +88,7 @@
|
||||
source='${compile.source}' target='${compile.target}'
|
||||
includeAntRuntime='false'>
|
||||
<classpath>
|
||||
|
|
@ -38,22 +27,21 @@ index d36f42b..1f00059 100644
|
|||
</classpath>
|
||||
<src path='${src.dir}' />
|
||||
<src path='${build.src.dir}' />
|
||||
@@ -108,12 +108,14 @@
|
||||
@@ -102,11 +102,13 @@
|
||||
unless="compile.skip">
|
||||
<mkdir dir="${build.classes.dir}"/>
|
||||
|
||||
+ <!--
|
||||
+ <!--
|
||||
<compileWith xercesVersion="2.0.2" bridge="2_0"/>
|
||||
<compileWith xercesVersion="2.1.0" bridge="2_1"/>
|
||||
<compileWith xercesVersion="2.2.1" bridge="2_2"/>
|
||||
<compileWith xercesVersion="2.3.0" bridge="2_3"/>
|
||||
<compileWith xercesVersion="2.8.1" bridge="2_3"/>
|
||||
+ -->
|
||||
<compileWith xercesVersion="2.9.1" bridge="2_3"/>
|
||||
+ -->
|
||||
<compileWith xercesVersion="2.10.0" bridge="2_3"/>
|
||||
|
||||
<copy todir="${build.classes.dir}">
|
||||
@@ -236,7 +238,7 @@ public class Version {
|
||||
@@ -229,7 +231,7 @@
|
||||
<java classname='org.apache.tools.ant.Main'>
|
||||
<classpath>
|
||||
<pathelement path='${java.class.path}' />
|
||||
|
|
@ -62,16 +50,16 @@ index d36f42b..1f00059 100644
|
|||
</classpath>
|
||||
<arg value='x-minimal' />
|
||||
</java>
|
||||
@@ -277,7 +279,7 @@ public class Version {
|
||||
@@ -270,7 +272,7 @@
|
||||
source='${compile.source}' target='${compile.target}'
|
||||
includeAntRuntime='true'>
|
||||
<classpath>
|
||||
- <fileset dir='${lib.dir}' includes='xml-apis.jar,xerces*.jar, junit*.jar' />
|
||||
+ <fileset dir='${lib.dir}' includes='xml-commons-apis.jar,xerces-j2.jar, junit.jar' />
|
||||
+ <fileset dir='${lib.dir}' includes='xml-commons-apis.jar,xerces-j2.jar,junit.jar' />
|
||||
<pathelement location='${build.classes.dir}' />
|
||||
</classpath>
|
||||
<src path='${src.test.dir}' />
|
||||
@@ -298,8 +300,8 @@ public class Version {
|
||||
@@ -291,8 +293,8 @@
|
||||
<classpath>
|
||||
<pathelement path='${build.test-classes.dir}'/>
|
||||
<pathelement location='${build.classes.dir}' />
|
||||
|
|
@ -82,30 +70,25 @@ index d36f42b..1f00059 100644
|
|||
</classpath>
|
||||
|
||||
<formatter type="xml"/>
|
||||
@@ -318,13 +320,13 @@ public class Version {
|
||||
@@ -311,10 +313,12 @@
|
||||
<mkdir dir="${build.dir}/junit"/>
|
||||
|
||||
<testWith xercesVersion="2.11.0"/>
|
||||
+ <!--
|
||||
<testWith xercesVersion="2.10.0"/>
|
||||
<testWith xercesVersion="2.9.1"/>
|
||||
+ <!--
|
||||
<testWith xercesVersion="2.8.1"/>
|
||||
<testWith xercesVersion="2.3.0"/>
|
||||
<testWith xercesVersion="2.2.1"/>
|
||||
<testWith xercesVersion="minimal"/>
|
||||
- <!--
|
||||
+ -->
|
||||
<!--
|
||||
<testWith xercesVersion="2.1.0"/>
|
||||
<testWith xercesVersion="2.0.2"/>
|
||||
-->
|
||||
@@ -397,7 +399,7 @@ public class Version {
|
||||
</target>
|
||||
@@ -351,7 +355,7 @@
|
||||
<fileset dir='${build.src.dir}' />
|
||||
</jar>
|
||||
|
||||
<target name="-defineMavenAntTasks">
|
||||
- <path id="maven-ant-tasks.classpath" path="lib/maven-ant-tasks-2.1.3.jar" />
|
||||
+ <path id="maven-ant-tasks.classpath" path="lib/maven-ant-tasks.jar" />
|
||||
- <path id="maven-ant-tasks.classpath" path="lib/maven-ant-tasks-2.0.8.jar" />
|
||||
+ <path id="maven-ant-tasks.classpath" path="${lib.dir}/maven-ant-tasks.jar" />
|
||||
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant"
|
||||
classpathref="maven-ant-tasks.classpath" />
|
||||
<artifact:pom id="maven.project" file="pom.xml" />
|
||||
--
|
||||
2.1.0
|
||||
|
||||
362
nekohtml.spec
362
nekohtml.spec
|
|
@ -28,39 +28,56 @@
|
|||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
%define with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
|
||||
%define without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
|
||||
%define bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
|
||||
%define bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
|
||||
|
||||
%bcond_without repolib
|
||||
%bcond_with gcj_support
|
||||
|
||||
%define repodir %{_javadir}/repository.jboss.com/nekohtml/%{version}-brew
|
||||
%define repodirlib %{repodir}/lib
|
||||
%define repodirsrc %{repodir}/src
|
||||
|
||||
%define section free
|
||||
|
||||
Name: nekohtml
|
||||
Version: 1.9.22
|
||||
Release: 34%{?dist}
|
||||
Version: 1.9.14
|
||||
Release: 2%{?dist}
|
||||
Epoch: 0
|
||||
Summary: HTML scanner and tag balancer
|
||||
# Automatically converted from old format: ASL 2.0 - review is highly recommended.
|
||||
License: Apache-2.0
|
||||
License: ASL 2.0
|
||||
URL: http://nekohtml.sourceforge.net/
|
||||
# No upstream tarball for this release
|
||||
# svn export svn://svn.code.sf.net/p/nekohtml/code/branches/nekohtml-1.9.22 nekohtml-1.9.22
|
||||
# find nekohtml-1.9.22 -name '*.jar' -delete
|
||||
# tar cjf nekohtml-1.9.22.tar.bz2 nekohtml-1.9.22/
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||
# http://www.jpackage.org/cgi-bin/viewvc.cgi/*checkout*/rpms/devel/nekohtml/nekohtml-filter.sh?root=jpackage&content-type=text%2Fplain
|
||||
Source1: %{name}-filter.sh
|
||||
Source2: nekohtml-component-info.xml
|
||||
Source3: http://central.maven.org/maven2/net/sourceforge/%{name}/%{name}/%{version}/%{name}-%{version}.pom
|
||||
Patch0: 0001-Crosslink-javadoc.patch
|
||||
Patch1: 0002-Jar-paths.patch
|
||||
# Add proper attributes to MANIFEST.MF file so bundle can be used by other OSGI bundles.
|
||||
Patch2: 0003-Add-OSGi-attributes.patch
|
||||
|
||||
Requires: xerces-j2
|
||||
Requires: xml-commons-apis
|
||||
# Explicit requires for javapackages-tools since nekohtml-filter script
|
||||
# uses /usr/share/java-utils/java-functions
|
||||
Requires: javapackages-tools
|
||||
BuildRequires: javapackages-local-openjdk25
|
||||
BuildRequires: ant-openjdk25
|
||||
Patch0: %{name}-crosslink.patch
|
||||
Patch1: %{name}-jars.patch
|
||||
Group: Development/Libraries/Java
|
||||
Requires: bcel
|
||||
Requires: jpackage-utils >= 0:1.6
|
||||
Requires: xerces-j2 >= 0:2.7.1
|
||||
Requires: xml-commons-jaxp-1.3-apis
|
||||
BuildRequires: jpackage-utils
|
||||
BuildRequires: ant
|
||||
BuildRequires: ant-junit
|
||||
BuildRequires: xerces-j2
|
||||
BuildRequires: xml-commons-apis
|
||||
|
||||
BuildRequires: ant-trax
|
||||
BuildRequires: java-javadoc
|
||||
BuildRequires: bcel
|
||||
BuildRequires: bcel-javadoc
|
||||
BuildRequires: xerces-j2 >= 0:2.7.1
|
||||
BuildRequires: xerces-j2-javadoc-xni
|
||||
BuildRequires: xerces-j2-javadoc-impl
|
||||
BuildRequires: xml-commons-jaxp-1.3-apis
|
||||
%if %with gcj_support
|
||||
BuildRequires: java-gcj-compat-devel
|
||||
%else
|
||||
BuildArch: noarch
|
||||
ExclusiveArch: %{java_arches} noarch
|
||||
BuildRequires: java-devel >= 1.6.0
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||
|
||||
%description
|
||||
NekoHTML is a simple HTML scanner and tag balancer that enables
|
||||
|
|
@ -77,233 +94,142 @@ rewriting code.
|
|||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
Group: Development/Documentation
|
||||
|
||||
%description javadoc
|
||||
Javadoc for %{name}.
|
||||
|
||||
%package demo
|
||||
Summary: Demo for %{name}
|
||||
Group: Development/Libraries/Java
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description demo
|
||||
Demonstrations and samples for %{name}.
|
||||
|
||||
%if %with repolib
|
||||
%package repolib
|
||||
Summary: Artifacts to be uploaded to a repository library
|
||||
Group: Development/Libraries/Java
|
||||
|
||||
%description repolib
|
||||
Artifacts to be uploaded to a repository library.
|
||||
This package is not meant to be installed but so its contents
|
||||
can be extracted through rpm2cpio.
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch -P0 -p1
|
||||
%patch -P1 -p1
|
||||
%patch -P2 -p1
|
||||
|
||||
find -name "*.jar" -delete
|
||||
sed -i 's/\r$//g' *.txt doc/*.html
|
||||
|
||||
# disable javadoc linting
|
||||
sed -i -e '/<\/javadoc>/i<arg value="-Xdoclint:none"\/>' build.xml
|
||||
|
||||
# cannonization test fails on some whitespace, TODO investigate
|
||||
rm data/meta/test-meta-encoding3.html
|
||||
|
||||
%mvn_alias net.sourceforge.%{name}:%{name} %{name}:%{name}
|
||||
%mvn_package net.sourceforge.%{name}:%{name}-samples demo
|
||||
%mvn_file ':{*}' @1
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%{_bindir}/find . -name "*.jar" | %{_bindir}/xargs -t %{__rm}
|
||||
%{__perl} -pi -e 's/\r$//g' *.txt doc/*.html
|
||||
%{__rm} -r doc/javadoc
|
||||
|
||||
%build
|
||||
export CLASSPATH=$(build-classpath bcel xerces-j2 xml-commons-apis)
|
||||
ant -Dcompile.source=1.8 -Dcompile.target=1.8 \
|
||||
export CLASSPATH=$(build-classpath bcel xerces-j2)
|
||||
export OPT_JAR_LIST="`%{__cat} %{_sysconfdir}/ant.d/junit` ant/ant-trax xalan-j2"
|
||||
%{ant} \
|
||||
-Dbuild.sysclasspath=first \
|
||||
-Dlib.dir=%{_javadir} \
|
||||
-Djar.file=%{name}.jar \
|
||||
-Djar.xni.file=%{name}-xni.jar \
|
||||
-Djar.samples.file=%{name}-samples.jar \
|
||||
-Djar.file=%{name}-%{version}.jar \
|
||||
-Djar.xni.file=%{name}-xni-%{version}.jar \
|
||||
-Djar.samples.file=%{name}-samples-%{version}.jar \
|
||||
-Dbcel.javadoc=%{_javadocdir}/bcel \
|
||||
-Dj2se.javadoc=%{_javadocdir}/java \
|
||||
-Dxni.javadoc=%{_javadocdir}/xerces-j2-xni \
|
||||
-Dxerces.javadoc=%{_javadocdir}/xerces-j2-impl \
|
||||
clean jar jar-xni test doc
|
||||
# test - disabled because it makes the build failing
|
||||
|
||||
%mvn_artifact %{SOURCE3} %{name}.jar
|
||||
%mvn_artifact net.sourceforge.%{name}:%{name}-xni:%{version} %{name}-xni.jar
|
||||
%mvn_artifact net.sourceforge.%{name}:%{name}-samples:%{version} %{name}-samples.jar
|
||||
clean jar jar-xni doc test
|
||||
|
||||
%install
|
||||
%mvn_install -J build/doc/javadoc
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
# Jars
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
||||
install -p -m 644 %{name}{,-samples,-xni}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/
|
||||
ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
|
||||
ln -s %{name}-samples-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-samples.jar
|
||||
ln -s %{name}-xni-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-xni.jar
|
||||
|
||||
# Scripts
|
||||
%jpackage_script org.cyberneko.html.filters.Writer "" "" "nekohtml:xerces-j2" nekohtml-filter true
|
||||
install -Dpm 755 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/%{name}-filter
|
||||
|
||||
%files -f .mfiles
|
||||
# Javadocs
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
cp -a build/doc/javadoc/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
|
||||
%if %with repolib
|
||||
%{__install} -d -m 755 %{buildroot}%{repodir}
|
||||
%{__install} -d -m 755 %{buildroot}%{repodirlib}
|
||||
%{__install} -p -m 644 %{SOURCE2} %{buildroot}%{repodir}/component-info.xml
|
||||
tag=`/bin/echo %{name}-%{version}-%{release} | %{__sed} 's|\.|_|g'`
|
||||
%{__sed} -i "s/@TAG@/$tag/g" %{buildroot}%{repodir}/component-info.xml
|
||||
%{__sed} -i "s/@VERSION@/%{version}-brew/g" %{buildroot}%{repodir}/component-info.xml
|
||||
%{__install} -d -m 755 %{buildroot}%{repodirsrc}
|
||||
%{__install} -p -m 644 %{SOURCE0} %{buildroot}%{repodirsrc}
|
||||
%{__install} -p -m 644 %{SOURCE1} %{buildroot}%{repodirsrc}
|
||||
%{__install} -p -m 644 %{PATCH0} %{buildroot}%{repodirsrc}
|
||||
%{__install} -p -m 644 %{PATCH1} %{buildroot}%{repodirsrc}
|
||||
%{__cp} -p %{buildroot}%{_javadir}/%{name}.jar %{buildroot}%{repodirlib}/nekohtml.jar
|
||||
%endif
|
||||
|
||||
%if %with gcj_support
|
||||
%{_bindir}/aot-compile-rpm
|
||||
%endif
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%if %with gcj_support
|
||||
%post
|
||||
if [ -x %{_bindir}/rebuild-gcj-db ]
|
||||
then
|
||||
%{_bindir}/rebuild-gcj-db
|
||||
fi
|
||||
|
||||
%postun
|
||||
if [ -x %{_bindir}/rebuild-gcj-db ]
|
||||
then
|
||||
%{_bindir}/rebuild-gcj-db
|
||||
fi
|
||||
%endif
|
||||
|
||||
%files
|
||||
%defattr(0644,root,root,0755)
|
||||
%doc LICENSE.txt README.txt doc/*.html
|
||||
%{_bindir}/%{name}-filter
|
||||
%attr(755,root,root) %{_bindir}/%{name}-filter
|
||||
%{_javadir}/%{name}-%{version}.jar
|
||||
%{_javadir}/%{name}.jar
|
||||
%{_javadir}/%{name}-xni-%{version}.jar
|
||||
%{_javadir}/%{name}-xni.jar
|
||||
%if %with gcj_support
|
||||
%dir %{_libdir}/gcj/%{name}
|
||||
%attr(-,root,root) %{_libdir}/gcj/%{name}/*
|
||||
%endif
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%files javadoc
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_javadocdir}/%{name}-%{version}
|
||||
%{_javadocdir}/%{name}
|
||||
|
||||
%files demo -f .mfiles-demo
|
||||
%files demo
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_javadir}/%{name}-samples-%{version}.jar
|
||||
%{_javadir}/%{name}-samples.jar
|
||||
|
||||
%if %with repolib
|
||||
%files repolib
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_javadir}/repository.jboss.com
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-34
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Wed Jul 30 2025 jiri vanek <jvanek@redhat.com> - 0:1.9.22-32
|
||||
- Rrevert to jdk21
|
||||
|
||||
* Tue Jul 29 2025 jiri vanek <jvanek@redhat.com> - 0:1.9.22-31
|
||||
- Rebuilt for java-25-openjdk as preffered jdk
|
||||
|
||||
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-30
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2024 Miroslav Suchý <msuchy@redhat.com> - 0:1.9.22-28
|
||||
- convert license to SPDX
|
||||
|
||||
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-27
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Tue Feb 27 2024 Jiri Vanek <jvanek@redhat.com> - 0:1.9.22-26
|
||||
- Rebuilt for java-21-openjdk as system jdk
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Fri Jul 08 2022 Jiri Vanek <jvanek@redhat.com> - 0:1.9.22-20
|
||||
- Rebuilt for Drop i686 JDKs
|
||||
|
||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 0:1.9.22-19
|
||||
- Rebuilt for java-17-openjdk as system jdk
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 0:1.9.22-14
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Fri Jun 19 2020 Mat Booth <mat.booth@redhat.com> - 0:1.9.22-13
|
||||
- Allow building against Java 11
|
||||
|
||||
* Sun May 17 2020 Mat Booth <mat.booth@redhat.com> - 0:1.9.22-12
|
||||
- Remove unneeded dep on bcel
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Aug 31 2018 Severin Gehwolf <sgehwolf@redhat.com> - 0:1.9.22-8
|
||||
- Add explicit requirement on javapackages-tools since nekohtml-filter
|
||||
script uses java-functions. See RHBZ#1600426.
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Mar 30 2017 Michael Simacek <msimacek@redhat.com> - 0:1.9.22-4
|
||||
- Add xml-commons-apis to classpath for tests
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.22-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jul 14 2015 Michael Simacek <msimacek@redhat.com> - 0:1.9.22-1
|
||||
- Update to upstream version 1.9.22
|
||||
- Enable tests
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.21-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Tue Aug 19 2014 Mat Booth <mat.booth@redhat.com> - 0:1.9.21-3
|
||||
- Add "Import-Package" to OSGi metadata so that classes from xerces can
|
||||
be resolved.
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.21-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Jun 5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.9.21-1
|
||||
- Update to upstream version 1.9.21
|
||||
|
||||
* Mon May 12 2014 Jeff Johnston <jjohnstn@redhat.com> - 0:1.9.20-4
|
||||
- Add Export-Package statement to MANIFEST.MF.
|
||||
|
||||
* Mon May 12 2014 Jeff Johnston <jjohnstn@redhat.com> - 0:1.9.20-3
|
||||
- Change Bundle-Name to be Bundle-SymbolicName.
|
||||
|
||||
* Mon May 12 2014 Jeff Johnston <jjohnstn@redhat.com> - 0:1.9.20-2
|
||||
- Add OSGI Bundle-Name and Bundle-Version to generated manifest
|
||||
|
||||
* Tue Mar 18 2014 Michael Simacek <msimacek@redhat.com> - 0:1.9.20-1
|
||||
- Update to upstream version 1.9.20
|
||||
- Use XMvn for installation
|
||||
- Require java-headless
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.14-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.14-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.9.14-10
|
||||
- Add addiotional depmap
|
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.14-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Jun 12 2012 Bill Nottingham <notting@redhat.com> 0:1.9.14-7
|
||||
- Update buildreqs to packages that currently exist
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.14-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Nov 1 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.9.14-6
|
||||
- Adapt to current guidelines.
|
||||
|
||||
* Mon Oct 10 2011 Andy Grimm <agrimm@gmail.com> - 0:1.9.14-5
|
||||
- Add POM file (BZ #735521)
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.9.14-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Oct 6 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.9.14-3
|
||||
- Drop gcj support and rpeolib.
|
||||
|
||||
* Mon Jul 19 2010 James Laska <jlaska@redhat.com> 0:1.9.14-2
|
||||
- Disable gcj_support
|
||||
- Updated nekohtml-jars.patch
|
||||
|
||||
* Thu Jul 15 2010 James Laska <jlaska@redhat.com> 0:1.9.14-1
|
||||
* Mon Jul 15 2010 James Laska <jlaska@redhat.com> 0:1.9.14-1
|
||||
- Update to 1.9.14
|
||||
|
||||
* Wed May 13 2009 Martha Benitez <mbenitez@redhat.com> 0:1.9.11-2.2
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
|||
2745bff457e7b74fe397aa5624696dc1 nekohtml-1.9.22.tar.bz2
|
||||
d326e5102974288b4e13185e72cc9cb9 nekohtml-1.9.22.pom
|
||||
d6576e9d2040bce54c3266ddc37cf0aa nekohtml-1.9.14.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue