summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2019-10-04 18:43:38 +0200
committerJoonas Niilola <juippis@gentoo.org>2019-10-07 08:19:43 +0300
commit7010a2cbb0c88f2f8a82db585cd867d287662282 (patch)
tree26e517c20dbc8d8c3f84357f414492933d74d1c7 /net-im
parentdev-ruby/parallel: install without git present (diff)
downloadgentoo-7010a2cbb0c88f2f8a82db585cd867d287662282.tar.gz
gentoo-7010a2cbb0c88f2f8a82db585cd867d287662282.tar.bz2
gentoo-7010a2cbb0c88f2f8a82db585cd867d287662282.zip
net-im/yowsup: drop old version
Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Closes: https://github.com/gentoo/gentoo/pull/13142 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r--net-im/yowsup/Manifest1
-rw-r--r--net-im/yowsup/files/yowsup-2.5.7-add-python3.7-support.patch51
-rw-r--r--net-im/yowsup/files/yowsup-2.5.7-fix-install-path.patch28
-rw-r--r--net-im/yowsup/files/yowsup-2.5.7-fix-newer-six.patch30
-rw-r--r--net-im/yowsup/yowsup-2.5.7-r2.ebuild36
5 files changed, 0 insertions, 146 deletions
diff --git a/net-im/yowsup/Manifest b/net-im/yowsup/Manifest
index e46ebc8f7b32..2c2eb7f5be4c 100644
--- a/net-im/yowsup/Manifest
+++ b/net-im/yowsup/Manifest
@@ -1,2 +1 @@
-DIST yowsup-2.5.7.tar.gz 125732 BLAKE2B 31896cfef601bfe4b65df3518ce6812ad66a98902ec7c8ca5b2ffda15c48c9390010fce58e1158f6ddc325911fd78d1be2bc708d499ab11b725835c5cd5ea246 SHA512 e64e119e8301d6cd9244a24ce960fdd00a5372a7766cf2f52dfd7610828358086e6c4f77fba6f962c1b84f6b28fa6b6d4d708bbb50c281e5a6563b99634b9495
DIST yowsup-3.2.3.tar.gz 140038 BLAKE2B 45df9151e897eea4f2997246d8c66409bc58160e01a84ee632f3e834058efcaed1d03047ddc6e8e7acbaa566d5fab2451fb21b30daf477bc83dfdd0bee7e6b59 SHA512 a1be36df5dc632071385cf0e252a208efb8982df98966d2c5a7b7558c626112e1ac2688be25fb6de1db9e9e04d36ab96784e589aeb90fcc6c6770edac791e568
diff --git a/net-im/yowsup/files/yowsup-2.5.7-add-python3.7-support.patch b/net-im/yowsup/files/yowsup-2.5.7-add-python3.7-support.patch
deleted file mode 100644
index 6d3f3c83004e..000000000000
--- a/net-im/yowsup/files/yowsup-2.5.7-add-python3.7-support.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-Description: Fix compatibility with Python 3.7 since async has become a reserved word
-Author: Josue Ortega <josue@debian.org>
-Last-Update: 2018-07-29
-
---- a/yowsup/demos/cli/layer.py
-+++ b/yowsup/demos/cli/layer.py
-@@ -559,7 +559,7 @@
- mediaUploader = MediaUploader(jid, self.getOwnJid(), filePath,
- resultRequestUploadIqProtocolEntity.getUrl(),
- resultRequestUploadIqProtocolEntity.getResumeOffset(),
-- successFn, self.onUploadError, self.onUploadProgress, async=False)
-+ successFn, self.onUploadError, self.onUploadProgress, asyncronous=False)
- mediaUploader.start()
-
- def onRequestUploadError(self, jid, path, errorRequestUploadIqProtocolEntity, requestUploadIqProtocolEntity):
---- a/yowsup/layers/interface/interface.py
-+++ b/yowsup/layers/interface/interface.py
-@@ -125,7 +125,7 @@
- mediaUploader = MediaUploader(builder.jid, self.getOwnJid(), builder.getFilepath(),
- resultRequestUploadIqProtocolEntity.getUrl(),
- resultRequestUploadIqProtocolEntity.getResumeOffset(),
-- successFn, errorFn, progress, async=True)
-+ successFn, errorFn, progress, asyncronous=True)
- mediaUploader.start()
-
- def __onRequestUploadError(self, errorEntity, requestUploadEntity, builder, error = None):
---- a/yowsup/layers/protocol_media/mediauploader.py
-+++ b/yowsup/layers/protocol_media/mediauploader.py
-@@ -9,10 +9,11 @@
- logger = logging.getLogger(__name__)
-
- class MediaUploader(WARequest, threading.Thread):
-- def __init__(self, jid, accountJid, sourcePath, uploadUrl, resumeOffset = 0, successClbk = None, errorClbk = None, progressCallback = None, async = True):
-+ def __init__(self, jid, accountJid, sourcePath, uploadUrl, resumeOffset=0, successClbk=None,
-+ errorClbk=None, progressCallback=None, asyncronous=True):
- WARequest.__init__(self)
-
-- self.async = async
-+ self.asyncronous = asyncronous
- self.jid = jid
- self.accountJid = accountJid
- self.sourcePath = sourcePath
-@@ -30,7 +31,7 @@
- self.sock = socket.socket()
-
- def start(self):
-- if self.async:
-+ if self.asyncronous:
- threading.Thread.__init__(self)
- super(MediaUploader, self).start()
- else:
diff --git a/net-im/yowsup/files/yowsup-2.5.7-fix-install-path.patch b/net-im/yowsup/files/yowsup-2.5.7-fix-install-path.patch
deleted file mode 100644
index 63b0fbfc91c9..000000000000
--- a/net-im/yowsup/files/yowsup-2.5.7-fix-install-path.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Description: Fixes wrong installation of mime.types file.
-Author: Josue Ortega <josue@debian.org>
-Last-Update: 2016-09-04
-
---- a/setup.py
-+++ b/setup.py
-@@ -33,7 +33,7 @@
- #long_description=long_description,
- packages= find_packages(),
- include_package_data=True,
-- data_files = [('yowsup/common', ['yowsup/common/mime.types'])],
-+ #data_files = [('yowsup/common', ['yowsup/common/mime.types'])],
- platforms='any',
- #test_suite='',
- classifiers = [
---- a/yowsup/common/tools.py
-+++ b/yowsup/common/tools.py
-@@ -150,7 +150,9 @@
- return preview
-
- class MimeTools:
-- MIME_FILE = os.path.join(os.path.dirname(__file__), 'mime.types')
-+ # Replaces mime.types path for the debian path installation
-+ # MIME_FILE = os.path.join(os.path.dirname(__file__), 'mime.types')
-+ MIME_FILE = os.path.join('/usr/share/yowsup/common', 'mime.types')
- mimetypes.init() # Load default mime.types
- try:
- mimetypes.init([MIME_FILE]) # Append whatsapp mime.types
diff --git a/net-im/yowsup/files/yowsup-2.5.7-fix-newer-six.patch b/net-im/yowsup/files/yowsup-2.5.7-fix-newer-six.patch
deleted file mode 100644
index d1bfb27ce295..000000000000
--- a/net-im/yowsup/files/yowsup-2.5.7-fix-newer-six.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/setup.py 2017-12-30 00:12:35.000000000 +0100
-+++ b/setup.py 2018-04-29 20:51:23.000000000 +0200
-@@ -5,7 +5,7 @@
- import platform
- import sys
-
--deps = ['python-dateutil', 'argparse', 'python-axolotl>=0.1.39', 'six==1.10']
-+deps = ['python-dateutil', 'python-axolotl>=0.1.39', 'six']
-
- if sys.version_info < (2,7):
- deps += ['importlib', "protobuf==3.4.0"]
---- a/yowsup/env/env.py 2017-12-30 00:12:35.000000000 +0100
-+++ b/yowsup/env/env.py 2018-04-29 20:51:44.000000000 +0200
-@@ -13,7 +13,6 @@
- super(YowsupEnvType, cls).__init__(name, bases, dct)
-
- class YowsupEnv(with_metaclass(YowsupEnvType, object)):
-- __metaclass__ = YowsupEnvType
- __ENVS = {}
- __CURR = None
-
---- a/yowsup/layers/protocol_media/picture.py 2017-12-30 00:12:35.000000000 +0100
-+++ b/yowsup/layers/protocol_media/picture.py 2018-04-29 20:52:30.000000000 +0200
-@@ -1,5 +1,5 @@
- from yowsup.layers import YowLayer
--from yowsup import ProtocolTreeNode
-+from yowsup.structs import ProtocolTreeNode
- from .mediadownloader import MediaDownloader
- import shutil, os, logging
- logger = logging.getLogger(__name__)
diff --git a/net-im/yowsup/yowsup-2.5.7-r2.ebuild b/net-im/yowsup/yowsup-2.5.7-r2.ebuild
deleted file mode 100644
index 1b4eb9ea9533..000000000000
--- a/net-im/yowsup/yowsup-2.5.7-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-PYTHON_REQ_USE="readline"
-
-inherit distutils-r1
-
-DESCRIPTION="A library that enables you to build applications which use the WhatsApp service"
-HOMEPAGE="https://github.com/tgalal/yowsup"
-SRC_URI="https://github.com/tgalal/yowsup/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- dev-python/configargparse[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/protobuf-python[${PYTHON_USEDEP}]
- dev-python/pycryptodome[${PYTHON_USEDEP}]
- dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-PATCHES=(
- "${FILESDIR}/${P}-add-python3.7-support.patch"
- "${FILESDIR}/${P}-fix-install-path.patch"
- "${FILESDIR}/${P}-fix-newer-six.patch"
- )