From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F6DD15813A for ; Thu, 09 Jan 2025 21:21:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36EE4E076B; Thu, 09 Jan 2025 21:21:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 232C8E076B for ; Thu, 09 Jan 2025 21:21:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D59E342FB6 for ; Thu, 09 Jan 2025 21:21:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71F6F1D63 for ; Thu, 09 Jan 2025 21:21:05 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1736457460.b8c1845de8f6e4b4ef8ea1f2f3c148cb898e46f4.chiitoo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/qtox/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/qtox/qtox-1.18.1.ebuild X-VCS-Directories: net-im/qtox/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: b8c1845de8f6e4b4ef8ea1f2f3c148cb898e46f4 X-VCS-Branch: master Date: Thu, 09 Jan 2025 21:21:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4ba9c962-8765-4914-acfc-07c543c2da25 X-Archives-Hash: 27af6d7d482cbce05f5e752c98043968 commit: b8c1845de8f6e4b4ef8ea1f2f3c148cb898e46f4 Author: Jimi Huotari gentoo org> AuthorDate: Thu Jan 9 21:09:30 2025 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Thu Jan 9 21:17:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c1845d net-im/qtox: add 1.18.1 Closes: https://bugs.gentoo.org/895634 Signed-off-by: Jimi Huotari gentoo.org> net-im/qtox/qtox-1.18.1.ebuild | 78 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/net-im/qtox/qtox-1.18.1.ebuild b/net-im/qtox/qtox-1.18.1.ebuild new file mode 100644 index 000000000000..fe5515aba16b --- /dev/null +++ b/net-im/qtox/qtox-1.18.1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/TokTok/qTox.git" +else + MY_P="qTox-${PV}" + SRC_URI="https://github.com/TokTok/qTox/archive/v${PV}/v${PV}.tar.gz -> ${MY_P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/qTox-${PV}" +fi + +DESCRIPTION="Instant messaging client using the encrypted p2p Tox protocol" +HOMEPAGE="https://qtox.github.io/" + +LICENSE="GPL-3+" +SLOT="0" +IUSE="spellcheck X" + +BDEPEND=" + dev-qt/qttools:6[linguist] + virtual/pkgconfig +" +RDEPEND=" + dev-db/sqlcipher + dev-libs/libsodium:= + dev-qt/qtbase:6[concurrent,gui,network,opengl,widgets,xml] + dev-qt/qtsvg:6 + media-gfx/qrencode:= + media-libs/libexif + media-libs/openal + media-video/ffmpeg:=[webp,v4l] + >=net-libs/tox-0.2.19:=[av] + spellcheck? ( + || ( + kde-frameworks/sonnet:6[aspell] + kde-frameworks/sonnet:6[hunspell] + ) + ) + X? ( + dev-qt/qtbase:6=[X] + x11-libs/libX11 + x11-libs/libXScrnSaver + ) +" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) +" + +DOCS=( CHANGELOG.md README.md doc/user_manual_en.md ) + +src_configure() { + local mycmakeargs=( + -DASAN=OFF + -DPLATFORM_EXTENSIONS=$(usex X) + -DSPELL_CHECK=$(usex spellcheck) + -DSTRICT_OPTIONS=OFF + -DSVGZ_ICON=ON + -DTSAN=OFF + -DUBSAN=ON + -DUPDATE_CHECK=OFF + -DUSE_CCACHE=OFF + ) + + [[ ${PV} != 9999 ]] && mycmakeargs+=( -DGIT_DESCRIBE=${PV} ) + + cmake_src_configure +} + +src_test() { + # The excluded tests require network access. + cmake_src_test -E "test_(bsu|core)" +}