419 lines
15 KiB
RPMSpec
419 lines
15 KiB
RPMSpec
|
%global namedreltag .Final
|
||
|
%global namedversion %{version}%{?namedreltag}
|
||
|
|
||
|
Name: netty
|
||
|
Version: 4.1.51
|
||
|
Release: 1%{?dist}
|
||
|
Summary: An asynchronous event-driven network application framework and tools for Java
|
||
|
License: ASL 2.0
|
||
|
URL: https://netty.io/
|
||
|
Source0: https://github.com/netty/netty/archive/netty-%{namedversion}.tar.gz
|
||
|
# Upsteam uses a simple template generator script written in groovy and run with gmaven
|
||
|
# We don't have the plugin and want to avoid groovy dependency
|
||
|
# This script is written in bash+sed and performs the same task
|
||
|
Source1: codegen.bash
|
||
|
Patch0: 0001-Remove-optional-dep-Blockhound.patch
|
||
|
Patch1: 0002-Remove-optional-dep-conscrypt.patch
|
||
|
Patch2: 0003-Remove-optional-deps-jetty-alpn-and-npn.patch
|
||
|
Patch3: 0004-Remove-optional-dep-tcnative.patch
|
||
|
Patch4: 0005-Remove-optional-dep-log4j.patch
|
||
|
|
||
|
BuildRequires: maven-local
|
||
|
BuildRequires: mvn(com.jcraft:jzlib)
|
||
|
BuildRequires: mvn(commons-logging:commons-logging)
|
||
|
BuildRequires: mvn(kr.motd.maven:os-maven-plugin)
|
||
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-remote-resources-plugin)
|
||
|
BuildRequires: mvn(org.bouncycastle:bcpkix-jdk15on)
|
||
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
||
|
BuildRequires: mvn(org.codehaus.mojo:exec-maven-plugin)
|
||
|
BuildRequires: mvn(org.jctools:jctools-core)
|
||
|
BuildRequires: mvn(org.slf4j:slf4j-api)
|
||
|
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
Netty is a NIO client server framework which enables quick and easy
|
||
|
development of network applications such as protocol servers and
|
||
|
clients. It greatly simplifies and streamlines network programming
|
||
|
such as TCP and UDP socket server.
|
||
|
|
||
|
'Quick and easy' doesn't mean that a resulting application will suffer
|
||
|
from a maintainability or a performance issue. Netty has been designed
|
||
|
carefully with the experiences earned from the implementation of a lot
|
||
|
of protocols such as FTP, SMTP, HTTP, and various binary and
|
||
|
text-based legacy protocols. As a result, Netty has succeeded to find
|
||
|
a way to achieve ease of development, performance, stability, and
|
||
|
flexibility without a compromise.
|
||
|
|
||
|
%package javadoc
|
||
|
Summary: API documentation for %{name}
|
||
|
|
||
|
%description javadoc
|
||
|
%{summary}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n netty-netty-%{namedversion}
|
||
|
|
||
|
%patch0 -p1
|
||
|
%patch1 -p1
|
||
|
%patch2 -p1
|
||
|
%patch3 -p1
|
||
|
%patch4 -p1
|
||
|
|
||
|
# remove unnecessary dependency on parent POM
|
||
|
%pom_remove_parent . bom dev-tools
|
||
|
|
||
|
# Disable all in one jar
|
||
|
%pom_disable_module all
|
||
|
|
||
|
# Not needed for RPM builds
|
||
|
%pom_disable_module "example"
|
||
|
%pom_disable_module "tarball"
|
||
|
%pom_disable_module "microbench"
|
||
|
|
||
|
%pom_xpath_inject 'pom:plugin[pom:artifactId="maven-remote-resources-plugin"]' '
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-dev-tools</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>'
|
||
|
|
||
|
%pom_remove_plugin :maven-antrun-plugin
|
||
|
%pom_remove_plugin :maven-dependency-plugin
|
||
|
%pom_remove_plugin :xml-maven-plugin
|
||
|
%pom_remove_plugin -r :maven-checkstyle-plugin
|
||
|
%pom_remove_plugin -r :animal-sniffer-maven-plugin
|
||
|
%pom_remove_plugin -r :maven-enforcer-plugin
|
||
|
%pom_remove_plugin -r :maven-shade-plugin
|
||
|
%pom_remove_plugin -r :maven-release-plugin
|
||
|
%pom_remove_plugin -r :maven-clean-plugin
|
||
|
%pom_remove_plugin -r :maven-source-plugin
|
||
|
%pom_remove_plugin -r :maven-deploy-plugin
|
||
|
%pom_remove_plugin -r :maven-jxr-plugin
|
||
|
%pom_remove_plugin -r :maven-javadoc-plugin
|
||
|
%pom_remove_plugin -r :forbiddenapis
|
||
|
|
||
|
cp %{SOURCE1} common/codegen.bash
|
||
|
%pom_add_plugin org.codehaus.mojo:exec-maven-plugin common '
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>generate-collections</id>
|
||
|
<phase>generate-sources</phase>
|
||
|
<goals>
|
||
|
<goal>exec</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<executable>common/codegen.bash</executable>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
'
|
||
|
%pom_remove_plugin :groovy-maven-plugin common
|
||
|
|
||
|
# We don't have com.oracle.substratevm
|
||
|
%pom_remove_dep "com.oracle.substratevm:" common
|
||
|
rm common/src/main/java/io/netty/util/internal/svm/*
|
||
|
|
||
|
# The protobuf-javanano API was discontinued upstream and obsoleted in Fedora
|
||
|
# so disable support for protobuf in the codecs module
|
||
|
%pom_remove_dep -r "com.google.protobuf:protobuf-java"
|
||
|
%pom_remove_dep -r "com.google.protobuf.nano:protobuf-javanano"
|
||
|
rm codec/src/main/java/io/netty/handler/codec/protobuf/*
|
||
|
sed -i '/import.*protobuf/d' codec/src/main/java/io/netty/handler/codec/DatagramPacket*.java
|
||
|
|
||
|
# JBoss marshalling not available in Fedora
|
||
|
%pom_remove_dep -r "org.jboss.marshalling:jboss-marshalling"
|
||
|
rm codec/src/main/java/io/netty/handler/codec/marshalling/*
|
||
|
|
||
|
# Various compression codecs not available in Fedora
|
||
|
%pom_remove_dep -r com.github.jponge:lzma-java
|
||
|
rm codec/src/*/java/io/netty/handler/codec/compression/Lzma*.java
|
||
|
%pom_remove_dep -r com.ning:compress-lzf
|
||
|
rm codec/src/*/java/io/netty/handler/codec/compression/Lzf*.java
|
||
|
%pom_remove_dep -r net.jpountz.lz4:lz4
|
||
|
rm codec/src/*/java/io/netty/handler/codec/compression/Lz4*.java
|
||
|
|
||
|
# Disable other codecs with extra dependencies
|
||
|
%pom_remove_dep -r com.fasterxml:aalto-xml
|
||
|
%pom_disable_module codec-xml
|
||
|
|
||
|
# Disable unneeded transport artifacts
|
||
|
%pom_disable_module transport-native-epoll
|
||
|
%pom_disable_module transport-native-kqueue
|
||
|
%pom_disable_module transport-native-unix-common
|
||
|
%pom_disable_module transport-rxtx
|
||
|
%pom_disable_module transport-sctp
|
||
|
%pom_disable_module transport-udt
|
||
|
|
||
|
# Disable macos native bit
|
||
|
%pom_disable_module resolver-dns-native-macos
|
||
|
|
||
|
# Disable test suites
|
||
|
%pom_disable_module testsuite
|
||
|
%pom_disable_module testsuite-autobahn
|
||
|
%pom_disable_module testsuite-http2
|
||
|
%pom_disable_module testsuite-native-image
|
||
|
%pom_disable_module testsuite-osgi
|
||
|
%pom_disable_module testsuite-shading
|
||
|
%pom_disable_module transport-native-unix-common-tests
|
||
|
|
||
|
# Upstream has jctools bundled.
|
||
|
%pom_xpath_remove "pom:build/pom:plugins/pom:plugin[pom:artifactId = 'maven-bundle-plugin']/pom:executions/pom:execution[pom:id = 'generate-manifest']/pom:configuration/pom:instructions/pom:Import-Package" common/pom.xml
|
||
|
|
||
|
# Tell xmvn to install attached artifact, which it does not
|
||
|
# do by default. In this case install all attached artifacts with
|
||
|
# the linux classifier.
|
||
|
%mvn_package ":::linux*:"
|
||
|
|
||
|
%build
|
||
|
# Ensure we use distro compile flags
|
||
|
export CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS"
|
||
|
|
||
|
%mvn_build -f -- -Dsource=1.8
|
||
|
|
||
|
%install
|
||
|
%mvn_install
|
||
|
|
||
|
%files -f .mfiles
|
||
|
%license LICENSE.txt NOTICE.txt
|
||
|
|
||
|
%files javadoc -f .mfiles-javadoc
|
||
|
%license LICENSE.txt NOTICE.txt
|
||
|
|
||
|
%changelog
|
||
|
* Mon Sep 07 2020 Mat Booth <mat.booth@redhat.com> - 4.1.51-1
|
||
|
- Update to latest upstream version
|
||
|
- Native bits were not used by anything, so package is now noarch
|
||
|
|
||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-19
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||
|
|
||
|
* Fri Jul 24 2020 Mat Booth <mat.booth@redhat.com> - 4.1.13-18
|
||
|
- Don't ship the bundled all-in-one jar
|
||
|
- Fix java 11 build
|
||
|
|
||
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 4.1.13-17
|
||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||
|
|
||
|
* Tue Jun 30 2020 Jeff Johnston <jjohnstn@redhat.com> - 4.1.13-16
|
||
|
- add BR for Java 1.8.0 and set macro which can later be set to Java 11
|
||
|
|
||
|
* Fri Mar 27 2020 Mat Booth <mat.booth@redhat.com> - 4.1.13-15
|
||
|
- Disable JIT'd builds on arm 32 temporarily due to segfault in JDK, see bug
|
||
|
1818078
|
||
|
|
||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-14
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||
|
|
||
|
* Thu Nov 21 2019 Fabio Valentini <decathorpe@gmail.com> - 4.1.13-13
|
||
|
- Remove unnecessary dependency on parent POM.
|
||
|
|
||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-12
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||
|
|
||
|
* Sat Jun 08 2019 Mat Booth <mbooth@apache.org> - 4.1.13-11
|
||
|
- Ensure we use the JIT on 32bit arm
|
||
|
|
||
|
* Sun Jun 02 2019 Mat Booth <mat.booth@redhat.com> - 4.1.13-10
|
||
|
- Speed up builds on 32bit arm
|
||
|
|
||
|
* Thu Mar 07 2019 Mat Booth <mat.booth@redhat.com> - 4.1.13-9
|
||
|
- Add more artifacts to the jp_minimal conditional
|
||
|
|
||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-8
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||
|
|
||
|
* Sat Dec 08 2018 Mat Booth <mat.booth@redhat.com> - 4.1.13-7
|
||
|
- Disable support for protobuf in the codecs module due to the javanano API
|
||
|
being discontinued upstream and obsoleted in Fedora
|
||
|
|
||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-6
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||
|
|
||
|
* Wed Apr 25 2018 Michael Simacek <msimacek@redhat.com> - 4.1.13-5
|
||
|
- Remove log4j from jp_minimal build
|
||
|
|
||
|
* Tue Apr 24 2018 mskalick@redhat.com - 4.1.13-4
|
||
|
- Remove org.eclipse.jetty.alpn dependency for jp_minimal
|
||
|
|
||
|
* Tue Apr 24 2018 Michael Simacek <msimacek@redhat.com> - 4.1.13-3
|
||
|
- Don't package test artifacts
|
||
|
|
||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||
|
|
||
|
* Mon Aug 14 2017 Michael Simacek <msimacek@redhat.com> - 4.1.13-1
|
||
|
- Update to upstream version 4.1.13
|
||
|
|
||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.42-7
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||
|
|
||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.42-6
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||
|
|
||
|
* Wed Mar 29 2017 Michael Simacek <msimacek@redhat.com> - 4.0.42-5
|
||
|
- Keep Import-Package default value
|
||
|
|
||
|
* Thu Mar 16 2017 Michael Simacek <msimacek@redhat.com> - 4.0.42-4
|
||
|
- Remove maven-javadoc-plugin from POM
|
||
|
|
||
|
* Wed Mar 15 2017 Michael Simacek <msimacek@redhat.com> - 4.0.42-3
|
||
|
- Add jp_minimal conditional
|
||
|
|
||
|
* Mon Feb 06 2017 Michael Simacek <msimacek@redhat.com> - 4.0.42-2
|
||
|
- Remove useless plugins
|
||
|
|
||
|
* Thu Oct 20 2016 Severin Gehwolf <sgehwolf@redhat.com> - 4.0.42-1
|
||
|
- Remove old netty4 provides/obsoletes.
|
||
|
|
||
|
* Thu Oct 20 2016 Severin Gehwolf <sgehwolf@redhat.com> - 4.0.42-1
|
||
|
- Update to upstream 4.0.42 release.
|
||
|
- Resolves RHBZ#1380921
|
||
|
|
||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.28-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||
|
|
||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.28-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||
|
|
||
|
* Wed May 20 2015 Severin Gehwolf <sgehwolf@redhat.com> - 4.0.28-1
|
||
|
- Update to upstream 4.0.28 release.
|
||
|
- Fixes CVE-2015-2156 (HttpOnly cookie bypass).
|
||
|
- Resolves RHBZ#1111502
|
||
|
|
||
|
* Wed May 20 2015 Severin Gehwolf <sgehwolf@redhat.com> - 4.0.27-1
|
||
|
- Update to upstream 4.0.27 release.
|
||
|
|
||
|
* Wed Apr 01 2015 Severin Gehwolf <sgehwolf@redhat.com> - 4.0.19-3
|
||
|
- Drop mvn(org.easymock:easymockclassextension) BR.
|
||
|
Resolves: RHBZ#1207991
|
||
|
|
||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.19-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||
|
|
||
|
* Mon Jun 9 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.0.19-1
|
||
|
- Update to upstream version 4.0.19
|
||
|
- Convert to arch-specific package
|
||
|
|
||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.14-5
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||
|
|
||
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.14-4
|
||
|
- Use Requires: java-headless rebuild (#1067528)
|
||
|
|
||
|
* Mon Jan 13 2014 Marek Goldmann <mgoldman@redhat.com> - 4.0.14-3
|
||
|
- Enable netty-all.jar artifact
|
||
|
|
||
|
* Mon Jan 13 2014 Marek Goldmann <mgoldman@redhat.com> - 4.0.14-2
|
||
|
- Bump the release, so Obsoletes work properly
|
||
|
|
||
|
* Mon Dec 30 2013 Marek Goldmann <mgoldman@redhat.com> - 4.0.14-1
|
||
|
- Upstream release 4.0.14.Final
|
||
|
|
||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.6-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||
|
|
||
|
* Thu May 16 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.6-1
|
||
|
- Update to upstream version 3.6.6
|
||
|
|
||
|
* Wed Apr 10 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.5-1
|
||
|
- Update to upstream version 3.6.5
|
||
|
|
||
|
* Mon Apr 8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.4-1
|
||
|
- Update to upstream version 3.6.4
|
||
|
|
||
|
* Wed Feb 27 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.3-3
|
||
|
- Set scope of optional compile dependencies to 'provided'
|
||
|
|
||
|
* Wed Feb 27 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.3-2
|
||
|
- Drop dependency on OSGi
|
||
|
- Resolves: rhbz#916139
|
||
|
|
||
|
* Mon Feb 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.3-1
|
||
|
- Update to upstream version 3.6.3
|
||
|
|
||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.2-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||
|
|
||
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 3.6.2-2
|
||
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||
|
- Replace maven BuildRequires with maven-local
|
||
|
|
||
|
* Wed Jan 16 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.2-1
|
||
|
- Update to upstream version 3.6.2
|
||
|
|
||
|
* Tue Jan 15 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.6.1-1
|
||
|
- Update to upstream version 3.6.1
|
||
|
|
||
|
* Thu Dec 13 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.11-2
|
||
|
- Use system jzlib instead of bundled jzlib
|
||
|
- Resolves: rhbz#878391
|
||
|
|
||
|
* Mon Dec 3 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.11-1
|
||
|
- Update to upstream version 3.5.11
|
||
|
|
||
|
* Mon Nov 12 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.10-1
|
||
|
- Update to upstream version 3.5.10
|
||
|
|
||
|
* Thu Oct 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.9-1
|
||
|
- Update to upstream version 3.5.9
|
||
|
|
||
|
* Fri Oct 5 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.8-1
|
||
|
- Update to upstream version 3.5.8
|
||
|
|
||
|
* Fri Sep 7 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.7-1
|
||
|
- Update to upstream version 3.5.7
|
||
|
|
||
|
* Mon Sep 3 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.6-1
|
||
|
- Update to upstream version 3.5.6
|
||
|
|
||
|
* Thu Aug 23 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.5-1
|
||
|
- Update to upstream version 3.5.5
|
||
|
|
||
|
* Wed Aug 15 2012 Tomas Rohovsky <trohovsk@redhat.com> - 3.5.4-1
|
||
|
- Update to upstream version 3.5.4
|
||
|
|
||
|
* Tue Jul 24 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.3-1
|
||
|
- Update to upstream version 3.5.3
|
||
|
|
||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.2-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||
|
|
||
|
* Mon Jul 16 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.2-2
|
||
|
- Add additional depmap for org.jboss.netty:netty
|
||
|
- Fixes #840301
|
||
|
|
||
|
* Thu Jul 12 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.2-1
|
||
|
- Update to upstream version 3.5.2
|
||
|
- Convert patches to POM macros
|
||
|
- Enable jboss-logging
|
||
|
|
||
|
* Fri May 18 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.4-4
|
||
|
- Add enforcer-plugin to BR
|
||
|
|
||
|
* Wed Apr 18 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.4-3
|
||
|
- Remove eclipse plugin from BuildRequires
|
||
|
|
||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.4-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||
|
|
||
|
* Mon Dec 5 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.4-1
|
||
|
- Update to latest upstream version
|
||
|
|
||
|
* Mon Jul 4 2011 Alexander Kurtakov <akurtako@redhat.com> 3.2.3-4
|
||
|
- Fix FTBFS.
|
||
|
- Adapt to current guidelines.
|
||
|
|
||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.3-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||
|
|
||
|
* Mon Jan 17 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.3-2
|
||
|
- Use maven 3 to build
|
||
|
- Drop ant-contrib depmap (no longer needed)
|
||
|
|
||
|
* Thu Jan 13 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.3-1
|
||
|
- Initial version of the package
|