%global archiversion %(echo %{version} | tr . _ ) Name: log4j12 Version: 1.2.17 Release: 2%{?dist} Summary: Java logging package License: ASL 2.0 URL: http://logging.apache.org/log4j/1.2/ Source0: https://github.com/apache/log4j/archive/v%{archiversion}.tar.gz Source1: log4j.catalog Patch0: 0001-logfactor5-changed-userdir.patch Patch1: 0009-Fix-tests.patch Patch2: 0010-Fix-javadoc-link.patch BuildRequires: java-devel BuildRequires: mvn(ant-contrib:ant-contrib) BuildRequires: mvn(javax.mail:mail) BuildRequires: mvn(org.apache.ant:ant-junit) BuildRequires: mvn(org.apache.geronimo.specs:geronimo-jms_1.1_spec) BuildRequires: mvn(org.apache.geronimo.specs:specs) BuildRequires: mvn(oro:oro) BuildRequires: mvn(junit:junit) BuildRequires: maven-local BuildArch: noarch %description Log4j is a tool to help the programmer output log statements to a variety of output targets. %package javadoc Summary: Javadoc for %{name} %description javadoc This package contains javadoc for %{name}. %prep %setup -q -n log4j-%{archiversion} # Cleanup find . -name "*.jar" -print -delete find . -name "*.class" -print -delete find . -name "*.dll" -print -delete rm -rf docs/api %patch0 -p1 -b .logfactor-home %patch1 -p1 -b .fix-tests %patch2 -p1 -b .xlink-javadoc # Remove unavailable plugin %pom_remove_plugin :clirr-maven-plugin # Remove unwanted plugin %pom_remove_plugin :maven-site-plugin %pom_remove_plugin :maven-source-plugin %pom_remove_plugin :rat-maven-plugin # Disable javadoc jar %pom_xpath_remove "pom:build/pom:plugins/pom:plugin[pom:artifactId = 'maven-javadoc-plugin']/pom:executions" # Remove openejb from dependencies %pom_remove_dep org.apache.openejb:javaee-api # Fix ant gId sed -i.ant "s|groupId>ant<|groupId>org.apache.ant<|g" pom.xml sed -i.javac "s|1.4|1.5|g" pom.xml build.xml sed -i.javac "s|1.4|1.5|g" pom.xml build.xml sed -i.javac "s|1.1|1.5|g" tests/build.xml sed -i.javac "s|1.1|1.5|g" tests/build.xml # Fix OSGi manifest sed -i.javax.jmdns "s|javax.jmdns.*;resolution:=optional,|!javax.jmdns.*,|g" pom.xml # Add proper bundle symbolicname %pom_xpath_inject "pom:build/pom:plugins/pom:plugin[pom:artifactId = 'maven-bundle-plugin']/pom:configuration/pom:instructions" " org.apache.log4j <_nouses>true" # Disable build unwanted dll library %pom_xpath_remove "pom:build/pom:plugins/pom:plugin[pom:artifactId = 'maven-antrun-plugin']/pom:executions/pom:execution[pom:phase = 'process-classes' ]" sed -i 's/\r//g' LICENSE NOTICE src/site/resources/css/*.css # fix encoding of mailbox files for i in contribs/JimMoore/mail*;do iconv --from=ISO-8859-1 --to=UTF-8 "$i" > new mv new "$i" done # Needed by tests mkdir -p tests/lib/ (cd tests/lib/ ln -s `build-classpath jakarta-oro` ln -s `build-classpath javamail/mail` ln -s `build-classpath junit` ) %mvn_compat_version log4j:log4j %{version} 12 %build %mvn_file log4j:log4j %{name} %mvn_build %install %mvn_install # DTD and the SGML catalog (XML catalog handled in scriptlets) install -pD -T -m 644 src/main/javadoc/org/apache/log4j/xml/doc-files/log4j.dtd \ %{buildroot}%{_datadir}/sgml/log4j/log4j.dtd install -pD -T -m 644 %{SOURCE1} \ %{buildroot}%{_datadir}/sgml/log4j/catalog %post # Note that we're using versioned catalog, so this is always ok. if [ -x %{_bindir}/install-catalog -a -d %{_sysconfdir}/sgml ]; then %{_bindir}/install-catalog --add \ %{_sysconfdir}/sgml/log4j-%{version}-%{release}.cat \ %{_datadir}/sgml/log4j/catalog > /dev/null || : fi if [ -x %{_bindir}/xmlcatalog -a -w %{_sysconfdir}/xml/catalog ]; then %{_bindir}/xmlcatalog --noout --add public "-//APACHE//DTD LOG4J 1.2//EN" \ file://%{_datadir}/sgml/log4j/log4j.dtd %{_sysconfdir}/xml/catalog \ > /dev/null %{_bindir}/xmlcatalog --noout --add system log4j.dtd \ file://%{_datadir}/sgml/log4j/log4j.dtd %{_sysconfdir}/xml/catalog \ > /dev/null || : fi %preun if [ $1 -eq 0 ]; then if [ -x %{_bindir}/xmlcatalog -a -w %{_sysconfdir}/xml/catalog ]; then %{_bindir}/xmlcatalog --noout --del \ file://%{_datadir}/sgml/log4j/log4j.dtd \ %{_sysconfdir}/xml/catalog > /dev/null || : fi fi %postun # Note that we're using versioned catalog, so this is always ok. if [ -x %{_bindir}/install-catalog -a -d %{_sysconfdir}/sgml ]; then %{_bindir}/install-catalog --remove \ %{_sysconfdir}/sgml/log4j-%{version}-%{release}.cat \ %{_datadir}/sgml/log4j/catalog > /dev/null || : fi %files -f .mfiles %{_datadir}/sgml/log4j %doc LICENSE NOTICE %files javadoc -f .mfiles-javadoc %doc LICENSE NOTICE %changelog * Thu May 22 2014 gil cattaneo 1.2.17-2 - fix compat version * Thu May 22 2014 gil cattaneo 1.2.17-1 - initial rpm