unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2.
@ 2017-04-29 16:20 Leo Famulari
  2017-04-29 16:24 ` Leo Famulari
  2017-04-29 16:54 ` Marius Bakke
  0 siblings, 2 replies; 5+ messages in thread
From: Leo Famulari @ 2017-04-29 16:20 UTC (permalink / raw)
  To: 26707

* gnu/packages/bootloaders.scm (grub): Update to 2.0.2.
[source]: Fetch source from ftp.gnu.org and use upstream file-name.
---
 gnu/packages/bootloaders.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 98afc6a7c..951961bd7 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -63,17 +63,14 @@
 (define-public grub
   (package
     (name "grub")
-    (version "2.02rc1")
+    (version "2.02")
     (source (origin
              (method url-fetch)
-             (uri (string-append
-                   "ftp://alpha.gnu.org/gnu/grub/grub-"
-                   "2.02~rc1"
-                   ".tar.xz"))
-             (file-name (string-append name "-" version ".tar.xz"))
+             (uri (string-append "ftp://ftp.gnu.org/gnu/grub/grub-"
+                                 version ".tar.xz"))
              (sha256
               (base32
-               "0y02v19x9sb5jvj740f604vvi5j1rx8pily1jk0l64bdp7lkjlj4"))))
+               "03vvdfhdmf16121v7xs8is2krwnv15wpkhkf16a4yf8nsfc3f2w1"))))
     (build-system gnu-build-system)
     (arguments
      '(#:phases (modify-phases %standard-phases
-- 
2.12.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2.
  2017-04-29 16:20 bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2 Leo Famulari
@ 2017-04-29 16:24 ` Leo Famulari
  2017-04-29 23:05   ` Marius Bakke
  2017-05-07 23:28   ` Leo Famulari
  2017-04-29 16:54 ` Marius Bakke
  1 sibling, 2 replies; 5+ messages in thread
From: Leo Famulari @ 2017-04-29 16:24 UTC (permalink / raw)
  To: 26707

[-- Attachment #1: Type: text/plain, Size: 216 bytes --]

I've built this GRUB for x86_64-linux and i686-linux, and I'm using it
successfully for GuixSD on x86_64-linux.

I'll push it in the next day or two, but I'd like to give others the
opportunity to test their setups.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2.
  2017-04-29 16:20 bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2 Leo Famulari
  2017-04-29 16:24 ` Leo Famulari
@ 2017-04-29 16:54 ` Marius Bakke
  1 sibling, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2017-04-29 16:54 UTC (permalink / raw)
  To: Leo Famulari, 26707

[-- Attachment #1: Type: text/plain, Size: 1418 bytes --]

Leo Famulari <leo@famulari.name> writes:

> * gnu/packages/bootloaders.scm (grub): Update to 2.0.2.
> [source]: Fetch source from ftp.gnu.org and use upstream file-name.
> ---
>  gnu/packages/bootloaders.scm | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
> index 98afc6a7c..951961bd7 100644
> --- a/gnu/packages/bootloaders.scm
> +++ b/gnu/packages/bootloaders.scm
> @@ -63,17 +63,14 @@
>  (define-public grub
>    (package
>      (name "grub")
> -    (version "2.02rc1")
> +    (version "2.02")
>      (source (origin
>               (method url-fetch)
> -             (uri (string-append
> -                   "ftp://alpha.gnu.org/gnu/grub/grub-"
> -                   "2.02~rc1"
> -                   ".tar.xz"))
> -             (file-name (string-append name "-" version ".tar.xz"))
> +             (uri (string-append "ftp://ftp.gnu.org/gnu/grub/grub-"
> +                                 version ".tar.xz"))

This should probably use mirror://gnu.

>               (sha256
>                (base32
> -               "0y02v19x9sb5jvj740f604vvi5j1rx8pily1jk0l64bdp7lkjlj4"))))
> +               "03vvdfhdmf16121v7xs8is2krwnv15wpkhkf16a4yf8nsfc3f2w1"))))
>      (build-system gnu-build-system)
>      (arguments
>       '(#:phases (modify-phases %standard-phases
> -- 
> 2.12.2

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2.
  2017-04-29 16:24 ` Leo Famulari
@ 2017-04-29 23:05   ` Marius Bakke
  2017-05-07 23:28   ` Leo Famulari
  1 sibling, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2017-04-29 23:05 UTC (permalink / raw)
  To: Leo Famulari, 26707

[-- Attachment #1: Type: text/plain, Size: 312 bytes --]

Leo Famulari <leo@famulari.name> writes:

> I've built this GRUB for x86_64-linux and i686-linux, and I'm using it
> successfully for GuixSD on x86_64-linux.
>
> I'll push it in the next day or two, but I'd like to give others the
> opportunity to test their setups.

This works for me on a UEFI system. Thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2.
  2017-04-29 16:24 ` Leo Famulari
  2017-04-29 23:05   ` Marius Bakke
@ 2017-05-07 23:28   ` Leo Famulari
  1 sibling, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2017-05-07 23:28 UTC (permalink / raw)
  To: 26707-done; +Cc: 26723-done

[-- Attachment #1: Type: text/plain, Size: 385 bytes --]

On Sat, Apr 29, 2017 at 12:24:32PM -0400, Leo Famulari wrote:
> I've built this GRUB for x86_64-linux and i686-linux, and I'm using it
> successfully for GuixSD on x86_64-linux.
> 
> I'll push it in the next day or two, but I'd like to give others the
> opportunity to test their setups.

I pushed a modified version of this patch as
3586a3e9a9b0c71b11c47ff63279b2e8a24b5704.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-05-07 23:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-29 16:20 bug#26707: [PATCH 1/1] gnu: grub: Update to 2.0.2 Leo Famulari
2017-04-29 16:24 ` Leo Famulari
2017-04-29 23:05   ` Marius Bakke
2017-05-07 23:28   ` Leo Famulari
2017-04-29 16:54 ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).