Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (b6fb7d982d1e14f005e69b0427a589d266f84aef)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (b6fb7d982d1e14f005e69b0427a589d266f84aef)
  • Date: Sat, 10 Dec 2022 17:19:41 +0000

GIT changes to master grimoire by Florian Franzmann <bwlf AT bandrate.org>:

archive-libs/libarchive/DETAILS
| 4
archive-libs/libarchive/HISTORY
| 4

archive-libs/libarchive/patches/0001-libarchive-Do-not-include-sys-mount.h.patch
| 41 ----------
editors/vim/DETAILS
| 4
editors/vim/HISTORY
| 3
libs/protobuf/DETAILS
| 4
libs/protobuf/HISTORY
| 3
python-pypi/setuptools/DETAILS
| 4
python-pypi/setuptools/HISTORY
| 3
9 files changed, 21 insertions(+), 49 deletions(-)

New commits:
commit b6fb7d982d1e14f005e69b0427a589d266f84aef
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

python-pypi/setuptools: version 65.6.3

commit 581f000ce3964e83cde604f899ee366b39d3cf8b
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

libs/protobuf: version 21.11

commit 3e21a3f15736d516a04663c0f8a17aa9dc328ef0
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

editors/vim: version 9.0.1040

commit 5672c0e11cfb684faae15842e6e74e437c9b55bc
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

archive-libs/libarchive: version 3.6.2

diff --git a/archive-libs/libarchive/DETAILS b/archive-libs/libarchive/DETAILS
index 53e8df2..9d600fb 100755
--- a/archive-libs/libarchive/DETAILS
+++ b/archive-libs/libarchive/DETAILS
@@ -1,11 +1,11 @@
SPELL=libarchive
- VERSION=3.6.1
+ VERSION=3.6.2
SECURITY_PATCH=10
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://www.libarchive.org

SOURCE_URL[0]=https://github.com/libarchive/libarchive/releases/download/v${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:58f7ac0c52116f73326a07dec10ff232be33b318862078785dc39f1fb2f8773b5194eabfa14764bb51ce6a5a1aa8820526e7f4c76087a6f4fcbe7789a22275b4
+
SOURCE_HASH=sha512:24e476465054a29a2d48adf3c197a171b5361fa5038729a1f14d578c6701424de4e5dd6a2b20a6b697969ab43bdd8afc1585f8de0465c266f455d7eaa19e5048
ENTERED=20080629
LICENSE[0]=BSD
KEYWORDS="archive"
diff --git a/archive-libs/libarchive/HISTORY b/archive-libs/libarchive/HISTORY
index db90fef..df37d17 100644
--- a/archive-libs/libarchive/HISTORY
+++ b/archive-libs/libarchive/HISTORY
@@ -1,3 +1,7 @@
+2022-12-10 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 3.6.2
+ * patches/0001-libarchive-Do-not-include-sys-mount.h.patch: removed
+
2022-08-31 Pavel Vinogradov <public AT sourcemage.org>
* PRE_BUILD, patches/0001-libarchive-Do-not-include-sys-mount.h.patch:
added fix to build with glibc 2.36
diff --git
a/archive-libs/libarchive/patches/0001-libarchive-Do-not-include-sys-mount.h.patch

