Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (4f779e1093f652ae5a62a8e03570a511b07dff7b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (4f779e1093f652ae5a62a8e03570a511b07dff7b)
  • Date: Sat, 14 Jun 2025 14:42:30 +0000

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

utils/gnuplot/DETAILS
| 4
utils/gnuplot/HISTORY
| 3
video/v4l-utils/DETAILS
| 2
video/v4l-utils/HISTORY
| 4

video/v4l-utils/patches/0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch
| 58 ----------
xorg-proto/wayland-protocols/DETAILS
| 2
xorg-proto/wayland-protocols/HISTORY
| 3
7 files changed, 14 insertions(+), 62 deletions(-)

New commits:
commit 4f779e1093f652ae5a62a8e03570a511b07dff7b
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

wayland-protocols: => 1.45

commit 93e5c268c231fd36a833af625f95d8746a052130
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

v4l-utils: => 1.30.1

commit 123d322c14bb0d3ac0178952d8a5042f840764d4
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

gnuplot: => 6.0.3

diff --git a/utils/gnuplot/DETAILS b/utils/gnuplot/DETAILS
index f001cd8..b6bd768 100755
--- a/utils/gnuplot/DETAILS
+++ b/utils/gnuplot/DETAILS
@@ -8,8 +8,8 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-scm

SOURCE_URL[0]="git://git.code.sf.net/p/${SPELL}/${SPELL}-main:${SPELL}-scm"
SOURCE_IGNORE=volatile
else
- VERSION=6.0.2
-
SOURCE_HASH=sha512:5c26c91a91238be0dad91b0835427355b4db526e6a83225219219b3c980e245abcd4b54d1c693523d645c469f3c610658da0c889df691ba8ba6799efe440ed01
+ VERSION=6.0.3
+
SOURCE_HASH=sha512:33b0954ff70f1655e23ce0b6986b317a2b1be5ff6c3edda4df0499ef1e2db9bef97f2f3f5ca6c18272bd3375e60c8c07db3639f1c139be51416e8a6aba6e33c9
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION

SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/${SPELL}/${SPELL}/${VERSION}/${SOURCE}
diff --git a/utils/gnuplot/HISTORY b/utils/gnuplot/HISTORY
index 8a68531..41af85f 100644
--- a/utils/gnuplot/HISTORY
+++ b/utils/gnuplot/HISTORY
@@ -1,3 +1,6 @@
+2025-06-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 6.0.3
+
2025-01-02 Ismael Luceno <ismael AT sourcemage.org>
* PRE_BUILD: fixed build against musl

diff --git a/video/v4l-utils/DETAILS b/video/v4l-utils/DETAILS
index e1cc94d..5fc8c53 100755
--- a/video/v4l-utils/DETAILS
+++ b/video/v4l-utils/DETAILS
@@ -1,6 +1,6 @@
source $GRIMOIRE/MESON_FUNCTIONS
SPELL=v4l-utils
- VERSION=1.28.1
+ VERSION=1.30.1
PATCHLEVEL=2
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE_URL[0]=https://linuxtv.org/downloads/$SPELL/$SOURCE
diff --git a/video/v4l-utils/HISTORY b/video/v4l-utils/HISTORY
index 86feaeb..0ccfb25 100644
--- a/video/v4l-utils/HISTORY
+++ b/video/v4l-utils/HISTORY
@@ -1,3 +1,7 @@
+2025-06-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.30.1
+ * 0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch:
deleted
+
2024-12-28 Ismael Luceno <ismael AT sourcemage.org>
*
patches/0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch,
patches/0005-libv4l1-Apply-HAVE_POSIX_IOCTL.patch:
diff --git
a/video/v4l-utils/patches/0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch

b/video/v4l-utils/patches/0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch
deleted file mode 100644
index 7661185..0000000
---
a/video/v4l-utils/patches/0004-libv4l2-Guard-the-v4l2_ioctl-function-with-HAVE_POSI.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From fd882f9e77b13cbc6a669e6836c3943393b44152 Mon Sep 17 00:00:00 2001
-From: Michal Rostecki <vadorovsky AT gmail.com>
-Date: Fri, 6 Sep 2024 14:46:31 +0200
-Subject: [PATCH 4/5] libv4l2: Guard the v4l2_ioctl function with
HAVE_POSIX_IOCTL
-
-Lack of this check leads to issues on musl-based system. Even though
-compilation of libv4l2 itself with musl doesn't cause any errors,
-using the library inside gst-plugins-v4l2 causes a compiler error
-due to mismatch of the ioctl signature.
-
-A similar check is already performed in v4l2convert.c, so the change
-doesn't bring any inconsistency.
-
-Link: https://bugs.gentoo.org/896418
-Signed-off-by: Michal Rostecki <vadorovsky AT gmail.com>
-Signed-off-by: Hans Verkuil <hverkuil AT xs4all.nl>
-Upstream-Status: Backport
-Signed-off-by: Ismael Luceno <ismael AT sourcemage.org>
----
- lib/include/libv4l2.h | 4 ++++
- lib/libv4l2/libv4l2.c | 4 ++++
- 2 files changed, 8 insertions(+)
-
-diff --git a/lib/include/libv4l2.h b/lib/include/libv4l2.h
-index ea1870db03a4..16565555dba9 100644
---- a/lib/include/libv4l2.h
-+++ b/lib/include/libv4l2.h
-@@ -63,7 +63,11 @@ LIBV4L_PUBLIC extern FILE *v4l2_log_file;
- LIBV4L_PUBLIC int v4l2_open(const char *file, int oflag, ...);
- LIBV4L_PUBLIC int v4l2_close(int fd);
- LIBV4L_PUBLIC int v4l2_dup(int fd);
-+#ifdef HAVE_POSIX_IOCTL
-+LIBV4L_PUBLIC int v4l2_ioctl(int fd, int request, ...);
-+#else
- LIBV4L_PUBLIC int v4l2_ioctl(int fd, unsigned long int request, ...);
-+#endif
- LIBV4L_PUBLIC ssize_t v4l2_read(int fd, void *buffer, size_t n);
- LIBV4L_PUBLIC ssize_t v4l2_write(int fd, const void *buffer, size_t n);
- LIBV4L_PUBLIC void *v4l2_mmap(void *start, size_t length, int prot, int
flags,
-diff --git a/lib/libv4l2/libv4l2.c b/lib/libv4l2/libv4l2.c
-index 032a4f1c471d..1607ec353268 100644
---- a/lib/libv4l2/libv4l2.c
-+++ b/lib/libv4l2/libv4l2.c
-@@ -1051,7 +1051,11 @@ static int v4l2_s_fmt(int index, struct v4l2_format
*dest_fmt)
- return 0;
- }
-
-+#ifdef HAVE_POSIX_IOCTL
-+int v4l2_ioctl(int fd, int request, ...)
-+#else
- int v4l2_ioctl(int fd, unsigned long int request, ...)
-+#endif
- {
- void *arg;
- va_list ap;
---
-2.47.1
-
diff --git a/xorg-proto/wayland-protocols/DETAILS
b/xorg-proto/wayland-protocols/DETAILS
index 1ea8532..9ac7c09 100755
--- a/xorg-proto/wayland-protocols/DETAILS
+++ b/xorg-proto/wayland-protocols/DETAILS
@@ -1,6 +1,6 @@
. "${GRIMOIRE}/MESON_FUNCTIONS"
SPELL=wayland-protocols
- VERSION=1.44
+ VERSION=1.45
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE=https://wayland.freedesktop.org
diff --git a/xorg-proto/wayland-protocols/HISTORY
b/xorg-proto/wayland-protocols/HISTORY
index e0e37e6..d9460f5 100644
--- a/xorg-proto/wayland-protocols/HISTORY
+++ b/xorg-proto/wayland-protocols/HISTORY
@@ -1,3 +1,6 @@
+2025-06-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.45
+
2025-04-28 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.44



  • [[SM-Commit] ] GIT changes to master grimoire by Treeve Jelbert (4f779e1093f652ae5a62a8e03570a511b07dff7b), Treeve Jelbert, 06/14/2025

Archive powered by MHonArc 2.6.24.

Top of Page