Skip to Content.
Sympa Menu

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

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
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (dab639f221b0a7be4adf5e0431aa74acba2d0263)
  • Date: Thu, 8 Sep 2022 00:29:15 +0000

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

chat-im/profanity/DETAILS | 4 ++--
chat-im/profanity/HISTORY | 3 +++
devel/python3/DETAILS | 1 +
devel/python3/HISTORY | 4 ++++
devel/python3/INSTALL | 13 ++++++++-----
devel/zig/DETAILS | 4 ++--
devel/zig/HISTORY | 3 +++
7 files changed, 23 insertions(+), 9 deletions(-)

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

zig 0.9.1

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

profanity 0.12.1

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

python3: Add python3-embed pkgconfig alias; PATCHLEVEL++

diff --git a/chat-im/profanity/DETAILS b/chat-im/profanity/DETAILS
index 78f41d2..64935a5 100755
--- a/chat-im/profanity/DETAILS
+++ b/chat-im/profanity/DETAILS
@@ -7,10 +7,10 @@ if [[ ${PROFANITY_BRANCH} == scm ]]; then
SOURCE_IGNORE=volatile
FORCE_DOWNLOAD=on
else
- VERSION=0.11.1
+ VERSION=0.12.1
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE_URL=(https://profanity-im.github.io/tarballs/$SOURCE)
-
SOURCE_HASH=sha512:8ba627c8c5390414d2afdf31f3ff82821db108f952d562529c28b23f2d1904014c683b016ddef5a4d90ae50ac5cff8e46eab31aab517bbe02042d6837af7bb2c
+
SOURCE_HASH=sha512:ca3ea92fd439336cd0bf0be42afdda464e25be85b910aef837738b8d1787ac174ac93ccee4fb2fb385228ed7be8e9bac5e96a1f89a68df162785b17d7671463f
fi
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
DOC_DIRS=""
diff --git a/chat-im/profanity/HISTORY b/chat-im/profanity/HISTORY
index 3ef108b..54cb4f3 100644
--- a/chat-im/profanity/HISTORY
+++ b/chat-im/profanity/HISTORY
@@ -1,3 +1,6 @@
+2022-09-07 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.12.1
+
2022-03-19 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: Fixed SOURCE_URL[0]

diff --git a/devel/python3/DETAILS b/devel/python3/DETAILS
index a0621c2..a4bcaf4 100755
--- a/devel/python3/DETAILS
+++ b/devel/python3/DETAILS
@@ -14,6 +14,7 @@ case "$PYTHON3_BRANCH" in
VERSION=3.6.10 ;;
esac
SECURITY_PATCH=19
+ PATCHLEVEL=1
SOURCE=Python-$VERSION.tar.xz
SOURCE2=$SOURCE.asc
SOURCE_DIRECTORY="$BUILD_DIRECTORY/Python-$VERSION"
diff --git a/devel/python3/HISTORY b/devel/python3/HISTORY
index 7a63ddc..117f338 100644
--- a/devel/python3/HISTORY
+++ b/devel/python3/HISTORY
@@ -1,3 +1,7 @@
+2022-09-07 Ismael Luceno <ismael AT sourcemage.org>
+ * INSTALL: added python3-embed pkgconfig alias
+ * DETAILS: PATCHLEVEL++
+
2022-09-07 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: versions 3.9.14, 3.8.14, 3.7.14, SECURITY_PATCH++,
(CVE-2020-1073)

diff --git a/devel/python3/INSTALL b/devel/python3/INSTALL
index 41128ec..33aeeda 100755
--- a/devel/python3/INSTALL
+++ b/devel/python3/INSTALL
@@ -14,9 +14,11 @@ done &&
# help some stupid installer scripts
local PV=`echo ${VERSION}|cut -d . -f 1,2` &&

-# Add python3 pkgconfig alias
+# Add python3 pkgconfig aliases
ln -sf "$TRACK_ROOT"/usr/lib/pkgconfig/python-${PV}.pc \
"$INSTALL_ROOT"/usr/lib/pkgconfig/python3.pc &&
+ln -sf "$TRACK_ROOT"/usr/lib/pkgconfig/python-${PV}-embed.pc \
+ "$INSTALL_ROOT"/usr/lib/pkgconfig/python3-embed.pc &&

# Ensure existence of /usr/bin/python3 and /usr/bin/python3-config
# symlinks, as they are not created with altinstall.
@@ -32,10 +34,11 @@ if [[ -e ${TRACK_ROOT}/usr/include/python${PV}m ]]; then
ln -sf ${TRACK_ROOT}/usr/include/python${PV}m
${INSTALL_ROOT}/usr/include/python${PV}
fi &&
# this is the primary/only version of python
-if [[ $PY3K == y ]]; then
- if [[ $SYMLINK == y ]];then
+if [[ $PY3K == y ]] && [[ $SYMLINK == y ]];then
ln -sf ${TRACK_ROOT}/usr/bin/python3 ${INSTALL_ROOT}/usr/bin/python &&
ln -sf ${TRACK_ROOT}/usr/bin/python3-config
${INSTALL_ROOT}/usr/bin/python-config &&
- ln -sf ${TRACK_ROOT}/usr/lib/pkgconfig/python-${PV}.pc
${INSTALL_ROOT}/usr/lib/pkgconfig/python.pc
- fi
+ ln -sf "$TRACK_ROOT"/usr/lib/pkgconfig/python-${PV}.pc \
+ "$INSTALL_ROOT"/usr/lib/pkgconfig/python.pc &&
+ ln -sf "$TRACK_ROOT"/usr/lib/pkgconfig/python-${PV}-embed.pc \
+ "$INSTALL_ROOT"/usr/lib/pkgconfig/python-embed.pc
fi
diff --git a/devel/zig/DETAILS b/devel/zig/DETAILS
index bb21395..d6b92f8 100755
--- a/devel/zig/DETAILS
+++ b/devel/zig/DETAILS
@@ -1,9 +1,9 @@
. "$GRIMOIRE"/CMAKE_FUNCTIONS
SPELL=zig
- VERSION=0.9.0
+ VERSION=0.9.1
SOURCE="$SPELL-$VERSION.tar.gz"

SOURCE_URL[0]=https://github.com/ziglang/$SPELL/archive/refs/tags/$VERSION.tar.gz
-
SOURCE_HASH=sha512:fef36221e818364b45cf65de210b0a9d535c411a510371a3ab4dfd6f4621c0a16dba786169f115a006966875102acc742abee19a74d83e2bc999ea5b8304b879
+
SOURCE_HASH=sha512:a9dc5fea25dde511122056832449658b00dbcf6d6bbfe658b375968a7bdb06c690abbdfe00c1afcfa481442392b051dcef5a5a5e81d4ceb23fa98a866b900f37
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="https://ziglang.org/";
LICENSE[0]="MIT"
diff --git a/devel/zig/HISTORY b/devel/zig/HISTORY
index 09b392f..abd8b0f 100644
--- a/devel/zig/HISTORY
+++ b/devel/zig/HISTORY
@@ -1,3 +1,6 @@
+2022-09-07 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.9.1
+
2021-12-24 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 0.9.0




  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (dab639f221b0a7be4adf5e0431aa74acba2d0263), Ismael Luceno, 09/07/2022

Archive powered by MHonArc 2.6.24.

Top of Page