* [PATCH] gnu: Add libmspack.
@ 2015-02-21 23:18 Taylan Ulrich Bayırlı/Kammer
2015-02-21 23:36 ` David Thompson
0 siblings, 1 reply; 6+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-21 23:18 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: patch --]
[-- Type: text/x-diff, Size: 1860 bytes --]
From 27f76fe6aa98efe0259258e81065b1020c5b2290 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<taylanbayirli@gmail.com>
Date: Fri, 20 Feb 2015 15:13:34 +0100
Subject: [PATCH 2/9] gnu: Add libmspack.
* gnu/packages/compression.scm (libmspack): New variable.
---
gnu/packages/compression.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index cda1984..47a0361 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -324,3 +325,21 @@ processed by a Bourne-type shell to unpack the original collection of files.
This package is mostly for compatibility and historical interest.")
(license license:gpl3+)))
+(define-public libmspack
+ (package
+ (name "libmspack")
+ (version "0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://www.cabextract.org.uk/libmspack/libmspack-"
+ version "alpha.tar.gz"))
+ (sha256
+ (base32 "04413hynb7zizxnkgy9riik3612dwirkpr6fcjrnfl2za9sz4rw9"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.cabextract.org.uk/libmspack/")
+ (synopsis "Compression tools for some formats used by Microsoft")
+ (description
+ "The purpose of libmspack is to provide both compression and
+decompression of some loosely related file formats used by Microsoft.")
+ (license license:lgpl2.1+)))
--
2.2.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add libmspack.
2015-02-21 23:18 [PATCH] gnu: Add libmspack Taylan Ulrich Bayırlı/Kammer
@ 2015-02-21 23:36 ` David Thompson
2015-02-22 1:34 ` Taylan Ulrich Bayırlı/Kammer
0 siblings, 1 reply; 6+ messages in thread
From: David Thompson @ 2015-02-21 23:36 UTC (permalink / raw)
To: Taylan Ulrich Bayırlı/Kammer, guix-devel
"Taylan Ulrich Bayırlı/Kammer" <taylanbayirli@gmail.com> writes:
> From 27f76fe6aa98efe0259258e81065b1020c5b2290 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <taylanbayirli@gmail.com>
> Date: Fri, 20 Feb 2015 15:13:34 +0100
> Subject: [PATCH 2/9] gnu: Add libmspack.
>
> * gnu/packages/compression.scm (libmspack): New variable.
> ---
> gnu/packages/compression.scm | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
> index cda1984..47a0361 100644
> --- a/gnu/packages/compression.scm
> +++ b/gnu/packages/compression.scm
> @@ -2,6 +2,7 @@
> ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
> ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
> +;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -324,3 +325,21 @@ processed by a Bourne-type shell to unpack the original collection of files.
> This package is mostly for compatibility and historical interest.")
> (license license:gpl3+)))
>
> +(define-public libmspack
> + (package
> + (name "libmspack")
> + (version "0.5")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "http://www.cabextract.org.uk/libmspack/libmspack-"
> + version "alpha.tar.gz"))
Perhaps "alpha" should be part of the version?
> + (sha256
> + (base32 "04413hynb7zizxnkgy9riik3612dwirkpr6fcjrnfl2za9sz4rw9"))))
> + (build-system gnu-build-system)
> + (home-page "http://www.cabextract.org.uk/libmspack/")
> + (synopsis "Compression tools for some formats used by Microsoft")
> + (description
> + "The purpose of libmspack is to provide both compression and
> +decompression of some loosely related file formats used by Microsoft.")
> + (license license:lgpl2.1+)))
> --
> 2.2.1
>
>
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add libmspack.
2015-02-21 23:36 ` David Thompson
@ 2015-02-22 1:34 ` Taylan Ulrich Bayırlı/Kammer
2015-02-22 0:12 ` Eric Bavier
2015-02-22 10:35 ` Andreas Enge
0 siblings, 2 replies; 6+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-22 1:34 UTC (permalink / raw)
To: David Thompson; +Cc: guix-devel
David Thompson <dthompson2@worcester.edu> writes:
>> +(define-public libmspack
>> + (package
>> + (name "libmspack")
>> + (version "0.5")
>> + (source
>> + (origin
>> + (method url-fetch)
>> + (uri (string-append "http://www.cabextract.org.uk/libmspack/libmspack-"
>> + version "alpha.tar.gz"))
>
> Perhaps "alpha" should be part of the version?
I'm not sure, but I doubt there will be a "0.5beta" or so? What do
others think?
Taylan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add libmspack.
2015-02-22 1:34 ` Taylan Ulrich Bayırlı/Kammer
@ 2015-02-22 0:12 ` Eric Bavier
2015-02-22 10:35 ` Andreas Enge
1 sibling, 0 replies; 6+ messages in thread
From: Eric Bavier @ 2015-02-22 0:12 UTC (permalink / raw)
To: guix-devel
On Sun, 22 Feb 2015 02:34:18 +0100
taylanbayirli@gmail.com (Taylan Ulrich Bayırlı/Kammer) wrote:
> David Thompson <dthompson2@worcester.edu> writes:
>
> >> +(define-public libmspack
> >> + (package
> >> + (name "libmspack")
> >> + (version "0.5")
> >> + (source
> >> + (origin
> >> + (method url-fetch)
> >> + (uri (string-append
> >> "http://www.cabextract.org.uk/libmspack/libmspack-"
> >> + version "alpha.tar.gz"))
> >
> > Perhaps "alpha" should be part of the version?
>
> I'm not sure, but I doubt there will be a "0.5beta" or so? What do
> others think?
I also think it should be part of the version. They may release a
non-alpha 0.5 version, and having it in the version makes the alpha
quality more apparent to a user browsing 'guix package -A'.
`~Eric
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add libmspack.
2015-02-22 1:34 ` Taylan Ulrich Bayırlı/Kammer
2015-02-22 0:12 ` Eric Bavier
@ 2015-02-22 10:35 ` Andreas Enge
2015-02-22 12:05 ` Taylan Ulrich Bayırlı/Kammer
1 sibling, 1 reply; 6+ messages in thread
From: Andreas Enge @ 2015-02-22 10:35 UTC (permalink / raw)
To: Taylan Ulrich Bayırlı/Kammer; +Cc: guix-devel
Hello,
On Sun, Feb 22, 2015 at 02:34:18AM +0100, Taylan Ulrich Bayırlı/Kammer wrote:
> David Thompson <dthompson2@worcester.edu> writes:
> > Perhaps "alpha" should be part of the version?
> I'm not sure, but I doubt there will be a "0.5beta" or so? What do
> others think?
I had a look at the subversion repository; the version before seems to be
called "0.3alpha". So it looks like the "alpha" is just an additional
warning tag, and not a pre-version for a final version with the same number.
So I would suggest you push without the "alpha" in the version.
Andreas
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add libmspack.
2015-02-22 10:35 ` Andreas Enge
@ 2015-02-22 12:05 ` Taylan Ulrich Bayırlı/Kammer
0 siblings, 0 replies; 6+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-22 12:05 UTC (permalink / raw)
To: Andreas Enge; +Cc: guix-devel
Andreas Enge <andreas@enge.fr> writes:
> Hello,
>
> On Sun, Feb 22, 2015 at 02:34:18AM +0100, Taylan Ulrich Bayırlı/Kammer wrote:
>> David Thompson <dthompson2@worcester.edu> writes:
>> > Perhaps "alpha" should be part of the version?
>> I'm not sure, but I doubt there will be a "0.5beta" or so? What do
>> others think?
>
> I had a look at the subversion repository; the version before seems to be
> called "0.3alpha". So it looks like the "alpha" is just an additional
> warning tag, and not a pre-version for a final version with the same number.
> So I would suggest you push without the "alpha" in the version.
>
> Andreas
That's what I thought; thanks for confirming. Pushed.
Taylan
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-02-22 12:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-21 23:18 [PATCH] gnu: Add libmspack Taylan Ulrich Bayırlı/Kammer
2015-02-21 23:36 ` David Thompson
2015-02-22 1:34 ` Taylan Ulrich Bayırlı/Kammer
2015-02-22 0:12 ` Eric Bavier
2015-02-22 10:35 ` Andreas Enge
2015-02-22 12:05 ` Taylan Ulrich Bayırlı/Kammer
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.