Tobias Geerinckx-Rice writes: > Guix, > > On 28/03/17 17:19, Tobias Geerinckx-Rice wrote: >> I wouldn't mind giving this a try, or not. > > More revenge from the pre-new-job-mailbag. > > I'm sticking to my original patch, and changed the problematic callers > to not use ‘package-full-name’ at all. I don't think it's the right > abstraction in any of those cases. See the overly verbose commit messages. > > Kind regards, > > T G-R > > From 43892525fc981533445e60a649425791cc315d0a Mon Sep 17 00:00:00 2001 > From: Tobias Geerinckx-Rice > Date: Sat, 6 May 2017 14:32:12 +0200 > Subject: [PATCH 4/4] packages: Use "@" as a version separator. > > * guix/packages.scm (package-full-name): Use "@" instead of "-" to separate > PACKAGE-NAME and PACKAGE-VERSION. > --- > guix/packages.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/guix/packages.scm b/guix/packages.scm > index 44f2c32fb..802405102 100644 > --- a/guix/packages.scm > +++ b/guix/packages.scm > @@ -385,8 +385,8 @@ object." > > > (define (package-full-name package) > - "Return the full name of PACKAGE--i.e., `NAME-VERSION'." > - (string-append (package-name package) "-" (package-version package))) > + "Return the full name of PACKAGE--i.e., `NAME@VERSION'." > + (string-append (package-name package) "@" (package-version package))) > > (define (%standard-patch-inputs) > (let* ((canonical (module-ref (resolve-interface '(gnu packages base)) > -- > 2.12.2 > > > From 0325e536cf557ff48d885948bf5fab8f59bfc444 Mon Sep 17 00:00:00 2001 > From: Tobias Geerinckx-Rice > Date: Sat, 6 May 2017 14:32:06 +0200 > Subject: [PATCH 3/4] profiles: Don't use PACKAGE-FULL-NAME. > > The non-hash parts of store paths aren't constructed according to > PACKAGE-FULL-NAME rules. They just happened to match in the past. > > * tests/profile.scm ("profile-derivation, cross-compilation"): Use > PACKAGE-NAME and PACKAGE-VERSION directly. > --- > tests/profiles.scm | 9 ++++++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/tests/profiles.scm b/tests/profiles.scm > index d0b1e14a8..68e73c4ca 100644 > --- a/tests/profiles.scm > +++ b/tests/profiles.scm > @@ -230,15 +230,18 @@ > (and (string-suffix? name input) input))) > (derivation-inputs drv)))) > > + (define (package-store-suffix package) > + (string-append (package-name package) "-" (package-version package))) > + > ;; The inputs for grep and sed should be cross-build derivations, but that > ;; for the glibc-utf8-locales should be a native build. > (return (and (string=? (derivation-system drv) (%current-system)) > - (string=? (find-input (package-full-name packages:grep)) > + (string=? (find-input (package-store-suffix packages:grep)) > (derivation-file-name grep)) > - (string=? (find-input (package-full-name packages:sed)) > + (string=? (find-input (package-store-suffix packages:sed)) > (derivation-file-name sed)) > (string=? (find-input > - (package-full-name packages:glibc-utf8-locales)) > + (package-store-suffix packages:glibc-utf8-locales)) > (derivation-file-name locales)))))) > > (test-assert "package->manifest-entry defaults to \"out\"" > -- > 2.12.2 > > > From f10c4fb9d269b85f9c388356a17c2b8b2fc54bd5 Mon Sep 17 00:00:00 2001 > From: Tobias Geerinckx-Rice > Date: Sat, 6 May 2017 14:31:56 +0200 > Subject: [PATCH 2/4] gnu: gcc-boot0: Don't use PACKAGE-FULL-NAME. > > Don't use Guix's naming conventions where a different one is expected. > > * gnu/packages/commencement.scm (gcc-boot0)[arguments]: Use PACKAGE-NAME > and PACKAGE-VERSION directly. > --- > gnu/packages/commencement.scm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm > index 92f6e6c2e..dd3261e37 100644 > --- a/gnu/packages/commencement.scm > +++ b/gnu/packages/commencement.scm > @@ -255,7 +255,8 @@ > ;; Drop trailing letters, as gmp-6.0.0a unpacks > ;; into gmp-6.0.0. > `(symlink ,(string-trim-right > - (package-full-name lib) > + (string-append (package-name lib) "-" > + (package-version lib)) > char-set:letter) > ,(package-name lib))) > (list gmp-6.0 mpfr mpc)))) > -- > 2.12.2 > > > From c090e526e21a960f34f0f02f9904757952d5a36e Mon Sep 17 00:00:00 2001 > From: Tobias Geerinckx-Rice > Date: Sat, 6 May 2017 14:31:48 +0200 > Subject: [PATCH 1/4] graph: Don't use PACKAGE-FULL-NAME. > > Derivation files aren't named according to PACKAGE-FULL-NAME rules. > We already forfeit any supposed abstraction by manually adding ".drv". > > * tests/graph.scm ("bag-emerged DAG"): Use PACKAGE-NAME and PACKAGE-VERSION > directly. > --- > tests/graph.scm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/tests/graph.scm b/tests/graph.scm > index 6431c482f..53475597a 100644 > --- a/tests/graph.scm > +++ b/tests/graph.scm > @@ -130,7 +130,9 @@ edges." > (map (lambda (destination) > (list "p-0.drv" > (string-append > - (package-full-name destination) > + (package-name destination) > + "-" > + (package-version destination) > ".drv"))) > implicit)))))))