Skip to Content.
Sympa Menu

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

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 (98cba220e5d2a940f82dce278cc1e26430fa7cfc)
  • Date: Tue, 5 Oct 2021 21:31:08 +0000

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

ChangeLog | 5 +++++
devel/llvm/HISTORY | 5 ++++-
devel/llvm/patches-clang/compiler-rt-size_t.patch | 12 ------------
libs/libcuckoo/CONFIGURE | 1 +
libs/libcuckoo/DEPENDS | 1 +
libs/libcuckoo/DETAILS | 16 ++++++++++++++++
libs/libcuckoo/HISTORY | 2 ++
libs/liblangtag/DEPENDS | 6 ++++++
libs/liblangtag/DETAILS | 15 +++++++++++++++
libs/liblangtag/HISTORY | 2 ++
security/wireshark/BUILD | 2 +-
security/wireshark/HISTORY | 3 +++
12 files changed, 56 insertions(+), 14 deletions(-)

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

llvm: Remove compiler-rt-size_t.patch, lo longer needed

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

liblangtag: new spell, interface library to access tags for identifying
languages

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

libcuckoo: new spell, high-performance concurrent hash table

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

wireshark: Disable -Werror

diff --git a/ChangeLog b/ChangeLog
index a9c34bc..0338037 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2021-10-05 Ismael Luceno <ismael AT sourcemage.org>
+ * libs/libcuckoo: new spell, high-performance concurrent hash table
+ * libs/liblangtag: new spell, interface library to access tags for
+ identifying languages
+
2021-10-04 Pavel Vinogradov <public AT sourcemage.org>
* ftp/transmission-i2p: new spell, an anonymous torrent client
Transmission-I2P

diff --git a/devel/llvm/HISTORY b/devel/llvm/HISTORY
index 84df088..340d066 100644
--- a/devel/llvm/HISTORY
+++ b/devel/llvm/HISTORY
@@ -1,7 +1,10 @@
+2021-10-05 Ismael Luceno <ismael AT iodev.co.uk>
+ * patches-clang/compiler-rt-size_t.patch: removed, no longer needed
+
2021-10-01 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 13.0.0
*
patches-llvm/0001--SROA--Avoid-splitting-loads-stores-with-irregular-type.patch:
- deleted
+ deleted, no longer needed

