From owner-svn-ports-head@freebsd.org Fri Oct 25 21:12:22 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 953DB15B5FC; Fri, 25 Oct 2019 21:12:22 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 470Gyt3Sz5z43xg; Fri, 25 Oct 2019 21:12:22 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5B3C52C574; Fri, 25 Oct 2019 21:12:22 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9PLCMhq033473; Fri, 25 Oct 2019 21:12:22 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9PLCMaq033472; Fri, 25 Oct 2019 21:12:22 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201910252112.x9PLCMaq033472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Fri, 25 Oct 2019 21:12:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515664 - head/net-im/nheko X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/net-im/nheko X-SVN-Commit-Revision: 515664 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Oct 2019 21:12:22 -0000 Author: adridg Date: Fri Oct 25 21:12:21 2019 New Revision: 515664 URL: https://svnweb.freebsd.org/changeset/ports/515664 Log: Fix dependencies of net-im/nheko - because mtxclient was listed as a build dependency only (I thought nheko would pick up the .a and statically link it), it would be installed with nheko, but marked "automatic" and unused. - "pkg autoremove" would remove mtxclient, and then nheko wouldn't start because the mtxclient .so was missing. Make mtxclient a library dependency instead. Modified: head/net-im/nheko/Makefile Modified: head/net-im/nheko/Makefile ============================================================================== --- head/net-im/nheko/Makefile Fri Oct 25 20:41:15 2019 (r515663) +++ head/net-im/nheko/Makefile Fri Oct 25 21:12:21 2019 (r515664) @@ -3,7 +3,7 @@ PORTNAME= nheko DISTVERSIONPREFIX=v DISTVERSION= 0.6.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im MAINTAINER= adridg@FreeBSD.org @@ -12,10 +12,10 @@ COMMENT= Matrix IM client based on Qt technologies LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= mtxclient>=0.2.1:net-im/mtxclient \ - nlohmann-json>=3:devel/nlohmann-json \ +BUILD_DEPENDS= nlohmann-json>=3:devel/nlohmann-json \ spdlog>=1.3:devel/spdlog LIB_DEPENDS= liblmdb.so:databases/lmdb \ + libmatrix_client.so:net-im/mtxclient \ libsodium.so:security/libsodium \ libolm.so:security/olm \ libcmark.so:textproc/cmark