gnu: Move Perl compression packages to new module.
* gnu/packages/compression.scm (perl-compress-raw-bzip2, perl-compress-raw-zlib, perl-io-compress, perl-archive-zip, perl-archive-extract): Move from here... * gnu/packages/perl-compression.scm: ...to this new file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu/packages/ci.scm, gnu/packages/libreoffice.scm, gnu/packages/perl.scm: Adjust references.
This commit is contained in:
parent
b80ecc5a63
commit
21b41a79fe
@ -348,6 +348,7 @@ GNU_SYSTEM_MODULES = \
|
|||||||
%D%/packages/pem.scm \
|
%D%/packages/pem.scm \
|
||||||
%D%/packages/perl.scm \
|
%D%/packages/perl.scm \
|
||||||
%D%/packages/perl-check.scm \
|
%D%/packages/perl-check.scm \
|
||||||
|
%D%/packages/perl-compression.scm \
|
||||||
%D%/packages/perl-web.scm \
|
%D%/packages/perl-web.scm \
|
||||||
%D%/packages/photo.scm \
|
%D%/packages/photo.scm \
|
||||||
%D%/packages/phabricator.scm \
|
%D%/packages/phabricator.scm \
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
#:use-module (gnu packages mail)
|
#:use-module (gnu packages mail)
|
||||||
#:use-module (gnu packages package-management)
|
#:use-module (gnu packages package-management)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
#:use-module (gnu packages perl-compression)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
|
@ -47,7 +47,6 @@
|
|||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system perl)
|
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages assembly)
|
#:use-module (gnu packages assembly)
|
||||||
@ -60,7 +59,6 @@
|
|||||||
#:use-module (gnu packages file)
|
#:use-module (gnu packages file)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages perl-check)
|
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
@ -710,84 +708,6 @@ sfArk file format to the uncompressed sf2 format.")
|
|||||||
decompression of some loosely related file formats used by Microsoft.")
|
decompression of some loosely related file formats used by Microsoft.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public perl-compress-raw-bzip2
|
|
||||||
(package
|
|
||||||
(name "perl-compress-raw-bzip2")
|
|
||||||
(version "2.081")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
|
||||||
"Compress-Raw-Bzip2-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"081mpkjy688lg48997fqh3d7ja12vazmz02fw84495civg4vb4l6"))))
|
|
||||||
(build-system perl-build-system)
|
|
||||||
;; TODO: Use our bzip2 package.
|
|
||||||
(home-page "https://metacpan.org/release/Compress-Raw-Bzip2")
|
|
||||||
(synopsis "Low-level interface to bzip2 compression library")
|
|
||||||
(description "This module provides a Perl interface to the bzip2
|
|
||||||
compression library.")
|
|
||||||
(license license:perl-license)))
|
|
||||||
|
|
||||||
(define-public perl-compress-raw-zlib
|
|
||||||
(package
|
|
||||||
(name "perl-compress-raw-zlib")
|
|
||||||
(version "2.081")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
|
||||||
"Compress-Raw-Zlib-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"06rsm9ahp20xfyvd3jc69sd0k8vqysryxc6apzdbn96jbcsdwmp1"))))
|
|
||||||
(build-system perl-build-system)
|
|
||||||
(inputs
|
|
||||||
`(("zlib" ,zlib)))
|
|
||||||
(arguments
|
|
||||||
`(#:phases (modify-phases %standard-phases
|
|
||||||
(add-before
|
|
||||||
'configure 'configure-zlib
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(call-with-output-file "config.in"
|
|
||||||
(lambda (port)
|
|
||||||
(format port "
|
|
||||||
BUILD_ZLIB = False
|
|
||||||
INCLUDE = ~a/include
|
|
||||||
LIB = ~:*~a/lib
|
|
||||||
OLD_ZLIB = False
|
|
||||||
GZIP_OS_CODE = AUTO_DETECT"
|
|
||||||
(assoc-ref inputs "zlib"))))
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://metacpan.org/release/Compress-Raw-Zlib")
|
|
||||||
(synopsis "Low-level interface to zlib compression library")
|
|
||||||
(description "This module provides a Perl interface to the zlib
|
|
||||||
compression library.")
|
|
||||||
(license license:perl-license)))
|
|
||||||
|
|
||||||
(define-public perl-io-compress
|
|
||||||
(package
|
|
||||||
(name "perl-io-compress")
|
|
||||||
(version "2.081")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
|
||||||
"IO-Compress-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1na66ns1g3nni0m9q5494ym4swr21hfgpv88mw8wbj2daiswf4aj"))))
|
|
||||||
(build-system perl-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
`(("perl-compress-raw-zlib" ,perl-compress-raw-zlib) ; >=2.081
|
|
||||||
("perl-compress-raw-bzip2" ,perl-compress-raw-bzip2))) ; >=2.081
|
|
||||||
(home-page "https://metacpan.org/release/IO-Compress")
|
|
||||||
(synopsis "IO Interface to compressed files/buffers")
|
|
||||||
(description "IO-Compress provides a Perl interface to allow reading and
|
|
||||||
writing of compressed data created with the zlib and bzip2 libraries.")
|
|
||||||
(license license:perl-license)))
|
|
||||||
|
|
||||||
(define-public lz4
|
(define-public lz4
|
||||||
(package
|
(package
|
||||||
(name "lz4")
|
(name "lz4")
|
||||||
@ -1762,29 +1682,6 @@ recreates the stored directory structure by default.")
|
|||||||
;; files carry the Zlib license; see "docs/copying.html" for details.
|
;; files carry the Zlib license; see "docs/copying.html" for details.
|
||||||
(license (list license:lgpl2.0+ license:mpl1.1))))
|
(license (list license:lgpl2.0+ license:mpl1.1))))
|
||||||
|
|
||||||
(define-public perl-archive-zip
|
|
||||||
(package
|
|
||||||
(name "perl-archive-zip")
|
|
||||||
(version "1.64")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append
|
|
||||||
"mirror://cpan/authors/id/P/PH/PHRED/Archive-Zip-"
|
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0zfinh8nx3rxzscp57vq3w8hihpdb0zs67vvalykcf402kr88pyy"))))
|
|
||||||
(build-system perl-build-system)
|
|
||||||
(native-inputs
|
|
||||||
;; For tests.
|
|
||||||
`(("perl-test-mockmodule" ,perl-test-mockmodule)))
|
|
||||||
(synopsis "Provides an interface to Zip archive files")
|
|
||||||
(description "The @code{Archive::Zip} module allows a Perl program to
|
|
||||||
create, manipulate, read, and write Zip archive files.")
|
|
||||||
(home-page "https://metacpan.org/release/Archive-Zip")
|
|
||||||
(license license:perl-license)))
|
|
||||||
|
|
||||||
(define-public libzip
|
(define-public libzip
|
||||||
(package
|
(package
|
||||||
(name "libzip")
|
(name "libzip")
|
||||||
@ -1845,27 +1742,6 @@ to handle the archives, not all commands may be supported for a certain type
|
|||||||
of archives.")
|
of archives.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public perl-archive-extract
|
|
||||||
(package
|
|
||||||
(name "perl-archive-extract")
|
|
||||||
(version "0.80")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Archive-Extract-"
|
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1x15j1q6w6z8hqyqgap0lz4qbq2174wfhksy1fdd653ccbaw5jr5"))))
|
|
||||||
(build-system perl-build-system)
|
|
||||||
(home-page "https://metacpan.org/release/Archive-Extract")
|
|
||||||
(synopsis "Generic archive extracting mechanism")
|
|
||||||
(description "It allows you to extract any archive file of the type .tar,
|
|
||||||
.tar.gz, .gz, .Z, tar.bz2, .tbz, .bz2, .zip, .xz,, .txz, .tar.xz or .lzma
|
|
||||||
without having to worry how it does so, or use different interfaces for each
|
|
||||||
type by using either Perl modules, or command-line tools on your system.")
|
|
||||||
(license license:perl-license)))
|
|
||||||
|
|
||||||
(define-public lunzip
|
(define-public lunzip
|
||||||
(package
|
(package
|
||||||
(name "lunzip")
|
(name "lunzip")
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2017, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2018 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2018 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
@ -70,6 +70,7 @@
|
|||||||
#:use-module (gnu packages openldap)
|
#:use-module (gnu packages openldap)
|
||||||
#:use-module (gnu packages pdf)
|
#:use-module (gnu packages pdf)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
#:use-module (gnu packages perl-compression)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages rdf)
|
#:use-module (gnu packages rdf)
|
||||||
|
154
gnu/packages/perl-compression.scm
Normal file
154
gnu/packages/perl-compression.scm
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
||||||
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
||||||
|
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2017 Petter <petter@mykolab.ch>
|
||||||
|
;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;;
|
||||||
|
;;; This file is part of GNU Guix.
|
||||||
|
;;;
|
||||||
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||||||
|
;;; under the terms of the GNU General Public License as published by
|
||||||
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||||
|
;;; your option) any later version.
|
||||||
|
;;;
|
||||||
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||||||
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
;;; GNU General Public License for more details.
|
||||||
|
;;;
|
||||||
|
;;; You should have received a copy of the GNU General Public License
|
||||||
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
(define-module (gnu packages perl-compression)
|
||||||
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (guix utils)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix build-system perl)
|
||||||
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages perl)
|
||||||
|
#:use-module (gnu packages perl-check))
|
||||||
|
|
||||||
|
(define-public perl-compress-raw-bzip2
|
||||||
|
(package
|
||||||
|
(name "perl-compress-raw-bzip2")
|
||||||
|
(version "2.081")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
||||||
|
"Compress-Raw-Bzip2-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"081mpkjy688lg48997fqh3d7ja12vazmz02fw84495civg4vb4l6"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
;; TODO: Use our bzip2 package.
|
||||||
|
(home-page "https://metacpan.org/release/Compress-Raw-Bzip2")
|
||||||
|
(synopsis "Low-level interface to bzip2 compression library")
|
||||||
|
(description "This module provides a Perl interface to the bzip2
|
||||||
|
compression library.")
|
||||||
|
(license license:perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-compress-raw-zlib
|
||||||
|
(package
|
||||||
|
(name "perl-compress-raw-zlib")
|
||||||
|
(version "2.081")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
||||||
|
"Compress-Raw-Zlib-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"06rsm9ahp20xfyvd3jc69sd0k8vqysryxc6apzdbn96jbcsdwmp1"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("zlib" ,zlib)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-before
|
||||||
|
'configure 'configure-zlib
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(call-with-output-file "config.in"
|
||||||
|
(lambda (port)
|
||||||
|
(format port "
|
||||||
|
BUILD_ZLIB = False
|
||||||
|
INCLUDE = ~a/include
|
||||||
|
LIB = ~:*~a/lib
|
||||||
|
OLD_ZLIB = False
|
||||||
|
GZIP_OS_CODE = AUTO_DETECT"
|
||||||
|
(assoc-ref inputs "zlib"))))
|
||||||
|
#t)))))
|
||||||
|
(home-page "https://metacpan.org/release/Compress-Raw-Zlib")
|
||||||
|
(synopsis "Low-level interface to zlib compression library")
|
||||||
|
(description "This module provides a Perl interface to the zlib
|
||||||
|
compression library.")
|
||||||
|
(license license:perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-io-compress
|
||||||
|
(package
|
||||||
|
(name "perl-io-compress")
|
||||||
|
(version "2.081")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
|
||||||
|
"IO-Compress-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1na66ns1g3nni0m9q5494ym4swr21hfgpv88mw8wbj2daiswf4aj"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-compress-raw-zlib" ,perl-compress-raw-zlib) ; >=2.081
|
||||||
|
("perl-compress-raw-bzip2" ,perl-compress-raw-bzip2))) ; >=2.081
|
||||||
|
(home-page "https://metacpan.org/release/IO-Compress")
|
||||||
|
(synopsis "IO Interface to compressed files/buffers")
|
||||||
|
(description "IO-Compress provides a Perl interface to allow reading and
|
||||||
|
writing of compressed data created with the zlib and bzip2 libraries.")
|
||||||
|
(license license:perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-archive-extract
|
||||||
|
(package
|
||||||
|
(name "perl-archive-extract")
|
||||||
|
(version "0.80")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Archive-Extract-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1x15j1q6w6z8hqyqgap0lz4qbq2174wfhksy1fdd653ccbaw5jr5"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "https://metacpan.org/release/Archive-Extract")
|
||||||
|
(synopsis "Generic archive extracting mechanism")
|
||||||
|
(description "It allows you to extract any archive file of the type .tar,
|
||||||
|
.tar.gz, .gz, .Z, tar.bz2, .tbz, .bz2, .zip, .xz,, .txz, .tar.xz or .lzma
|
||||||
|
without having to worry how it does so, or use different interfaces for each
|
||||||
|
type by using either Perl modules, or command-line tools on your system.")
|
||||||
|
(license license:perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-archive-zip
|
||||||
|
(package
|
||||||
|
(name "perl-archive-zip")
|
||||||
|
(version "1.64")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/P/PH/PHRED/Archive-Zip-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0zfinh8nx3rxzscp57vq3w8hihpdb0zs67vvalykcf402kr88pyy"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(native-inputs
|
||||||
|
;; For tests.
|
||||||
|
`(("perl-test-mockmodule" ,perl-test-mockmodule)))
|
||||||
|
(synopsis "Provides an interface to Zip archive files")
|
||||||
|
(description "The @code{Archive::Zip} module allows a Perl program to
|
||||||
|
create, manipulate, read, and write Zip archive files.")
|
||||||
|
(home-page "https://metacpan.org/release/Archive-Zip")
|
||||||
|
(license license:perl-license)))
|
@ -1,7 +1,7 @@
|
|||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
@ -50,6 +50,7 @@
|
|||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages freedesktop)
|
#:use-module (gnu packages freedesktop)
|
||||||
#:use-module (gnu packages perl-check)
|
#:use-module (gnu packages perl-check)
|
||||||
|
#:use-module (gnu packages perl-compression)
|
||||||
#:use-module (gnu packages perl-web)
|
#:use-module (gnu packages perl-web)
|
||||||
#:use-module (gnu packages pkg-config))
|
#:use-module (gnu packages pkg-config))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user