From 9f04fc304fc00b14563deea27748893a8296c5e5 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 17 Oct 2022 19:22:27 -0300 Subject: src/xyz/euandreh/: Merge docs.scm and rg.scm into pending.scm --- src/xyz/euandreh/docs.scm | 44 ------------------------------- src/xyz/euandreh/pending.scm | 63 ++++++++++++++++++++++++++++++++++++++++++++ src/xyz/euandreh/rg.scm | 31 ---------------------- 3 files changed, 63 insertions(+), 75 deletions(-) delete mode 100644 src/xyz/euandreh/docs.scm create mode 100644 src/xyz/euandreh/pending.scm delete mode 100644 src/xyz/euandreh/rg.scm (limited to 'src/xyz/euandreh') diff --git a/src/xyz/euandreh/docs.scm b/src/xyz/euandreh/docs.scm deleted file mode 100644 index 82b74d9..0000000 --- a/src/xyz/euandreh/docs.scm +++ /dev/null @@ -1,44 +0,0 @@ -(define-module (xyz euandreh docs) - #:use-module (gnu packages base) - #:use-module (gnu packages compression) - #:use-module (gnu packages markup) - #:use-module (gnu packages perl) - #:use-module (gnu packages perl-check) - #:use-module (guix licenses) - #:use-module (guix download) - #:use-module (guix packages) - #:use-module (guix build-system gnu) - #:use-module (guix build-system perl) - #:use-module (guix build-system trivial)) - -;; Remove once https://issues.guix.gnu.org/58588 is applied -(define-public perl-commonmark - (package - (name "perl-commonmark") - (version "0.290000") - (source (origin - (method url-fetch) - (uri (string-append - "mirror://cpan/authors/id/N/NW/NWELLNHOF/CommonMark-" - version ".tar.gz")) - (sha256 - (base32 - "1pgaqa4f00i9r5z7l9xiya0q51ysq0nhpvgr0f3rza3cxz1v80d5")))) - (build-system perl-build-system) - (arguments - `(#:make-maker-flags - ;; facepalm, MakeMaker ignores LIBRARY_PATH! - (list (format #f "LIBS=-L~a/lib -lcmark" (assoc-ref %build-inputs "cmark"))))) - (inputs - (list cmark - perl-test-leaktrace - perl-devel-checklib - perl-module-build)) - (home-page "https://metacpan.org/release/CommonMark") - (synopsis "Interface to the CommonMark C library") - (description "This module is a wrapper around the official -CommonMark C library libcmark. It closely follows the original API.") - (license perl-license))) - -(list - perl-commonmark) diff --git a/src/xyz/euandreh/pending.scm b/src/xyz/euandreh/pending.scm new file mode 100644 index 0000000..3b83085 --- /dev/null +++ b/src/xyz/euandreh/pending.scm @@ -0,0 +1,63 @@ +(define-module (xyz euandreh pending) + #:use-module ((guix licenses) #:prefix licenses:) + #:use-module (gnu packages markup) + #:use-module (gnu packages perl) + #:use-module (gnu packages perl-check) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix build-system perl)) + +;; Remove once https://issues.guix.gnu.org/58588 is applied +(define-public perl-commonmark + (package + (name "perl-commonmark") + (version "0.290000") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/N/NW/NWELLNHOF/CommonMark-" + version ".tar.gz")) + (sha256 + (base32 + "1pgaqa4f00i9r5z7l9xiya0q51ysq0nhpvgr0f3rza3cxz1v80d5")))) + (build-system perl-build-system) + (arguments + `(#:make-maker-flags + ;; facepalm, MakeMaker ignores LIBRARY_PATH! + (list (format #f "LIBS=-L~a/lib -lcmark" (assoc-ref %build-inputs "cmark"))))) + (inputs + (list cmark + perl-test-leaktrace + perl-devel-checklib + perl-module-build)) + (home-page "https://metacpan.org/release/CommonMark") + (synopsis "Interface to the CommonMark C library") + (description "This module is a wrapper around the official +CommonMark C library libcmark. It closely follows the original API.") + (license licenses:perl-license))) + +;; Remove once https://issues.guix.gnu.org/58593 is applied +(define-public perl-regexp-grammars + (package + (name "perl-regexp-grammars") + (version "1.057") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DC/DCONWAY/Regexp-Grammars-" + version + ".tar.gz")) + (sha256 + (base32 "0hbh2yn39mg6ljg8srcgpz2fsqxlzpgljz5mmq0xf72632cc2lxg")))) + (build-system perl-build-system) + (native-inputs + (list perl-module-build)) + (home-page "https://metacpan.org/release/Regexp-Grammars") + (synopsis "Add grammatical parsing features to Perl 5.10 regexes") + (description "") + (license licenses:perl-license))) + +(list + perl-commonmark + perl-regexp-grammars) diff --git a/src/xyz/euandreh/rg.scm b/src/xyz/euandreh/rg.scm deleted file mode 100644 index e695407..0000000 --- a/src/xyz/euandreh/rg.scm +++ /dev/null @@ -1,31 +0,0 @@ -(define-module (xyz euandreh rg) - #:use-module (gnu packages perl) - #:use-module (guix build-system perl) - #:use-module (guix download) - #:use-module (guix licenses) - #:use-module (guix packages)) - -;; Remove once https://issues.guix.gnu.org/58593 is applied -(define-public perl-regexp-grammars - (package - (name "perl-regexp-grammars") - (version "1.057") - (source - (origin - (method url-fetch) - (uri (string-append - "mirror://cpan/authors/id/D/DC/DCONWAY/Regexp-Grammars-" - version - ".tar.gz")) - (sha256 - (base32 "0hbh2yn39mg6ljg8srcgpz2fsqxlzpgljz5mmq0xf72632cc2lxg")))) - (build-system perl-build-system) - (native-inputs - (list perl-module-build)) - (home-page "https://metacpan.org/release/Regexp-Grammars") - (synopsis "Add grammatical parsing features to Perl 5.10 regexes") - (description "") - (license perl-license))) - -(list - perl-regexp-grammars) -- cgit v1.2.3