From b030b089f26f31ff06aa14788820a2b9a25e85b7 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 6 Apr 2022 11:46:55 -0400 Subject: move sbcl-qc to quality-control module --- gn/packages/lisp.scm | 41 ------------------------------------ gn/packages/quality-control.scm | 46 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 41 deletions(-) (limited to 'gn') diff --git a/gn/packages/lisp.scm b/gn/packages/lisp.scm index 94a3d9e..50ef3b5 100644 --- a/gn/packages/lisp.scm +++ b/gn/packages/lisp.scm @@ -267,44 +267,3 @@ generators.") (define-public ecl-scribble (sbcl-package->ecl-package sbcl-scribble)) -(define-public sbcl-qc - (let ((commit "89a2f2e09f67d5bc5b7be6726a75f82c8d3a82b9") - (revision "2")) - (package - (name "sbcl-qc") - (version (git-version "20220301" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://git.genenetwork.org/jgart/qc") - (commit commit))) - (sha256 - (base32 "0dlaxdzrpagn18jxy3kzzf1bwn55prdjpzw256hnjbvmnx5w5fd7")) - (file-name (git-file-name name commit)))) - (build-system asdf-build-system/sbcl) - (arguments - `(#:asd-files '("qc.asd"))) - (native-inputs - (list sbcl-1am)) - (inputs - (list sbcl-alexandria - sbcl-split-sequence)) - (home-page "https://git.genenetwork.org/jgart/qc/") - (synopsis "Quality control of delimited files") - (description -"@code{cl-qc} is a Common Lisp library for linting the following in -delimited text files: -@itemize -@item Whitespace -@item Floating-point number well-formedness -@item GeneChip Platform ID checks for Affymetrix, Illumina, and others -@end itemize\n") - (license license:llgpl)))) - -(define-public cl-qc - (sbcl-package->cl-source-package sbcl-qc)) - -(define-public ecl-qc - (sbcl-package->ecl-package sbcl-qc)) - diff --git a/gn/packages/quality-control.scm b/gn/packages/quality-control.scm index 162b025..dd3c779 100644 --- a/gn/packages/quality-control.scm +++ b/gn/packages/quality-control.scm @@ -5,6 +5,9 @@ #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix build-system gnu) + #:use-module (guix build-system asdf) + #:use-module (gnu packages lisp-check) + #:use-module (gnu packages lisp-xyz) #:use-module (gnu packages)) (define-public libcsv @@ -33,3 +36,46 @@ "CSV library written in pure ANSI C that can read and write CSV data.") (license license:lgpl2.1+)))) +(define-public sbcl-qc + (let ((commit "ed4254445b7dc247fa27d9189fd03841ad74f568") + (revision "3")) + (package + (name "sbcl-qc") + (version (git-version "20220331" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.genenetwork.org/jgart/qc") + (commit commit))) + (sha256 + (base32 "12i9s1ipqarvq6gsjqycfm8d3ym7dv7vn3nxb5c6214xrd4mmzjj")) + (file-name (git-file-name name commit)))) + (build-system asdf-build-system/sbcl) + (arguments + `(#:tests? #f ; Need to fix tests. + #:asd-files '("qc.asd"))) + (native-inputs + (list sbcl-1am)) + (inputs + (list sbcl-alexandria + sbcl-split-sequence)) + (home-page "https://git.genenetwork.org/jgart/qc/") + (synopsis "Quality control of delimited files") + (description +"@code{cl-qc} is a Common Lisp library for linting the following in +delimited text files: +@itemize +@item Whitespace +@item Floating-point number well-formedness +@item GeneChip Platform ID checks for Affymetrix, Illumina, and others +@end itemize\n") + (license license:llgpl)))) + +(define-public cl-qc + (sbcl-package->cl-source-package sbcl-qc)) + +(define-public ecl-qc + (sbcl-package->ecl-package sbcl-qc)) + + -- cgit v1.2.3