From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eb09g-0004xF-G2 for guix-patches@gnu.org; Mon, 15 Jan 2018 03:30:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eb09a-0005qD-TT for guix-patches@gnu.org; Mon, 15 Jan 2018 03:30:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:48735) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eb09a-0005pz-PX for guix-patches@gnu.org; Mon, 15 Jan 2018 03:30:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eb09a-00049p-Ew for guix-patches@gnu.org; Mon, 15 Jan 2018 03:30:02 -0500 Subject: [bug#29891] [PATCH] gnu: java-classpathx-servletapi: Update to 3.0.1. References: <20171229134104.6951-1-boskovits@gmail.com> In-Reply-To: <20171229134104.6951-1-boskovits@gmail.com> Resent-Message-ID: From: =?UTF-8?Q?G=C3=A1bor?= Boskovits Date: Mon, 15 Jan 2018 09:27:57 +0100 Message-Id: <20180115082757.5801-1-boskovits@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29891@debbugs.gnu.org Cc: =?UTF-8?Q?G=C3=A1bor?= Boskovits * gnu/packages/java.scm (java-classpathx-servletapi): Update to 3.0.1. [arguments]: Switch to a java8 compiler, remove comment about not working with java8. --- gnu/packages/java.scm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index c2888b552..8431ed44b 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2019,25 +2019,20 @@ debugging, etc.") (define-public java-classpathx-servletapi (package (name "java-classpathx-servletapi") - (version "3.0") + (version "3.0.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/classpathx/servletapi/" "servletapi-" version ".tar.gz")) (sha256 (base32 - "0y9489pk4as9q6x300sk3ycc0psqfxcd4b0xvbmf3rhgli8q1kx3")))) + "07d8h051siga2f33fra72hk12sbq1bxa4jifjg0qj0vfazjjff0x")))) (build-system ant-build-system) (arguments `(#:tests? #f ; there is no test target #:build-target "compile" - ;; NOTE: This package does not build with Java 8 because of a type - ;; mismatch in - ;; "source/javax/servlet/jsp/el/ImplicitObjectELResolver.java". It - ;; defines the return value of ScopeMap's "remove" method to be of type - ;; "Object", whereas Map's "remove" method returns boolean. #:make-flags - (list "-Dbuild.compiler=javac1.7" + (list "-Dbuild.compiler=javac1.8" (string-append "-Ddist=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases -- 2.15.1