|
|
|
@ -28,41 +28,55 @@
|
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
%bcond_with bootstrap
|
|
|
|
|
|
|
|
|
|
%if %{without bootstrap}
|
|
|
|
|
%bcond_with ant_minimal
|
|
|
|
|
%else
|
|
|
|
|
%bcond_without ant_minimal
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%global ant_home %{_datadir}/ant
|
|
|
|
|
|
|
|
|
|
Name: ant
|
|
|
|
|
Version: 1.10.7
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
Version: 1.10.15
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Java build tool
|
|
|
|
|
Summary(it): Tool per la compilazione di programmi java
|
|
|
|
|
Summary(fr): Outil de compilation pour java
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
License: Apache-2.0
|
|
|
|
|
URL: https://ant.apache.org/
|
|
|
|
|
Source0: https://www.apache.org/dist/ant/source/apache-ant-%{version}-src.tar.bz2
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
ExclusiveArch: %{java_arches} noarch
|
|
|
|
|
|
|
|
|
|
Source0: https://archive.apache.org/dist/ant/source/apache-ant-%{version}-src.tar.bz2
|
|
|
|
|
Source2: apache-ant-1.8.ant.conf
|
|
|
|
|
# manpage
|
|
|
|
|
Source3: ant.asciidoc
|
|
|
|
|
|
|
|
|
|
Patch0: %{name}-build.xml.patch
|
|
|
|
|
Patch: %{name}-build.xml.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: javapackages-local
|
|
|
|
|
BuildRequires: java-devel >= 1:1.8.0
|
|
|
|
|
BuildRequires: ant >= 1.10.2
|
|
|
|
|
BuildRequires: rubygem-asciidoctor
|
|
|
|
|
|
|
|
|
|
%if %{with bootstrap}
|
|
|
|
|
BuildRequires: javapackages-bootstrap
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: javapackages-local >= 6.4.0
|
|
|
|
|
BuildRequires: ant
|
|
|
|
|
BuildRequires: ant-junit
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
BuildRequires: asciidoc
|
|
|
|
|
BuildRequires: xmlto
|
|
|
|
|
|
|
|
|
|
%if %{without ant_minimal}
|
|
|
|
|
BuildRequires: mvn(antlr:antlr)
|
|
|
|
|
BuildRequires: mvn(bcel:bcel)
|
|
|
|
|
BuildRequires: mvn(bsf:bsf)
|
|
|
|
|
BuildRequires: mvn(com.jcraft:jsch)
|
|
|
|
|
BuildRequires: mvn(commons-logging:commons-logging-api)
|
|
|
|
|
BuildRequires: mvn(commons-net:commons-net)
|
|
|
|
|
BuildRequires: mvn(javax.mail:mail)
|
|
|
|
|
BuildRequires: mvn(jakarta.activation:jakarta.activation-api)
|
|
|
|
|
BuildRequires: mvn(jakarta.mail:jakarta.mail-api)
|
|
|
|
|
BuildRequires: mvn(jdepend:jdepend)
|
|
|
|
|
BuildRequires: mvn(junit:junit)
|
|
|
|
|
BuildRequires: mvn(log4j:log4j:1.2.13)
|
|
|
|
|
BuildRequires: mvn(org.apache.commons:commons-logging::api:)
|
|
|
|
|
BuildRequires: mvn(org.tukaani:xz)
|
|
|
|
|
BuildRequires: mvn(oro:oro)
|
|
|
|
|
BuildRequires: mvn(regexp:regexp)
|
|
|
|
@ -72,21 +86,11 @@ BuildRequires: mvn(org.hamcrest:hamcrest-core)
|
|
|
|
|
BuildRequires: mvn(org.hamcrest:hamcrest-library)
|
|
|
|
|
|
|
|
|
|
BuildRequires: junit5
|
|
|
|
|
|
|
|
|
|
# Theoretically Ant might be usable with just JRE, but typical Ant
|
|
|
|
|
# workflow requires full JDK, so we recommend it here.
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
|
|
|
|
Recommends: java-devel >= 1:1.8.0
|
|
|
|
|
%else
|
|
|
|
|
Requires: java-devel >= 1:1.8.0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Requires: %{name}-lib = %{version}-%{release}
|
|
|
|
|
# Require full javapackages-tools since the ant script uses
|
|
|
|
|
# /usr/share/java-utils/java-functions
|
|
|
|
|
Requires: javapackages-tools
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: %{name}-jdk-binding
|
|
|
|
|
Suggests: %{name}-openjdk21 = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Apache Ant is a Java library and command-line tool whose mission is to
|
|
|
|
@ -115,6 +119,18 @@ Summary: Core part of %{name}
|
|
|
|
|
%description lib
|
|
|
|
|
Core part of Apache Ant that can be used as a library.
|
|
|
|
|
|
|
|
|
|
%package junit
|
|
|
|
|
Summary: Optional junit tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description junit
|
|
|
|
|
Optional junit tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%description junit -l fr
|
|
|
|
|
Taches junit optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%if %{without ant_minimal}
|
|
|
|
|
|
|
|
|
|
%package jmf
|
|
|
|
|
Summary: Optional jmf tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
@ -185,8 +201,6 @@ Optional commons net tasks for %{name}.
|
|
|
|
|
%description commons-net -l fr
|
|
|
|
|
Taches commons net optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
# Disable because we don't ship the dependencies
|
|
|
|
|
|
|
|
|
|
%package apache-bcel
|
|
|
|
|
Summary: Optional apache bcel tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
@ -197,16 +211,6 @@ Optional apache bcel tasks for %{name}.
|
|
|
|
|
%description apache-bcel -l fr
|
|
|
|
|
Taches apache bcel optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%package apache-log4j
|
|
|
|
|
Summary: Optional apache log4j tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description apache-log4j
|
|
|
|
|
Optional apache log4j tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%description apache-log4j -l fr
|
|
|
|
|
Taches apache log4j optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%package apache-oro
|
|
|
|
|
Summary: Optional apache oro tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
@ -244,15 +248,17 @@ Requires: %{name} = %{version}-%{release}
|
|
|
|
|
%description imageio
|
|
|
|
|
Optional imageio tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%package javamail
|
|
|
|
|
Summary: Optional javamail tasks for %{name}
|
|
|
|
|
%package jakartamail
|
|
|
|
|
Summary: Optional jakartamail tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
# TODO Remove in Fedora 42
|
|
|
|
|
Obsoletes: ant-javamail < 1.13.1
|
|
|
|
|
|
|
|
|
|
%description javamail
|
|
|
|
|
Optional javamail tasks for %{name}.
|
|
|
|
|
%description jakartamail
|
|
|
|
|
Optional jakartamail tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%description javamail -l fr
|
|
|
|
|
Taches javamail optionelles pour %{name}.
|
|
|
|
|
%description jakartamail -l fr
|
|
|
|
|
Taches jakartamail optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%package jdepend
|
|
|
|
|
Summary: Optional jdepend tasks for %{name}
|
|
|
|
@ -274,16 +280,6 @@ Optional jsch tasks for %{name}.
|
|
|
|
|
%description jsch -l fr
|
|
|
|
|
Taches jsch optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%package junit
|
|
|
|
|
Summary: Optional junit tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description junit
|
|
|
|
|
Optional junit tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%description junit -l fr
|
|
|
|
|
Taches junit optionelles pour %{name}.
|
|
|
|
|
|
|
|
|
|
%package junit5
|
|
|
|
|
Summary: Optional junit5 tasks for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
@ -310,6 +306,10 @@ Optional xz tasks for %{name}.
|
|
|
|
|
|
|
|
|
|
%package manual
|
|
|
|
|
Summary: Manual for %{name}
|
|
|
|
|
# ant-manual contains file tutorial-tasks-filesets-properties.zip
|
|
|
|
|
# which in turn contains src/Find.java and src/FindTest.java both
|
|
|
|
|
# licensed under ASL 1.1. See rhbz#1055629
|
|
|
|
|
License: Apache-2.0 AND Apache-1.1
|
|
|
|
|
|
|
|
|
|
%description manual
|
|
|
|
|
Documentation for %{name}.
|
|
|
|
@ -329,28 +329,43 @@ Javadoc for %{name}.
|
|
|
|
|
%description javadoc -l fr
|
|
|
|
|
Javadoc pour %{name}.
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n apache-ant-%{version}
|
|
|
|
|
%patch0 -p1
|
|
|
|
|
%autosetup -p1 -n apache-ant-%{version}
|
|
|
|
|
|
|
|
|
|
# clean jar files
|
|
|
|
|
find . -name "*.jar" | xargs -t rm
|
|
|
|
|
|
|
|
|
|
# Use our own version of javamail
|
|
|
|
|
%pom_remove_dep com.sun.mail:jakarta.mail src/etc/poms/ant-javamail
|
|
|
|
|
%pom_add_dep com.sun.mail:javax.mail::compile src/etc/poms/ant-javamail
|
|
|
|
|
|
|
|
|
|
# failing testcases. TODO see why
|
|
|
|
|
rm src/tests/junit/org/apache/tools/ant/types/selectors/SignedSelectorTest.java \
|
|
|
|
|
src/tests/junit/org/apache/tools/ant/taskdefs/condition/IsFileSelectedTest.java \
|
|
|
|
|
src/tests/junit/org/apache/tools/ant/taskdefs/condition/IsSignedTest.java \
|
|
|
|
|
src/tests/junit/org/apache/tools/ant/taskdefs/optional/image/ImageIOTest.java \
|
|
|
|
|
src/tests/junit/org/apache/tools/ant/taskdefs/JarTest.java \
|
|
|
|
|
src/tests/junit/org/apache/tools/mail/MailMessageTest.java
|
|
|
|
|
|
|
|
|
|
# Test relies on internal JUnit 5 API that was changed
|
|
|
|
|
rm src/tests/junit/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatterTest.java
|
|
|
|
|
|
|
|
|
|
# Log4jListener is deprecated by upstream: Apache Log4j (1) is not
|
|
|
|
|
# developed any more. Last release is 1.2.17 from 26 May 2012 and
|
|
|
|
|
# contains vulnerability issues.
|
|
|
|
|
rm src/main/org/apache/tools/ant/listener/Log4jListener.java
|
|
|
|
|
|
|
|
|
|
#install jars
|
|
|
|
|
build-jar-repository -s -p lib/optional antlr bcel javamail/mailapi jdepend junit log4j-1 oro regexp bsf commons-logging commons-net jsch xalan-j2 xml-commons-resolver xalan-j2-serializer hamcrest/core hamcrest/library xz-java junit5 opentest4j
|
|
|
|
|
%if %{with bootstrap}
|
|
|
|
|
ln -s %{_prefix}/lib/javapackages-bootstrap/junit.jar lib/optional/junit.jar
|
|
|
|
|
ln -s %{_prefix}/lib/javapackages-bootstrap/hamcrest-core.jar lib/optional/hamcrest-core.jar
|
|
|
|
|
%else
|
|
|
|
|
%if %{with ant_minimal}
|
|
|
|
|
build-jar-repository -s -p lib/optional junit hamcrest/core hamcrest/library
|
|
|
|
|
%else
|
|
|
|
|
build-jar-repository -s -p lib/optional antlr bcel commons-lang3 jakarta-mail/jakarta.mail-api jakarta-activation/jakarta.activation-api jdepend junit oro regexp bsf commons-logging commons-net jsch xalan-j2 xml-commons-resolver xalan-j2-serializer hamcrest/core hamcrest/library xz-java junit5 opentest4j
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# fix hardcoded paths in ant script and conf
|
|
|
|
|
cp -p %{SOURCE2} %{name}.conf
|
|
|
|
@ -365,44 +380,63 @@ sed -e 's:/etc/ant.conf:%{_sysconfdir}/ant.conf:g' \
|
|
|
|
|
sed -i 's/jaxp_parser_impl//;s/xml-commons-apis//' src/script/ant
|
|
|
|
|
|
|
|
|
|
# Fix file-not-utf8 rpmlint warning
|
|
|
|
|
iconv KEYS -f iso-8859-1 -t utf-8 -o KEYS.utf8
|
|
|
|
|
iconv KEYS -f iso-8859-1 -t utf-8 >KEYS.utf8
|
|
|
|
|
mv KEYS.utf8 KEYS
|
|
|
|
|
iconv LICENSE -f iso-8859-1 -t utf-8 -o LICENSE.utf8
|
|
|
|
|
iconv LICENSE -f iso-8859-1 -t utf-8 >LICENSE.utf8
|
|
|
|
|
mv LICENSE.utf8 LICENSE
|
|
|
|
|
|
|
|
|
|
# We want a hard dep on antlr
|
|
|
|
|
%pom_xpath_remove pom:optional src/etc/poms/ant-antlr/pom.xml
|
|
|
|
|
|
|
|
|
|
# fix javamail dependency coordinates (remove once javamail is updated)
|
|
|
|
|
%pom_change_dep com.sun.mail:jakarta.mail jakarta.mail:jakarta.mail-api src/etc/poms/ant-jakartamail/pom.xml
|
|
|
|
|
|
|
|
|
|
%pom_change_dep commons-logging:commons-logging-api org.apache.commons:commons-logging::api: src/etc/poms/ant-commons-logging/pom.xml
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%if %{with ant_minimal}
|
|
|
|
|
%{ant} jars
|
|
|
|
|
%else
|
|
|
|
|
%{ant} jars test-jar javadocs
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# typeset the manpage
|
|
|
|
|
mkdir man
|
|
|
|
|
asciidoc -b docbook -d manpage -o man/%{name}.xml %{SOURCE3}
|
|
|
|
|
xmlto man man/%{name}.xml -o man
|
|
|
|
|
asciidoctor -b manpage -D man %{SOURCE3}
|
|
|
|
|
|
|
|
|
|
#remove empty jai and netrexx jars. Due to missing dependencies they contain only manifests.
|
|
|
|
|
rm -fr build/lib/ant-jai.jar build/lib/ant-netrexx.jar
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
# remove empty jai and netrexx jars. Due to missing dependencies they contain only manifests.
|
|
|
|
|
rm build/lib/ant-jai.jar build/lib/ant-netrexx.jar
|
|
|
|
|
# log4j logging is deprecated
|
|
|
|
|
rm build/lib/ant-apache-log4j.jar
|
|
|
|
|
# dropped in favor of jakartamail
|
|
|
|
|
rm build/lib/ant-javamail.jar
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
# ANT_HOME and subdirs
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{ant_home}/{lib,etc,bin}
|
|
|
|
|
mkdir -p %{buildroot}%{ant_home}/{lib,etc,bin}
|
|
|
|
|
|
|
|
|
|
%mvn_alias :ant org.apache.ant:ant-nodeps apache:ant ant:ant
|
|
|
|
|
%mvn_alias :ant-launcher ant:ant-launcher
|
|
|
|
|
|
|
|
|
|
%mvn_file ':{ant,ant-bootstrap,ant-launcher}' %{name}/@1 @1
|
|
|
|
|
|
|
|
|
|
for jar in build/lib/*.jar
|
|
|
|
|
do
|
|
|
|
|
%if %{with ant_minimal}
|
|
|
|
|
mv build/lib build/lib0
|
|
|
|
|
mkdir build/lib/
|
|
|
|
|
mv build/lib0/ant.jar build/lib/
|
|
|
|
|
mv build/lib0/ant-bootstrap.jar build/lib/
|
|
|
|
|
mv build/lib0/ant-launcher.jar build/lib/
|
|
|
|
|
mv build/lib0/ant-junit.jar build/lib/
|
|
|
|
|
mv build/lib0/ant-junit4.jar build/lib/
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
for jar in build/lib/*.jar; do
|
|
|
|
|
# Make sure that installed JARs are not empty
|
|
|
|
|
jar tf ${jar} | egrep -q *.class
|
|
|
|
|
jar tf ${jar} | grep -E -q '.*\.class'
|
|
|
|
|
|
|
|
|
|
jarname=$(basename $jar .jar)
|
|
|
|
|
|
|
|
|
|
# jar aliases
|
|
|
|
|
ln -sf ../../java/%{name}/${jarname}.jar $RPM_BUILD_ROOT%{ant_home}/lib/${jarname}.jar
|
|
|
|
|
ln -sf ../../java/%{name}/${jarname}.jar %{buildroot}%{ant_home}/lib/${jarname}.jar
|
|
|
|
|
|
|
|
|
|
pom=src/etc/poms/${jarname}/pom.xml
|
|
|
|
|
|
|
|
|
@ -430,65 +464,79 @@ rm -f src/script/*.bat
|
|
|
|
|
rm -f src/script/*.cmd
|
|
|
|
|
|
|
|
|
|
# XSLs
|
|
|
|
|
cp -p src/etc/*.xsl $RPM_BUILD_ROOT%{ant_home}/etc
|
|
|
|
|
%if %{with ant_minimal}
|
|
|
|
|
rm src/etc/jdepend-frames.xsl
|
|
|
|
|
rm src/etc/jdepend.xsl
|
|
|
|
|
rm src/etc/maudit-frames.xsl
|
|
|
|
|
%endif
|
|
|
|
|
cp -p src/etc/*.xsl %{buildroot}%{ant_home}/etc
|
|
|
|
|
|
|
|
|
|
# install everything else
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
|
cp -p src/script/ant $RPM_BUILD_ROOT%{_bindir}/
|
|
|
|
|
ln -sf %{_bindir}/ant $RPM_BUILD_ROOT%{ant_home}/bin/
|
|
|
|
|
cp -p src/script/antRun $RPM_BUILD_ROOT%{ant_home}/bin/
|
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
|
cp -p src/script/ant %{buildroot}%{_bindir}/
|
|
|
|
|
ln -sf %{_bindir}/ant %{buildroot}%{ant_home}/bin/
|
|
|
|
|
cp -p src/script/antRun %{buildroot}%{ant_home}/bin/
|
|
|
|
|
|
|
|
|
|
# default ant.conf
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
|
|
|
|
|
cp -p %{name}.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.conf
|
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}
|
|
|
|
|
cp -p %{name}.conf %{buildroot}%{_sysconfdir}/%{name}.conf
|
|
|
|
|
|
|
|
|
|
# OPT_JAR_LIST fragments
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d
|
|
|
|
|
echo "ant/ant-jmf" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/jmf
|
|
|
|
|
echo "ant/ant-swing" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/swing
|
|
|
|
|
echo "antlr ant/ant-antlr" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/antlr
|
|
|
|
|
echo "rhino bsf ant/ant-apache-bsf" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-bsf
|
|
|
|
|
echo "xml-commons-resolver ant/ant-apache-resolver" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-resolver
|
|
|
|
|
echo "apache-commons-logging ant/ant-commons-logging" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/commons-logging
|
|
|
|
|
echo "apache-commons-net ant/ant-commons-net" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/commons-net
|
|
|
|
|
#echo "jai ant/ant-jai" > $RPM_BUILD_ROOT%%{_sysconfdir}/%%{name}.d/jai
|
|
|
|
|
echo "bcel ant/ant-apache-bcel" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-bcel
|
|
|
|
|
echo "log4j12 ant/ant-apache-log4j" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-log4j
|
|
|
|
|
echo "oro ant/ant-apache-oro" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-oro
|
|
|
|
|
echo "regexp ant/ant-apache-regexp" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-regexp
|
|
|
|
|
echo "xalan-j2 xalan-j2-serializer ant/ant-apache-xalan2" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/apache-xalan2
|
|
|
|
|
echo "ant/ant-imageio" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/imageio
|
|
|
|
|
echo "javamail jaf ant/ant-javamail" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/javamail
|
|
|
|
|
echo "jdepend ant/ant-jdepend" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/jdepend
|
|
|
|
|
echo "jsch ant/ant-jsch" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/jsch
|
|
|
|
|
echo "junit hamcrest/core ant/ant-junit" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/junit
|
|
|
|
|
echo "junit hamcrest/core ant/ant-junit4" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/junit4
|
|
|
|
|
echo "junit5 hamcrest/core junit opentest4j ant/ant-junitlauncher" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/junitlauncher
|
|
|
|
|
echo "testutil ant/ant-testutil" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/testutil
|
|
|
|
|
echo "xz-java ant/ant-xz" > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.d/xz
|
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}.d
|
|
|
|
|
echo "junit hamcrest/core ant/ant-junit" > %{buildroot}%{_sysconfdir}/%{name}.d/junit
|
|
|
|
|
echo "junit hamcrest/core ant/ant-junit4" > %{buildroot}%{_sysconfdir}/%{name}.d/junit4
|
|
|
|
|
|
|
|
|
|
# JDK bindings
|
|
|
|
|
install -d -m 755 %{buildroot}%{_javaconfdir}/
|
|
|
|
|
ln -sf %{_jpbindingdir}/ant.conf %{buildroot}%{_javaconfdir}/ant.conf
|
|
|
|
|
echo 'JAVA_HOME=%{_jvmdir}/jre-21-openjdk' > %{buildroot}%{_javaconfdir}/ant-openjdk21.conf
|
|
|
|
|
%jp_binding --verbose --variant openjdk21 --ghost ant.conf --target %{_javaconfdir}/ant-openjdk21.conf --provides %{name}-jdk-binding --requires java-21-openjdk-headless --recommends java-21-openjdk-devel
|
|
|
|
|
touch %{buildroot}%{_javaconfdir}/ant-unbound.conf
|
|
|
|
|
%jp_binding --verbose --variant unbound --ghost ant.conf --target %{_javaconfdir}/ant-unbound.conf --provides %{name}-jdk-binding
|
|
|
|
|
|
|
|
|
|
%if %{without ant_minimal}
|
|
|
|
|
|
|
|
|
|
echo "ant/ant-jmf" > %{buildroot}%{_sysconfdir}/%{name}.d/jmf
|
|
|
|
|
echo "ant/ant-swing" > %{buildroot}%{_sysconfdir}/%{name}.d/swing
|
|
|
|
|
echo "antlr ant/ant-antlr" > %{buildroot}%{_sysconfdir}/%{name}.d/antlr
|
|
|
|
|
echo "bsf commons-logging ant/ant-apache-bsf" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-bsf
|
|
|
|
|
echo "xml-commons-resolver ant/ant-apache-resolver" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-resolver
|
|
|
|
|
echo "apache-commons-logging ant/ant-commons-logging" > %{buildroot}%{_sysconfdir}/%{name}.d/commons-logging
|
|
|
|
|
echo "apache-commons-net ant/ant-commons-net" > %{buildroot}%{_sysconfdir}/%{name}.d/commons-net
|
|
|
|
|
echo "bcel commons-lang3 ant/ant-apache-bcel" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-bcel
|
|
|
|
|
echo "oro ant/ant-apache-oro" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-oro
|
|
|
|
|
echo "regexp ant/ant-apache-regexp" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-regexp
|
|
|
|
|
echo "xalan-j2 xalan-j2-serializer ant/ant-apache-xalan2" > %{buildroot}%{_sysconfdir}/%{name}.d/apache-xalan2
|
|
|
|
|
echo "ant/ant-imageio" > %{buildroot}%{_sysconfdir}/%{name}.d/imageio
|
|
|
|
|
echo "jakartamail jaf ant/ant-jakartamail" > %{buildroot}%{_sysconfdir}/%{name}.d/jakartamail
|
|
|
|
|
echo "jdepend ant/ant-jdepend" > %{buildroot}%{_sysconfdir}/%{name}.d/jdepend
|
|
|
|
|
echo "jsch ant/ant-jsch" > %{buildroot}%{_sysconfdir}/%{name}.d/jsch
|
|
|
|
|
echo "junit5 hamcrest/core junit opentest4j ant/ant-junitlauncher" > %{buildroot}%{_sysconfdir}/%{name}.d/junitlauncher
|
|
|
|
|
echo "testutil ant/ant-testutil" > %{buildroot}%{_sysconfdir}/%{name}.d/testutil
|
|
|
|
|
echo "xz-java ant/ant-xz" > %{buildroot}%{_sysconfdir}/%{name}.d/xz
|
|
|
|
|
|
|
|
|
|
# javadoc
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
|
|
|
cp -pr build/javadocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
|
|
|
mkdir -p %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
cp -pr build/javadocs/* %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
|
|
|
|
|
# fix link between manual and javadoc
|
|
|
|
|
(cd manual; ln -sf %{_javadocdir}/%{name} api)
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# manpage
|
|
|
|
|
install -d -m 755 %{buildroot}%{_mandir}/man1/
|
|
|
|
|
install -p -m 644 man/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
|
|
|
|
|
|
|
|
|
%if %{without ant_minimal}
|
|
|
|
|
%check
|
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
|
%else
|
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
|
%{ant} -Doffline=true test
|
|
|
|
|
%endif
|
|
|
|
|
%{ant} test
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc KEYS README WHATSNEW
|
|
|
|
|
%license LICENSE NOTICE
|
|
|
|
|
%config %{_javaconfdir}/%{name}*.conf
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.conf
|
|
|
|
|
%attr(0755,root,root) %{_bindir}/ant
|
|
|
|
|
%dir %{ant_home}/bin
|
|
|
|
@ -513,6 +561,19 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
%{ant_home}/lib/%{name}-launcher.jar
|
|
|
|
|
%{ant_home}/lib/%{name}-bootstrap.jar
|
|
|
|
|
|
|
|
|
|
%files junit -f .mfiles-junit
|
|
|
|
|
%{ant_home}/lib/%{name}-junit.jar
|
|
|
|
|
%{ant_home}/lib/%{name}-junit4.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/junit
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/junit4
|
|
|
|
|
%{ant_home}/etc/junit-frames.xsl
|
|
|
|
|
%{ant_home}/etc/junit-noframes.xsl
|
|
|
|
|
%{ant_home}/etc/junit-frames-xalan1.xsl
|
|
|
|
|
%{ant_home}/etc/junit-frames-saxon.xsl
|
|
|
|
|
%{ant_home}/etc/junit-noframes-saxon.xsl
|
|
|
|
|
|
|
|
|
|
%if %{without ant_minimal}
|
|
|
|
|
|
|
|
|
|
%files jmf -f .mfiles-jmf
|
|
|
|
|
%{ant_home}/lib/%{name}-jmf.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/jmf
|
|
|
|
@ -541,16 +602,10 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
%{ant_home}/lib/%{name}-commons-net.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/commons-net
|
|
|
|
|
|
|
|
|
|
# Disable as we dont ship the dependencies
|
|
|
|
|
|
|
|
|
|
%files apache-bcel -f .mfiles-apache-bcel
|
|
|
|
|
%{ant_home}/lib/%{name}-apache-bcel.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/apache-bcel
|
|
|
|
|
|
|
|
|
|
%files apache-log4j -f .mfiles-apache-log4j
|
|
|
|
|
%{ant_home}/lib/%{name}-apache-log4j.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/apache-log4j
|
|
|
|
|
|
|
|
|
|
%files apache-oro -f .mfiles-apache-oro
|
|
|
|
|
%{ant_home}/lib/%{name}-apache-oro.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/apache-oro
|
|
|
|
@ -568,9 +623,9 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
%{ant_home}/lib/%{name}-imageio.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/imageio
|
|
|
|
|
|
|
|
|
|
%files javamail -f .mfiles-javamail
|
|
|
|
|
%{ant_home}/lib/%{name}-javamail.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/javamail
|
|
|
|
|
%files jakartamail -f .mfiles-jakartamail
|
|
|
|
|
%{ant_home}/lib/%{name}-jakartamail.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/jakartamail
|
|
|
|
|
|
|
|
|
|
%files jdepend -f .mfiles-jdepend
|
|
|
|
|
%{ant_home}/lib/%{name}-jdepend.jar
|
|
|
|
@ -582,17 +637,6 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
%{ant_home}/lib/%{name}-jsch.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/jsch
|
|
|
|
|
|
|
|
|
|
%files junit -f .mfiles-junit
|
|
|
|
|
%{ant_home}/lib/%{name}-junit.jar
|
|
|
|
|
%{ant_home}/lib/%{name}-junit4.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/junit
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/junit4
|
|
|
|
|
%{ant_home}/etc/junit-frames.xsl
|
|
|
|
|
%{ant_home}/etc/junit-noframes.xsl
|
|
|
|
|
%{ant_home}/etc/junit-frames-xalan1.xsl
|
|
|
|
|
%{ant_home}/etc/junit-frames-saxon.xsl
|
|
|
|
|
%{ant_home}/etc/junit-noframes-saxon.xsl
|
|
|
|
|
|
|
|
|
|
%files junit5 -f .mfiles-junitlauncher
|
|
|
|
|
%{ant_home}/lib/%{name}-junitlauncher.jar
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}.d/junitlauncher
|
|
|
|
@ -613,20 +657,155 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
%license LICENSE NOTICE
|
|
|
|
|
%{_javadocdir}/%{name}
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.7-2
|
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
* Wed Dec 18 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.15-1
|
|
|
|
|
- Update to upstream version 1.10.15
|
|
|
|
|
|
|
|
|
|
* Wed Oct 16 2019 Marian Koncek <mkoncek@redhat.com> - 1.10.7-1
|
|
|
|
|
- Update to upstream version 1.10.7
|
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.10.14-11
|
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.6-2
|
|
|
|
|
- Mass rebuild for javapackages-tools 201901
|
|
|
|
|
* Mon Aug 05 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-10
|
|
|
|
|
- Remove BR on java-devel
|
|
|
|
|
|
|
|
|
|
* Wed May 08 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.6-1
|
|
|
|
|
- Update to upstream version 1.10.6
|
|
|
|
|
* Mon Aug 05 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-9
|
|
|
|
|
- Adjust bootstrap build for javapackages-bootstrap update
|
|
|
|
|
- Resolves: RHEL-52715
|
|
|
|
|
|
|
|
|
|
* Thu Aug 01 2024 Troy Dawson <tdawson@redhat.com> - 1.10.14-9
|
|
|
|
|
- Bump release for Aug 2024 java mass rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.10.14-8
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Feb 13 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-7
|
|
|
|
|
- Drop patch removing tools.jar from test classpath
|
|
|
|
|
|
|
|
|
|
* Fri Feb 09 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-6
|
|
|
|
|
- Fix source tarball URL
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.14-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.14-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Dec 05 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-3
|
|
|
|
|
- Update Maven coordinates for commons-logging API
|
|
|
|
|
|
|
|
|
|
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.14-2
|
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Aug 22 2023 Marian Koncek <mkoncek@redhat.com> - 1.10.14-1
|
|
|
|
|
- Update to upstream version 1.10.14
|
|
|
|
|
|
|
|
|
|
* Mon Aug 21 2023 Marian Koncek <mkoncek@redhat.com> - 1.10.13-1
|
|
|
|
|
- Update to upstream version 1.10.13
|
|
|
|
|
|
|
|
|
|
* Fri Aug 18 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.12-11
|
|
|
|
|
- Add transitive dependency on commons-lang3 through bcel
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.12-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.12-9
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.12-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 14 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.12-7
|
|
|
|
|
- Skip running ImageIOTest test
|
|
|
|
|
|
|
|
|
|
* Mon Jun 06 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.12-6
|
|
|
|
|
- Rebuild to fix incorrect version string
|
|
|
|
|
- Resolves: rhbz#1936159
|
|
|
|
|
|
|
|
|
|
* Fri Jun 03 2022 Marian Koncek <mkoncek@redhat.com> - 1.10.12-5
|
|
|
|
|
- Fix integer overflow when parsing SOURCE_DATE_EPOCH
|
|
|
|
|
|
|
|
|
|
* Fri Apr 22 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.12-4
|
|
|
|
|
- Fix FTBFS with JUnit 5.8.x
|
|
|
|
|
|
|
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.10.12-3
|
|
|
|
|
- Rebuilt for java-17-openjdk as system jdk
|
|
|
|
|
|
|
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.12-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 09 2021 Marian Koncek <mkoncek@redhat.com> - 1.10.12-1
|
|
|
|
|
- Update to upstream version 1.10.12
|
|
|
|
|
|
|
|
|
|
* Wed Oct 13 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.11-2
|
|
|
|
|
- Bump release
|
|
|
|
|
|
|
|
|
|
* Thu Sep 9 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.10.11-1
|
|
|
|
|
- Add Obsoletes for removed apache-log4j subpackage to fix upgrades
|
|
|
|
|
|
|
|
|
|
* Wed Aug 11 2021 Marian Koncek <mkoncek@redhat.com> - 1.10.11-1
|
|
|
|
|
- Update to upstream version 1.10.11
|
|
|
|
|
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.9-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 28 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.9-5
|
|
|
|
|
- Disable deprecated log4j logging functionality
|
|
|
|
|
|
|
|
|
|
* Mon Jun 21 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.9-4
|
|
|
|
|
- Remove support for JavaScript
|
|
|
|
|
|
|
|
|
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.9-3
|
|
|
|
|
- Bootstrap build
|
|
|
|
|
- Non-bootstrap build
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.9-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Oct 16 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.9-1
|
|
|
|
|
- Update to version 1.10.9.
|
|
|
|
|
- Addresses: CVE-2020-11979
|
|
|
|
|
|
|
|
|
|
* Wed Sep 16 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.8-6
|
|
|
|
|
- Remove workaround for jarsigner issues / RHBZ#1869017.
|
|
|
|
|
|
|
|
|
|
* Wed Sep 09 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.8-5
|
|
|
|
|
- Switch from log4j 1.2 compat package to log4j 1.2 API shim.
|
|
|
|
|
|
|
|
|
|
* Sun Aug 23 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.8-4
|
|
|
|
|
- Temporarily disable some jarsigner tests to work around RHBZ#1869017.
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.8-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 0:1.10.8-2
|
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
- disabled javadoc, as it fails in jdk11, and ant should not be an FTBFS to soon
|
|
|
|
|
|
|
|
|
|
* Sat May 16 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.8-1
|
|
|
|
|
- Update to version 1.10.8.
|
|
|
|
|
- Addresses: CVE-2020-1945
|
|
|
|
|
|
|
|
|
|
* Fri May 08 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.7-1
|
|
|
|
|
- Update to version 1.10.7.
|
|
|
|
|
|
|
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.6-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jul 29 2019 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.6-1
|
|
|
|
|
- Update to version 1.10.6.
|
|
|
|
|
|
|
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.5-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Apr 27 2019 François Cami <fcami@redhat.com> - - 0:1.10.5-5
|
|
|
|
|
- Bump to fix FTBFS
|
|
|
|
|
|
|
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.5-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Nov 19 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0:1.10.5-3
|
|
|
|
|
- Use C.UTF-8 locale
|
|
|
|
@ -833,7 +1012,7 @@ export LC_ALL=C.UTF-8
|
|
|
|
|
|
|
|
|
|
* Wed Feb 29 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.8.3-1
|
|
|
|
|
- Update to upstream 1.8.3 release.
|
|
|
|
|
- Drop old stuff.
|
|
|
|
|
- Drop old stuff.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 07 2012 Tomas Radej <tradej@redhat.com> - 0:1.8.2-9
|
|
|
|
|
- Added patch
|