Skip to Content.
Sympa Menu

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

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 (7d69aa8d2aac470f6f4319d096e76c3d62c04d69)
  • Date: Wed, 9 Sep 2020 16:47:29 +0000

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

ChangeLog | 3 +++
antivirus/clamav/BUILD | 4 ++++
antivirus/clamav/DEPENDS | 5 +++++
antivirus/clamav/DETAILS | 2 +-
antivirus/clamav/HISTORY | 4 ++++
disk/mmc-utils/BUILD | 1 +
disk/mmc-utils/DETAILS | 15 +++++++++++++++
disk/mmc-utils/HISTORY | 2 ++
disk/mmc-utils/INSTALL | 2 ++
disk/mmc-utils/PREPARE | 2 ++
10 files changed, 39 insertions(+), 1 deletion(-)

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

mmc-utils: new spell, Userspace tools for MMC/SD devices

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

clamav: Fix building against musl

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

clamav 0.102.4

diff --git a/ChangeLog b/ChangeLog
index c286b2d..4a743af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2020-09-09 Ismael Luceno <ismael AT sourcemage.org>
+ * disk/mmc-utils: new spell, Userspace tools for MMC/SD devices
+
2020-09-08 Thomas Orgis <sobukus AT orgis.org>
* smgl/smgl-test-spell, smgl/smgl-test-failspell: dummy spells for
sorcery testing
* la_remove_up_trigger.function, libtool-nola: Support spells in
removing
diff --git a/antivirus/clamav/BUILD b/antivirus/clamav/BUILD
index e11be9b..589444d 100755
--- a/antivirus/clamav/BUILD
+++ b/antivirus/clamav/BUILD
@@ -2,4 +2,8 @@ create_account clamav &&

OPTS="${CLAM_EXP} ${CLAM_IP6} $OPTS" &&

+if is_depends_enabled $SPELL musl-fts; then
+ LDFLAGS+=" -lfts"
+fi &&
+
default_build
diff --git a/antivirus/clamav/DEPENDS b/antivirus/clamav/DEPENDS
index d1b3f9d..5673331 100755
--- a/antivirus/clamav/DEPENDS
+++ b/antivirus/clamav/DEPENDS
@@ -1,3 +1,8 @@
+case "$HOST" in
+ *-musl)
+ depends musl-fts
+ ;;
+esac &&
depends -sub CXX gcc &&
depends zlib '--disable-zlib-vcheck' &&
depends curl &&
diff --git a/antivirus/clamav/DETAILS b/antivirus/clamav/DETAILS
index 2d344d9..3b14ae1 100755
--- a/antivirus/clamav/DETAILS
+++ b/antivirus/clamav/DETAILS
@@ -1,5 +1,5 @@
SPELL=clamav
- VERSION=1,102.3
+ VERSION=0.102.4
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-${VERSION//-/}"
diff --git a/antivirus/clamav/HISTORY b/antivirus/clamav/HISTORY
index 3a4fa3c..fc62d91 100644
--- a/antivirus/clamav/HISTORY
+++ b/antivirus/clamav/HISTORY
@@ -1,3 +1,7 @@
+2020-09-09 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.102.4
+ * DEPENDS, BUILD: fixed compiling against musl
+
2020-05-20 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1,102.3

diff --git a/disk/mmc-utils/BUILD b/disk/mmc-utils/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/disk/mmc-utils/BUILD
@@ -0,0 +1 @@
+make
diff --git a/disk/mmc-utils/DETAILS b/disk/mmc-utils/DETAILS
new file mode 100755
index 0000000..d831c7d
--- /dev/null
+++ b/disk/mmc-utils/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=mmc-utils
+ VERSION=$(get_scm_version)
+ SOURCE="$SPELL-git.tar.bz2"
+
SOURCE_URL[0]=git://git.kernel.org/pub/scm/linux/kernel/git/cjb/$SPELL.git:$SPELL-git
+ FORCE_DOWNLOAD=on
+ SOURCE_IGNORE=volatile
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-git"
+
WEB_SITE="https://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git/";
+ LICENSE[0]="GPL-2.0-only"
+ ENTERED=20200909
+ KEYWORDS=""
+ SHORT="Userspace tools for MMC/SD devices"
+cat << EOF
+mmc-utils is a tool for configuring MMC storage devices from userspace.
+EOF
diff --git a/disk/mmc-utils/HISTORY b/disk/mmc-utils/HISTORY
new file mode 100644
index 0000000..36edba2
--- /dev/null
+++ b/disk/mmc-utils/HISTORY
@@ -0,0 +1,2 @@
+2020-09-09 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, DETAILS, INSTALL, PREPARE: spell created
diff --git a/disk/mmc-utils/INSTALL b/disk/mmc-utils/INSTALL
new file mode 100755
index 0000000..75f7558
--- /dev/null
+++ b/disk/mmc-utils/INSTALL
@@ -0,0 +1,2 @@
+make install \
+ prefix="$INSTALL_ROOT/usr"
diff --git a/disk/mmc-utils/PREPARE b/disk/mmc-utils/PREPARE
new file mode 100755
index 0000000..f8b7d7e
--- /dev/null
+++ b/disk/mmc-utils/PREPARE
@@ -0,0 +1,2 @@
+. ${GRIMOIRE}/FUNCTIONS &&
+prepare_select_branch



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (7d69aa8d2aac470f6f4319d096e76c3d62c04d69), Ismael Luceno, 09/09/2020

Archive powered by MHonArc 2.6.24.

Top of Page