Package Details: bctoolbox-git 5.3.0.alpha.r10.gb0027df-1

Git Clone URL: https://aur.archlinux.org/bctoolbox-git.git (read-only, click to copy)
Package Base: bctoolbox-git
Description: Utilities library for Belledonne Communications software
Upstream URL: http://www.linphone.org/
Licenses: GPL
Conflicts: bctoolbox
Provides: bctoolbox
Submitter: thrasibule
Maintainer: thrasibule
Last Packager: thrasibule
Votes: 3
Popularity: 0.000001
First Submitted: 2017-07-08 19:02 (UTC)
Last Updated: 2023-03-24 19:38 (UTC)

Required by (13)

Sources (1)

Latest Comments

1 2 Next › Last »

asnelling commented on 2023-03-15 04:23 (UTC)

Build failed with the following until I added -DENABLE_STRICT="NO":

/home/asnell/code/packaging/bctoolbox-git/src/bctoolbox/src/crypto/mbedtls.c: In function ‘bctbx_ssl_set_mtu’:
/home/asnell/code/packaging/bctoolbox-git/src/bctoolbox/src/crypto/mbedtls.c:1038:45: error: unused parameter ‘ssl_ctx’ [-Werror=unused-parameter]
 1038 | void bctbx_ssl_set_mtu(bctbx_ssl_context_t *ssl_ctx, uint16_t mtu) {
      |                        ~~~~~~~~~~~~~~~~~~~~~^~~~~~~

The patch for git apply <patch>:

diff --git a/PKGBUILD b/PKGBUILD
index ef2293f..8ca776e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,6 +26,7 @@ build() {
     -DENABLE_STATIC="NO" \
     -DENABLE_TESTS="YES" \
     -DENABLE_TESTS_COMPONENT="YES" \
+    -DENABLE_STRICT="NO" \
     -Wno-dev
   make -C build
 }

cknoblauch commented on 2020-12-20 03:05 (UTC)

Thanks @thrasibule, everything builds fine now.

thrasibule commented on 2020-12-20 02:27 (UTC)

Sorry I reversed the cmake patch on libdecaf by mistake when bumping to 1.0.1. Should be all fixed now.

cknoblauch commented on 2020-12-20 01:08 (UTC) (edited on 2020-12-20 01:09 (UTC) by cknoblauch)

I tried @thrasibule's suggestion and rebuilt libdecaf (1.0.1-1), it still didn't work. I get the same errors as @Maniaxx.

Btw I'm trying to install this as a dependency of AUR/lime-git; the latest version switched from depending on bctoolbox to bctoolbox-git.

thrasibule commented on 2019-12-06 18:51 (UTC)

@sergiodlc and @Maniaxx can you try to rebuild libdecaf. I forgot to bump the pkgrel, so you probably don't have the latest patch.

sergiodlc commented on 2019-12-06 18:39 (UTC)

Same issue here as @Maniaxx

Maniaxx commented on 2019-11-11 16:11 (UTC)

I'm using your one (AUR/libdecaf 1.0.0-2).

thrasibule commented on 2019-11-11 02:32 (UTC)

@Maniaxx which version of libdecaf do you have installed?

Maniaxx commented on 2019-11-10 13:50 (UTC)

Package doesn't compile due to several compilation errors.

-- Using mbedTLS
CMake Error at /usr/share/decaf/cmake/DecafConfig.cmake:45 (get_target_property):
  get_target_property() called with non-existent target "decaf".

-- Looking for CU_curses_run_tests - not found

-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed

bonkii commented on 2019-03-26 11:37 (UTC) (edited on 2019-03-26 12:09 (UTC) by bonkii)

Is there a reason why line 15 of PKGBUILD is

source=("git://github.com/BelledonneCommunications/$_pkgname.git")

and not

source=("git+https://github.com/BelledonneCommunications/$_pkgname.git")?

Why shouldn't it be possible to clone the repo via both ssh and https?