all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72261] [PATCH] gnu: ddcci-driver-linux: Update to 0.4.5.
@ 2024-07-23 19:21 ashish.is--- via Guix-patches via
  2024-07-30  6:48 ` bug#72261: " Zheng Junjie
  0 siblings, 1 reply; 2+ messages in thread
From: ashish.is--- via Guix-patches via @ 2024-07-23 19:21 UTC (permalink / raw)
  To: 72261; +Cc: Ashish SHUKLA, Leo Famulari, Wilko Meyer

From: Ashish SHUKLA <ashish.is@lostca.se>

* gnu/packages/linux.scm (ddcci-driver-linux): Update to 0.4.5.
  [source] remove already upstream patch.

* gnu/packages/patches/ddcci-driver-linux-6.8.patch: Remove it.
* gnu/local.mk: Unregister it.

Change-Id: I1d4920ec84ea2a67554560181e99e9e2d535af2a
---
 gnu/local.mk                                  |  2 +-
 gnu/packages/linux.scm                        |  6 ++--
 .../ddcci-driver-linux-linux-6.8.patch        | 36 -------------------
 3 files changed, 4 insertions(+), 40 deletions(-)
 delete mode 100644 gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index ef1e82eb04..982e13ad50 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -65,6 +65,7 @@
 # Copyright © 2023 Herman Rimm <herman@rimm.ee>
 # Copyright © 2023 Troy Figiel <troy@troyfigiel.com>
 # Copyright © 2024 David Elsing <david.elsing@posteo.net>
+# Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 #
 # This file is part of GNU Guix.
 #
@@ -1111,7 +1112,6 @@ dist_patch_DATA =						\
   %D%/packages/patches/dbus-c++-gcc-compat.patch		\
   %D%/packages/patches/dbus-c++-threading-mutex.patch		\
   %D%/packages/patches/dbxfs-remove-sentry-sdk.patch		\
-  %D%/packages/patches/ddcci-driver-linux-linux-6.8.patch	\
   %D%/packages/patches/debops-constants-for-external-program-names.patch \
   %D%/packages/patches/debops-debops-defaults-fall-back-to-less.patch \
   %D%/packages/patches/dee-vapi.patch			\
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4bd5f9c902..0eeac4b094 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -81,6 +81,7 @@
 ;;; Copyright © 2024 Gabriel Wicki <gabriel@erlikon.ch>
 ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1747,7 +1748,7 @@ (define-public bbswitch-module
 (define-public ddcci-driver-linux
   (package
     (name "ddcci-driver-linux")
-    (version "0.4.4")
+    (version "0.4.5")
     (source
      (origin
        (method git-fetch)
@@ -1757,8 +1758,7 @@ (define-public ddcci-driver-linux
          (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "19vi7dk4jv5wm18cznz4lj2fb1c7m7j3ig62x4a6qy9djxf9z472"))
-       (patches (search-patches "ddcci-driver-linux-linux-6.8.patch"))))
+        (base32 "0j2bgzadrbcyf3k4zplv7p5yqb9pw2ca6wzkqjhhidaah2722vlf"))))
     (build-system linux-module-build-system)
     (arguments
      (list #:tests? #f                  ; no tests
diff --git a/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch b/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch
deleted file mode 100644
index 89ded73c14..0000000000
--- a/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Retrieved from: https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/3eb20df68a545d07b8501f13fa9d20e9c6f577ed.patch
-
-From 7f851f5fb8fbcd7b3a93aaedff90b27124e17a7e Mon Sep 17 00:00:00 2001
-From: Bruno Inec <contact@sweenu.xyz>
-Date: Wed, 20 Mar 2024 10:36:56 +0100
-Subject: [PATCH] Compatibility with Linux 6.8
-
----
- ddcci/ddcci.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/ddcci/ddcci.c b/ddcci/ddcci.c
-index 87b0818..6073c75 100644
---- a/ddcci/ddcci.c
-+++ b/ddcci/ddcci.c
-@@ -1666,7 +1666,7 @@ static int ddcci_detect(struct i2c_client *client, struct i2c_board_info *info)
- 	pr_debug("detected %d:%02x\n", client->adapter->nr, outer_addr);
- 
- 	/* set device type */
--	strlcpy(info->type, (outer_addr == DDCCI_DEFAULT_DEVICE_ADDR) ? "ddcci" : "ddcci-dependent", I2C_NAME_SIZE);
-+	strscpy(info->type, (outer_addr == DDCCI_DEFAULT_DEVICE_ADDR) ? "ddcci" : "ddcci-dependent", I2C_NAME_SIZE);
- 
- 	return 0;
- }
-@@ -1824,7 +1824,7 @@ static struct i2c_driver ddcci_driver = {
- 	#else
- 	.remove		= ddcci_remove,
- 	#endif
--	.class		= I2C_CLASS_DDC,
-+	.class		= I2C_CLASS_SPD,
- 	.detect		= ddcci_detect,
- 	.address_list	= I2C_ADDRS(
- 		DDCCI_DEFAULT_DEVICE_ADDR>>1
--- 
-GitLab
-

base-commit: d007b64356764f49677c78d82643f1125b5353b7
-- 
2.45.2





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

* bug#72261: [PATCH] gnu: ddcci-driver-linux: Update to 0.4.5.
  2024-07-23 19:21 [bug#72261] [PATCH] gnu: ddcci-driver-linux: Update to 0.4.5 ashish.is--- via Guix-patches via
@ 2024-07-30  6:48 ` Zheng Junjie
  0 siblings, 0 replies; 2+ messages in thread
From: Zheng Junjie @ 2024-07-30  6:48 UTC (permalink / raw)
  To: ashish.is--- via Guix-patches via
  Cc: 72261-done, Wilko Meyer, ashish.is, Leo Famulari

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

