Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (689ff2d791e0fc3b39e902c9863de15508696c2d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (689ff2d791e0fc3b39e902c9863de15508696c2d)
  • Date: Sun, 21 Jan 2024 17:28:04 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

chat-irc/weechat/CONFIGURE | 2 +-
chat-irc/weechat/DEPENDS | 9 +++++----
chat-irc/weechat/DETAILS | 6 +++---
chat-irc/weechat/HISTORY | 5 +++++
4 files changed, 14 insertions(+), 8 deletions(-)

New commits:
commit 689ff2d791e0fc3b39e902c9863de15508696c2d
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

chat-irc/weechat: version 4.2.0

diff --git a/chat-irc/weechat/CONFIGURE b/chat-irc/weechat/CONFIGURE
index 040031d..cc0bc83 100755
--- a/chat-irc/weechat/CONFIGURE
+++ b/chat-irc/weechat/CONFIGURE
@@ -1,4 +1,4 @@
-source $GRIMOIRE/CMAKE_CONFIGURE
+. "${GRIMOIRE}/CMAKE_CONFIGURE" &&

config_query_option WEECHAT_OPTS \
"enable Alias plugin?" \
diff --git a/chat-irc/weechat/DEPENDS b/chat-irc/weechat/DEPENDS
index 2eecbf3..2655614 100755
--- a/chat-irc/weechat/DEPENDS
+++ b/chat-irc/weechat/DEPENDS
@@ -1,6 +1,6 @@
-source $GRIMOIRE/CMAKE_DEPENDS &&
+. "${GRIMOIRE}/CMAKE_DEPENDS" &&

-if [[ $WEECHAT_BRANCH == scm ]]; then
+if [[ "${WEECHAT_BRANCH}" == "scm" ]]; then
depends git
fi &&

@@ -11,13 +11,13 @@ depends GETTEXT &&

depends gnutls &&
depends ca-certificates &&
-depends zstd &&

optional_depends asciidoctor "-DENABLE_DOC=ON" "-DENABLE_DOC=OFF" "build
documentation?" &&
if is_depends_enabled asciidoctor; then
depends source-highlight
fi &&

+
optional_depends xsltproc "-DENABLE_MAN=ON" "-DENABLE_MAN=OFF" "build
manpages" &&
if is_depends_enabled xsltproc; then
depends docbook-xml &&
@@ -26,7 +26,7 @@ fi &&


optional_depends perl "-DENABLE_PERL=ON" "-DENABLE_PERL=ON" "Turns on Perl
script plugin" &&
-optional_depends python3 "-DENABLE_PYTHON3=ON" "-DENABLE_PYTHON3=OFF" "Turns
on Python 3 script plugin" &&
+optional_depends python3 "-DENABLE_PYTHON=ON" "-DENABLE_PYTHON=OFF" "Turns
on Python 3 script plugin" &&
optional_depends RUBY "-DENABLE_RUBY=ON" "-DENABLE_RUBY=OFF" "Turns on Ruby
script plugin" &&
optional_depends LUA "-DENABLE_LUA=ON" "-DENABLE_LUA=OFF" "Turn on Lua
script plugin" &&
optional_depends PHP "-DENABLE_PHP=ON" "-DENABLE_PHP=OFF" "Turn on PHP
script plugin" &&
@@ -35,6 +35,7 @@ optional_depends guile "-DENABLE_GUILE=ON"
"-DENABLE_GUILE=OFF" "Turn on Scheme
optional_depends libv8 "-DENABLE_JAVASCRIPT=ON" "-DENABLE_JAVASCRIPT=OFF"
"Turn on JavaScript script plugin" &&
optional_depends ncurses "-DENABLE_NCURSES=ON" "-DENABLE_NCURSES=OFF"
"Enable ncurses interface" &&
optional_depends tcl "-DENABLE_TCL=ON" "-DENABLE_TCL=OFF" "Enable tcl script
plugin" &&
+optional_depends zstd "-DENABLE_ZSTD=ON" "-DENABLE_ZSTD=OFF" "for Zstandard
compression" &&

if is_depends_enabled $SPELL aspell; then
optional_depends enchant "-DENABLE_ENCHANT=ON" "-DENABLE_ENCHANT=OFF"
"enable Enchant lib for Aspell plugin"
diff --git a/chat-irc/weechat/DETAILS b/chat-irc/weechat/DETAILS
index 5bc5a09..32e2efe 100755
--- a/chat-irc/weechat/DETAILS
+++ b/chat-irc/weechat/DETAILS
@@ -1,5 +1,5 @@
-source $GRIMOIRE/CMAKE_FUNCTIONS
. "$GRIMOIRE/FUNCTIONS"
+. "${GRIMOIRE}/CMAKE_FUNCTIONS"
SPELL=weechat
case "$WEECHAT_BRANCH" in
scm)
@@ -18,8 +18,8 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$WEECHAT_BRANCH"
SOURCE_URL[0]=http://www.weechat.org/files/src/$SOURCE
;;
*)
- VERSION=4.1.3
-
SOURCE_HASH="sha512:e33c29ddcaa49aba94f0a7ceada9fd0df0ea63a843ab752eb35d8b1a68ca151ae8d58ab66ec18f82d7ba7846cacaef8a19edcbf4e70f6ae10dd9a3cf09955bb0:UPSTREAM_HASH"
+ VERSION=4.2.0
+
SOURCE_HASH="sha512:956aa0f0d987d5d21a449ffd1cd627c3c8e593f17bb616fad7e3107def5bff3e64372c0263b8a164ed79c37a1548eda6c22dae8a4433ddf652c148f192cd82f7:UPSTREAM_HASH"
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
SOURCE_URL[0]="http://www.weechat.org/files/src/${SOURCE}";
diff --git a/chat-irc/weechat/HISTORY b/chat-irc/weechat/HISTORY
index b4e8cf2..46aeffb 100644
--- a/chat-irc/weechat/HISTORY
+++ b/chat-irc/weechat/HISTORY
@@ -1,3 +1,8 @@
+2024-01-21 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 4.2.0, quoting++
+ * CONFIGURE, DEPENDS: quoting++, zstd is optional now, updared flags
for
+ python3
+
2024-01-20 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 4.1.3




  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (689ff2d791e0fc3b39e902c9863de15508696c2d), Pavel Vinogradov, 01/21/2024

Archive powered by MHonArc 2.6.24.

Top of Page