net-im/gajim: Removed Package.

The current version is in the main portage tree now.
This commit is contained in:
tastytea 2020-03-03 01:04:30 +01:00
parent ee2471d2e7
commit 63a7d00990
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
6 changed files with 0 additions and 292 deletions

View File

@ -1,17 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
AUX disable-gspell-1.1.0.patch 679 BLAKE2B 1839fbb18127f155060895ffab92d2aa1b4fcab1fcf70c63fa19f729d34f92f47bfb2edfbf26c493ae11ed37817d3981d51996a1901ce8f8298163ebedf0e214 SHA512 cecfb65f055cb5fa7045ccce54fa919fe7051e593b475067ee1de201cc356bbaefd5d646e60feaa2ead83d1d36a9812565bbabc267d14c3df278613f52197910
AUX disable-gspell.patch 798 BLAKE2B 2d5c3d413f078e171e0e7cfc144731302e137c53b7b52cfac3aeb92fc8eb399f8865d25b89c589c1e017a43c4903ed11b1bc3f24f1001b538513a5096e6d29ff SHA512 6dfbbe82517c73412512916480bca049588728cac92099a418b1a2be47480131032cb7536cf67896e8511232d4ce1a9576406326bd237b4ae1f799ffc3a2c83c
DIST gajim-gajim-1.1.2.tar.bz2 8207672 BLAKE2B 75d0b967c1470d32a21a120a61e01d19ed0dd9ca77752f22e2272aefc056ac3c0baa19989ae1762232355eabf69bc8bb501f974978601bcf2f6f052b0827ab00 SHA512 c1c1f68559b75dd54358d5cfe9024c672aa451d79633ad39e81879348692294ad8b4eb56d8c5c2dabdf2765aaed28100a5f2a48ea3937c00a968793c1144d3f3
DIST gajim-gajim-1.1.3.tar.bz2 8221165 BLAKE2B e1ebb353934929301a297793401c3e3d644805216278965ebfe85a184548c865770d8546e3b7e6bada172c6b968703b46b3663a63e6d4c5bc1e9d41fc9cd3df0 SHA512 04f6d3e86995186e5ab85a720dac37d0ed12896aa75185d26e46a6e29d48f8f5d6c627714590350741972f82749cd1f5cc9e2b6a88a38537741e81c643166d89
EBUILD gajim-1.1.2.ebuild 3025 BLAKE2B bab066a0e745087f5a44be8ac12c2e21f47f212c58e6f39641d6053114ddbb0669ade726eb82c8dc717beb22ad703d799f4538be3327caa29c1957907fb44250 SHA512 4aebcc221c6458941551314c275628ec73c0f4e84351a192a7aed5b3df69bfdc33b8acd827e31d678f1cdf690cec9dee7be160cb163a2d2f52a0f55d0d8a82fd
EBUILD gajim-1.1.3.ebuild 2893 BLAKE2B 45e2c9ed7e2fbe4b1957a88a3fdae9be5de4dbbdefefc835ad688771f3729ff3755f97b1ae0ad716f48efca21815b0cffe17919e66fedb6e6c743fb8ecbf43fb SHA512 9d9a51d698b39d21c4fe6d0d34cfe11b388379ac7a5b83b288d4da14abf22868c34eb547e2ed706991f6f66fe4d6bbdda2d6c14aa03c8946bd6d64afdd3685de
MISC metadata.xml 868 BLAKE2B a1e74586f067594d39fd23ac57f7fc3a6ed196e40de6378ee4b6a5954aa3fce4075f18a75a943005c89cf946151c7e85eb6441dfff5657889b16630df447b7cb SHA512 45412cdc0194c23e532b94622b0a78c063ac463fbf21542f131636fd1eb9d5f067458ea2bec6bf1ececad27fa02209e49a56825573e85d7bbb825534dfd43c25
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXYTjFgAKCRDPw5SX8bJu
BwevAP9FwyF3e+yi/Wywv9nosVRH7O9ySkT44p+3p/iOxElGRwD+IUVquCSI261M
Z5iOEInJKd+27EKVBTYSp4ddteoGS6I=
=hGCf
-----END PGP SIGNATURE-----

View File

