From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCZEU-0005QC-9D for guix-patches@gnu.org; Wed, 08 Nov 2017 17:54:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eCZES-0007jL-R8 for guix-patches@gnu.org; Wed, 08 Nov 2017 17:54:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50467) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eCZES-0007iw-N2 for guix-patches@gnu.org; Wed, 08 Nov 2017 17:54:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eCZES-0001uq-Fp for guix-patches@gnu.org; Wed, 08 Nov 2017 17:54:04 -0500 Subject: [bug#29221] [PATCH 05/19] gnu: Add java-mail. Resent-Message-ID: From: julien@lepiller.eu Date: Wed, 8 Nov 2017 23:51:26 +0100 Message-Id: <20171108225140.6587-5-julien@lepiller.eu> In-Reply-To: <20171108225140.6587-1-julien@lepiller.eu> References: <20171108231537.34a601cc@lepiller.eu> <20171108225140.6587-1-julien@lepiller.eu> 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: 29221@debbugs.gnu.org From: Julien Lepiller * gnu/packages/java.scm (java-mail): New variable. --- gnu/packages/java.scm | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 37e3f5180..67805bae7 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6949,3 +6949,80 @@ done to the IDE or continuous integration servers which simplifies adoption.") ("reflect" ,java-powermock-reflect) ("support" ,java-powermock-api-support) ("cglib" ,java-cglib))))) + +(define-public java-jboss-jms-api-spec + (package + (name "java-jboss-jms-api-spec") + (version "2.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/jboss/jboss-jms-api_spec/" + "archive/jboss-jms-api_" version + "_spec-1.0.1.Final.tar.gz")) + (sha256 + (base32 + "07bqblw9kq2i8q92bz70fvavq5xjfkaixl8xa0m0cypjgy82rb7m")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "java-jboss-jms-api_spec.jar" + #:jdk ,icedtea-8 + #:source-dir "." + #:tests? #f)); no tests + (home-page "https://github.com/jboss/jboss-jms-api_spec") + (synopsis "Java Message Service API specification") + (description "Java Message Service (JMS) API is used to send messages +messages between two or more clients. It is a messaging standard that allows +application components to create, send, receive, and read messages.") + ; either gpl2 only with GPL Classpath Exception, or cddl. + (license (list license:gpl2 license:cddl1.0)))) + +(define-public java-mail + (package + (name "java-mail") + (version "1.6.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/javaee/javamail/archive/" + "JAVAMAIL-1_6_0.tar.gz")) + (sha256 + (base32 + "1b4rg7fpj50ld90a71iz2m4gm3f5cnw18p3q3rbrrryjip46kx92")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "java-mail.jar" + #:jdk ,icedtea-8 + #:source-dir "mail/src/main/java" + #:test-dir "mail/src/test" + #:test-exclude + (list "**/CollectorFormatterTest.java" + "**/CompactFormatterTest.java" + "**/DurationFilterTest.java" + "**/MailHandlerTest.java" + "**/GetLocalAddressTest.java" + ;; FIXME: both end with: + ;; java.lang.ClassNotFoundException: + ;; javax.mail.internet.MimeMultipartParseTest + "**/MimeMultipartParseTest.java" + "**/SearchTermSerializationTest.java") + #:phases + (modify-phases %standard-phases + (add-before 'configure 'move-version.java + (lambda _ + (copy-file "mail/src/main/resources/javax/mail/Version.java" + "mail/src/main/java/javax/mail/Version.java"))) + (add-before 'build 'copy-resources + (lambda _ + (copy-recursively "mail/src/main/resources/META-INF" + "build/classes/META-INF") + #t))))) + (native-inputs + `(("junit" ,java-junit) + ("hamcrest" ,java-hamcrest-core))) + (home-page "https://javaee.github.io/javamail/") + (synopsis "Mail-related functionnalities in Java") + (description "The JavaMail API provides a platform-independent and +protocol-independent framework to build mail and messaging applications.") + ;; General Public License Version 2 only ("GPL") or the Common Development + ;; and Distribution License("CDDL") + (license (list license:cddl1.1 + license:gpl2)))); with classpath exception -- 2.15.0