unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: julien@lepiller.eu
To: 29221@debbugs.gnu.org
Subject: [bug#29221] [PATCH 03/19] gnu: Add java-iq80-snappy.
Date: Wed,  8 Nov 2017 23:51:24 +0100	[thread overview]
Message-ID: <20171108225140.6587-3-julien@lepiller.eu> (raw)
In-Reply-To: <20171108225140.6587-1-julien@lepiller.eu>

From: Julien Lepiller <julien@lepiller.eu>

* gnu/packages/compression.scm (java-iq80-snappy): New variable.
---
 gnu/packages/compression.scm | 50 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index e739546fd..27fa083fb 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1204,6 +1204,56 @@ for most inputs, but the resulting compressed files are anywhere from 20% to
 compresser/decompresser.")
     (license license:asl2.0)))
 
+(define-public java-iq80-snappy
+  (package
+    (name "java-iq80-snappy")
+    (version "0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/dain/snappy/archive/snappy-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0rb3zhci7w9wzd65lfnk7p3ip0n6gb58a9qpx8n7r0231gahyamf"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "iq80-snappy.jar"
+       #:source-dir "src/main/java"
+       #:test-dir "src/test"
+       #:jdk ,icedtea-8
+       #:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (define (test class)
+               (zero? (system* "java" "-cp" (string-append (getenv "CLASSPATH")
+                                                           ":build/classes"
+                                                           ":build/test-classes")
+                               "-Dtest.resources.dir=src/test/resources"
+                               "org.testng.TestNG" "-testclass"
+                               class)))
+             (system* "ant" "compile-tests")
+             (and
+               (test "org.iq80.snappy.SnappyFramedStreamTest")
+               (test "org.iq80.snappy.SnappyStreamTest"))))
+         (add-before 'build 'remove-hadoop-dependency
+           (lambda _
+             ;; We don't have hadoop
+             (delete-file "src/main/java/org/iq80/snappy/HadoopSnappyCodec.java")
+             (delete-file "src/test/java/org/iq80/snappy/TestHadoopSnappyCodec.java")
+             #t)))))
+    (home-page "https://github.com/dain/snappy")
+    (native-inputs
+     `(("guava" ,java-guava)
+       ("java-snappy" ,java-snappy)
+       ("hamcrest" ,java-hamcrest-core)
+       ("testng" ,java-testng)))
+    (synopsis "Java port of snappy")
+    (description "Iq80-snappy is a rewrite (port) of Snappy writen in pure
+Java.  This compression code produces a byte-for-byte exact copy of the output
+created by the original C++ code, and extremely fast.")
+    (license license:asl2.0)))
+
 (define-public p7zip
   (package
     (name "p7zip")
-- 
2.15.0

  parent reply	other threads:[~2017-11-08 22:54 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-08 22:48 [bug#29221] [PATCH] java packages Julien Lepiller
2017-11-08 22:51 ` [bug#29221] [PATCH 01/19] gnu: Add bitshuffle julien
2017-11-08 22:51   ` [bug#29221] [PATCH 02/19] gnu: Add java-snappy julien
2017-11-08 22:51   ` julien [this message]
2017-11-08 22:51   ` [bug#29221] [PATCH 04/19] licenses: Add cddl1.1 julien
2017-11-09 15:31     ` Ludovic Courtès
2017-11-16 20:54       ` Julien Lepiller
2017-11-16 21:16         ` Tobias Geerinckx-Rice
2017-11-16 21:13           ` Julien Lepiller
2017-11-17 10:08             ` Ludovic Courtès
2017-11-08 22:51   ` [bug#29221] [PATCH 05/19] gnu: Add java-mail julien
2017-11-08 23:03     ` ng0
2017-11-09  8:36       ` julien lepiller
2017-11-08 22:51   ` [bug#29221] [PATCH 06/19] gnu: Add java-jeromq julien
2017-11-08 22:51   ` [bug#29221] [PATCH 07/19] gnu: Add java-commons-csv julien
2017-11-08 22:51   ` [bug#29221] [PATCH 08/19] gnu: Add java-commons-collections julien
2017-11-08 22:51   ` [bug#29221] [PATCH 09/19] gnu: Add java-commons-beanutils julien
2017-11-08 22:51   ` [bug#29221] [PATCH 10/19] gnu: Add java-kafka-clients julien
2017-11-08 22:51   ` [bug#29221] [PATCH 11/19] gnu: Add java-log4j-core julien
2017-11-08 22:51   ` [bug#29221] [PATCH 12/19] gnu: Add java-log4j-1.2-api julien
2017-11-08 22:51   ` [bug#29221] [PATCH 13/19] gnu: Add java-jdom julien
2017-11-08 22:51   ` [bug#29221] [PATCH 14/19] gnu: Add java-geronimo-xbean-reflect julien
2017-11-08 22:51   ` [bug#29221] [PATCH 15/19] gnu: Add java-tukaani-xz julien
2017-11-08 22:51   ` [bug#29221] [PATCH 16/19] gnu: Add java-plexus-container-default-bootstrap julien
2017-11-08 22:51   ` [bug#29221] [PATCH 17/19] gnu: Add java-plexus-io julien
2017-11-08 22:51   ` [bug#29221] [PATCH 18/19] gnu: Add java-plexus-archiver julien
2017-11-08 22:51   ` [bug#29221] [PATCH 19/19] gnu: Add java-plexus-container-default julien

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=20171108225140.6587-3-julien@lepiller.eu \
    --to=julien@lepiller.eu \
    --cc=29221@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).