netty/netty.spec

140 lines
4.6 KiB
RPMSpec
Raw Normal View History

2011-01-18 10:02:23 +00:00
Name: netty
2012-07-12 08:11:59 +00:00
Version: 3.5.2
Release: 2%{?dist}
2011-01-18 10:02:23 +00:00
Summary: An asynchronous event-driven network application framework and tools for Java
Group: Development/Libraries
License: ASL 2.0
2012-07-12 08:11:59 +00:00
URL: https://netty.io/
Source0: https://github.com/downloads/%{name}/%{name}/%{name}-%{version}.Final-dist.tar.bz2
2011-01-18 10:02:23 +00:00
2012-07-11 22:45:38 +00:00
BuildArch: noarch
2011-01-18 10:02:23 +00:00
BuildRequires: maven
BuildRequires: maven-antrun-plugin
BuildRequires: maven-assembly-plugin
BuildRequires: maven-compiler-plugin
2012-05-18 13:12:59 +00:00
BuildRequires: maven-enforcer-plugin
2011-01-18 10:02:23 +00:00
BuildRequires: maven-javadoc-plugin
2012-07-12 08:11:59 +00:00
BuildRequires: maven-plugin-bundle
2011-01-18 10:02:23 +00:00
BuildRequires: maven-resources-plugin
BuildRequires: maven-source-plugin
BuildRequires: maven-surefire-plugin
BuildRequires: ant-contrib
2012-07-12 08:11:59 +00:00
2011-01-18 10:02:23 +00:00
BuildRequires: felix-osgi-compendium
2012-07-12 08:11:59 +00:00
BuildRequires: felix-osgi-core
2012-07-11 22:45:38 +00:00
BuildRequires: jboss-logging
2012-07-12 08:11:59 +00:00
BuildRequires: jboss-marshalling
BuildRequires: protobuf-java
BuildRequires: slf4j
BuildRequires: sonatype-oss-parent
BuildRequires: tomcat-servlet-3.0-api
2011-01-18 10:02:23 +00:00
Requires: java
2012-07-12 08:11:59 +00:00
Requires: jpackage-utils
2011-01-18 10:02:23 +00:00
Requires: protobuf-java
%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}
Group: Documentation
Requires: jpackage-utils
%description javadoc
%{summary}.
%prep
%setup -q -n %{name}-%{version}.Final
# just to be sure, but not used anyway
2012-07-12 08:11:59 +00:00
rm -rf jar doc license
2011-12-05 15:09:26 +00:00
2012-07-12 08:11:59 +00:00
%pom_xpath_remove "pom:plugin[pom:artifactId[text()='maven-jxr-plugin']]"
%pom_xpath_remove "pom:plugin[pom:artifactId[text()='maven-checkstyle-plugin']]"
%pom_remove_plugin org.eclipse.m2e:lifecycle-mapping
%pom_remove_dep javax.activation:activation
%pom_remove_plugin :animal-sniffer-maven-plugin
2012-07-12 08:08:34 +00:00
%pom_xpath_remove "pom:execution[pom:id[text()='remove-examples']]"
2012-07-12 08:11:59 +00:00
%pom_xpath_remove "pom:plugin[pom:artifactId[text()='maven-javadoc-plugin']]/pom:configuration"
sed s/jboss-logging-spi/jboss-logging/ -i pom.xml
2011-01-18 10:02:23 +00:00
%build
2012-07-12 08:11:59 +00:00
# skipping tests because we don't have easymockclassextension
mvn-rpmbuild -Dmaven.test.skip=true install javadoc:aggregate
2011-01-18 10:02:23 +00:00
%install
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
install -m 644 target/%{name}-%{version}.Final.jar \
$RPM_BUILD_ROOT%{_javadir}/%{name}.jar
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}
2012-07-12 08:11:59 +00:00
cp -pr target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
2011-01-18 10:02:23 +00:00
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP-%{name}.pom
%add_maven_depmap -a org.jboss.netty:netty JPP-%{name}.pom %{name}.jar
2011-01-18 10:02:23 +00:00
%files
%doc LICENSE.txt NOTICE.txt
2011-12-05 15:09:26 +00:00
%{_javadir}/%{name}.jar
2011-01-18 10:02:23 +00:00
%{_mavendepmapfragdir}/%{name}
%{_mavenpomdir}/JPP-%{name}.pom
%files javadoc
%doc LICENSE.txt NOTICE.txt
%{_javadocdir}/%{name}
%changelog
* Mon Jul 16 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.2-2
- Add additional depmap for org.jboss.netty:netty
- Fixes #840301
2012-07-12 08:11:59 +00:00
* 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
2012-05-18 13:12:59 +00:00
* 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
2011-12-05 15:09:26 +00:00
* 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
2011-01-18 10:02:23 +00:00
* 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