[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: Add java-httpcomponents-httpcore.
From: |
Ricardo Wurmus |
Subject: |
03/10: gnu: Add java-httpcomponents-httpcore. |
Date: |
Mon, 15 May 2017 16:00:59 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 4f4d2e470ddd72d0a96c4b5a40d9874ee9256a2e
Author: Ricardo Wurmus <address@hidden>
Date: Tue Mar 7 19:52:23 2017 +0100
gnu: Add java-httpcomponents-httpcore.
* gnu/packages/java.scm (java-httpcomponents-httpcore): New variable.
---
gnu/packages/java.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 900dbc8..ee7d7d4 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2037,6 +2037,42 @@ tests with a clean and simple API. It generates mocks
using reflection, and
it records all mock invocations, including methods arguments.")
(license license:asl2.0)))
+(define-public java-httpcomponents-httpcore
+ (package
+ (name "java-httpcomponents-httpcore")
+ (version "4.4.6")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://apache//httpcomponents/httpcore/"
+ "source/httpcomponents-core-"
+ version "-src.tar.gz"))
+ (sha256
+ (base32
+ "02bwcf38y4vgwq7kj2s6q7qrmma641r5lacivm16kgxvb2j6h1vy"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:jar-name "httpcomponents-httpcore.jar"
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir "httpcore") #t)))))
+ (inputs
+ `(("java-commons-logging-minimal" ,java-commons-logging-minimal)
+ ("java-commons-lang3" ,java-commons-lang3)))
+ (native-inputs
+ `(("java-junit" ,java-junit)
+ ("java-mockito" ,java-mockito-1)))
+ (home-page "https://hc.apache.org/httpcomponents-core-4.4.x/index.html")
+ (synopsis "Low level HTTP transport components")
+ (description "HttpCore is a set of low level HTTP transport components
+that can be used to build custom client and server side HTTP services with a
+minimal footprint. HttpCore supports two I/O models: blocking I/O model based
+on the classic Java I/O and non-blocking, event driven I/O model based on Java
+NIO.
+
+This package provides the blocking I/O model library.")
+ (license license:asl2.0)))
+
(define-public java-commons-cli
(package
(name "java-commons-cli")
- branch master updated (7fe4e55 -> a624469), Ricardo Wurmus, 2017/05/15
- 01/10: gnu: Add mia., Ricardo Wurmus, 2017/05/15
- 04/10: gnu: Add java-httpcomponents-httpcore-nio., Ricardo Wurmus, 2017/05/15
- 07/10: gnu: Add java-httpcomponents-httpmime., Ricardo Wurmus, 2017/05/15
- 03/10: gnu: Add java-httpcomponents-httpcore.,
Ricardo Wurmus <=
- 10/10: gnu: Add java-commons-compress., Ricardo Wurmus, 2017/05/15
- 09/10: gnu: Add java-jsch., Ricardo Wurmus, 2017/05/15
- 05/10: gnu: Add java-httpcomponents-httpcore-ab., Ricardo Wurmus, 2017/05/15
- 06/10: gnu: Add java-httpcomponents-httpclient., Ricardo Wurmus, 2017/05/15
- 08/10: gnu: Add java-commons-net., Ricardo Wurmus, 2017/05/15
- 02/10: gnu: Add java-mockito-1., Ricardo Wurmus, 2017/05/15