Skip to Content.
Sympa Menu

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

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 (fee3d6ed4613eb96a3ed4a2d7b5bb6aacef58388)
  • Date: Thu, 2 Feb 2023 13:37:12 +0000

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

cluster/lapack/DEPENDS | 4 ++--
cluster/lapack/HISTORY | 3 +++
crypto/libssh/BUILD | 1 +
crypto/libssh/CONFIGURE | 1 +
crypto/libssh/DEPENDS | 6 ++++--
crypto/libssh/DETAILS | 3 ++-
crypto/libssh/HISTORY | 5 +++++
libs/abseil-cpp/DETAILS | 4 ++--
libs/abseil-cpp/HISTORY | 3 +++
9 files changed, 23 insertions(+), 7 deletions(-)

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

abseil-cpp 20230125.0

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

libssh 0.10.4

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

lapack: Remove opt dep on Ninja

It isn't compatible with CMake's Fortran support.

diff --git a/cluster/lapack/DEPENDS b/cluster/lapack/DEPENDS
index ded8c7f..15409a0 100755
--- a/cluster/lapack/DEPENDS
+++ b/cluster/lapack/DEPENDS
@@ -1,3 +1,3 @@
-source $GRIMOIRE/CMAKE_DEPENDS &&
-
+# XXX: Ninja isn't supported for Fortran, so we can't use CMAKE_DEPENDS
+depends cmake &&
depends -sub FORTRAN gcc
diff --git a/cluster/lapack/HISTORY b/cluster/lapack/HISTORY
index 5f0e9d6..3f8cfa0 100644
--- a/cluster/lapack/HISTORY
+++ b/cluster/lapack/HISTORY
@@ -1,3 +1,6 @@
+2023-02-02 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: removed optional dependency on ninja
+
2022-04-30 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 3.10.1

diff --git a/crypto/libssh/BUILD b/crypto/libssh/BUILD
index e013b8d..0a63aea 100755
--- a/crypto/libssh/BUILD
+++ b/crypto/libssh/BUILD
@@ -1 +1,2 @@
+OPTS+=' -DUNIT_TESTING=OFF -DWITH_EXAMPLES=OFF' &&
cmake_build
diff --git a/crypto/libssh/CONFIGURE b/crypto/libssh/CONFIGURE
new file mode 100755
index 0000000..b1e2770
--- /dev/null
+++ b/crypto/libssh/CONFIGURE
@@ -0,0 +1 @@
+. "$GRIMOIRE"/CMAKE_CONFIGURE
diff --git a/crypto/libssh/DEPENDS b/crypto/libssh/DEPENDS
index ea653e1..c417397 100755
--- a/crypto/libssh/DEPENDS
+++ b/crypto/libssh/DEPENDS
@@ -1,3 +1,5 @@
-depends cmake &&
+. "$GRIMOIRE"/CMAKE_DEPENDS &&
depends zlib &&
-depends libgcrypt ' -DWITH_GCRYPT=1'
+depends libgcrypt ' -DWITH_GCRYPT=1' &&
+# FIXME add support for openssl
+optional_depends krb5 -DWITH_GSSAPI={ON,OFF} "for Kerberos support"
diff --git a/crypto/libssh/DETAILS b/crypto/libssh/DETAILS
index 95dc09b..56e74b0 100755
--- a/crypto/libssh/DETAILS
+++ b/crypto/libssh/DETAILS
@@ -1,5 +1,6 @@
+. "$GRIMOIRE"/CMAKE_FUNCTIONS
SPELL=libssh
- VERSION=0.9.6
+ VERSION=0.10.4
SECURITY_PATCH=10
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE2=$SOURCE.asc
diff --git a/crypto/libssh/HISTORY b/crypto/libssh/HISTORY
index 1d6b60f..3809840 100644
--- a/crypto/libssh/HISTORY
+++ b/crypto/libssh/HISTORY
@@ -1,3 +1,8 @@
+2023-02-02 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS, DEPENDS, CONFIGURE: added CMake support files
+ * DEPENDS: added optional dependency on krb5
+ * DETAILS: updated spell to 0.10.4
+
2021-09-23 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 0.9.6
SECURITY_PATCH++ fix CVE-2021-3634
diff --git a/libs/abseil-cpp/DETAILS b/libs/abseil-cpp/DETAILS
index a24a3a9..ac37888 100755
--- a/libs/abseil-cpp/DETAILS
+++ b/libs/abseil-cpp/DETAILS
@@ -1,9 +1,9 @@
. "$GRIMOIRE"/CMAKE_FUNCTIONS
SPELL=abseil-cpp
- VERSION=20211102.0
+ VERSION=20230125.0
SOURCE="$SPELL-$VERSION.tar.gz"

SOURCE_URL[0]=https://github.com/abseil/$SPELL/archive/refs/tags/$VERSION.tar.gz
-
SOURCE_HASH=sha512:fed68aa434c02ec6faa9d1c81f1ad35b60ec024b44957e2e0ac31e6075e385c06a3e1b616afeb4bb7c2413191fd7827d82e1f9f0796b52ed21fb2c41dd9031cf
+
SOURCE_HASH=sha512:b3d334215c78b31a2eb10bd9d4a978cd48367866d6daa2065c6c727282bafe19ef7ff5bd7cd4ed5c319d3b04e0711222e08ddbe7621ef1e079fed93a7307112f
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="https://github.com/abseil/abseil-cpp";
LICENSE[0]="Apache-2.0"
diff --git a/libs/abseil-cpp/HISTORY b/libs/abseil-cpp/HISTORY
index d22bbdb..490b43f 100644
--- a/libs/abseil-cpp/HISTORY
+++ b/libs/abseil-cpp/HISTORY
@@ -1,2 +1,5 @@
+2023-02-02 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 20230125.0
+
2021-12-25 Ismael Luceno <ismael AT sourcemage.org>
* CONFIGURE, DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (fee3d6ed4613eb96a3ed4a2d7b5bb6aacef58388), Ismael Luceno, 02/02/2023

Archive powered by MHonArc 2.6.24.

Top of Page