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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D80901382C5 for ; Tue, 22 Jun 2021 15:40:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15C7BE07F0; Tue, 22 Jun 2021 15:40:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EFEFFE07F0 for ; Tue, 22 Jun 2021 15:40:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E2BC533BF34 for ; Tue, 22 Jun 2021 15:40:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FBCC7A2 for ; Tue, 22 Jun 2021 15:40:25 +0000 (UTC) From: "Marco Scardovi" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marco Scardovi" Message-ID: <1624376416.552f3f4b31030eea83a966c2f439b4ba069b3d60.marco@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/chatty/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-im/chatty/Manifest net-im/chatty/chatty-0.3.1.ebuild net-im/chatty/metadata.xml X-VCS-Directories: net-im/chatty/ X-VCS-Committer: marco X-VCS-Committer-Name: Marco Scardovi X-VCS-Revision: 552f3f4b31030eea83a966c2f439b4ba069b3d60 X-VCS-Branch: dev Date: Tue, 22 Jun 2021 15:40:25 +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: 545f0a63-b851-443e-8e9b-ef721b906f67 X-Archives-Hash: d2a25becd46b3ff007209c5ae2ced5be commit: 552f3f4b31030eea83a966c2f439b4ba069b3d60 Author: Marco Scardovi scardovi com> AuthorDate: Tue Jun 22 15:40:16 2021 +0000 Commit: Marco Scardovi scardovi com> CommitDate: Tue Jun 22 15:40:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=552f3f4b net-im/chatty: add new package Chatty is the SMS/MMS app for phosh Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Marco Scardovi scardovi.com> net-im/chatty/Manifest | 1 + net-im/chatty/chatty-0.3.1.ebuild | 40 +++++++++++++++++++++++++++++++++++++++ net-im/chatty/metadata.xml | 11 +++++++++++ 3 files changed, 52 insertions(+) diff --git a/net-im/chatty/Manifest b/net-im/chatty/Manifest new file mode 100644 index 000000000..e6ba97fdf --- /dev/null +++ b/net-im/chatty/Manifest @@ -0,0 +1 @@ +DIST chatty-v0.3.1.tar.gz 440910 BLAKE2B f2e3024fa44c4305a81ec6f340aefa9a1a1fed21be7483ac298da51f6e0bcb7bf506335d7257b589ccd1608c94a8390f18448be4b909751c047eb179cd1b00c3 SHA512 1283ea8f0a59659b219a1b01536389de74ecfbbb9a790788a91c54738f404bd1cbd77cf3b65074526a6b756817c198312cbd9d07ded6844d2baaa4af852c377a diff --git a/net-im/chatty/chatty-0.3.1.ebuild b/net-im/chatty/chatty-0.3.1.ebuild new file mode 100644 index 000000000..bf045d351 --- /dev/null +++ b/net-im/chatty/chatty-0.3.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit gnome2-utils meson xdg + +MY_P="${PN}-v${PV}" + +DESCRIPTION="Messaging client" +HOMEPAGE="https://source.puri.sm/Librem5/chatty" +SRC_URI="https://source.puri.sm/Librem5/chatty/-/archive/v0.3.1/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +S="${WORKDIR}/${MY_P}" + +DEPEND=" + dev-libs/libphonenumber + dev-libs/feedbackd + >=gui-libs/libhandy-1.1.90 + dev-libs/olm + net-im/jabber-base + x11-libs/gtk+:3 + x11-plugins/purple-mm-sms +" +RDEPEND="${DEPEND}" +BDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/net-im/chatty/metadata.xml b/net-im/chatty/metadata.xml new file mode 100644 index 000000000..a0b29038e --- /dev/null +++ b/net-im/chatty/metadata.xml @@ -0,0 +1,11 @@ + + + + + marco@scardovi.com + Marco Scardovi + + + atom/atom + +