public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anna Vyalkova" <cyber+gentoo@sysrq.in>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-voip/gnome-calls/
Date: Wed, 13 Nov 2024 08:45:03 +0000 (UTC)	[thread overview]
Message-ID: <1731487262.7772bef3da9785c980c32dadfa52d678d9c770b6.cybertailor@gentoo> (raw)

commit:     7772bef3da9785c980c32dadfa52d678d9c770b6
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Nov 13 08:38:55 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Nov 13 08:41:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7772bef3

net-voip/gnome-calls: sync deps with upsteam debian/control

Bug: https://bugs.gentoo.org/943351
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-voip/gnome-calls/gnome-calls-47.0-r1.ebuild | 133 ++++++++++++++++++++++++
 1 file changed, 133 insertions(+)

diff --git a/net-voip/gnome-calls/gnome-calls-47.0-r1.ebuild b/net-voip/gnome-calls/gnome-calls-47.0-r1.ebuild
new file mode 100644
index 000000000..e7fc9b759
--- /dev/null
+++ b/net-voip/gnome-calls/gnome-calls-47.0-r1.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala meson gnome2-utils optfeature systemd virtualx xdg
+
+MY_PN="${PN#gnome-}"
+MY_P="${MY_PN}-v${PV}"
+LCU_V="0.2.1"
+DESCRIPTION="Phone dialer and call handler"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/calls"
+GITLAB="https://gitlab.gnome.org"
+SRC_URI="
+	${GITLAB}/GNOME/${MY_PN}/-/archive/v${PV}/${MY_P}.tar.bz2
+	${GITLAB}/World/Phosh/libcall-ui/-/archive/v${LCU_V}/libcall-ui-v${LCU_V}.tar.bz2
+"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="CC0-1.0 CC-BY-SA-4.0 GPL-3+ LGPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="gtk-doc man"
+
+COMMON_DEPEND="
+	app-crypt/libsecret
+	dev-libs/feedbackd
+	dev-libs/folks:=
+	>=dev-libs/glib-2.74:2
+	dev-libs/gom
+	dev-libs/libgee:0.8=
+	dev-libs/libpeas:2
+	gnome-extra/evolution-data-server:=[vala]
+	>=gui-libs/gtk-4.12:4
+	>=gui-libs/libadwaita-1.5:1
+	media-libs/gstreamer:1.0
+	media-sound/callaudiod
+	net-libs/sofia-sip[glib]
+	net-misc/modemmanager:=
+"
+RDEPEND="${COMMON_DEPEND}
+	gnome-base/librsvg:2
+"
+DEPEND="${COMMON_DEPEND}
+	test? (
+		media-libs/gst-plugins-base:1.0
+		media-libs/gst-plugins-good:1.0
+		media-plugins/gst-plugins-srtp:1.0
+	)
+"
+BDEPEND="
+	$(vala_depend)
+	dev-libs/glib:2
+	dev-libs/libxml2
+	dev-util/gdbus-codegen
+	dev-util/glib-utils
+	sys-devel/gettext
+	gtk-doc? ( dev-util/gtk-doc )
+	man? ( dev-python/docutils )
+"
+
+src_unpack() {
+	default
+
+	cd "${S}" || die
+	rmdir subprojects/libcall-ui || die
+	mv "${WORKDIR}"/libcall-ui-v${LCU_V} subprojects/libcall-ui || die
+}
+
+src_prepare() {
+	default
+	vala_setup
+}
+
+src_configure() {
+	local emesonargs=(
+		$(meson_use gtk-doc gtk_doc)
+		$(meson_use man manpages)
+		$(meson_use test tests)
+		-Dsystemd_user_unit_dir="$(systemd_get_userunitdir)"
+	)
+	meson_src_configure
+}
+
+src_test() {
+	local tests=(
+		calls:call
+		calls:contacts
+		calls:emergency-call-types
+		calls:dbus
+		calls:manager
+		calls:media
+		calls:origin
+		calls:plugins
+		calls:provider
+		calls:sdp-crypto
+		calls:settings
+		calls:srtp
+		calls:ui-call
+		calls:util
+
+		# TODO:
+		# All tests pass, but the runner doesn't exit and gets timed out
+		#calls:application
+
+		# TODO:
+		# not ok /Calls/Ringer/accept_call
+		# GLib-GObject-FATAL-CRITICAL: cannot register existing type 'LfbEvent'
+		#calls:ringer
+
+		# TODO:
+		# hangs at /Calls/SIP/calls_direct_call
+		#calls:sip
+	)
+
+	virtx meson_src_test "${tests[@]}"
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_schemas_update
+
+	optfeature "SIP support" "\
+		media-libs/gst-plugins-base:1.0 \
+		media-libs/gst-plugins-good:1.0 \
+		media-plugins/gst-plugins-srtp:1.0 \
+	"
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_schemas_update
+}


             reply	other threads:[~2024-11-13  8:45 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-13  8:45 Anna Vyalkova [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-10 23:08 [gentoo-commits] repo/proj/guru:dev commit in: net-voip/gnome-calls/ Anna Vyalkova
2024-10-07  0:31 Anna Vyalkova
2024-06-30  4:41 Anna Vyalkova
2023-11-07 14:33 Anna Vyalkova
2023-10-30 23:56 Anna Vyalkova
2023-06-11  5:28 Anna Vyalkova
2023-04-28  4:32 Anna Vyalkova
2023-03-21  1:31 Anna Vyalkova
2023-01-13 10:46 Anna Vyalkova
2022-12-12 20:26 Anna Vyalkova
2022-12-12 20:26 Anna Vyalkova
2022-10-24 11:32 Anna Vyalkova
2022-06-19 18:50 Anna Vyalkova
2022-04-12 19:34 Ronny Gutbrod
2022-04-12 13:58 Gerben Jan Dijkman
2022-04-04 12:25 Gerben Jan Dijkman
2021-11-11 13:57 Gerben Jan Dijkman
2021-07-24 15:51 Andrew Ammerlaan
2021-07-24  5:21 Gerben Jan Dijkman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1731487262.7772bef3da9785c980c32dadfa52d678d9c770b6.cybertailor@gentoo \
    --to=cyber+gentoo@sysrq.in \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox