Skip to Content.
Sympa Menu

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

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 (fc57aa7e386913703e97137eb8c85bc6e087f045)
  • Date: Wed, 9 Nov 2022 20:51:08 +0000

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

chat-im/utox/DEPENDS | 32
+++++++---
chat-im/utox/DETAILS | 11
+--
chat-im/utox/HISTORY | 5
+
chat-libs/c-toxcore/BUILD | 2
chat-libs/c-toxcore/CONFIGURE | 1
chat-libs/c-toxcore/DEPENDS | 8
--
chat-libs/c-toxcore/DETAILS | 7
+-
chat-libs/c-toxcore/HISTORY | 5
+
chat-libs/c-toxcore/patches/0003-Add-nTox-to-the-install-target.patch | 24
-------
9 files changed, 46 insertions(+), 49 deletions(-)

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

utox 0.18.1

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

c-toxcore 0.2.18

diff --git a/chat-im/utox/DEPENDS b/chat-im/utox/DEPENDS
index dc21730..b4472bc 100755
--- a/chat-im/utox/DEPENDS
+++ b/chat-im/utox/DEPENDS
@@ -1,9 +1,23 @@
-depends c-toxcore &&
-depends filter_audio &&
-depends fontconfig &&
-depends freetype2 &&
-depends libv4l &&
-depends libvpx &&
-depends libx11 &&
-depends libxext &&
-depends libxrender
+. "$GRIMOIRE"/VDEPENDS &&
+vdepends <<-EOF &&
+ OPENAL
+ c-toxcore >= 0.2.0
+ filter_audio
+ fontconfig
+ freetype2
+ libsodium
+ libv4l
+ libvpx
+ libx11
+ libxext
+ libxrender
+ opus
+EOF
+
+optional_depends check \
+ -DENABLE_TESTS={ON,OFF} \
+ 'to build test binaries' &&
+
+optional_depends dbus \
+ -DENABLE_DBUS={ON,OFF} \
+ 'for DBUS support'
diff --git a/chat-im/utox/DETAILS b/chat-im/utox/DETAILS
index 7675751..1839385 100755
--- a/chat-im/utox/DETAILS
+++ b/chat-im/utox/DETAILS
@@ -6,13 +6,14 @@ if [[ "$UTOX_BRANCH" = scm ]]; then
SOURCE_URL[0]=git://github.com/uTox/uTox.git::develop
SOURCE_IGNORE=volatile
FORCE_DOWNLOAD=on
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/uTox-scm"
else
- VERSION=0.15.0
- SOURCE="uTox-$VERSION.tar.gz"
- SOURCE_URL[0]=https://github.com/uTox/uTox/archive/v$VERSION.tar.gz
-
SOURCE_HASH=sha512:af813f67b1b813c23f6be0cbd9f986d3553122eb1322511735f2931e2e1a65d8125c36f5839d7109c378c58aaec2830ea51c71db57cd952290338bfd72670bf0
+ VERSION=0.18.1
+ SOURCE="uTox-$VERSION-full.tar.gz"
+
SOURCE_URL[0]=https://github.com/uTox/uTox/releases/download/v$VERSION/$SOURCE
+
SOURCE_HASH=sha512:8c3c7016b73dd59d154e781eee2e9d7a05b889460900703e1850cace7796c4f89cd5b1be0421b6becd8d908e46839c87786c782d07be38efb5bbdbdecb8afe2a
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/uTox"
fi
-SOURCE_DIRECTORY="$BUILD_DIRECTORY/uTox-$VERSION"
WEB_SITE="http://utox.org/";
LICENSE[0]="GPLv2"
ENTERED=20161123
diff --git a/chat-im/utox/HISTORY b/chat-im/utox/HISTORY
index 7ff5b79..098456e 100644
--- a/chat-im/utox/HISTORY
+++ b/chat-im/utox/HISTORY
@@ -1,3 +1,8 @@
+2022-11-09 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.18.1
+ * DEPENDS: added dep on check, dbus, libsodium, opus & openal
+ request c-toxcore >= 0.2.0
+
2017-06-17 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS, PREPARE: added stable branch, version 0.15.0