2021-09-09 Ismael Luceno <ismael AT sourcemage.org>
* PRE_SUB_DEPENDS, SUB_DEPENDS: added generic target subdeps
diff --git a/devel/llvm/patches-clang/compiler-rt-size_t.patch
b/devel/llvm/patches-clang/compiler-rt-size_t.patch
deleted file mode 100644
index c7272c6..0000000
--- a/devel/llvm/patches-clang/compiler-rt-size_t.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Origin: Void Linux
-
---- a/projects/compiler-rt/lib/fuzzer/FuzzerInterceptors.cpp
-+++ b/projects/compiler-rt/lib/fuzzer/FuzzerInterceptors.cpp
-@@ -25,6 +25,7 @@
- }
-
- #include <cassert>
-+#include <cstddef>
- #include <cstdint>
- #include <dlfcn.h> // for dlsym()
-
diff --git a/libs/libcuckoo/CONFIGURE b/libs/libcuckoo/CONFIGURE
new file mode 100755
index 0000000..b1e2770
--- /dev/null
+++ b/libs/libcuckoo/CONFIGURE
@@ -0,0 +1 @@
+. "$GRIMOIRE"/CMAKE_CONFIGURE
diff --git a/libs/libcuckoo/DEPENDS b/libs/libcuckoo/DEPENDS
new file mode 100755
index 0000000..bd2c258
--- /dev/null
+++ b/libs/libcuckoo/DEPENDS
@@ -0,0 +1 @@
+. "$GRIMOIRE"/CMAKE_DEPENDS
diff --git a/libs/libcuckoo/DETAILS b/libs/libcuckoo/DETAILS
new file mode 100755
index 0000000..3eaf579
--- /dev/null
+++ b/libs/libcuckoo/DETAILS
@@ -0,0 +1,16 @@
+. "$GRIMOIRE"/CMAKE_FUNCTIONS
+ SPELL=libcuckoo
+ VERSION=0.3
+ SOURCE="$SPELL-$VERSION.tar.gz"
+
SOURCE_URL[0]=https://github.com/efficient/$SPELL/archive/refs/tags/v$VERSION.tar.gz
+
SOURCE_HASH=sha512:038d0a03364cba9e9f90a96215eed00d9bc7460e5444263bd8a0a39b21f118707dec4ab632f8ab5ac24bb93c5da43ac3d1c6240ab2bf7dcdc86e94b03ffb53d9
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="https://github.com/efficient/libcuckoo";
+ LICENSE[0]="Apache-2.0"
+ ENTERED=20211005
+ KEYWORDS=""
+ SHORT="high-performance concurrent hash table"
+cat << EOF
+libcuckoo provides a high-performance, compact hash table that allows
multiple
+concurrent reader and writer threads.
+EOF
diff --git a/libs/libcuckoo/HISTORY b/libs/libcuckoo/HISTORY
new file mode 100644
index 0000000..6f14bc6
--- /dev/null
+++ b/libs/libcuckoo/HISTORY
@@ -0,0 +1,2 @@
+2021-10-05 Ismael Luceno <ismael AT sourcemage.org>
+ * CONFIGURE, DEPENDS, DETAILS: spell created
diff --git a/libs/liblangtag/DEPENDS b/libs/liblangtag/DEPENDS
new file mode 100755
index 0000000..7cc6f3e
--- /dev/null
+++ b/libs/liblangtag/DEPENDS
@@ -0,0 +1,6 @@
+optional_depends gobject-introspection \
+ --enable-introspection={yes,no} \
+ 'for Introspection support' &&
+optional_depends gtk-doc \
+ --{enable,disable}-gtk-doc \
+ 'to build HTML documentation'
diff --git a/libs/liblangtag/DETAILS b/libs/liblangtag/DETAILS
new file mode 100755
index 0000000..3aa8af0
--- /dev/null
+++ b/libs/liblangtag/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=liblangtag
+ VERSION=0.6.3
+ SOURCE="${SPELL}_$VERSION.orig.tar.bz2"
+ SOURCE_URL[0]=http://deb.debian.org/debian/pool/main/libl/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:3dcfc20704dfaff05aeecdeef74fa81639fb70f930ebc0895fe4707ecd1d5b6221fe889449772811924d0c38329977c9d5fc751c3accbc272834b29c461f1fcf
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="http://tagoh.bitbucket.org/liblangtag/";
+ LICENSE[0]="GPL-3.0-or-later MPL-2.0"
+ ENTERED=20211005
+ KEYWORDS=""
+ SHORT="interface library to access tags for identifying languages"
+cat << EOF
+liblangtag is an interface library to access/deal with tags for identifying
+languages, which is described in RFC 5646.
+EOF
diff --git a/libs/liblangtag/HISTORY b/libs/liblangtag/HISTORY
new file mode 100644
index 0000000..89b68de
--- /dev/null
+++ b/libs/liblangtag/HISTORY
@@ -0,0 +1,2 @@
+2021-10-05 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/security/wireshark/BUILD b/security/wireshark/BUILD
index 594e6d3..05ed733 100755
--- a/security/wireshark/BUILD
+++ b/security/wireshark/BUILD
@@ -1,4 +1,4 @@
-OPTS="$WIRESHARK_OPTS $OPTS" &&
+OPTS="$WIRESHARK_OPTS $OPTS -DDISABLE_WERROR=ON" &&
CFLAGS="$CFLAGS -Wno-error=deprecated-declarations
-Wno-error=maybe-uninitialized" &&
CXXFLAGS="$CXXFLAGS -Wno-error=deprecated-declarations
-Wno-error=maybe-uninitialized" &&

diff --git a/security/wireshark/HISTORY b/security/wireshark/HISTORY
index 4357ce5..a284cdd 100644
--- a/security/wireshark/HISTORY
+++ b/security/wireshark/HISTORY
@@ -1,3 +1,6 @@
+2021-10-05 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD: added disabling of -Werror
+
2021-08-29 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 3.5.0




  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (98cba220e5d2a940f82dce278cc1e26430fa7cfc), Ismael Luceno, 10/05/2021

Archive powered by MHonArc 2.6.24.

Top of Page