All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0
@ 2024-07-06 10:23 Bernd Kuhls
  2024-07-06 10:23 ` [Buildroot] [PATCH 2/3] package/edid-decode: bump version to 6f117a8 Bernd Kuhls
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-07-06 10:23 UTC (permalink / raw)
  To: buildroot

Removed patch which is included in this release.
Use xz tarball and its sha256 hash, both provided by upstream.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 ...0001-displayid.c-Include-sys-types.h.patch | 36 -------------------
 package/libdisplay-info/libdisplay-info.hash  |  3 +-
 package/libdisplay-info/libdisplay-info.mk    |  6 ++--
 3 files changed, 5 insertions(+), 40 deletions(-)
 delete mode 100644 package/libdisplay-info/0001-displayid.c-Include-sys-types.h.patch

diff --git a/package/libdisplay-info/0001-displayid.c-Include-sys-types.h.patch b/package/libdisplay-info/0001-displayid.c-Include-sys-types.h.patch
deleted file mode 100644
index 3fa57ee10d..0000000000
--- a/package/libdisplay-info/0001-displayid.c-Include-sys-types.h.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 648c1cb66b571b037976b61363654f39448f5fac Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd@kuhls.net>
-Date: Sun, 7 May 2023 14:14:48 +0200
-Subject: [PATCH] displayid.c: Include sys/types.h
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes build error
-../displayid.c:377:10: error: ‘ssize_t’ undeclared (first use in this function); did you mean ‘size_t’?
-
-seen with:
-arc-linux-gcc.br_real (Buildroot 2021.11-4428-g6b6741b) 10.2.0
-
-Upstream: https://gitlab.freedesktop.org/emersion/libdisplay-info/-/commit/5c9801a75f2815790ad1ed5500cec2728a36c6ec
-
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
- displayid.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/displayid.c b/displayid.c
-index 398772b..f1749c6 100644
---- a/displayid.c
-+++ b/displayid.c
-@@ -3,6 +3,7 @@
- #include <inttypes.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <sys/types.h>
- 
- #include "bits.h"
- #include "displayid.h"
--- 
-2.39.2
-
diff --git a/package/libdisplay-info/libdisplay-info.hash b/package/libdisplay-info/libdisplay-info.hash
index a0829479a8..cc93a0cf32 100644
--- a/package/libdisplay-info/libdisplay-info.hash
+++ b/package/libdisplay-info/libdisplay-info.hash
@@ -1,3 +1,4 @@
+# From https://gitlab.freedesktop.org/emersion/libdisplay-info/-/releases/0.2.0/downloads/libdisplay-info-0.2.0.tar.xz.sha256sum
+sha256  5a2f002a16f42dd3540c8846f80a90b8f4bdcd067a94b9d2087bc2feae974176  libdisplay-info-0.2.0.tar.xz
 # Locally computed
-sha256  51cdb0362882ca2af62532ab4d95e60d81e9890b339264719fd55f8e3945d695  libdisplay-info-0.1.1.tar.bz2
 sha256  15b396244e58830c5614b9394f4deccfe684970cd507f299383ab57ad339eedd  LICENSE
diff --git a/package/libdisplay-info/libdisplay-info.mk b/package/libdisplay-info/libdisplay-info.mk
index 26a6a9a4d9..b88463849e 100644
--- a/package/libdisplay-info/libdisplay-info.mk
+++ b/package/libdisplay-info/libdisplay-info.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-LIBDISPLAY_INFO_VERSION = 0.1.1
-LIBDISPLAY_INFO_SOURCE = libdisplay-info-$(LIBDISPLAY_INFO_VERSION).tar.bz2
-LIBDISPLAY_INFO_SITE = https://gitlab.freedesktop.org/emersion/libdisplay-info/-/archive/$(LIBDISPLAY_INFO_VERSION)
+LIBDISPLAY_INFO_VERSION = 0.2.0
+LIBDISPLAY_INFO_SOURCE = libdisplay-info-$(LIBDISPLAY_INFO_VERSION).tar.xz
+LIBDISPLAY_INFO_SITE = https://gitlab.freedesktop.org/emersion/libdisplay-info/-/releases/$(LIBDISPLAY_INFO_VERSION)/downloads
 LIBDISPLAY_INFO_LICENSE = MIT
 LIBDISPLAY_INFO_LICENSE_FILES = LICENSE
 LIBDISPLAY_INFO_INSTALL_STAGING = YES
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/3] package/edid-decode: bump version to 6f117a8
  2024-07-06 10:23 [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Bernd Kuhls
@ 2024-07-06 10:23 ` Bernd Kuhls
  2024-07-06 10:23 ` [Buildroot] [PATCH 3/3] package/hwdata: bump version to 0.384 Bernd Kuhls
  2024-07-08 21:01 ` [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Thomas Petazzoni via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-07-06 10:23 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 package/edid-decode/edid-decode.hash | 2 +-
 package/edid-decode/edid-decode.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/edid-decode/edid-decode.hash b/package/edid-decode/edid-decode.hash
index 9a2012f06b..62e6b43a32 100644
--- a/package/edid-decode/edid-decode.hash
+++ b/package/edid-decode/edid-decode.hash
@@ -1,3 +1,3 @@
 # Locally computed
-sha256  45b71227ceb7265da3a314a8d0969dcca584bfa12c36690e911646b58aae0738  edid-decode-2d44e1b01c7ed7d65b20ecdce62d354841832201-git4.tar.gz
+sha256  bc166bef5d0d56035b47a1513ed320c262901f97e488c83420760d7f56174dac  edid-decode-6f117a8f8c0e76e85f599a8b05c21c5f51c5c3c1-git4.tar.gz
 sha256  9bc7ab961e9a07dc84eaa0210af388def56d024357e79671fb89fe27d073eed7  LICENSE
diff --git a/package/edid-decode/edid-decode.mk b/package/edid-decode/edid-decode.mk
index cc9f2c1629..be0c4f1a0e 100644
--- a/package/edid-decode/edid-decode.mk
+++ b/package/edid-decode/edid-decode.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-EDID_DECODE_VERSION = 2d44e1b01c7ed7d65b20ecdce62d354841832201
+EDID_DECODE_VERSION = 6f117a8f8c0e76e85f599a8b05c21c5f51c5c3c1
 EDID_DECODE_SITE = https://git.linuxtv.org/edid-decode.git
 EDID_DECODE_SITE_METHOD = git
 EDID_DECODE_LICENSE = MIT
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 3/3] package/hwdata: bump version to 0.384
  2024-07-06 10:23 [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Bernd Kuhls
  2024-07-06 10:23 ` [Buildroot] [PATCH 2/3] package/edid-decode: bump version to 6f117a8 Bernd Kuhls
@ 2024-07-06 10:23 ` Bernd Kuhls
  2024-07-08 21:01 ` [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Thomas Petazzoni via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-07-06 10:23 UTC (permalink / raw)
  To: buildroot

Release notes: https://github.com/vcrhonek/hwdata/releases

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 package/hwdata/hwdata.hash | 2 +-
 package/hwdata/hwdata.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/hwdata/hwdata.hash b/package/hwdata/hwdata.hash
index 92b7eaab6d..7d8959990a 100644
--- a/package/hwdata/hwdata.hash
+++ b/package/hwdata/hwdata.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  b98ef646d530d5fd3afa3180efbf7c8e22d3da0088f5836f41ee25380d87b092  hwdata-0.379.tar.gz
+sha256  caa496a6203084ee3404c688a75ea05b4b10eec93340c503199647216127f347  hwdata-0.384.tar.gz
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
 sha256  21d0406f93e884a050426ebc21931839a45d56bfcbcbfdda7686d583f36f107f  LICENSE
diff --git a/package/hwdata/hwdata.mk b/package/hwdata/hwdata.mk
index 555fb58f14..3394dbd015 100644
--- a/package/hwdata/hwdata.mk
+++ b/package/hwdata/hwdata.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-HWDATA_VERSION = 0.379
+HWDATA_VERSION = 0.384
 HWDATA_SITE = $(call github,vcrhonek,hwdata,v$(HWDATA_VERSION))
 HWDATA_LICENSE = GPL-2.0+, BSD-3-Clause, XFree86 1.0
 HWDATA_LICENSE_FILES = COPYING LICENSE
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0
  2024-07-06 10:23 [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Bernd Kuhls
  2024-07-06 10:23 ` [Buildroot] [PATCH 2/3] package/edid-decode: bump version to 6f117a8 Bernd Kuhls
  2024-07-06 10:23 ` [Buildroot] [PATCH 3/3] package/hwdata: bump version to 0.384 Bernd Kuhls
@ 2024-07-08 21:01 ` Thomas Petazzoni via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-08 21:01 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On Sat,  6 Jul 2024 12:23:20 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:

> Removed patch which is included in this release.
> Use xz tarball and its sha256 hash, both provided by upstream.
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
>  ...0001-displayid.c-Include-sys-types.h.patch | 36 -------------------
>  package/libdisplay-info/libdisplay-info.hash  |  3 +-
>  package/libdisplay-info/libdisplay-info.mk    |  6 ++--
>  3 files changed, 5 insertions(+), 40 deletions(-)
>  delete mode 100644 package/libdisplay-info/0001-displayid.c-Include-sys-types.h.patch

Series applied to master, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-07-08 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-06 10:23 [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Bernd Kuhls
2024-07-06 10:23 ` [Buildroot] [PATCH 2/3] package/edid-decode: bump version to 6f117a8 Bernd Kuhls
2024-07-06 10:23 ` [Buildroot] [PATCH 3/3] package/hwdata: bump version to 0.384 Bernd Kuhls
2024-07-08 21:01 ` [Buildroot] [PATCH 1/3] package/libdisplay-info: bump version to 0.2.0 Thomas Petazzoni via buildroot

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.