diff --git a/chat-libs/c-toxcore/BUILD b/chat-libs/c-toxcore/BUILD
deleted file mode 100755
index 4c46c64..0000000
--- a/chat-libs/c-toxcore/BUILD
+++ /dev/null
@@ -1,2 +0,0 @@
-OPTS+=" -DWARNINGS=0 -DBUILD_AV_TEST=0"
-cmake_build
diff --git a/chat-libs/c-toxcore/CONFIGURE b/chat-libs/c-toxcore/CONFIGURE
new file mode 100755
index 0000000..b1e2770
--- /dev/null
+++ b/chat-libs/c-toxcore/CONFIGURE
@@ -0,0 +1 @@
+. "$GRIMOIRE"/CMAKE_CONFIGURE
diff --git a/chat-libs/c-toxcore/DEPENDS b/chat-libs/c-toxcore/DEPENDS
index abbdcb4..0828d56 100755
--- a/chat-libs/c-toxcore/DEPENDS
+++ b/chat-libs/c-toxcore/DEPENDS
@@ -1,14 +1,10 @@
-depends cmake &&
+. "$GRIMOIRE"/CMAKE_DEPENDS &&
depends libsodium &&
depends libvpx &&
depends opus &&

# For DHT bootstrap daemon
-depends libconfig &&
-
-# For nTox
-optional_depends ncurses -DBUILD_NTOX={1,0} \
- "for building the nTox client"
+depends libconfig

# For the Spec. tests
#depends msgpack-c &&
diff --git a/chat-libs/c-toxcore/DETAILS b/chat-libs/c-toxcore/DETAILS
index c0f40fe..d69d61c 100755
--- a/chat-libs/c-toxcore/DETAILS
+++ b/chat-libs/c-toxcore/DETAILS
@@ -1,8 +1,9 @@
+. "$GRIMOIRE"/CMAKE_FUNCTIONS
SPELL=c-toxcore
- VERSION=0.1.9
+ VERSION=0.2.18
SOURCE="$SPELL-$VERSION.tar.gz"
- SOURCE_URL[0]=https://github.com/TokTok/$SPELL/archive/v$VERSION.tar.gz
-
SOURCE_HASH=sha512:2ac0661f2d8a1f6b7da8b6ed7eacde31e355cd4426a41e7dff62d319b811bf0c96b3f01035e2cee16d8c83abbf81d80f0379b8c06bce6d054b3dc6092f48e51c
+
SOURCE_URL[0]=https://github.com/TokTok/$SPELL/releases/download/v$VERSION/$SOURCE
+
SOURCE_HASH=sha512:e9b0d73a2e0460290c8453a0a64fc91deed2e0cf87f945d0ba203b929f19a296571d7140f4df89b06f7e67f2b61894460ce4dd32ab9ecf6ea7d5b67538fadb23
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="https://tox.chat";
LICENSE[0]="GPLv3+"
diff --git a/chat-libs/c-toxcore/HISTORY b/chat-libs/c-toxcore/HISTORY
index 5798c4d..d4156ec 100644
--- a/chat-libs/c-toxcore/HISTORY
+++ b/chat-libs/c-toxcore/HISTORY
@@ -1,3 +1,8 @@
+2022-11-09 Ismael Luceno <ismael AT sourcemage.org>
+ * CONFIGURE, DEPENDS, DETAILS: updated spell to 0.2.18
+ * BUILD, patches/0003-Add-nTox-to-the-install-target.patch:
+ removed, no longer needed
+
2017-06-17 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 0.1.9

diff --git
a/chat-libs/c-toxcore/patches/0003-Add-nTox-to-the-install-target.patch
b/chat-libs/c-toxcore/patches/0003-Add-nTox-to-the-install-target.patch
deleted file mode 100644
index 9bb7e1a..0000000
--- a/chat-libs/c-toxcore/patches/0003-Add-nTox-to-the-install-target.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From c6e424d812ad3ce0c402e88efcbf009eb8a29ca5 Mon Sep 17 00:00:00 2001
-From: Ismael Luceno <ismael AT iodev.co.uk>
-Date: Wed, 23 Nov 2016 22:20:12 -0200
-Subject: [PATCH 3/3] Add nTox to the install target
-
-Signed-off-by: Ismael Luceno <ismael AT iodev.co.uk>
----
- CMakeLists.txt | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 74c25d7b5d96..1130be3126f5 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -484,6 +484,7 @@ option(BUILD_NTOX "Build nTox client" ON)
- if(NOT WIN32 AND BUILD_NTOX)
- add_c_executable(nTox testing/nTox.c)
- target_link_modules(nTox toxcore ${NCURSES_LIBRARIES})
-+ install(TARGETS nTox RUNTIME DESTINATION "bin")
- endif()
-
- add_c_executable(DHT_test testing/DHT_test.c)
---
-2.10.2



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

Archive powered by MHonArc 2.6.24.

Top of Page