From 5a1b2467361edcf8f2f9c7399658b4e136e979d4 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 25 Apr 2023 19:45:13 +0200 Subject: gnu: adapterremoval: Update to 2.3.3. * gnu/packages/bioinformatics.scm (adapterremoval): Update to 2.3.3. [arguments]: Simplify. [inputs]: Reformat. --- gnu/packages/bioinformatics.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1dbacdbd8d..81e6416abe 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -16232,7 +16232,7 @@ tools which build on STAR, Arriba does not require to reduce the (define-public adapterremoval (package (name "adapterremoval") - (version "2.3.0") + (version "2.3.3") (source (origin (method git-fetch) @@ -16242,18 +16242,18 @@ tools which build on STAR, Arriba does not require to reduce the (file-name (git-file-name name version)) (sha256 (base32 - "1nf3ki5pfzalhrx2fr1y6pfqfi133yj2m7q4fj9irf5fb94bapwr")))) + "0wyr182667wqdmzhwwa6f7dddr8kk0scgzb8lsm23wim544mvn6i")))) (build-system gnu-build-system) (arguments - `(#:make-flags - ,#~(list "COLOR_BUILD=no" - (string-append "PREFIX=" #$output)) - #:test-target "test" - #:phases - (modify-phases %standard-phases + (list + #:make-flags + #~(list "COLOR_BUILD=no" + (string-append "PREFIX=" #$output)) + #:test-target "test" + #:phases + '(modify-phases %standard-phases (delete 'configure)))) - (inputs - (list zlib)) + (inputs (list zlib)) (home-page "https://adapterremoval.readthedocs.io/") (synopsis "Rapid sequence adapter trimming, identification, and read merging") (description -- cgit v1.2.3 option>
path: root/gnu/system.scm
AgeCommit message (Expand)Author
2024-08-11system: Add privileged-programs to <operating-system>....* gnu/system.scm (<operating-system>): Add new privileged-programs field, that defaults to… (%default-privileged-programs): …this new variable, renamed from… (%setuid-programs): …this, which is now defined as the empty list. * doc/guix.texi (Setuid Programs): Rename this… (Privileged Programs): …to this. Adjust all refs. Update all mentions of ‘setuid’ (whether in prose, variable names, or code samples) to use the new ‘privilege[d]’ terminology instead. (operating-system Reference, X Window, Invoking guix system) (Service Reference): Adjust likewise. Tobias Geerinckx-Rice
2024-08-11system: Use privileged-program-service-type by default....* gnu/system.scm (operating-system-default-essential-services) (hurd-default-essential-services): Substitute privileged-program-service-type for setuid-program-service-type. Tobias Geerinckx-Rice
2024-08-11system: Use /run/privileged/bin in search paths....* gnu/system.scm (operating-system-etc-service): Substitute /run/privileged/bin for deprecated /run/setuid-programs. Tobias Geerinckx-Rice
2024-08-11system: Disallow file-like setuid-programs....It has been a warning for well over a year now. Now, with privileged-programs coming, don't let's support nested deprecation hacks. * gnu/system.scm (<operating-system>): Don't ‘sanitize’ the setuid-programs field. (ensure-setuid-program-list): Delete syntax. (%ensure-setuid-program-list): Delete variable. Tobias Geerinckx-Rice