blob: d8b02efa005e4945ca99bfacf1ef886a89b44131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
PYTHON_REQ_USE="sqlite,xml(+)"
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 optfeature xdg
DESCRIPTION="GTK XMPP Client"
HOMEPAGE="https://gajim.org/"
SRC_URI="https://gajim.org/downloads/$(ver_cut 1-2)/${P/_p/-}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
# Rekeyword for ~long, ~x86 and ~riscv, when https://bugs.gentoo.org/937582 is fixed.
# KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
KEYWORDS="~amd64 ~arm64 ~loong ~riscv"
IUSE="voice"
# Same order as in upstream pyproject.toml please for the python dependencies
# For introspection dependencies consult upstream documentation and any gi.require_version in the code
# USE="voice" handles all video and audio.
# https://dev.gajim.org/gajim/gajim#for-video-and-audio-calls
# https://dev.gajim.org/gajim/gajim#for-voice-messages
# xdg-desktop-portal: apparent runtime requirement
# https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2963fc1a23747bbb60a3785bf06dd566e6d8be9
RDEPEND="${COMMON_DEPEND}
>=dev-python/cryptography-3.4.8[${PYTHON_USEDEP}]
dev-python/css-parser[${PYTHON_USEDEP}]
>=dev-python/emoji-2.6.0[${PYTHON_USEDEP}]
dev-python/keyring[${PYTHON_USEDEP}]
<dev-python/nbxmpp-7.0.0[${PYTHON_USEDEP}]
>=dev-python/nbxmpp-6.0.0[${PYTHON_USEDEP}]
<dev-python/omemo-dr-2.0.0[${PYTHON_USEDEP}]
>=dev-python/omemo-dr-1.0.0[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
>=dev-python/pillow-9.1.0[${PYTHON_USEDEP}]
>=dev-python/precis-i18n-1.0.0[${PYTHON_USEDEP}]
>=dev-python/pycairo-1.16.0[${PYTHON_USEDEP}]
>=dev-python/pygobject-3.42.0:3[cairo,${PYTHON_USEDEP}]
>=dev-python/qrcode-7.3.1[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-2.0.0[${PYTHON_USEDEP}]
dev-libs/glib[introspection(+)]
>=gui-libs/gtk-4.14.0:4[introspection]
gui-libs/gtksourceview:5[introspection]
media-libs/graphene[introspection]
net-libs/libsoup:3.0[introspection]
x11-libs/gdk-pixbuf:2[introspection]
>=x11-libs/pango-1.50.0[introspection]
voice? (
media-libs/gstreamer:1.0[introspection]
media-libs/gst-plugins-base
media-libs/gst-plugins-ugly
media-plugins/gst-plugins-gtk
media-plugins/gst-plugins-libav
net-libs/farstream:0.2[introspection]
)
sys-apps/xdg-desktop-portal
"
BDEPEND="
>=sys-devel/gettext-0.17-r1
"
distutils_enable_tests pytest
python_compile_all() {
# Generates manpages, app icons, translation and metadata
./make.py build --dist unix || die
}
python_install_all() {
# Installs manpages, app icons, translation and metadata
./make.py install --dist unix --prefix="${ED}/usr" || die
# Undo compression in ./make.py install
gzip -d "${ED}"/usr/share/man/man1/*.gz || die
distutils-r1_python_install_all
}
pkg_postinst() {
ewarn "The chat database format changes when upgrading from 1.8.x to 1.9.x."
ewarn "The first time the user starts Gajim, an automatic migration is performed."
# https://dev.gajim.org/gajim/gajim/-/tree/master?ref_type=heads#optional-runtime-requirements
#optfeature "Sentry error reporting to dev.gajim.org" dev-python/sentry-sdk
optfeature "keyring support" app-crypt/libsecret[introspection]
optfeature "spellchecking support" "app-text/hunspell app-text/libspelling:1"
optfeature "better NAT traversing" net-libs/gupnp:1.6[introspection]
optfeature "network lose detection" net-misc/networkmanager[introspection]
optfeature "sharing your location" app-misc/geoclue:2.0[introspection]
optfeature "notifcation sound support" media-libs/gsound[introspection]
xdg_pkg_postinst
}
|