From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56359) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMXpD-0006Sn-L5 for guix-patches@gnu.org; Fri, 03 May 2019 09:02:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMXpC-0000e6-Cv for guix-patches@gnu.org; Fri, 03 May 2019 09:02:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34521) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMXpC-0000e1-9G for guix-patches@gnu.org; Fri, 03 May 2019 09:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hMXpC-0005so-4k for guix-patches@gnu.org; Fri, 03 May 2019 09:02:02 -0400 Subject: [bug#35545] [PATCH 01/17] gnu: Add java-signpost-core. Resent-Message-ID: From: Julien Lepiller Date: Fri, 3 May 2019 15:01:18 +0200 Message-Id: <20190503130134.24788-1-julien@lepiller.eu> In-Reply-To: <20190503145820.606f37db@sybil.lepiller.eu> References: <20190503145820.606f37db@sybil.lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 35545@debbugs.gnu.org * gnu/packages/web.scm (java-signpost-core): New variable. --- gnu/packages/web.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 7242ede3be..53763687b4 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6207,6 +6207,36 @@ provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jQuery-like methods.") (license license:expat))) +(define-public java-signpost-core + (package + (name "java-signpost-core") + (version "1.2.1.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mttkay/signpost") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1l04yj2znch3hpyw90c4g4jan453w7d88l84bgl0c72i2kbb8z7h")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "signpost-core.jar" + #:source-dir "signpost-core/src/main/java" + #:test-dir "signpost-core/src/test" + ;; Tests all fail with InstantiationException from mockito + #:tests? #f)) + (propagated-inputs + `(("java-commons-codec" ,java-commons-codec))) + (home-page "https://github.com/mttkay/signpost") + (synopsis "Lightweight client-side OAuth library for Java") + (description "Signpost is the easy and intuitive solution for signing +HTTP messages on the Java platform in conformance with the OAuth Core 1.0a +standard. Signpost follows a modular and flexible design, allowing you to +combine it with different HTTP messaging layers.") + (license license:asl2.0))) + (define-public tidyp (package (name "tidyp") -- 2.21.0