* [PATCH] gnu: Add fastjar
@ 2014-12-22 17:03 Ricardo Wurmus
2014-12-22 17:19 ` Ricardo Wurmus
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2014-12-22 17:03 UTC (permalink / raw)
To: guix-devel
* gnu/packages/compression.scm (fastjar): New variable.
---
gnu/packages/compression.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 7c22300..b768326 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -70,6 +70,26 @@ independent of the input data and can be reduced, if necessary, at some cost
in compression.")
(license license:zlib)))
+(define-public fastjar
+ (package
+ (name "fastjar")
+ (version "0.98")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/fastjar/fastjar-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
+ (build-system gnu-build-system)
+ (inputs `(("zlib" ,zlib)))
+ (home-page "http://savannah.nongnu.org/projects/fastjar")
+ (synopsis "Replacement for Sun's 'jar' utility")
+ (description
+ "FastJar is an attempt to create a much faster replacement for Sun's 'jar'
+utility. Instead of being written in Java, FastJar is written in C.")
+ (license license:gpl2+)))
+
(define-public gzip
(package
(name "gzip")
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add fastjar
2014-12-22 17:03 [PATCH] gnu: Add fastjar Ricardo Wurmus
@ 2014-12-22 17:19 ` Ricardo Wurmus
2014-12-26 21:54 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2014-12-22 17:19 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1451 bytes --]
Ricardo Wurmus writes:
> * gnu/packages/compression.scm (fastjar): New variable.
> ---
> gnu/packages/compression.scm | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
> index 7c22300..b768326 100644
> --- a/gnu/packages/compression.scm
> +++ b/gnu/packages/compression.scm
> @@ -70,6 +70,26 @@ independent of the input data and can be reduced, if necessary, at some cost
> in compression.")
> (license license:zlib)))
>
> +(define-public fastjar
> + (package
> + (name "fastjar")
> + (version "0.98")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "mirror://savannah/fastjar/fastjar-"
> + version ".tar.gz"))
> + (sha256
> + (base32
> + "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
> + (build-system gnu-build-system)
> + (inputs `(("zlib" ,zlib)))
> + (home-page "http://savannah.nongnu.org/projects/fastjar")
> + (synopsis "Replacement for Sun's 'jar' utility")
> + (description
> + "FastJar is an attempt to create a much faster replacement for Sun's 'jar'
> +utility. Instead of being written in Java, FastJar is written in C.")
-----------^
This should be a double space.
> + (license license:gpl2+)))
> +
> (define-public gzip
> (package
> (name "gzip")
Attached is a new patch.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-fastjar.patch --]
[-- Type: text/x-patch, Size: 1489 bytes --]
From 665276ee18c921708364a9fe18c2bf458463b5b3 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
Date: Mon, 22 Dec 2014 18:03:02 +0100
Subject: [PATCH] gnu: Add fastjar.
* gnu/packages/compression.scm (fastjar): New variable.
---
gnu/packages/compression.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 7c22300..f2736b9 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -70,6 +70,26 @@ independent of the input data and can be reduced, if necessary, at some cost
in compression.")
(license license:zlib)))
+(define-public fastjar
+ (package
+ (name "fastjar")
+ (version "0.98")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/fastjar/fastjar-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
+ (build-system gnu-build-system)
+ (inputs `(("zlib" ,zlib)))
+ (home-page "http://savannah.nongnu.org/projects/fastjar")
+ (synopsis "Replacement for Sun's 'jar' utility")
+ (description
+ "FastJar is an attempt to create a much faster replacement for Sun's 'jar'
+utility. Instead of being written in Java, FastJar is written in C.")
+ (license license:gpl2+)))
+
(define-public gzip
(package
(name "gzip")
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add fastjar
2014-12-22 17:19 ` Ricardo Wurmus
@ 2014-12-26 21:54 ` Ludovic Courtès
0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2014-12-26 21:54 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> skribis:
> From 665276ee18c921708364a9fe18c2bf458463b5b3 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
> Date: Mon, 22 Dec 2014 18:03:02 +0100
> Subject: [PATCH] gnu: Add fastjar.
>
> * gnu/packages/compression.scm (fastjar): New variable.
LGTM, applied.
Thanks, and sorry for the delay!
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-26 21:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-22 17:03 [PATCH] gnu: Add fastjar Ricardo Wurmus
2014-12-22 17:19 ` Ricardo Wurmus
2014-12-26 21:54 ` Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.