me
/
guix
Archived
1
0
Fork 0

gnu: Use define-public in (gnu packages xiph).

* gnu/pakages/xiph.scm: Replace all manual package #:exports with
define-public.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
master
Brendan Tildesley 2021-05-19 20:44:12 +10:00 committed by Mathieu Othacehe
parent bb934ab79d
commit 29745d23b8
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 14 additions and 25 deletions

View File

@ -10,6 +10,7 @@
;;; Copyright © 20182021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 20182021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -44,21 +45,9 @@
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu))
#:export (libogg
libvorbis
libtheora
speex
speexdsp
ao
flac
libkate
vorbis-tools
opus
opusfile
opus-tools))
(define libogg (define-public libogg
(package (package
(name "libogg") (name "libogg")
(version "1.3.4") (version "1.3.4")
@ -83,7 +72,7 @@ periodic timestamps for seeking.")
"See COPYING in the distribution.")) "See COPYING in the distribution."))
(home-page "https://xiph.org/ogg/"))) (home-page "https://xiph.org/ogg/")))
(define libvorbis (define-public libvorbis
(package (package
(name "libvorbis") (name "libvorbis")
(version "1.3.7") (version "1.3.7")
@ -110,7 +99,7 @@ polyphonic) audio and music at fixed and variable bitrates from 16 to
"See COPYING in the distribution.")) "See COPYING in the distribution."))
(home-page "https://xiph.org/vorbis/"))) (home-page "https://xiph.org/vorbis/")))
(define libtheora (define-public libtheora
(package (package
(name "libtheora") (name "libtheora")
(version "1.1.1") (version "1.1.1")
@ -136,7 +125,7 @@ compressed video format.")
(license license:bsd-3) (license license:bsd-3)
(home-page "https://xiph.org/theora/"))) (home-page "https://xiph.org/theora/")))
(define speex (define-public speex
(package (package
(name "speex") (name "speex")
(version "1.2.0") (version "1.2.0")
@ -167,7 +156,7 @@ stereo encoding, and voice activity detection.")
(license (license:non-copyleft "file://COPYING" (license (license:non-copyleft "file://COPYING"
"See COPYING in the distribution.")))) "See COPYING in the distribution."))))
(define speexdsp (define-public speexdsp
(package (package
(name "speexdsp") (name "speexdsp")
(version "1.2.0") (version "1.2.0")
@ -193,7 +182,7 @@ work from the @code{speex} codec.")
(license (license:non-copyleft "file://COPYING" (license (license:non-copyleft "file://COPYING"
"See COPYING in the distribution.")))) "See COPYING in the distribution."))))
(define ao (define-public ao
(package (package
(name "ao") (name "ao")
;; We need a few commits on top of 1.2.2 to fix CVE-2017-11548. ;; We need a few commits on top of 1.2.2 to fix CVE-2017-11548.
@ -249,7 +238,7 @@ It currently supports:
(properties '((cpe-name . "libao"))) (properties '((cpe-name . "libao")))
(home-page "https://www.xiph.org/ao/"))) (home-page "https://www.xiph.org/ao/")))
(define flac (define-public flac
(package (package
(name "flac") (name "flac")
(version "1.3.3") (version "1.3.3")
@ -273,7 +262,7 @@ meaning that audio is compressed in FLAC without any loss in quality.")
"See COPYING in the distribution.")) ; and LGPL and GPL "See COPYING in the distribution.")) ; and LGPL and GPL
(home-page "https://xiph.org/flac/"))) (home-page "https://xiph.org/flac/")))
(define libkate (define-public libkate
(package (package
(name "libkate") (name "libkate")
(version "0.4.1") (version "0.4.1")
@ -309,7 +298,7 @@ Kate stream.")
(license license:bsd-3) (license license:bsd-3)
(home-page "https://wiki.xiph.org/OggKate"))) (home-page "https://wiki.xiph.org/OggKate")))
(define vorbis-tools (define-public vorbis-tools
(package (package
(name "vorbis-tools") (name "vorbis-tools")
(version "1.4.2") (version "1.4.2")
@ -343,7 +332,7 @@ ogginfo, to obtain information (tags, bitrate, length, etc.) about
(license license:gpl2) (license license:gpl2)
(home-page "https://xiph.org/vorbis/"))) (home-page "https://xiph.org/vorbis/")))
(define opus (define-public opus
(package (package
(name "opus") (name "opus")
(version "1.3.1") (version "1.3.1")
@ -367,7 +356,7 @@ incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.")
(license license:bsd-3) (license license:bsd-3)
(home-page "https://www.opus-codec.org"))) (home-page "https://www.opus-codec.org")))
(define opus-tools (define-public opus-tools
(package (package
(name "opus-tools") (name "opus-tools")
(version "0.2") (version "0.2")
@ -403,7 +392,7 @@ decoding .opus files.")
(license license:bsd-3) (license license:bsd-3)
(home-page "https://www.opus-codec.org"))) (home-page "https://www.opus-codec.org")))
(define opusfile (define-public opusfile
(package (package
(name "opusfile") (name "opusfile")
(version "0.12") (version "0.12")