unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ricardo Wurmus <rekado@elephly.net>
To: Roel Janssen <roel@gnu.org>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH] Add vcflib.
Date: Mon, 16 Jan 2017 23:04:27 +0100	[thread overview]
Message-ID: <87r3428xw4.fsf@elephly.net> (raw)
In-Reply-To: <87bn4w11lm.fsf@gnu.org>


Roel Janssen <roel@gnu.org> writes:

> Ricardo Wurmus writes:
>
>> Roel Janssen <roel@gnu.org> writes:
>>
>>> From e75aa388931c92657336c8a15f88b6a0273f5e02 Mon Sep 17 00:00:00 2001
>>> From: Roel Janssen <roel@gnu.org>
>>> Date: Tue, 22 Mar 2016 15:01:37 +0100
>>> Subject: [PATCH 2/8] gnu: Add smithwaterman.
>>
>>> * gnu/packages/bioinformatics.scm (smithwaterman): New variable.
>>> ---
>>>  gnu/packages/bioinformatics.scm | 31 +++++++++++++++++++++++++++++++
>>>  1 file changed, 31 insertions(+)
>>
>>> diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
>>> index 6792be9..fa7ba24 100644
>>> --- a/gnu/packages/bioinformatics.scm
>>> +++ b/gnu/packages/bioinformatics.scm
>>> @@ -4830,3 +4830,34 @@ group or two ChIP groups run under different conditions.")
>>>     (description "This is a C++ wrapper around the Tabix project which abstracts
>>>  some of the details of opening and jumping in tabix-indexed files.")
>>>     (license license:expat)))
>>> +
>>> +(define-public smithwaterman
>>> +  (let ((commit "203218b47d45ac56ef234716f1bd4c741b289be1"))
>>
>> As there have been new commits since you posted this patch could you add
>> a comment that explains why it should be this particular commit?  Is it
>> because this is the version of the submodule of vcflib?
>
> That is the reason.  I will add a comment in the next patch I send.
>
>>> +    (package
>>> +      (name "smithwaterman")
>>> +      (version (string-append "0-1." (string-take commit 7)))
>>> +      (source (origin
>>> +        (method url-fetch)
>>> +        (uri (string-append "https://github.com/ekg/smithwaterman/archive/"
>>> +                            commit ".tar.gz"))
>>> +        (file-name (string-append name "-" version "-checkout.tar.gz"))
>>> +        (sha256
>>> +         (base32 "1lkxy4xkjn96l70jdbsrlm687jhisgw4il0xr2dm33qwcclzzm3b"))))
>>> +      (build-system gnu-build-system)
>>> +      (arguments
>>> +       `(#:tests? #f ; There are no tests to run.
>>> +         #:phases
>>> +         (modify-phases %standard-phases
>>> +           (delete 'configure) ; There is no configure phase.
>>> +           (replace 'install
>>> +             (lambda* (#:key outputs #:allow-other-keys)
>>> +               (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
>>> +                 (install-file "smithwaterman" bin)))))))
>>> +      (home-page "https://github.com/ekg/smithwaterman")
>>> +      (synopsis "Implementation of the Smith-Waterman algorithm")
>>> +      (description "This package provides an implementation of the Smith-Waterman
>>> +algorithm.")
>>> +      ;; libdisorder is licensed GPLv2.  The parent project (vcflib), of which
>>> +      ;; this program is a submodule, is licensed MIT, which is the same as
>>> +      ;; the Expat license.
>>> +      (license (list license:gpl2 license:expat)))))
>>
>> As far as I can see the license is GPLv2+ as it doesn’t specifically
>> restricts users to version 2.
>>
>> The license of the parent project doesn’t matter in this case, so
>> “(license license:gpl2+)” would seem to be enough.
>
> Where can you see that it's GPLv2+?  I haven't found any licensing
> information other than libdisorder.
>
> I contacted the author about this.  I'm confident it's not an
> intentional nonfree program, but we will have to wait and see.

I see that you’ve opened an issue on Github.  The project now contains a
LICENSE file with the text of the Expat license.  It would be better if
the author clearly stated that the LICENSE file does in fact apply to
the source files in the repository (either in a README or in file
headers).

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
http://elephly.net

  reply	other threads:[~2017-01-16 22:04 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-22 15:24 [PATCH] Add vcflib Roel Janssen
2016-03-23 13:49 ` Ricardo Wurmus
2016-04-20 12:39   ` Roel Janssen
2016-04-20 12:46 ` Ricardo Wurmus
2016-04-22  7:24   ` Roel Janssen
2016-04-26 14:47     ` Ricardo Wurmus
2016-04-26 17:31       ` Roel Janssen
2017-01-16 21:59         ` Ricardo Wurmus
2016-04-20 12:49 ` Ricardo Wurmus
2016-04-26 21:50   ` Roel Janssen
2017-01-16 22:04     ` Ricardo Wurmus [this message]
2016-04-20 12:53 ` Ricardo Wurmus
2016-04-22  7:40   ` Roel Janssen
2016-04-26 14:47     ` Ricardo Wurmus
2016-04-26 17:37       ` Roel Janssen
2017-01-16 21:56         ` Ricardo Wurmus
2016-04-20 12:56 ` Ricardo Wurmus
2016-04-20 12:58 ` Ricardo Wurmus
2016-04-22  8:04   ` Roel Janssen
2016-04-22 11:27     ` Ricardo Wurmus
2016-04-25  9:20       ` Roel Janssen
2016-04-26 14:42         ` Ricardo Wurmus
2016-04-20 13:06 ` Ricardo Wurmus
2016-04-20 13:08 ` Ricardo Wurmus
2016-04-26 17:50   ` Roel Janssen
2016-04-26 17:51     ` Roel Janssen
2017-01-16 21:54       ` Ricardo Wurmus
2017-01-17 21:57         ` Roel Janssen
2017-01-18  8:24           ` Ricardo Wurmus
2016-04-20 13:18 ` Ricardo Wurmus

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=87r3428xw4.fsf@elephly.net \
    --to=rekado@elephly.net \
    --cc=guix-devel@gnu.org \
    --cc=roel@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).