Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (1456d3e9f6b9660ffa68b90278386a969baca777)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <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 Ismael Luceno (1456d3e9f6b9660ffa68b90278386a969baca777)
  • Date: Wed, 3 Jul 2024 06:19:50 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

crypto/openssh/HISTORY
| 4
crypto/openssh/patches/0001-Add-missing-sockaddr-cast.patch
| 42 ++++++++++

emulators/virtualxt/patches/0001-Define-_POSIX_C_SOURCE-to-expose-popen-pclose.patch
| 2
gnome2-libs/goffice/patches/0001-Add-configure-knob-for-librsvg.patch
| 3
libs/libmpack/DETAILS
| 1
libs/libmpack/HISTORY
| 3
lua-forge/libmpack-lua/DETAILS
| 5 -
lua-forge/libmpack-lua/HISTORY
| 4
shell-term-fm/bash/patches/0001-libsh-Omit-strtoimax-if-HAVE_STRTOIMAX.patch
| 3
9 files changed, 62 insertions(+), 5 deletions(-)

New commits:
commit 1456d3e9f6b9660ffa68b90278386a969baca777
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

openssh: Fix build against musl

commit b3300cc2d35f1f8916783ff3045c8007c7b118ce
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bash: Update patch status

commit 0a4e92a1db18916eb2e6a53e7f01282a6cce1270
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

goffice: Update patch status

commit 2d1247ce1b1c9d004759a7521140b534fd0ecf2d
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libmpack-lua 1.0.12

commit 6eba1f440a136e7a0b7e936c504f838b7276688f
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libmpack-lua: Add Watch line

commit 72367a78727c969d33a522ba2893d164704dcaf4
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libmpack: Add Watch line

commit f49188eacb9456c9964125fd896ad2331c871689
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

virtualxt: Update patch status

diff --git a/crypto/openssh/HISTORY b/crypto/openssh/HISTORY
index 6c2f24c..cc73f9a 100644
--- a/crypto/openssh/HISTORY
+++ b/crypto/openssh/HISTORY
@@ -1,3 +1,7 @@
+2024-07-03 Ismael Luceno <ismael AT sourcemage.org>
+ * patches/0001-Add-missing-sockaddr-cast.patch:
+ fixed build against musl
+
2024-07-01 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: version 9.8p1, ++SECURITY_PATCH

