From d6aba9d968b0d37a76dab2d7b9c8b4aa4662e3e5 Mon Sep 17 00:00:00 2001 From: Ismael Luceno Date: Thu, 8 Dec 2016 13:54:00 -0200 Subject: c-toxcore 0.0.5 --- chat-libs/c-toxcore/DETAILS | 4 ++-- chat-libs/c-toxcore/HISTORY | 7 ++++++ ...-knob-to-suppress-building-the-toxav-test.patch | 28 ---------------------- ...knob-to-suppress-building-the-nTox-client.patch | 27 --------------------- 4 files changed, 9 insertions(+), 57 deletions(-) delete mode 100644 chat-libs/c-toxcore/patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch delete mode 100644 chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch (limited to 'chat-libs') diff --git a/chat-libs/c-toxcore/DETAILS b/chat-libs/c-toxcore/DETAILS index 0c21160c09..73a852b14b 100755 --- a/chat-libs/c-toxcore/DETAILS +++ b/chat-libs/c-toxcore/DETAILS @@ -1,8 +1,8 @@ SPELL=c-toxcore - VERSION=0.0.4 + VERSION=0.0.5 SOURCE="$SPELL-$VERSION.tar.gz" SOURCE_URL[0]=https://github.com/TokTok/$SPELL/archive/v$VERSION.tar.gz - SOURCE_HASH=sha512:ef76cca22830d6ad590c3852cc185b0b7f414501a22a60416f37ee10513eadbe520ace1d8e3cb0f07c92aa43774bd35ecb3e9c0e3750d90821fcab500ac8bc82 + SOURCE_HASH=sha512:47bc395516464e490ce4b7dc38a09310d9d6d24929ca0eb8b5ad3e95d7c275da9919014bf2334f9b44f7c561ae015c3d05379513d8184c8cf1fa9b247663b4c0 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 e94f69635e..2b5ffb0b85 100644 --- a/chat-libs/c-toxcore/HISTORY +++ b/chat-libs/c-toxcore/HISTORY @@ -1,3 +1,10 @@ +2016-12-08 Ismael Luceno + * DETAILS: updated spell to 0.0.5 + * patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch, + patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch: + Removed, applied by upstream + + 2016-11-23 Ismael Luceno * BUILD, DEPENDS, DETAILS, PRE_BUILD, patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch, diff --git a/chat-libs/c-toxcore/patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch b/chat-libs/c-toxcore/patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch deleted file mode 100644 index 67f1616fe1..0000000000 --- a/chat-libs/c-toxcore/patches/0001-Add-knob-to-suppress-building-the-toxav-test.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 84bd8e3fb04383ee9272cc88130e6773dfe486a6 Mon Sep 17 00:00:00 2001 -From: Ismael Luceno -Date: Wed, 23 Nov 2016 11:54:41 -0200 -Subject: [PATCH 1/2] Add knob to suppress building the toxav test - -Signed-off-by: Ismael Luceno ---- - CMakeLists.txt | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 7c08fd82554d..88ba43b4473c 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -463,7 +463,9 @@ endif() - # - ################################################################################ - --if(NOT WIN32 AND BUILD_TOXAV AND SNDFILE_FOUND AND PORTAUDIO_FOUND AND OPENCV_FOUND) -+option(BUILD_AV_TEST "Build toxav test" ON) -+if(NOT WIN32 AND BUILD_AV_TEST -+ AND BUILD_TOXAV AND SNDFILE_FOUND AND PORTAUDIO_FOUND AND OPENCV_FOUND) - add_c_executable(av_test testing/av_test.c) - target_link_modules(av_test - toxav --- -2.10.2 - diff --git a/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch b/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch deleted file mode 100644 index a569d4d7c0..0000000000 --- a/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch +++ /dev/null @@ -1,27 +0,0 @@ -From b13629a72586c650462c918c0802db06e1ed9352 Mon Sep 17 00:00:00 2001 -From: Ismael Luceno -Date: Wed, 23 Nov 2016 11:55:10 -0200 -Subject: [PATCH 2/2] Add knob to suppress building the nTox client - -Signed-off-by: Ismael Luceno ---- - CMakeLists.txt | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 88ba43b4473c..da7e26391753 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -479,7 +479,8 @@ if(NOT WIN32 AND BUILD_AV_TEST - endif() - endif() - --if(NOT WIN32) -+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}) - endif() --- -2.10.2 - -- cgit v1.2.3