"ashish.is--- via Guix-patches" via <guix-patches@gnu.org> writes:

> From: Ashish SHUKLA <ashish.is@lostca.se>
>
> * gnu/packages/linux.scm (ddcci-driver-linux): Update to 0.4.5.
>   [source] remove already upstream patch.

No indentation required, capitalize the first letter.

>
> * gnu/packages/patches/ddcci-driver-linux-6.8.patch: Remove it.
> * gnu/local.mk: Unregister it.
>
> Change-Id: I1d4920ec84ea2a67554560181e99e9e2d535af2a
> ---
>  gnu/local.mk                                  |  2 +-
>  gnu/packages/linux.scm                        |  6 ++--
>  .../ddcci-driver-linux-linux-6.8.patch        | 36 -------------------
>  3 files changed, 4 insertions(+), 40 deletions(-)
>  delete mode 100644 gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch
>
> diff --git a/gnu/local.mk b/gnu/local.mk
> index ef1e82eb04..982e13ad50 100644
> --- a/gnu/local.mk
> +++ b/gnu/local.mk
> @@ -65,6 +65,7 @@
>  # Copyright © 2023 Herman Rimm <herman@rimm.ee>
>  # Copyright © 2023 Troy Figiel <troy@troyfigiel.com>
>  # Copyright © 2024 David Elsing <david.elsing@posteo.net>
> +# Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
>  #
>  # This file is part of GNU Guix.
>  #
> @@ -1111,7 +1112,6 @@ dist_patch_DATA =						\
>    %D%/packages/patches/dbus-c++-gcc-compat.patch		\
>    %D%/packages/patches/dbus-c++-threading-mutex.patch		\
>    %D%/packages/patches/dbxfs-remove-sentry-sdk.patch		\
> -  %D%/packages/patches/ddcci-driver-linux-linux-6.8.patch	\
>    %D%/packages/patches/debops-constants-for-external-program-names.patch \
>    %D%/packages/patches/debops-debops-defaults-fall-back-to-less.patch \
>    %D%/packages/patches/dee-vapi.patch			\
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 4bd5f9c902..0eeac4b094 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -81,6 +81,7 @@
>  ;;; Copyright © 2024 Gabriel Wicki <gabriel@erlikon.ch>
>  ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
>  ;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
> +;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -1747,7 +1748,7 @@ (define-public bbswitch-module
>  (define-public ddcci-driver-linux
>    (package
>      (name "ddcci-driver-linux")
> -    (version "0.4.4")
> +    (version "0.4.5")
>      (source
>       (origin
>         (method git-fetch)
> @@ -1757,8 +1758,7 @@ (define-public ddcci-driver-linux
>           (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "19vi7dk4jv5wm18cznz4lj2fb1c7m7j3ig62x4a6qy9djxf9z472"))
> -       (patches (search-patches "ddcci-driver-linux-linux-6.8.patch"))))
> +        (base32 "0j2bgzadrbcyf3k4zplv7p5yqb9pw2ca6wzkqjhhidaah2722vlf"))))
>      (build-system linux-module-build-system)
>      (arguments
>       (list #:tests? #f                  ; no tests
> diff --git a/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch b/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch
> deleted file mode 100644
> index 89ded73c14..0000000000
> --- a/gnu/packages/patches/ddcci-driver-linux-linux-6.8.patch
> +++ /dev/null
> @@ -1,36 +0,0 @@
> -Retrieved from: https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/3eb20df68a545d07b8501f13fa9d20e9c6f577ed.patch
> -
> -From 7f851f5fb8fbcd7b3a93aaedff90b27124e17a7e Mon Sep 17 00:00:00 2001
> -From: Bruno Inec <contact@sweenu.xyz>
> -Date: Wed, 20 Mar 2024 10:36:56 +0100
> -Subject: [PATCH] Compatibility with Linux 6.8
> -
> ----
> - ddcci/ddcci.c | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/ddcci/ddcci.c b/ddcci/ddcci.c
> -index 87b0818..6073c75 100644
> ---- a/ddcci/ddcci.c
> -+++ b/ddcci/ddcci.c
> -@@ -1666,7 +1666,7 @@ static int ddcci_detect(struct i2c_client *client, struct i2c_board_info *info)
> - 	pr_debug("detected %d:%02x\n", client->adapter->nr, outer_addr);
> - 
> - 	/* set device type */
> --	strlcpy(info->type, (outer_addr == DDCCI_DEFAULT_DEVICE_ADDR) ? "ddcci" : "ddcci-dependent", I2C_NAME_SIZE);
> -+	strscpy(info->type, (outer_addr == DDCCI_DEFAULT_DEVICE_ADDR) ? "ddcci" : "ddcci-dependent", I2C_NAME_SIZE);
> - 
> - 	return 0;
> - }
> -@@ -1824,7 +1824,7 @@ static struct i2c_driver ddcci_driver = {
> - 	#else
> - 	.remove		= ddcci_remove,
> - 	#endif
> --	.class		= I2C_CLASS_DDC,
> -+	.class		= I2C_CLASS_SPD,
> - 	.detect		= ddcci_detect,
> - 	.address_list	= I2C_ADDRS(
> - 		DDCCI_DEFAULT_DEVICE_ADDR>>1
> --- 
> -GitLab
> -
>
> base-commit: d007b64356764f49677c78d82643f1125b5353b7
pushed, close.

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

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

end of thread, other threads:[~2024-07-30  6:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 19:21 [bug#72261] [PATCH] gnu: ddcci-driver-linux: Update to 0.4.5 ashish.is--- via Guix-patches via
2024-07-30  6:48 ` bug#72261: " Zheng Junjie

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.