From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] Add libiax Date: Tue, 31 May 2016 12:25:55 -0400 Message-ID: <20160531162555.GA32099@jasmine> References: <87shx17pbq.fsf@openmailbox.org> <20160529005554.GA20220@jasmine> <878tyrwck5.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="WIyZ46R2i8wDzkSu" Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7mUc-0002sS-S2 for guix-devel@gnu.org; Tue, 31 May 2016 12:26:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7mUY-0000vD-Cm for guix-devel@gnu.org; Tue, 31 May 2016 12:26:09 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:55587) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7mUW-0000tx-1z for guix-devel@gnu.org; Tue, 31 May 2016 12:26:06 -0400 Content-Disposition: inline In-Reply-To: <878tyrwck5.fsf@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Lukas Gradl Cc: guix-devel@gnu.org --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, May 30, 2016 at 02:50:02PM -0500, Lukas Gradl wrote: > * gnu/packages/telephony.scm (libiax): New variable. > + (license lgpl2.0)))) In my final review, I found that some source files are licensed under the GPL (no version specified) as well as one public-domain file. The details are in the attached patch revision. Since I don't understand the fine points of these things, I ask the group: can a source distribution be LGPL 2.0 and include GPL components? --WIyZ46R2i8wDzkSu Content-Type: text/x-diff; charset=iso-8859-1 Content-Disposition: attachment; filename="0001-gnu-telephony-Add-libiax.patch" Content-Transfer-Encoding: 8bit >From c2d8163b0d2b9400582266d9fca8f8df3be9ac4e Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Mon, 30 May 2016 14:40:51 -0500 Subject: [PATCH] gnu: telephony: Add libiax. * gnu/packages/telephony.scm (libiax): New variable. Signed-off-by: Leo Famulari --- gnu/packages/telephony.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index 50a83fb..2676bdc 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 David Hashe ;;; Copyright © 2015 Efraim Flashner +;;; Copyright © 2016 Lukas Gradl ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,6 +22,7 @@ (define-module (gnu packages telephony) #:use-module (gnu packages) + #:use-module (gnu packages autotools) #:use-module (gnu packages gnupg) #:use-module (gnu packages linux) #:use-module (gnu packages pkg-config) @@ -211,3 +213,43 @@ Real-time Transport Protocol (SRTP), the Universal Security Transform (UST), and a supporting cryptographic kernel.") (home-page "https://github.com/cisco/libsrtp") (license bsd-3))) + +(define-public libiax + (let ((commit "0e5980f1d78ce462e2d1ed6bc39ff35c8341f201")) + ;; This is the commit used by the Ring Project. + (package + (name "libiax") + (version (string-append "0.0.0-1." (string-take commit 7))) + (source + (origin + (method url-fetch) + (uri + (string-append + "https://gitlab.savoirfairelinux.com/sflphone/libiax2/" + "repository/archive.tar.gz?ref=" + commit)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0cj5293bixp3k5x3hjwyd0iq7z8w5p7yavxvvkqk5817hjq386y2")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + (arguments + `(#:phases (modify-phases %standard-phases + (add-before 'configure 'autoconf + (lambda _ + (zero? (system* "autoreconf" "-vfi"))))))) + (home-page "https://gitlab.savoirfairelinux.com/sflphone/libiax2") + (synopsis "Inter-Asterisk-Protocol library") + (description "LibIAX implements the Inter-Asterisk-Protocol for relaying +Voice-over-IP (VoIP) communications.") + + ;; The file 'src/md5.c' is released into the public domain by RSA Data + ;; Security. The files 'src/answer.h', 'src/miniphone.c', + ;; 'src/options.c', 'src/options.h', 'src/ring10.h', 'src/winiphone.c' are + ;; covered under the 'GPL'. + ;; The package as a whole is distributed under the LGPL 2.0. + (license (list lgpl2.0 public-domain gpl2+))))) -- 2.8.3 --WIyZ46R2i8wDzkSu--