all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Björn Höfling" <bjoern.hoefling@bjoernhoefling.de>
To: 32231@debbugs.gnu.org
Subject: [bug#32231] [PATCH 4/8] gnu: Add java-javaee-servletapi.
Date: Sat, 21 Jul 2018 10:23:55 +0200	[thread overview]
Message-ID: <20180721102355.17a0a64f@alma-ubu> (raw)
In-Reply-To: <20180721101401.63dee9b6@alma-ubu>

[-- Attachment #1: Type: text/plain, Size: 1936 bytes --]


* gnu/packages/java.scm (java-javaee-servletapi): New variable.
---
 gnu/packages/java.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index d6c88f5..b60aedd 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2537,6 +2537,37 @@ ClasspathX project.  It provides implementations of version 3.0 of the servlet
 API and version 2.1 of the Java ServerPages API.")
     (license license:gpl3+)))
 
+(define-public java-javaee-servletapi
+  (package
+    (name "java-javaee-servletapi")
+    (version "3.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/javaee/servlet-spec/"
+                                  "archive/" version ".zip"))
+              (file-name (string-append name "-" version ".zip"))
+              (sha256
+               (base32
+                "0m6p13vgfb1ihich1jp5j6fqlhkjsrkn32c86bsbkryp38ipwg8w"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "javax-servletapi.jar"
+       ;; no tests
+       #:tests? #f
+       #:source-dir "src/main/java"))
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (home-page "https://javaee.github.io/servlet-spec/")
+    (synopsis "Java servlet API")
+    (description "Java Servlet is the foundation web specification in the
+Java Enterprise Platform.  Developers can build web applications using the
+Servlet API to interact with the request/response workflow.  This project
+provides information on the continued development of the Java Servlet
+specification.")
+    ;; Main code is dual-licensed by Oracle under either GLP2 or CDDL 1.1.
+    ;; Some files are licensed under ASL 2.0.
+    (license (list license:asl2.0 license:gpl2 license:cddl1.1))))
+
 (define-public java-swt
   (package
     (name "java-swt")
-- 
2.7.4


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

  parent reply	other threads:[~2018-07-21  8:24 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-21  8:14 [bug#32231] [PATCH 0/8] Tomcat related updates Björn Höfling
2018-07-21  8:20 ` [bug#32231] [PATCH 1/8] gnu: java-guice: Remove jars Björn Höfling
2018-07-21  8:22 ` [bug#32231] [PATCH 2/8] gnu: java-logback-core: Add file-name field Björn Höfling
2018-07-21  8:23 ` [bug#32231] [PATCH 3/8] gnu: java: Use java-classpathx-servletapi instead of java-tomcat where possible Björn Höfling
2018-07-21  8:23 ` Björn Höfling [this message]
2018-07-21  8:24 ` [bug#32231] [PATCH 5/8] gnu: java: Use java-javaee-servletapi instead of java-tomcat Björn Höfling
2018-07-21  8:24 ` [bug#32231] [PATCH 6/8] gnu: java-tomcat: Update to 8.5.32 Björn Höfling
2018-07-21  8:25 ` [bug#32231] [PATCH 7/8] gnu: java-tomcat: Remove bundled jars Björn Höfling
2018-07-21  8:25 ` [bug#32231] [PATCH 8/8] gnu: java-tomcat: Strip timestamps Björn Höfling
2018-07-24 22:30 ` bug#32231: [PATCH 0/8] Tomcat related updates Julien Lepiller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180721102355.17a0a64f@alma-ubu \
    --to=bjoern.hoefling@bjoernhoefling.de \
    --cc=32231@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.