b/archive-libs/libarchive/patches/0001-libarchive-Do-not-include-sys-mount.h.patch
deleted file mode 100644
index 7c88ca1..0000000
---
a/archive-libs/libarchive/patches/0001-libarchive-Do-not-include-sys-mount.h.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From a2f68263a1da5ad227bcb9cd8fa91b93c8b6c99f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem AT gmail.com>
-Date: Mon, 25 Jul 2022 10:56:53 -0700
-Subject: [PATCH] libarchive: Do not include sys/mount.h when linux/fs.h is
- present
-
-These headers are in conflict and only one is needed by
-archive_read_disk_posix.c therefore include linux/fs.h if it exists
-otherwise include sys/mount.h
-
-It also helps compiling with glibc 2.36
-where sys/mount.h conflicts with linux/mount.h see [1]
-
-[1] https://sourceware.org/glibc/wiki/Release/2.36
----
- libarchive/archive_read_disk_posix.c | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/libarchive/archive_read_disk_posix.c
b/libarchive/archive_read_disk_posix.c
-index 2b39e672b..a96008db7 100644
---- a/libarchive/archive_read_disk_posix.c
-+++ b/libarchive/archive_read_disk_posix.c
-@@ -34,9 +34,6 @@ __FBSDID("$FreeBSD$");
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
- #endif
--#ifdef HAVE_SYS_MOUNT_H
--#include <sys/mount.h>
--#endif
- #ifdef HAVE_SYS_STAT_H
- #include <sys/stat.h>
- #endif
-@@ -54,6 +51,8 @@ __FBSDID("$FreeBSD$");
- #endif
- #ifdef HAVE_LINUX_FS_H
- #include <linux/fs.h>
-+#elif HAVE_SYS_MOUNT_H
-+#include <sys/mount.h>
- #endif
- /*
- * Some Linux distributions have both linux/ext2_fs.h and ext2fs/ext2_fs.h.
diff --git a/editors/vim/DETAILS b/editors/vim/DETAILS
index 5b8e799..fbaae5c 100755
--- a/editors/vim/DETAILS
+++ b/editors/vim/DETAILS
@@ -9,8 +9,8 @@ SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-scm"
SOURCE_IGNORE="volatile"
FORCE_DOWNLOAD="on"
else
- VERSION=9.0.0954
-
SOURCE_HASH=sha512:7f2799706179808f167df8b06447e6691968c46b7248e1b252267df1d0e652d5bf0ec4f39ed30cdf63d0cf380b1724ac80c04bc1c15b8c1a74ac871a154f31c9
+ VERSION=9.0.1040
+
SOURCE_HASH=sha512:e3070d8357732d242b2a20a062542ad520020c74288cce32a1d036534ba4ccb98ce7186cb07065166acce7dbd8b470714dc81e9cc8ed0545d460c68c29dc8f74
SECURITY_PATCH=5
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
diff --git a/editors/vim/HISTORY b/editors/vim/HISTORY
index 9a6bf9d..8c5ba3b 100644
--- a/editors/vim/HISTORY
+++ b/editors/vim/HISTORY
@@ -1,3 +1,6 @@
+2022-12-10 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 9.0.1040
+
2022-11-27 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 9.0.0954

diff --git a/libs/protobuf/DETAILS b/libs/protobuf/DETAILS
index 46452f5..552b7ec 100755
--- a/libs/protobuf/DETAILS
+++ b/libs/protobuf/DETAILS
@@ -1,7 +1,7 @@
source $GRIMOIRE/CMAKE_FUNCTIONS
SPELL=protobuf
- VERSION=3.21.10
-
SOURCE_HASH=sha512:045bac377d0855e2f35b4238f164094ebe1fbf17f9a46f4a046bfdc0f29679c2963929c0e46aa059ca83d5dd8a15fe65df5472f66fb32265ac374540eb8fba3f
+ VERSION=21.11
+
SOURCE_HASH=sha512:52d844376c44c66c659ff947d52a803e38045edad29eb46b90ff00fec583e31f2bb38e9f7b23f1d3719669dcb2a954d634bfe08184af148f2213174884179d93
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=https://$SPELL.googlecode.com
diff --git a/libs/protobuf/HISTORY b/libs/protobuf/HISTORY
index dbf539a..caaabbf 100644
--- a/libs/protobuf/HISTORY
+++ b/libs/protobuf/HISTORY
@@ -1,3 +1,6 @@
+2022-12-10 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 21.11
+
2022-12-04 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 3.21.10

diff --git a/python-pypi/setuptools/DETAILS b/python-pypi/setuptools/DETAILS
index 8e38683..44f16ed 100755
--- a/python-pypi/setuptools/DETAILS
+++ b/python-pypi/setuptools/DETAILS
@@ -1,6 +1,6 @@
SPELL=setuptools
- VERSION=65.5.1
-
SOURCE_HASH=sha512:e75eb7fdb0bc5ffdc76ed864cf753c2672d097a60f8747ac5cd40a49276d33df31fb619877234b4c22693b627d9978ecdd48a5c6c48aa0bbb856d48dec70fb0a
+ VERSION=65.6.3
+
SOURCE_HASH=sha512:d0acfdc838454ffedabc4cc14c745071e07cc05e0a598c8bf83824788a8630d5516009e81213ae2a709f54298e754bd391cad205e7111363b64c853bd124aef3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=https://pypi.python.org/packages/source/s/${SPELL}/${SOURCE}
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/python-pypi/setuptools/HISTORY b/python-pypi/setuptools/HISTORY
index a8ce6cc..5983ddc 100644
--- a/python-pypi/setuptools/HISTORY
+++ b/python-pypi/setuptools/HISTORY
@@ -1,3 +1,6 @@
+2022-12-10 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 65.6.3
+
2022-11-12 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 65.5.1




  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (b6fb7d982d1e14f005e69b0427a589d266f84aef), Florian Franzmann, 12/10/2022

Archive powered by MHonArc 2.6.24.

Top of Page