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