@ -1,21 +0,0 @@
--- a/gajim/common/app.py 2018-11-06 23:57:20.088079001 +0100
+++ a/gajim/common/app.py 2018-11-06 23:58:36.638834033 +0100
@@ -299,17 +299,7 @@
pass
# GSPELL
- try:
- gi.require_version('Gspell', '1')
- from gi.repository import Gspell
- langs = Gspell.language_get_available()
- for lang in langs:
- log('gajim').info('%s (%s) dict available',
- lang.get_name(), lang.get_code())
- if langs:
- _dependencies['GSPELL'] = True
- except (ImportError, ValueError):
- pass
+ # [REMOVED BY EBUILD]
# Print results
for dep, val in _dependencies.items():

View File

@ -1,23 +0,0 @@
--- a/gajim/common/app.py 2018-05-16 05:59:40.278703415 +0300
+++ b/gajim/common/app.py 2018-05-16 06:00:14.520423471 +0300
@@ -265,20 +265,6 @@
HAVE_IDLE = False
HAVE_SPELL = False
-try:
- spell_log = logging.getLogger('gajim.speller')
- gi.require_version('Gspell', '1')
- from gi.repository import Gspell
- langs = Gspell.language_get_available()
- for lang in langs:
- spell_log.info('%s (%s) dict available',
- lang.get_name(), lang.get_code())
- if langs:
- HAVE_SPELL = True
- else:
- spell_log.info('No dicts available')
-except (ImportError, ValueError):
- pass
gajim_identity = {'type': 'pc', 'category': 'client', 'name': 'Gajim'}
gajim_common_features = [nbxmpp.NS_BYTESTREAM, nbxmpp.NS_SI, nbxmpp.NS_FILE,

View File

@ -1,106 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6} )
PYTHON_REQ_USE="sqlite,xml"
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1 eapi7-ver gnome2-utils xdg-utils
DESCRIPTION="Jabber client written in PyGTK"
HOMEPAGE="https://www.gajim.org/"
SRC_URI="https://dev.gajim.org/gajim/gajim/-/archive/gajim-${PV}/gajim-gajim-${PV}.tar.bz2"
#SRC_URI="https://www.gajim.org/downloads/$(ver_cut 1-2)/${P}.tar.bz2"
#https://ftp.gajim.org/plugins_1.1_zip/plugin_installer.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gpg +crypt remote idle jingle keyring networkmanager upnp geoclue spell +webp rst omemo"
COMMON_DEPEND="
dev-libs/gobject-introspection[cairo,${PYTHON_USEDEP}]
x11-libs/gtk+:3[introspection]
"
DEPEND="
${COMMON_DEPEND}
app-arch/unzip
>=dev-util/intltool-0.40.1
virtual/pkgconfig
>=sys-devel/gettext-0.17-r1
"
RDEPEND="
${COMMON_DEPEND}
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
>=dev-python/python-nbxmpp-0.6.9[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/cssutils-1.0.2[${PYTHON_USEDEP}]
dev-python/idna[${PYTHON_USEDEP}]
dev-python/precis-i18n[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
crypt? ( dev-python/pycryptodome[${PYTHON_USEDEP}] )
gpg? ( >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
idle? ( x11-libs/libXScrnSaver )
remote? (
>=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
dev-libs/dbus-glib
)
rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
jingle? (
net-libs/farstream:0.2[introspection]
media-libs/gstreamer:1.0[introspection]
media-libs/gst-plugins-base:1.0[introspection]
media-libs/gst-plugins-ugly:1.0
)
networkmanager? ( net-misc/networkmanager[introspection] )
upnp? ( net-libs/gupnp-igd[introspection] )
geoclue? ( app-misc/geoclue[introspection] )
spell? (
app-text/gspell[introspection]
app-text/hunspell
)
omemo? (
dev-python/python-axolotl[${PYTHON_USEDEP}]
dev-python/qrcode[${PYTHON_USEDEP}]
)
webp? ( dev-python/pillow[${PYTHON_USEDEP}] )
"
RESTRICT="test"
S="${WORKDIR}/gajim-${P}"
src_prepare() {
default
use spell || eapply "${FILESDIR}/disable-gspell-1.1.0.patch"
use keyring || sed -i 's/keyring//' setup.cfg || die
}
python_install_all() {
distutils-r1_python_install_all
# Gajims build script compresses the man pages. Gentoo would like to
# compress them itself.
gunzip "${D}/usr/share/man/man1/gajim.1.gz"
gunzip "${D}/usr/share/man/man1/gajim-history-manager.1.gz"
use remote && gunzip "${D}/usr/share/man/man1/gajim-remote.1.gz"
}
pkg_postinst() {
gnome2_icon_cache_update
xdg_desktop_database_update
ewarn "If you run into segfaults upon starting, you most likely ran into an issue"
ewarn "with app-text/enchant (bug 662484). Use USE=\"-spell\" to remedy."
}
pkg_postrm() {
gnome2_icon_cache_update
xdg_desktop_database_update
}

View File

@ -1,104 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6} )
PYTHON_REQ_USE="sqlite,xml"
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1 eapi7-ver gnome2-utils xdg-utils
DESCRIPTION="Jabber client written in PyGTK"
HOMEPAGE="https://www.gajim.org/"
SRC_URI="https://dev.gajim.org/gajim/gajim/-/archive/gajim-${PV}/gajim-gajim-${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gpg +crypt remote idle jingle keyring networkmanager upnp geoclue spell +webp rst omemo"
COMMON_DEPEND="
dev-libs/gobject-introspection[cairo,${PYTHON_USEDEP}]
x11-libs/gtk+:3[introspection]
"
DEPEND="
${COMMON_DEPEND}
app-arch/unzip
>=dev-util/intltool-0.40.1
virtual/pkgconfig
>=sys-devel/gettext-0.17-r1
"
RDEPEND="
${COMMON_DEPEND}
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
>=dev-python/python-nbxmpp-0.6.9[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/cssutils-1.0.2[${PYTHON_USEDEP}]
dev-python/idna[${PYTHON_USEDEP}]
dev-python/precis-i18n[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
crypt? ( dev-python/pycryptodome[${PYTHON_USEDEP}] )
gpg? ( >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
idle? ( x11-libs/libXScrnSaver )
remote? (
>=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
dev-libs/dbus-glib
)
rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
jingle? (
net-libs/farstream:0.2[introspection]
media-libs/gstreamer:1.0[introspection]
media-libs/gst-plugins-base:1.0[introspection]
media-libs/gst-plugins-ugly:1.0
)
networkmanager? ( net-misc/networkmanager[introspection] )
upnp? ( net-libs/gupnp-igd[introspection] )
geoclue? ( app-misc/geoclue[introspection] )
spell? (
app-text/gspell[introspection]
app-text/hunspell
)
omemo? (
dev-python/python-axolotl[${PYTHON_USEDEP}]
dev-python/qrcode[${PYTHON_USEDEP}]
)
webp? ( dev-python/pillow[${PYTHON_USEDEP}] )
"
RESTRICT="test"
S="${WORKDIR}/gajim-${P}"
src_prepare() {
default
use spell || eapply "${FILESDIR}/disable-gspell-1.1.0.patch"
use keyring || sed -i 's/keyring//' setup.cfg || die
}
python_install_all() {
distutils-r1_python_install_all
# Gajims build script compresses the man pages. Gentoo would like to
# compress them itself.
gunzip "${D}/usr/share/man/man1/gajim.1.gz"
gunzip "${D}/usr/share/man/man1/gajim-history-manager.1.gz"
use remote && gunzip "${D}/usr/share/man/man1/gajim-remote.1.gz"
}
pkg_postinst() {
gnome2_icon_cache_update
xdg_desktop_database_update
ewarn "If you run into segfaults upon starting, you most likely ran into an issue"
ewarn "with app-text/enchant (bug 662484). Use USE=\"-spell\" to remedy."
}
pkg_postrm() {
gnome2_icon_cache_update
xdg_desktop_database_update
}

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@tastytea.de</email>
<name>tastytea</name>
</maintainer>
<longdescription>
A fully featured and easy to use GTK+ Jabber client written in PyGTK.
</longdescription>
<use>
<flag name="geoclue">Use app-misc/geoclue</flag>
<flag name="gpg">Install dependencies for the GPG plugin</flag>
<flag name="idle">Enable idle module</flag>
<flag name="jingle">Enable voice calls for jabber</flag>
<flag name="keyring">Use dev-python/keyring</flag>
<flag name="omemo">Install dependencies for the OMEMO plugin</flag>
<flag name="remote">Enable remote control utility</flag>
<flag name="rst">Enable dev-python/docutils for formatting</flag>
</use>
</pkgmetadata>