Gentoo Archives: gentoo-commits

From: "Amadeusz Piotr Żołnowski" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/gajim/
Date: Sat, 20 Apr 2019 23:26:33
Message-Id: 1555682435.696752fd13226fd960ba2c21f563fec5135251e5.aidecoe@gentoo
1 commit: 696752fd13226fd960ba2c21f563fec5135251e5
2 Author: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 19 14:00:14 2019 +0000
4 Commit: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 19 14:00:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=696752fd
7
8 net-im/gajim: Bump version
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo.org>
12
13 net-im/gajim/gajim-1.0.3-r1.ebuild | 78 ++++++++++++++++++++++++++++++++++++++
14 1 file changed, 78 insertions(+)
15
16 diff --git a/net-im/gajim/gajim-1.0.3-r1.ebuild b/net-im/gajim/gajim-1.0.3-r1.ebuild
17 new file mode 100644
18 index 00000000000..a59f5e9ad7f
19 --- /dev/null
20 +++ b/net-im/gajim/gajim-1.0.3-r1.ebuild
21 @@ -0,0 +1,78 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python3_{5,6} )
28 +PYTHON_REQ_USE="sqlite,xml"
29 +DISTUTILS_SINGLE_IMPL=1
30 +
31 +inherit gnome2-utils distutils-r1 versionator xdg-utils
32 +
33 +DESCRIPTION="Jabber client written in PyGTK"
34 +HOMEPAGE="https://www.gajim.org/"
35 +SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
36 +
37 +LICENSE="GPL-3"
38 +SLOT="0"
39 +#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
42 + +webp"
43 +
44 +COMMON_DEPEND="
45 + dev-libs/gobject-introspection[cairo,${PYTHON_USEDEP}]
46 + >=x11-libs/gtk+-3.22:3[introspection]"
47 +DEPEND="${COMMON_DEPEND}
48 + app-arch/unzip
49 + >=dev-util/intltool-0.40.1
50 + virtual/pkgconfig
51 + >=sys-devel/gettext-0.17-r1"
52 +RDEPEND="${COMMON_DEPEND}
53 + dev-python/idna[${PYTHON_USEDEP}]
54 + dev-python/precis-i18n[${PYTHON_USEDEP}]
55 + dev-python/pyasn1[${PYTHON_USEDEP}]
56 + dev-python/pycairo[${PYTHON_USEDEP}]
57 + dev-python/pycurl[${PYTHON_USEDEP}]
58 + dev-python/pygobject[cairo,${PYTHON_USEDEP}]
59 + >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
60 + >=dev-python/python-nbxmpp-0.6.6[${PYTHON_USEDEP}]
61 + x11-libs/libXScrnSaver
62 + crypt? (
63 + dev-python/pycryptodome[${PYTHON_USEDEP}]
64 + >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
65 + geolocation? ( app-misc/geoclue[introspection] )
66 + jingle? (
67 + net-libs/farstream:0.2[introspection]
68 + media-libs/gstreamer:1.0[introspection]
69 + media-libs/gst-plugins-base:1.0[introspection]
70 + media-libs/gst-plugins-ugly:1.0
71 + )
72 + keyring? (
73 + app-crypt/libsecret[crypt,introspection]
74 + dev-python/keyring[${PYTHON_USEDEP}]
75 + )
76 + networkmanager? ( net-misc/networkmanager[introspection] )
77 + remote? (
78 + >=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
79 + sys-apps/dbus[X]
80 + )
81 + rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
82 + spell? (
83 + app-text/gspell[introspection]
84 + app-text/hunspell
85 + )
86 + upnp? ( net-libs/gupnp-igd[introspection] )
87 + webp? ( dev-python/pillow[${PYTHON_USEDEP}] )"
88 +
89 +RESTRICT="test"
90 +
91 +pkg_postinst() {
92 + gnome2_icon_cache_update
93 + xdg_desktop_database_update
94 +}
95 +
96 +pkg_postrm() {
97 + gnome2_icon_cache_update
98 + xdg_desktop_database_update
99 +}