* bug#26723: [PATCH] gnu: grub: Update to 2.02
@ 2017-05-01 1:34 Maxim Cournoyer
2017-05-01 2:11 ` Leo Famulari
0 siblings, 1 reply; 5+ messages in thread
From: Maxim Cournoyer @ 2017-05-01 1:34 UTC (permalink / raw)
To: 26723
[-- Attachment #1.1: Type: text/plain, Size: 68 bytes --]
Hi,
This patch updates GRUB from 2.02rc1 to 2.02.
Thanks,
Maxim
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-grub-Update-to-2.02.patch --]
[-- Type: text/x-patch, Size: 1451 bytes --]
From e2d468b9e8de3f602ee49df4212dda9afd5d66b4 Mon Sep 17 00:00:00 2001
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Date: Mon, 1 May 2017 10:21:42 +0900
Subject: [PATCH] gnu: grub: Update to 2.02
* gnu/packages/bootloaders.scm (grub): Update from 2.02rc1 to 2.02;
form the URI using the GNU mirror prefix.
---
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 98afc6a7c1..f7a1b75cb3 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 "mirror://gnu/grub/grub-"
+ version ".tar.xz"))
(sha256
(base32
- "0y02v19x9sb5jvj740f604vvi5j1rx8pily1jk0l64bdp7lkjlj4"))))
+ "03vvdfhdmf16121v7xs8is2krwnv15wpkhkf16a4yf8nsfc3f2w1"))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
--
2.12.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#26723: [PATCH] gnu: grub: Update to 2.02
2017-05-01 1:34 bug#26723: [PATCH] gnu: grub: Update to 2.02 Maxim Cournoyer
@ 2017-05-01 2:11 ` Leo Famulari
2017-05-01 3:43 ` Maxim Cournoyer
0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2017-05-01 2:11 UTC (permalink / raw)
To: Maxim Cournoyer; +Cc: 26723
[-- Attachment #1: Type: text/plain, Size: 392 bytes --]
On Mon, May 01, 2017 at 10:34:58AM +0900, Maxim Cournoyer wrote:
> Hi,
>
> This patch updates GRUB from 2.02rc1 to 2.02.
There's a ticket for this here:
<https://bugs.gnu.org/26707>
I decided to wait for i686-linux to work again [0] before pushing, since
it's not practical for me to build the entire i686-linux base system at
the moment.
[0]
<https://bugs.gnu.org/26497>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26723: [PATCH] gnu: grub: Update to 2.02
2017-05-01 2:11 ` Leo Famulari
@ 2017-05-01 3:43 ` Maxim Cournoyer
2017-05-01 17:17 ` Leo Famulari
0 siblings, 1 reply; 5+ messages in thread
From: Maxim Cournoyer @ 2017-05-01 3:43 UTC (permalink / raw)
To: Leo Famulari; +Cc: 26723
Hi,
<leo@famulari.name> writes:
> On Mon, May 01, 2017 at 10:34:58AM +0900, Maxim Cournoyer wrote:
>> Hi,
>>
>> This patch updates GRUB from 2.02rc1 to 2.02.
>
> There's a ticket for this here:
>
> <https://bugs.gnu.org/26707>
>
> I decided to wait for i686-linux to work again [0] before pushing, since
> it's not practical for me to build the entire i686-linux base system at
> the moment.
>
> [0]
> <https://bugs.gnu.org/26497>
OK, sorry, I had missed it! Could you use the mirror://gnu/... URI that
I used in my patch when you get around to merging this?
Also, I'm not sure I understand why the kernel Linux depends on the
bootloader? I did run 'guix refresh -l grub' and it told me that
nothing else depended on it.
Thanks,
Maxim
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26723: [PATCH] gnu: grub: Update to 2.02
2017-05-01 3:43 ` Maxim Cournoyer
@ 2017-05-01 17:17 ` Leo Famulari
2017-05-02 5:28 ` Maxim Cournoyer
0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2017-05-01 17:17 UTC (permalink / raw)
To: Maxim Cournoyer; +Cc: 26723
[-- Attachment #1: Type: text/plain, Size: 698 bytes --]
On Mon, May 01, 2017 at 12:43:10PM +0900, Maxim Cournoyer wrote:
> <leo@famulari.name> writes:
> > I decided to wait for i686-linux to work again [0] before pushing, since
> > it's not practical for me to build the entire i686-linux base system at
> > the moment.
>
> OK, sorry, I had missed it! Could you use the mirror://gnu/... URI that
> I used in my patch when you get around to merging this?
Sure, it's in my local tree.
> Also, I'm not sure I understand why the kernel Linux depends on the
> bootloader? I did run 'guix refresh -l grub' and it told me that
> nothing else depended on it.
I don't think the kernel depends on the bootloader. Did you have that
experience?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26723: [PATCH] gnu: grub: Update to 2.02
2017-05-01 17:17 ` Leo Famulari
@ 2017-05-02 5:28 ` Maxim Cournoyer
0 siblings, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2017-05-02 5:28 UTC (permalink / raw)
To: Leo Famulari; +Cc: 26723
[-- Attachment #1: Type: text/plain, Size: 810 bytes --]
Hi Leo!
Leo Famulari <leo@famulari.name> writes:
> On Mon, May 01, 2017 at 12:43:10PM +0900, Maxim Cournoyer wrote:
>> <leo@famulari.name> writes:
>> > I decided to wait for i686-linux to work again [0] before pushing, since
>> > it's not practical for me to build the entire i686-linux base system at
>> > the moment.
>>
>> OK, sorry, I had missed it! Could you use the mirror://gnu/... URI that
>> I used in my patch when you get around to merging this?
>
> Sure, it's in my local tree.
>
Great!
>> Also, I'm not sure I understand why the kernel Linux depends on the
>> bootloader? I did run 'guix refresh -l grub' and it told me that
>> nothing else depended on it.
>
No, I don't have such experience. It was just my misunderstanding;
please disregard it!
Thanks,
Maxim
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-05-02 5:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-01 1:34 bug#26723: [PATCH] gnu: grub: Update to 2.02 Maxim Cournoyer
2017-05-01 2:11 ` Leo Famulari
2017-05-01 3:43 ` Maxim Cournoyer
2017-05-01 17:17 ` Leo Famulari
2017-05-02 5:28 ` Maxim Cournoyer
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).