From 5a96b2005fc621d1ade3fce075075992343080fa Mon Sep 17 00:00:00 2001 From: Gerben Jan Dijkman Date: Fri, 28 Oct 2022 11:42:01 +0200 Subject: [PATCH] Added 0.7.0 rc1 --- net-im/chatty/Manifest | 1 + net-im/chatty/chatty-0.7.0_rc1.ebuild | 53 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100755 net-im/chatty/chatty-0.7.0_rc1.ebuild diff --git a/net-im/chatty/Manifest b/net-im/chatty/Manifest index 360280b..9ec5339 100644 --- a/net-im/chatty/Manifest +++ b/net-im/chatty/Manifest @@ -1,2 +1,3 @@ DIST chatty-v0.6.7.tar.gz 576407 BLAKE2B a6d6d2db170f689b30fb81c7ed3b6e66145eb559b6baf48cd0c2db7a3c4d70b1a16b7735ca7de552d5fbbd28219377676d0128debece9eb2fdba59fa18c7aa5f SHA512 3029843ad6064001e87f8a8a8af82b23cfc7d5dc2ffd35e3506b178a2dbd88046d88c4a22cd2b65f9a279a5ed2199f5dc5cfcbe657c36b79738d4bc0777de6f1 +DIST chatty-v0.7.0_rc1.tar.gz 548140 BLAKE2B 0c2f4b4161beaaa543fa275848d0f15841343124ea42ca997c888f27023c2fad1e3ad93634ee73ffa96ab2320f996c3b21c4c66320f6b4d519b6770515075369 SHA512 df696f4ba0a06a2d3bf1478c6ab72bf6671f26b0b3c505873c4aa125813867fbcda8b79a2365f58d3d382cf6a3f2cb8c2eb4dcdf99d1dad80fb49ca210130188 DIST libgd-c7c7ff4e05d3fe82854219091cf116cce6b19de0.tar.gz 58318 BLAKE2B f6e02c179340431655965e84f6fb8fac0543b220c2915c111eb7dc32c16d3d595d42c6cf5d303c20e02ebbbc5f01493b830eb99e3e4337a805f6f8b48fd27377 SHA512 681cc23b5a33df88a92e3aac33d0dba1c6ebb69a2bd6f15b6ae31f0b444c108f7bfd1391e604433be58d82c0032028b112652d3d0c473abe4db02d66c55cdef3 diff --git a/net-im/chatty/chatty-0.7.0_rc1.ebuild b/net-im/chatty/chatty-0.7.0_rc1.ebuild new file mode 100755 index 0000000..facb379 --- /dev/null +++ b/net-im/chatty/chatty-0.7.0_rc1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson gnome2-utils xdg + +COMMIT="37e96593d4accb1c637e992daa8466d444365db5" +LIBGD_COMMIT="c7c7ff4e05d3fe82854219091cf116cce6b19de0" + +DESCRIPTION="XMPP and SMS messaging via libpurple and Modemmanager" +HOMEPAGE="https://source.puri.sm/Librem5/chatty" +SRC_URI=" + https://gitlab.gnome.org/GNOME/libgd/-/archive/${LIBGD_COMMIT}/libgd-${LIBGD_COMMIT}.tar.gz + https://source.puri.sm/Librem5/chatty/-/archive/v${PV}/${PN}-v${PV}.tar.gz + " + +LICENSE="GPL-3" +SLOT="0" +IUSE="" +KEYWORDS="~arm64" + +DEPEND=" gnome-extra/evolution-data-server[phonenumber] + dev-libs/feedbackd + gui-libs/libhandy + x11-plugins/purple-mm-sms + dev-libs/olm + dev-libs/libphonenumber + x11-libs/gtk+:3 + net-im/jabber-base + x11-plugins/lurch +" +RDEPEND="${DEPEND}" +BDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-v${PV}" + +src_prepare() { + default + eapply_user + rm -r "${S}"/subprojects/libgd || die + mv "${WORKDIR}"/libgd-"${LIBGD_COMMIT}" "${S}"/subprojects/libgd || die +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}