all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66645] [PATCH 0/3] linux-libre kernel updates
@ 2023-10-20  9:14 Wilko Meyer
  2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
  0 siblings, 1 reply; 6+ messages in thread
From: Wilko Meyer @ 2023-10-20  9:14 UTC (permalink / raw)
  To: 66645; +Cc: Wilko Meyer, leo

Hi Leo,

My kernel RSS feed said we had three new kernel minor releases
yesterday, so I bumped the versions of our kernel packages accordingly.

Wilko Meyer (3):
  gnu: linux-libre 6.5: Update to 6.5.8.
  gnu: linux-libre 6.1: Update to 6.1.59.
  gnu: linux-libre 5.15: Update to 5.15.136.

 gnu/packages/linux.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)


base-commit: 29731226e3418a45308671ef85678c6b01350063
prerequisite-patch-id: 996645e8cefb20195df79f721b064e62ed26a6cf
-- 
2.41.0





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

* [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8.
  2023-10-20  9:14 [bug#66645] [PATCH 0/3] linux-libre kernel updates Wilko Meyer
@ 2023-10-20  9:18 ` Wilko Meyer
  2023-10-20  9:18   ` [bug#66645] [PATCH 2/3] gnu: linux-libre 6.1: Update to 6.1.59 Wilko Meyer
                     ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Wilko Meyer @ 2023-10-20  9:18 UTC (permalink / raw)
  To: 66645; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm (linux-libre-6.5-version): Update to 6.5.8.
(linux-libre-6.5-pristine-source): Update hash.
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 7d838650ea..a60381cdfc 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -493,7 +493,7 @@ (define (%upstream-linux-source version hash)
 ;; The current "stable" kernels. That is, the most recently released major
 ;; versions that are still supported upstream.
 
-(define-public linux-libre-6.5-version "6.5.7")
+(define-public linux-libre-6.5-version "6.5.8")
 (define-public linux-libre-6.5-gnu-revision "gnu")
 (define deblob-scripts-6.5
   (linux-libre-deblob-scripts
@@ -503,7 +503,7 @@ (define deblob-scripts-6.5
    (base32 "132ps1jprxw6kqyscsar38fn7s12kg416mfhz7w702f4ajgq1ndi")))
 (define-public linux-libre-6.5-pristine-source
   (let ((version linux-libre-6.5-version)
-        (hash (base32 "135v3y2vgc83dca4xi7q52wqi4dkfal74k1y73jwzj85h12fl28d")))
+        (hash (base32 "05zpdh4dxaadq52hlczdmwb7bsqfm3q45v7bdqbsmplhgn4wm719")))
    (make-linux-libre-source version
                             (%upstream-linux-source version hash)
                             deblob-scripts-6.5)))
-- 
2.41.0





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

* [bug#66645] [PATCH 2/3] gnu: linux-libre 6.1: Update to 6.1.59.
  2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
@ 2023-10-20  9:18   ` Wilko Meyer
  2023-10-20  9:19   ` [bug#66645] [PATCH 3/3] gnu: linux-libre 5.15: Update to 5.15.136 Wilko Meyer
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Wilko Meyer @ 2023-10-20  9:18 UTC (permalink / raw)
  To: 66645; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm (linux-libre-6.1-version): Update to 6.1.59.
(linux-libre-6.1-pristine-source): Update hash.
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a60381cdfc..23074f4020 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -526,7 +526,7 @@ (define-public linux-libre-6.4-pristine-source
 ;; The "longterm" kernels — the older releases with long-term upstream support.
 ;; Here are the support timelines:
 ;; <https://www.kernel.org/category/releases.html>
-(define-public linux-libre-6.1-version "6.1.58")
+(define-public linux-libre-6.1-version "6.1.59")
 (define-public linux-libre-6.1-gnu-revision "gnu")
 (define deblob-scripts-6.1
   (linux-libre-deblob-scripts
@@ -536,7 +536,7 @@ (define deblob-scripts-6.1
    (base32 "1c73516nbhnz0cxjz38b5794dxygb8sznv9idiibw7ablmjbhd11")))
 (define-public linux-libre-6.1-pristine-source
   (let ((version linux-libre-6.1-version)
-        (hash (base32 "1b913ina3rcw4dx2s7n37kynv8rqsmrqa2ialsib6h7nsb9px66f")))
+        (hash (base32 "1860r1aan258yi2jq68bp1kdbcyy7ygc7d8g54wnc0vmqqj7fzv2")))
    (make-linux-libre-source version
                             (%upstream-linux-source version hash)
                             deblob-scripts-6.1)))
-- 
2.41.0





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

* [bug#66645] [PATCH 3/3] gnu: linux-libre 5.15: Update to 5.15.136.
  2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
  2023-10-20  9:18   ` [bug#66645] [PATCH 2/3] gnu: linux-libre 6.1: Update to 6.1.59 Wilko Meyer
@ 2023-10-20  9:19   ` Wilko Meyer
  2023-10-21 21:28   ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Leo Famulari
  2023-10-27  4:12   ` bug#66645: " Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Wilko Meyer @ 2023-10-20  9:19 UTC (permalink / raw)
  To: 66645; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.136.
(linux-libre-5.15-pristine-source): Update hash.
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 23074f4020..d862f6b6a7 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -541,7 +541,7 @@ (define-public linux-libre-6.1-pristine-source
                             (%upstream-linux-source version hash)
                             deblob-scripts-6.1)))
 
-(define-public linux-libre-5.15-version "5.15.135")
+(define-public linux-libre-5.15-version "5.15.136")
 (define-public linux-libre-5.15-gnu-revision "gnu")
 (define deblob-scripts-5.15
   (linux-libre-deblob-scripts
@@ -551,7 +551,7 @@ (define deblob-scripts-5.15
    (base32 "1c3lm0j401lv2lk39dmr4mlf5ic173snm7cc0cckl6czyvxr5ysy")))
 (define-public linux-libre-5.15-pristine-source
   (let ((version linux-libre-5.15-version)
-        (hash (base32 "0w3i8jvzqvfnlarcvg89k1144ln96fszv16lzrn16zr3kri5x0ql")))
+        (hash (base32 "1f5cxrair8qycjcc931kcdsarbrph32ypdyhrws8sw74gvzbj966")))
    (make-linux-libre-source version
                             (%upstream-linux-source version hash)
                             deblob-scripts-5.15)))
-- 
2.41.0





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

* [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8.
  2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
  2023-10-20  9:18   ` [bug#66645] [PATCH 2/3] gnu: linux-libre 6.1: Update to 6.1.59 Wilko Meyer
  2023-10-20  9:19   ` [bug#66645] [PATCH 3/3] gnu: linux-libre 5.15: Update to 5.15.136 Wilko Meyer
@ 2023-10-21 21:28   ` Leo Famulari
  2023-10-27  4:12   ` bug#66645: " Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-10-21 21:28 UTC (permalink / raw)
  To: Wilko Meyer; +Cc: 66645

On Fri, Oct 20, 2023 at 11:18:58AM +0200, Wilko Meyer wrote:
> * gnu/packages/linux.scm (linux-libre-6.5-version): Update to 6.5.8.
> (linux-libre-6.5-pristine-source): Update hash.

Thanks! Pushed to 'kernel-updates' while we wait for QA.




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

* bug#66645: [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8.
  2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
                     ` (2 preceding siblings ...)
  2023-10-21 21:28   ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Leo Famulari
@ 2023-10-27  4:12   ` Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-10-27  4:12 UTC (permalink / raw)
  To: Wilko Meyer; +Cc: 66645-done

On Fri, Oct 20, 2023 at 11:18:58AM +0200, Wilko Meyer wrote:
> * gnu/packages/linux.scm (linux-libre-6.5-version): Update to 6.5.8.
> (linux-libre-6.5-pristine-source): Update hash.

Thanks! Pushed as d366ca387fdaaf2f227946f1db5571f367b60994




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

end of thread, other threads:[~2023-10-27  4:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-20  9:14 [bug#66645] [PATCH 0/3] linux-libre kernel updates Wilko Meyer
2023-10-20  9:18 ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Wilko Meyer
2023-10-20  9:18   ` [bug#66645] [PATCH 2/3] gnu: linux-libre 6.1: Update to 6.1.59 Wilko Meyer
2023-10-20  9:19   ` [bug#66645] [PATCH 3/3] gnu: linux-libre 5.15: Update to 5.15.136 Wilko Meyer
2023-10-21 21:28   ` [bug#66645] [PATCH 1/3] gnu: linux-libre 6.5: Update to 6.5.8 Leo Famulari
2023-10-27  4:12   ` bug#66645: " Leo Famulari

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.