Skip to Content.
Sympa Menu

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

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
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (b11aa321f784f9f6b953d4da56c315501d3efad3)
  • Date: Fri, 19 Aug 2022 10:52:28 +0000

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

gnu/gcc/DETAILS
| 2
gnu/gcc/HISTORY
| 4

gnu/gcc/patches/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch
| 101 ----------
libs/protobuf/DETAILS
| 4
libs/protobuf/HISTORY
| 3
5 files changed, 10 insertions(+), 104 deletions(-)

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

gcc: => 12.2.0

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

protobuf: => 3.21.5

diff --git a/gnu/gcc/DETAILS b/gnu/gcc/DETAILS
index 82bb12f..5b4bffd 100755
--- a/gnu/gcc/DETAILS
+++ b/gnu/gcc/DETAILS
@@ -1,5 +1,5 @@
SPELL=gcc
- VERSION=12.1.0
+ VERSION=12.2.0
ISL_VERSION=0.24
BASE_SOURCE_URL="https://ftp.gnu.org/pub/gnu/gcc/gcc-$VERSION";
SOURCE=gcc-$VERSION.tar.xz
diff --git a/gnu/gcc/HISTORY b/gnu/gcc/HISTORY
index 4264981..32bfb1a 100644
--- a/gnu/gcc/HISTORY
+++ b/gnu/gcc/HISTORY
@@ -1,3 +1,7 @@
+2022-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 12.2.0
+ * 0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch:
deleted
+
2022-06-02 Ismael Luceno <ismael AT sourcemage.org>
* BUILD, PRE_BUILD,
0001-musl-always-use--lib--directory-for-all-x86_64-ABIs.patch,
diff --git
a/gnu/gcc/patches/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch

b/gnu/gcc/patches/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch
deleted file mode 100644
index 83a62f2..0000000
---
a/gnu/gcc/patches/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-From 72f32e3383129ad139df76d9a063fac9b03079b1 Mon Sep 17 00:00:00 2001
-From: Alex McGrath <amk AT amk.ie>
-Date: Wed, 13 Oct 2021 23:24:27 +0100
-Subject: [PATCH] Fix attempt to use poisoned calloc error in libgccjit
-
-This moves usages of pthread.h to above any usage of system.h as it
-included #pragma GCC poison calloc
-
-Origin: Alpine Linux
-Ref:
https://git.alpinelinux.org/aports/plain/main/gcc/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch
-Ref: https://bugs.gentoo.org/828580
-Ref: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104799
-Signed-off-by: Ismael Luceno <ismael AT iodev.co.uk>
-
----
- gcc/jit/jit-playback.cc | 4 ++--
- gcc/jit/jit-recording.cc | 4 ++--
- gcc/jit/libgccjit.cc | 3 ++-
- libcc1/libcc1plugin.cc | 1 +
- libcc1/libcp1plugin.cc | 1 +
- 5 files changed, 8 insertions(+), 5 deletions(-)
-
---- a/gcc/jit/jit-playback.cc
-+++ b/gcc/jit/jit-playback.cc
-@@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public
License
- along with GCC; see the file COPYING3. If not see
- <http://www.gnu.org/licenses/>. */
-
-+#include <pthread.h>
-+
- #include "config.h"
- #include "system.h"
- #include "coretypes.h"
-@@ -41,8 +43,6 @@ along with GCC; see the file COPYING3. If not see
- #include "diagnostic.h"
- #include "stmt.h"
-
--#include <pthread.h>
--
- #include "jit-playback.h"
- #include "jit-result.h"
- #include "jit-builtins.h"
---- a/gcc/jit/jit-recording.cc
-+++ b/gcc/jit/jit-recording.cc
-@@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public
License
- along with GCC; see the file COPYING3. If not see
- <http://www.gnu.org/licenses/>. */
-
-+#include <pthread.h>
-+
- #include "config.h"
- #include "system.h"
- #include "coretypes.h"
-@@ -25,8 +27,6 @@ along with GCC; see the file COPYING3. If not see
- #include "pretty-print.h"
- #include "toplev.h"
-
--#include <pthread.h>
--
- #include "jit-builtins.h"
- #include "jit-recording.h"
- #include "jit-playback.h"
---- a/gcc/jit/libgccjit.cc
-+++ b/gcc/jit/libgccjit.cc
-@@ -18,13 +18,14 @@ You should have received a copy of the GNU General
Public License
- along with GCC; see the file COPYING3. If not see
- <http://www.gnu.org/licenses/>. */
-
-+#include <pthread.h>
-+
- #include "config.h"
- #include "system.h"
- #include "coretypes.h"
- #include "timevar.h"
- #include "typed-splay-tree.h"
- #include "cppbuiltin.h"
--#include <pthread.h>
-
- #include "libgccjit.h"
- #include "jit-recording.h"
---- a/libcc1/libcc1plugin.cc
-+++ b/libcc1/libcc1plugin.cc
-@@ -17,6 +17,7 @@
- along with GCC; see the file COPYING3. If not see
- <http://www.gnu.org/licenses/>. */
-
-+#include <pthread.h>
- #include <cc1plugin-config.h>
-
- #undef PACKAGE_NAME
---- a/libcc1/libcp1plugin.cc
-+++ b/libcc1/libcp1plugin.cc
-@@ -18,6 +18,7 @@
- along with GCC; see the file COPYING3. If not see
- <http://www.gnu.org/licenses/>. */
-
-+#include <pthread.h>
- #include <cc1plugin-config.h>
-
- #undef PACKAGE_NAME
-
diff --git a/libs/protobuf/DETAILS b/libs/protobuf/DETAILS
index 8beef0f..4b59e37 100755
--- a/libs/protobuf/DETAILS
+++ b/libs/protobuf/DETAILS
@@ -1,7 +1,7 @@
source $GRIMOIRE/CMAKE_FUNCTIONS
SPELL=protobuf
- VERSION=3.21.2
-
SOURCE_HASH=sha512:c08b090d9c447667c5b166260b6c4db88c3dfdf421182fb6fa20619b82a62eba47434735431fd6854f1121f8e5fdc11e5ee72ce30774eee0e02c1a3a3b85c4f3
+ VERSION=3.21.5
+
SOURCE_HASH=sha512:11347a125bf7d15a472d9cb307221d72a34e49990d09f66d17e3df81a77ac27bf9d0c09db747db0ecfd1ddbaadcaad4f56042848428a7bff4940190c48b27fb0
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 9a94bab..eb948c4 100644
--- a/libs/protobuf/HISTORY
+++ b/libs/protobuf/HISTORY
@@ -1,3 +1,6 @@
+2022-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 3.21.5
+
2022-06-25 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 3.21.2




  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (b11aa321f784f9f6b953d4da56c315501d3efad3), Treeve Jelbert, 08/19/2022

Archive powered by MHonArc 2.6.24.

Top of Page