From patchwork Fri Sep 9 19:52:24 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Andy Patterson X-Patchwork-Id: 15474 Received: (qmail 112976 invoked by uid 89); 9 Sep 2016 20:55:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=D*ca, mpeg X-Spam-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 09 Sep 2016 20:55:09 +0000 Received: from localhost ([::1]:60185 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biSpH-0007Qn-8N for patchwork@sourceware.org; Fri, 09 Sep 2016 16:55:07 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55980) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biSVh-0006QN-Q9 for guix-devel@gnu.org; Fri, 09 Sep 2016 16:34:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biSVe-0005XW-It for guix-devel@gnu.org; Fri, 09 Sep 2016 16:34:53 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:55169 helo=minos.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biSVe-0005XD-Dq for guix-devel@gnu.org; Fri, 09 Sep 2016 16:34:50 -0400 Received: from jalisou.gateway.2wire.net (bas1-jockvale05-3096538526.dsl.bell.ca [184.145.109.158]) (authenticated bits=0) by minos.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id u89Jrmtw003560 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Fri, 9 Sep 2016 15:53:55 -0400 From: Andy Patterson To: guix-devel@gnu.org Subject: [PATCH 1/3] gnu: Add libbdplus. Date: Fri, 9 Sep 2016 15:52:24 -0400 Message-Id: <20160909195226.24339-1-ajpatter@uwaterloo.ca> X-Mailer: git-send-email 2.10.0 MIME-Version: 1.0 X-UUID: 8cab553b-ab24-458d-bd92-66e11388be86 X-MIME-Autoconverted: from 8bit to quoted-printable by minos.uwaterloo.ca id u89Jrmtw003560 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 129.97.128.141 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" * gnu/packages/video.scm (libbdplus): New variable. --- gnu/packages/video.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 864e691..a6eac2b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2016 Kei Kebreau ;;; Copyright © 2016 Dmitry Nikolaev +;;; Copyright © 2016 Andy Patterson ;;; ;;; This file is part of GNU Guix. ;;; @@ -1587,3 +1588,23 @@ and MPEG system streams.") license:lgpl2.1 license:lgpl2.1+ license:gpl2)))) + +(define-public libbdplus + (package + (name "libbdplus") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (string-append "ftp://ftp.videolan.org/pub/videolan/libbdplus/" + version "/" name "-" version ".tar.bz2")) + (sha256 + (base32 "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6")))) + (inputs + `(("libgcrypt" ,libgcrypt))) + (build-system gnu-build-system) + (home-page "http://www.videolan.org/developers/libbdplus.html") + (synopsis "Library for decrypting certain Blu-Ray discs") + (description "libbdplus is a library which implements the BD+ System +specifications.") + (license license:lgpl2.1+)))