unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Ricardo Wurmus <rekado@elephly.net>
To: 26861@debbugs.gnu.org
Cc: Ricardo Wurmus <rekado@elephly.net>
Subject: bug#26861: [PATCH 29/31] gnu: Add java-javax-mail.
Date: Tue,  9 May 2017 23:28:46 +0200	[thread overview]
Message-ID: <20170509212848.14688-29-rekado@elephly.net> (raw)
In-Reply-To: <20170509212848.14688-1-rekado@elephly.net>

* gnu/packages/java.scm (java-javax-mail): New variable.
---
 gnu/packages/java.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 5247414ea..c0703ef6c 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2942,6 +2942,32 @@ and contributes the Eclipse default text editor.")
 development tools.")
     (license license:epl1.0)))
 
+(define-public java-javax-mail
+  (package
+    (name "java-javax-mail")
+    (version "1.5.6")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://repo1.maven.org/maven2/"
+                                  "com/sun/mail/javax.mail/"
+                                  version "/javax.mail-"
+                                  version "-sources.jar"))
+              (sha256
+               (base32
+                "0sdlfgsc2b5s89xv1261y8i0jijcja019k2x1c8ngfn582w4jly9"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:tests? #f ; no tests
+       #:jar-name "javax-mail.jar"))
+    (home-page "https://javamail.java.net")
+    (synopsis "Reference implementation of the JavaMail API")
+    (description
+     "This package provides versions of the JavaMail API implementation, IMAP,
+SMTP, and POP3 service providers, some examples, and documentation for the
+JavaMail API.")
+    ;; GPLv2 only with "classpath exception".
+    (license license:gpl2)))
+
 (define-public java-log4j-api
   (package
     (name "java-log4j-api")
-- 
2.12.2

  parent reply	other threads:[~2017-05-09 21:30 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-09 21:07 bug#26861: [PATCH 00/31] Even more Java things Ricardo Wurmus
2017-05-09 21:28 ` bug#26861: [PATCH 01/31] gnu: Add libusb4java Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 02/31] gnu: Add java-usb4java Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 03/31] gnu: Add java-rsyntaxtextarea Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 04/31] gnu: Add java-simple-xml Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 05/31] gnu: Add java-osgi-annotation Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 06/31] gnu: Add java-osgi-core Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 07/31] gnu: Add java-eclipse-osgi Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 08/31] gnu: Add java-eclipse-equinox-common Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 09/31] gnu: Add java-osgi-service-event Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 10/31] gnu: Add java-eclipse-core-jobs Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 11/31] gnu: Add java-eclipse-equinox-registry Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 12/31] gnu: Add java-eclipse-equinox-app Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 13/31] gnu: Add java-eclipse-equinox-preferences Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 14/31] gnu: Add java-eclipse-core-contenttype Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 15/31] gnu: Add java-eclipse-core-runtime Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 16/31] gnu: Add java-eclipse-core-filesystem Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 17/31] gnu: Add java-eclipse-core-expressions Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 18/31] gnu: Add java-eclipse-core-variables Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 19/31] gnu: Add java-eclipse-ant-core Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 20/31] gnu: Add java-eclipse-core-resources Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 21/31] gnu: Add java-icu4j Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 22/31] gnu: Add java-eclipse-compare-core Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 23/31] gnu: Add java-eclipse-team-core Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 24/31] gnu: Add java-eclipse-core-commands Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 25/31] gnu: Add java-eclipse-text Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 26/31] gnu: Add java-eclipse-jdt-core Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 27/31] gnu: Add java-log4j-api Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 28/31] licenses: Add EDL 1.0 Ricardo Wurmus
2017-05-10  4:25     ` Leo Famulari
2017-05-10  5:32       ` Ricardo Wurmus
2017-05-09 21:28   ` Ricardo Wurmus [this message]
2017-05-09 21:28   ` bug#26861: [PATCH 30/31] gnu: Add jikes Ricardo Wurmus
2017-05-09 21:28   ` bug#26861: [PATCH 31/31] gnu: Add classpath-minimal-0.93 Ricardo Wurmus
2017-05-10 13:32     ` Ricardo Wurmus
2017-05-15 20:32 ` bug#26861: [PATCH 00/31] Even more Java things Ricardo Wurmus

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=20170509212848.14688-29-rekado@elephly.net \
    --to=rekado@elephly.net \
    --cc=26861@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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).