summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2015-05-24 20:40:40 +0000
committerJames Le Cuirot <chewi@gentoo.org>2015-05-24 20:40:40 +0000
commit39b1b9540ff239f09e7dd187d93352c42ae06e26 (patch)
treea302942ba600e67f2e5341648283000efa5fd39a /eclass
parentClean up old ebuilds and patches. (diff)
downloadgentoo-2-39b1b9540ff239f09e7dd187d93352c42ae06e26.tar.gz
gentoo-2-39b1b9540ff239f09e7dd187d93352c42ae06e26.tar.bz2
gentoo-2-39b1b9540ff239f09e7dd187d93352c42ae06e26.zip
Remove annoying java-pkg-simple build script check. Most people only
use java-pkg-simple as a last resort and a usable Maven eclass is still some way off.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog7
-rw-r--r--eclass/java-pkg-simple.eclass6
2 files changed, 7 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 028843cee464..aaaa5578e53d 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for eclass directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1619 2015/05/24 08:43:02 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1620 2015/05/24 20:40:40 chewi Exp $
+
+ 24 May 2015; James Le Cuirot <chewi@gentoo.org> java-pkg-simple.eclass:
+ Remove annoying java-pkg-simple build script check. Most people only use
+ java-pkg-simple as a last resort and a usable Maven eclass is still some way
+ off.
24 May 2015; Michał Górny <mgorny@gentoo.org> freebsd.eclass:
Support fetching upstream patches,
diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass
index c18531ea069d..793bec59d300 100644
--- a/eclass/java-pkg-simple.eclass
+++ b/eclass/java-pkg-simple.eclass
@@ -4,7 +4,7 @@
#
# Licensed under the GNU General Public License, v2
#
-# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-simple.eclass,v 1.5 2015/04/04 21:04:49 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-simple.eclass,v 1.6 2015/05/24 20:40:40 chewi Exp $
inherit java-utils-2
@@ -112,10 +112,6 @@ S="${WORKDIR}"
java-pkg-simple_src_compile() {
local sources=sources.lst classes=target/classes apidoc=target/api
- # QA checks
- [[ "$(find . -name build.xml -o -name pom.xml)" ]] &&
- java-pkg_announce-qa-violation "Package ships with a build file, use that instead of java-pkg-simple!"
-
# gather sources
find ${JAVA_SRC_DIR:-*} -name \*.java > ${sources}
mkdir -p ${classes} || die "Could not create target directory"