diff options
author | 2015-02-20 11:56:20 +0000 | |
---|---|---|
committer | 2015-02-20 11:56:20 +0000 | |
commit | 31b840720cce31c1b99e43a76d04b2539d75aeb6 (patch) | |
tree | c8cee72e7b14449125ae99f9f9be47b2bcd9b02b /www-servers/tomcat | |
parent | update due to lxqt-common version bump (diff) | |
download | gentoo-2-31b840720cce31c1b99e43a76d04b2539d75aeb6.tar.gz gentoo-2-31b840720cce31c1b99e43a76d04b2539d75aeb6.tar.bz2 gentoo-2-31b840720cce31c1b99e43a76d04b2539d75aeb6.zip |
www-servers/tomcat: minor improvements
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key CFE47E2F)
Diffstat (limited to 'www-servers/tomcat')
-rw-r--r-- | www-servers/tomcat/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/tomcat/tomcat-8.0.18.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/www-servers/tomcat/ChangeLog b/www-servers/tomcat/ChangeLog index fb11c820cc03..976d30046528 100644 --- a/www-servers/tomcat/ChangeLog +++ b/www-servers/tomcat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/tomcat # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/ChangeLog,v 1.341 2015/02/20 07:25:43 fordfrog Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/ChangeLog,v 1.342 2015/02/20 11:56:20 fordfrog Exp $ + + 20 Feb 2015; Miroslav Šulc <fordfrog@gentoo.org> tomcat-8.0.18.ebuild: + changed to eapi 5, simplified find command *tomcat-8.0.18 (20 Feb 2015) diff --git a/www-servers/tomcat/tomcat-8.0.18.ebuild b/www-servers/tomcat/tomcat-8.0.18.ebuild index 521759c41765..d79cc503a052 100644 --- a/www-servers/tomcat/tomcat-8.0.18.ebuild +++ b/www-servers/tomcat/tomcat-8.0.18.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/tomcat-8.0.18.ebuild,v 1.1 2015/02/20 07:25:43 fordfrog Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/tomcat-8.0.18.ebuild,v 1.2 2015/02/20 11:56:20 fordfrog Exp $ -EAPI=4 +EAPI="5" JAVA_PKG_IUSE="doc source test" @@ -48,7 +48,7 @@ pkg_setup() { } java_prepare() { - find -name '*.jar' -type f -exec rm -frv {} + || die + find -name '*.jar' -type f -delete -print || die epatch "${FILESDIR}/${P}-build.xml.patch" |