diff --git a/crypto/openssh/patches/0001-Add-missing-sockaddr-cast.patch
b/crypto/openssh/patches/0001-Add-missing-sockaddr-cast.patch
new file mode 100644
index 0000000..6773844
--- /dev/null
+++ b/crypto/openssh/patches/0001-Add-missing-sockaddr-cast.patch
@@ -0,0 +1,42 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Ismael Luceno <ismael AT iodev.co.uk>
+Subject: [PATCH] Add missing sockaddr cast
+Date: Wed, 3 Jul 2024 08:17:02 +0200
+
+Build log:
+ port-linux.c: In function 'ssh_systemd_notify':
+ port-linux.c:369:25: error: passing argument 2 of 'connect' from
incompatible pointer type [-Wincompatible-pointer-types]
+ 369 | if (connect(fd, &addr, sizeof(addr)) != 0) {
+ | ^~~~~
+ | |
+ | struct sockaddr_un *
+ In file included from ../includes.h:26,
+ from port-linux.c:22:
+ /usr/include/sys/socket.h:386:19: note: expected 'const struct
sockaddr *' but argument is of type 'struct sockaddr_un *'
+ 386 | int connect (int, const struct sockaddr *, socklen_t);
+ | ^~~~~~~~~~~~~~~~~~~~~~~
+ make[1]: *** [Makefile:106: port-linux.o] Error 1
+
+Upstream-Status: Pending
+Origin: Source Mage
+Signed-off-by: Ismael Luceno <ismael AT sourcemage.org>
+---
+ openbsd-compat/port-linux.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c
+index 566e3378c1c4..86300517829b
+--- a/openbsd-compat/port-linux.c
++++ b/openbsd-compat/port-linux.c
+@@ -366,7 +366,7 @@
+ error_f("socket \"%s\": %s", path, strerror(errno));
+ goto out;
+ }
+- if (connect(fd, &addr, sizeof(addr)) != 0) {
++ if (connect(fd, (struct sockaddr *)&addr, sizeof(addr)) != 0) {
+ error_f("socket \"%s\" connect: %s", path, strerror(errno));
+ goto out;
+ }
+--
+Fixed up by sm-checkpatch 0.1
+
diff --git
a/emulators/virtualxt/patches/0001-Define-_POSIX_C_SOURCE-to-expose-popen-pclose.patch

b/emulators/virtualxt/patches/0001-Define-_POSIX_C_SOURCE-to-expose-popen-pclose.patch
index 4779dfa..31171a9 100644
---
a/emulators/virtualxt/patches/0001-Define-_POSIX_C_SOURCE-to-expose-popen-pclose.patch
+++
b/emulators/virtualxt/patches/0001-Define-_POSIX_C_SOURCE-to-expose-popen-pclose.patch
@@ -28,7 +28,7 @@ Notes:
See feature_test_macros(7) for more information about the macros.

Origin: Source Mage
-Upstream-Status: Submitted
+Upstream-Status: Accepted
[https://github.com/andreas-jonsson/virtualxt/pull/80]
Signed-off-by: Ismael Luceno <ismael AT iodev.co.uk>
---
diff --git
a/gnome2-libs/goffice/patches/0001-Add-configure-knob-for-librsvg.patch
b/gnome2-libs/goffice/patches/0001-Add-configure-knob-for-librsvg.patch
index 9b7808c..55f98f0 100644
--- a/gnome2-libs/goffice/patches/0001-Add-configure-knob-for-librsvg.patch
+++ b/gnome2-libs/goffice/patches/0001-Add-configure-knob-for-librsvg.patch
@@ -7,7 +7,8 @@ Necessary due to the limited platform support in rust and its
difficult
bootstrapping.

Origin: Source Mage
-Upstream-Status: Pending
+Upstream-Status: Submitted
+ [https://gitlab.gnome.org/GNOME/goffice/-/merge_requests/14]
Signed-off-by: Ismael Luceno <ismael AT sourcemage.org>
---
configure | 28 +++++++++++++++++++++++++++-
diff --git a/libs/libmpack/DETAILS b/libs/libmpack/DETAILS
old mode 100755
new mode 100644
index 5d8d393..119c6b8
--- a/libs/libmpack/DETAILS
+++ b/libs/libmpack/DETAILS
@@ -1,3 +1,4 @@
+# Watch: https://github.com/libmpack/libmpack/tags
SPELL=libmpack
VERSION=1.0.5
SOURCE="$SPELL-$VERSION.tar.gz"
diff --git a/libs/libmpack/HISTORY b/libs/libmpack/HISTORY
index 32e4ab5..d40675f 100644
--- a/libs/libmpack/HISTORY
+++ b/libs/libmpack/HISTORY
@@ -1,2 +1,5 @@
+2024-07-03 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Add Watch line
+
2017-09-17 Ismael Luceno <ismael AT sourcemage.org>
* BUILD, DETAILS, INSTALL: spell created
diff --git a/lua-forge/libmpack-lua/DETAILS b/lua-forge/libmpack-lua/DETAILS
index 40effc9..372fbb0 100755
--- a/lua-forge/libmpack-lua/DETAILS
+++ b/lua-forge/libmpack-lua/DETAILS
@@ -1,3 +1,4 @@
+# Watch: https://github.com/libmpack/libmpack-lua/tags
. "$GRIMOIRE"/FUNCTIONS
SPELL=libmpack-lua
if [ "$LIBMPACK_LUA_BRANCH" = scm ]; then
@@ -8,10 +9,10 @@ if [ "$LIBMPACK_LUA_BRANCH" = scm ]; then
FORCE_DOWNLOAD=on
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-git"
else
- VERSION=1.0.9
+ VERSION=1.0.12
SOURCE="$SPELL-$VERSION.tar.gz"
SOURCE_URL[0]=https://github.com/libmpack/$SPELL/archive/$VERSION.tar.gz
-
SOURCE_HASH=sha512:c663a6cb29c1ae3f88baf25d36b076c35b35b96a16f9df472f8063009dc70886071cc27bf9224aceb86afb5c590ac072fd484435f40ecc4961eabfb5df08f395
+
SOURCE_HASH=sha512:7df730ba98c9530d948252f2efa70cb6d4f65b0fbc3443de2239145e9ce1aa12dfa8acbbfd4b87edf19a529e3595c7a8955e00235f69aa3535d353f7f9a1c7d0
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
fi
WEB_SITE="https://github.com/libmpack/libmpack-lua";
diff --git a/lua-forge/libmpack-lua/HISTORY b/lua-forge/libmpack-lua/HISTORY
index d287e6b..8b31722 100644
--- a/lua-forge/libmpack-lua/HISTORY
+++ b/lua-forge/libmpack-lua/HISTORY
@@ -1,3 +1,7 @@
+2024-07-03 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Add Watch line
+ updated spell to 1.0.12
+
2023-04-03 Pavel Vinogradov <public AT sourcemage.org>
* BUILD, INSTALL: added provider detection for lua other than luajit

diff --git
a/shell-term-fm/bash/patches/0001-libsh-Omit-strtoimax-if-HAVE_STRTOIMAX.patch

b/shell-term-fm/bash/patches/0001-libsh-Omit-strtoimax-if-HAVE_STRTOIMAX.patch
index 24ae33c..4ffc3ac 100644
---
a/shell-term-fm/bash/patches/0001-libsh-Omit-strtoimax-if-HAVE_STRTOIMAX.patch
+++
b/shell-term-fm/bash/patches/0001-libsh-Omit-strtoimax-if-HAVE_STRTOIMAX.patch
@@ -3,7 +3,8 @@ From: Ismael Luceno <ismael AT iodev.co.uk>
Date: Tue, 25 Jun 2024 08:31:07 +0200
Subject: [PATCH] libsh: Omit strtoimax if HAVE_STRTOIMAX

-Upstream-Status: Pending
+Upstream-Status: Submitted
+ [https://lists.gnu.org/archive/html/bug-bash/2024-07/msg00016.html]
Origin: Source Mage
Signed-off-by: Ismael Luceno <ismael AT sourcemage.org>
---


  • [[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (1456d3e9f6b9660ffa68b90278386a969baca777), Ismael Luceno, 07/03/2024

Archive powered by MHonArc 2.6.24.

Top of Page