public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-01-22  8:21 Viorel Munteanu
  0 siblings, 0 replies; 21+ messages in thread
From: Viorel Munteanu @ 2023-01-22  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     a9fc6c67c0b21c2b558c954260b98dce7d057407
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Jan 22 02:52:44 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 02:52:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a9fc6c67

dev-python/tulir-telethon: new package, add 1.27.0_alpha6

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 dev-python/tulir-telethon/metadata.xml             | 16 ++++++++++
 .../tulir-telethon-1.27.0_alpha6.ebuild            | 37 ++++++++++++++++++++++
 3 files changed, 54 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
new file mode 100644
index 000000000..f539bbf3c
--- /dev/null
+++ b/dev-python/tulir-telethon/Manifest
@@ -0,0 +1 @@
+DIST tulir-telethon-1.27.0_alpha6.gh.tar.gz 478679 BLAKE2B 743b5780a1c3cf2d9748bc947d99173655c45a145fb99263068aa6edd2a08fb497b1b7c34ce07dcce9e476e05e828787a14f72387f59c3cb0e9279953f1bd4c1 SHA512 b18135899b736ffdcfbe0c2e0f3348b1e5505e133e396cd7e7f4dd4a4ecf619b21b6047634134bea60398ac94db82ad977473fd9845f66bf5898657460be8b4c

diff --git a/dev-python/tulir-telethon/metadata.xml b/dev-python/tulir-telethon/metadata.xml
new file mode 100644
index 000000000..e0a966db4
--- /dev/null
+++ b/dev-python/tulir-telethon/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>julien@jroy.ca</email>
+		<description>Julien Roy</description>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<name>Tulir Asokan</name>
+			<email>tulir@maunium.net</email>
+		</maintainer>
+		<remote-id type="github">tulir/Telethon</remote-id>
+		<remote-id type="pypi">tulir-telethon</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.27.0_alpha6.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.27.0_alpha6.ebuild
new file mode 100644
index 000000000..8f9b5e05b
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.27.0_alpha6.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-04-14 17:36 Viorel Munteanu
  0 siblings, 0 replies; 21+ messages in thread
From: Viorel Munteanu @ 2023-04-14 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     50ee3f69dc9aa9d77569f33016bafdbd75b966a3
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Apr 14 16:45:35 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 16:45:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=50ee3f69

dev-python/tulir-telethon: add 1.28.0_alpha9-r1

Deselect failing test

Closes: https://bugs.gentoo.org/904304
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 .../tulir-telethon-1.28.0_alpha9-r1.ebuild         | 41 ++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild
new file mode 100644
index 000000000..c3471b459
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-04-14 17:36 Viorel Munteanu
  0 siblings, 0 replies; 21+ messages in thread
From: Viorel Munteanu @ 2023-04-14 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     70e34f9e98eef541ce403aadb8377f7e8a29d796
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Apr 14 16:48:00 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 16:48:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70e34f9e

dev-python/tulir-telethon: drop 1.28.0_alpha9

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 .../tulir-telethon-1.28.0_alpha9.ebuild            | 37 ----------------------
 1 file changed, 37 deletions(-)

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9.ebuild
deleted file mode 100644
index 8f9b5e05b..000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-06-15  9:33 Florian Schmaus
  0 siblings, 0 replies; 21+ messages in thread
From: Florian Schmaus @ 2023-06-15  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     a4c5b49d6c27cd79b619bcc44c1bdcf5c5e38cbd
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Jun 14 16:53:56 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jun 14 16:53:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4c5b49d

dev-python/tulir-telethon: drop 1.28.0_alpha9-r1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.28.0_alpha9-r1.ebuild         | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index ba7c4d83c..95ce71dfa 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1,2 @@
-DIST tulir-telethon-1.28.0_alpha9.gh.tar.gz 485954 BLAKE2B 2658d9b8e64223cc7daddd531ca9c5bdec3cb0edf27949b227a8c34d3a1f6546b8136b845cc1822e643b83046742015890d405ca40f461d68aa9410fb25703e0 SHA512 7e2a375be30700b13aeae088385d19344288895c95d2262fb8764f66ffe7d145d6ade4c9e31313e7df04a5c684ae7ee0571318b6eedd519aacaf77a61037381a
 DIST tulir-telethon-1.29.0_alpha1.gh.tar.gz 490598 BLAKE2B d3ff45d6a18ac5673be18ff121e9151be4db8790f8ceff6ab80eb3ede089f67c336305e70340bac13609c99c53d44da7d684c510cf2055346184eb817e1fbe1e SHA512 01e8e85a485cdba047c340712a1ceaf1dec56bff936f7f76b5b709e32604c5bfd8e71cd4a30c6f6df47f5218f4bc3d96df01e36ec1608f3f76026543c1597193
 DIST tulir-telethon-1.29.0_alpha2.gh.tar.gz 491082 BLAKE2B d965e4e6116ccff86cd6a0f561bd25a0af9bee85c314cae358f47eef30e17345c1b770088875717699b584649652a136be7ccc7da370434aa545d7620a2b9ac9 SHA512 f3e97bbc1bf505866661965206f65f25224508d623bc5cffefea5743ba21c2b8c94afd60c7da2a7854e86cde52557a3609fe22c9fb888ea52ed286d555d3fdbf

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild
deleted file mode 100644
index afaba4efa..000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-06-15  9:33 Florian Schmaus
  0 siblings, 0 replies; 21+ messages in thread
From: Florian Schmaus @ 2023-06-15  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     9867c9e2cdd18d2c8433b3ca06c4a504061c0970
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Jun 14 16:53:46 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jun 14 16:53:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9867c9e2

dev-python/tulir-telethon: add 1.29.0_alpha2

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.29.0_alpha2.ebuild            | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 399459ebe..ba7c4d83c 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.28.0_alpha9.gh.tar.gz 485954 BLAKE2B 2658d9b8e64223cc7daddd531ca9c5bdec3cb0edf27949b227a8c34d3a1f6546b8136b845cc1822e643b83046742015890d405ca40f461d68aa9410fb25703e0 SHA512 7e2a375be30700b13aeae088385d19344288895c95d2262fb8764f66ffe7d145d6ade4c9e31313e7df04a5c684ae7ee0571318b6eedd519aacaf77a61037381a
 DIST tulir-telethon-1.29.0_alpha1.gh.tar.gz 490598 BLAKE2B d3ff45d6a18ac5673be18ff121e9151be4db8790f8ceff6ab80eb3ede089f67c336305e70340bac13609c99c53d44da7d684c510cf2055346184eb817e1fbe1e SHA512 01e8e85a485cdba047c340712a1ceaf1dec56bff936f7f76b5b709e32604c5bfd8e71cd4a30c6f6df47f5218f4bc3d96df01e36ec1608f3f76026543c1597193
+DIST tulir-telethon-1.29.0_alpha2.gh.tar.gz 491082 BLAKE2B d965e4e6116ccff86cd6a0f561bd25a0af9bee85c314cae358f47eef30e17345c1b770088875717699b584649652a136be7ccc7da370434aa545d7620a2b9ac9 SHA512 f3e97bbc1bf505866661965206f65f25224508d623bc5cffefea5743ba21c2b8c94afd60c7da2a7854e86cde52557a3609fe22c9fb888ea52ed286d555d3fdbf

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild
new file mode 100644
index 000000000..afaba4efa
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-10-17  4:15 Viorel Munteanu
  0 siblings, 0 replies; 21+ messages in thread
From: Viorel Munteanu @ 2023-10-17  4:15 UTC (permalink / raw
  To: gentoo-commits

commit:     dc28be34ee0b80d8f9e219f1e30bb3ae8ece7a89
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Oct 16 21:13:57 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 21:13:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc28be34

dev-python/tulir-telethon: add 1.32.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.32.0_alpha1.ebuild            | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 9a54057895..e5ce28c36e 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.29.0_alpha2.gh.tar.gz 491082 BLAKE2B d965e4e6116ccff86cd6a0f561bd25a0af9bee85c314cae358f47eef30e17345c1b770088875717699b584649652a136be7ccc7da370434aa545d7620a2b9ac9 SHA512 f3e97bbc1bf505866661965206f65f25224508d623bc5cffefea5743ba21c2b8c94afd60c7da2a7854e86cde52557a3609fe22c9fb888ea52ed286d555d3fdbf
 DIST tulir-telethon-1.30.0_alpha2.gh.tar.gz 493240 BLAKE2B dd7d464c187a08b71d3a7578922c6da91cb4878b6a29d36cbe9211f7978a10b9b397ea799b11aa144cdb1e458bd0bc6f80acc9b844d5efda63752f75ecc98c53 SHA512 6f472f7c48ea6b5602c0fb1898fc08be8f8336a7b6cec671b49d7e81255a5e52b2442cb38a8aab342a26aef107ef73f242a4c967249d8a013deb584340c71826
+DIST tulir-telethon-1.32.0_alpha1.gh.tar.gz 494851 BLAKE2B e34cb8dcfca3cce6ad34b2ff4c09c627b0bb742169b6ac74301a65de0887a7f6e75ef8a6968b2e5d6b496ffe3a7aee718ce53bccbe0367c4434223ee60dec175 SHA512 48e43fa0e713e779ac676db8906120df846463ea99c79833ae85181f12d7e2e494398e3c0fb05f2b2f313ab845f5aba8db768986c8a8a1af727bddae1b29a48d

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild
new file mode 100644
index 0000000000..afaba4efa4
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-10-17  4:15 Viorel Munteanu
  0 siblings, 0 replies; 21+ messages in thread
From: Viorel Munteanu @ 2023-10-17  4:15 UTC (permalink / raw
  To: gentoo-commits

commit:     34bf729f91062774689f61b43867bd23e0f27564
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Oct 16 21:14:13 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 21:14:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34bf729f

dev-python/tulir-telethon: drop 1.29.0_alpha2

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.29.0_alpha2.ebuild            | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index e5ce28c36e..21832d66fa 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1,2 @@
-DIST tulir-telethon-1.29.0_alpha2.gh.tar.gz 491082 BLAKE2B d965e4e6116ccff86cd6a0f561bd25a0af9bee85c314cae358f47eef30e17345c1b770088875717699b584649652a136be7ccc7da370434aa545d7620a2b9ac9 SHA512 f3e97bbc1bf505866661965206f65f25224508d623bc5cffefea5743ba21c2b8c94afd60c7da2a7854e86cde52557a3609fe22c9fb888ea52ed286d555d3fdbf
 DIST tulir-telethon-1.30.0_alpha2.gh.tar.gz 493240 BLAKE2B dd7d464c187a08b71d3a7578922c6da91cb4878b6a29d36cbe9211f7978a10b9b397ea799b11aa144cdb1e458bd0bc6f80acc9b844d5efda63752f75ecc98c53 SHA512 6f472f7c48ea6b5602c0fb1898fc08be8f8336a7b6cec671b49d7e81255a5e52b2442cb38a8aab342a26aef107ef73f242a4c967249d8a013deb584340c71826
 DIST tulir-telethon-1.32.0_alpha1.gh.tar.gz 494851 BLAKE2B e34cb8dcfca3cce6ad34b2ff4c09c627b0bb742169b6ac74301a65de0887a7f6e75ef8a6968b2e5d6b496ffe3a7aee718ce53bccbe0367c4434223ee60dec175 SHA512 48e43fa0e713e779ac676db8906120df846463ea99c79833ae85181f12d7e2e494398e3c0fb05f2b2f313ab845f5aba8db768986c8a8a1af727bddae1b29a48d

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild
deleted file mode 100644
index afaba4efa4..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.29.0_alpha2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-10-17 12:26 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2023-10-17 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     85fab6db0041572248c304eb6bfcebab3984f79c
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Oct 17 12:05:27 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 17 12:05:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=85fab6db

dev-python/tulir-telethon: drop 1.32.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.32.0_alpha1.ebuild            | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 43e87dd8e9..ee5e9eb0e7 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1,2 @@
 DIST tulir-telethon-1.30.0_alpha2.gh.tar.gz 493240 BLAKE2B dd7d464c187a08b71d3a7578922c6da91cb4878b6a29d36cbe9211f7978a10b9b397ea799b11aa144cdb1e458bd0bc6f80acc9b844d5efda63752f75ecc98c53 SHA512 6f472f7c48ea6b5602c0fb1898fc08be8f8336a7b6cec671b49d7e81255a5e52b2442cb38a8aab342a26aef107ef73f242a4c967249d8a013deb584340c71826
-DIST tulir-telethon-1.32.0_alpha1.gh.tar.gz 494851 BLAKE2B e34cb8dcfca3cce6ad34b2ff4c09c627b0bb742169b6ac74301a65de0887a7f6e75ef8a6968b2e5d6b496ffe3a7aee718ce53bccbe0367c4434223ee60dec175 SHA512 48e43fa0e713e779ac676db8906120df846463ea99c79833ae85181f12d7e2e494398e3c0fb05f2b2f313ab845f5aba8db768986c8a8a1af727bddae1b29a48d
 DIST tulir-telethon-1.32.0_alpha2.gh.tar.gz 494857 BLAKE2B f39a8159716a5fd0f7f9d94bb6bdf9674fba678210f7c9dceb2bf7b90ddae5ee4eeade3f896dcb590f3e7f4985d18f72ea9fed35f59bc13680c1cf1c40fec890 SHA512 8b02b6f563844674fcf9449419cd68b646a10d7572534c5696501b1d043bf3b2c0d5969ca08c38664bd43ebefc1f99607649ec62180d6fca324bf799274e2873

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild
deleted file mode 100644
index afaba4efa4..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-10-17 12:26 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2023-10-17 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     1630943b38b76a495aaf376c1381926b4f85615a
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Oct 17 12:05:15 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 17 12:05:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1630943b

dev-python/tulir-telethon: add 1.32.0_alpha2

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.32.0_alpha2.ebuild            | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 21832d66fa..43e87dd8e9 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.30.0_alpha2.gh.tar.gz 493240 BLAKE2B dd7d464c187a08b71d3a7578922c6da91cb4878b6a29d36cbe9211f7978a10b9b397ea799b11aa144cdb1e458bd0bc6f80acc9b844d5efda63752f75ecc98c53 SHA512 6f472f7c48ea6b5602c0fb1898fc08be8f8336a7b6cec671b49d7e81255a5e52b2442cb38a8aab342a26aef107ef73f242a4c967249d8a013deb584340c71826
 DIST tulir-telethon-1.32.0_alpha1.gh.tar.gz 494851 BLAKE2B e34cb8dcfca3cce6ad34b2ff4c09c627b0bb742169b6ac74301a65de0887a7f6e75ef8a6968b2e5d6b496ffe3a7aee718ce53bccbe0367c4434223ee60dec175 SHA512 48e43fa0e713e779ac676db8906120df846463ea99c79833ae85181f12d7e2e494398e3c0fb05f2b2f313ab845f5aba8db768986c8a8a1af727bddae1b29a48d
+DIST tulir-telethon-1.32.0_alpha2.gh.tar.gz 494857 BLAKE2B f39a8159716a5fd0f7f9d94bb6bdf9674fba678210f7c9dceb2bf7b90ddae5ee4eeade3f896dcb590f3e7f4985d18f72ea9fed35f59bc13680c1cf1c40fec890 SHA512 8b02b6f563844674fcf9449419cd68b646a10d7572534c5696501b1d043bf3b2c0d5969ca08c38664bd43ebefc1f99607649ec62180d6fca324bf799274e2873

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild
new file mode 100644
index 0000000000..afaba4efa4
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-11-18  9:53 Andrew Ammerlaan
  0 siblings, 0 replies; 21+ messages in thread
From: Andrew Ammerlaan @ 2023-11-18  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     80f1439237d9176e2bfc6035f0e413c4e8a46d87
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Nov 17 20:20:24 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 20:20:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=80f14392

dev-python/tulir-telethon: add 1.33.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.33.0_alpha1.ebuild            | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 44f62db6ad..767c7d0a9b 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.32.0_alpha2.gh.tar.gz 494857 BLAKE2B f39a8159716a5fd0f7f9d94bb6bdf9674fba678210f7c9dceb2bf7b90ddae5ee4eeade3f896dcb590f3e7f4985d18f72ea9fed35f59bc13680c1cf1c40fec890 SHA512 8b02b6f563844674fcf9449419cd68b646a10d7572534c5696501b1d043bf3b2c0d5969ca08c38664bd43ebefc1f99607649ec62180d6fca324bf799274e2873
 DIST tulir-telethon-1.32.0_alpha3.gh.tar.gz 495988 BLAKE2B ca2c7f64067369ad9b2424ef00d2697b1a836de7e4709ffeae4cd9b1bfaef50c998ffc49501830ad7e1564fada4ec804abf0b8a7f27f0659398f9112514ec837 SHA512 1a4f17d22f10a04c862433ce474b946c835ee954e4f5158fdc2c81f510cf5dd1041544b0df44f1c61d9dfcdfb27c023b213552230153e3a3f4ce5f1512094f9b
+DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild
new file mode 100644
index 0000000000..afaba4efa4
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-11-18  9:53 Andrew Ammerlaan
  0 siblings, 0 replies; 21+ messages in thread
From: Andrew Ammerlaan @ 2023-11-18  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     40a93bcfaae7d8c98ae455fce4e12f186d6b30b4
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Nov 17 20:20:36 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 20:20:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40a93bcf

dev-python/tulir-telethon: drop 1.32.0_alpha2

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.32.0_alpha2.ebuild            | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 767c7d0a9b..45c121e61b 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1,2 @@
-DIST tulir-telethon-1.32.0_alpha2.gh.tar.gz 494857 BLAKE2B f39a8159716a5fd0f7f9d94bb6bdf9674fba678210f7c9dceb2bf7b90ddae5ee4eeade3f896dcb590f3e7f4985d18f72ea9fed35f59bc13680c1cf1c40fec890 SHA512 8b02b6f563844674fcf9449419cd68b646a10d7572534c5696501b1d043bf3b2c0d5969ca08c38664bd43ebefc1f99607649ec62180d6fca324bf799274e2873
 DIST tulir-telethon-1.32.0_alpha3.gh.tar.gz 495988 BLAKE2B ca2c7f64067369ad9b2424ef00d2697b1a836de7e4709ffeae4cd9b1bfaef50c998ffc49501830ad7e1564fada4ec804abf0b8a7f27f0659398f9112514ec837 SHA512 1a4f17d22f10a04c862433ce474b946c835ee954e4f5158fdc2c81f510cf5dd1041544b0df44f1c61d9dfcdfb27c023b213552230153e3a3f4ce5f1512094f9b
 DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild
deleted file mode 100644
index afaba4efa4..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-12-31 15:32 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2023-12-31 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a19b453a6c1ac6e215e4095d984314880fcfc7c8
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Dec 30 17:36:17 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 19:04:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a19b453a

dev-python/tulir-telethon: add 1.34.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.34.0_alpha1.ebuild            | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 45c121e61b..d6f5074837 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.32.0_alpha3.gh.tar.gz 495988 BLAKE2B ca2c7f64067369ad9b2424ef00d2697b1a836de7e4709ffeae4cd9b1bfaef50c998ffc49501830ad7e1564fada4ec804abf0b8a7f27f0659398f9112514ec837 SHA512 1a4f17d22f10a04c862433ce474b946c835ee954e4f5158fdc2c81f510cf5dd1041544b0df44f1c61d9dfcdfb27c023b213552230153e3a3f4ce5f1512094f9b
 DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10
+DIST tulir-telethon-1.34.0_alpha1.gh.tar.gz 497399 BLAKE2B b18c04c94e69abdda463747867b64a2925cab9b2bbf9813dbeca752c24ed4381433ede530610975f90441db7530119c514b1b4a65521835042ae754ffb25502d SHA512 63bc95061075a3cb92fd0f70c5b12a4676bbb030ee9acaa4f0484ce9d4afad57c33f7c4b9397e05712bc11aab0b54786327c595762677fcb01832002b2d68711

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild
new file mode 100644
index 0000000000..afaba4efa4
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/Telethon-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
+)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-12-31 15:32 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2023-12-31 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     2bba440c6107deb21a9baa8bc98f26a6c421e980
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Dec 30 17:36:26 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 19:04:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2bba440c

dev-python/tulir-telethon: drop 1.32.0_alpha3

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.32.0_alpha3.ebuild            | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index d6f5074837..782838fd3a 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1,2 @@
-DIST tulir-telethon-1.32.0_alpha3.gh.tar.gz 495988 BLAKE2B ca2c7f64067369ad9b2424ef00d2697b1a836de7e4709ffeae4cd9b1bfaef50c998ffc49501830ad7e1564fada4ec804abf0b8a7f27f0659398f9112514ec837 SHA512 1a4f17d22f10a04c862433ce474b946c835ee954e4f5158fdc2c81f510cf5dd1041544b0df44f1c61d9dfcdfb27c023b213552230153e3a3f4ce5f1512094f9b
 DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10
 DIST tulir-telethon-1.34.0_alpha1.gh.tar.gz 497399 BLAKE2B b18c04c94e69abdda463747867b64a2925cab9b2bbf9813dbeca752c24ed4381433ede530610975f90441db7530119c514b1b4a65521835042ae754ffb25502d SHA512 63bc95061075a3cb92fd0f70c5b12a4676bbb030ee9acaa4f0484ce9d4afad57c33f7c4b9397e05712bc11aab0b54786327c595762677fcb01832002b2d68711

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha3.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha3.ebuild
deleted file mode 100644
index afaba4efa4..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.32.0_alpha3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2023-12-31 15:32 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2023-12-31 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     6e2a54bf3879efd5c67ef64bfe6089df354aacc3
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Dec 30 18:58:39 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 19:04:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e2a54bf

dev-python/tulir-telethon: add 1.34.0_alpha2, drop 1.34.0_alpha1

Closes: https://bugs.gentoo.org/915915
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                            |  2 +-
 ...34.0_alpha1.ebuild => tulir-telethon-1.34.0_alpha2.ebuild} | 11 ++---------
 2 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 782838fd3a..71111b0e46 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,2 @@
 DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10
-DIST tulir-telethon-1.34.0_alpha1.gh.tar.gz 497399 BLAKE2B b18c04c94e69abdda463747867b64a2925cab9b2bbf9813dbeca752c24ed4381433ede530610975f90441db7530119c514b1b4a65521835042ae754ffb25502d SHA512 63bc95061075a3cb92fd0f70c5b12a4676bbb030ee9acaa4f0484ce9d4afad57c33f7c4b9397e05712bc11aab0b54786327c595762677fcb01832002b2d68711
+DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild
similarity index 73%
rename from dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild
rename to dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild
index afaba4efa4..c648c3d07d 100644
--- a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha1.ebuild
+++ b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild
@@ -3,16 +3,15 @@
 
 EAPI=8
 
+PYPI_NO_NORMALIZE=1
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 MY_PV="${PV/_alph/}"
 DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
 HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
@@ -33,9 +32,3 @@ RDEPEND="
 	)
 "
 DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2024-01-09 12:03 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2024-01-09 12:03 UTC (permalink / raw
  To: gentoo-commits

commit:     336f710885ac020c3b642b482bd940ab51e2e643
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Jan  9 00:09:36 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jan  9 00:09:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=336f7108

dev-python/tulir-telethon: drop 1.33.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 -
 .../tulir-telethon-1.33.0_alpha1.ebuild            | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 71111b0e46..2be3e6b469 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1 @@
-DIST tulir-telethon-1.33.0_alpha1.gh.tar.gz 496284 BLAKE2B 6bba90dd4be4b6aeb2f1a4bd9bd4dc59740504cf2ef75606a5df861df00292d9f935c29a397c98bc6c83cfad80c5413700ca5cc131896a5710748848e01a7b78 SHA512 b8eb5ff95f2450ab7d29af6d9ccea63f562b14d984aedc946b82f80a4d68338133767a81432da10a6b6d9aa9c26ac431ad33d73a5a5a9b733702d37747b49a10
 DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild
deleted file mode 100644
index afaba4efa4..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.33.0_alpha1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-SRC_URI="https://github.com/tulir/Telethon/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/Telethon-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-	tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present
-)


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2024-01-09 12:03 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2024-01-09 12:03 UTC (permalink / raw
  To: gentoo-commits

commit:     dcc8e44a1f08b7ec5354283efc015d49409942c0
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Jan  9 00:10:25 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jan  9 00:10:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dcc8e44a

dev-python/tulir-telethon: add 1.34.0_alpha3

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.34.0_alpha3.ebuild            | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 2be3e6b469..893459c3f4 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1 +1,2 @@
 DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6
+DIST tulir-telethon-1.34.0a3.tar.gz 577740 BLAKE2B 2759d72ff83ee27e7f22b756099d9fd312026e6c28417a3a9243f8be941ff01997a2794324ecee8d71864c240ea7adc9770c04b12b0302c4d3b5a34ec26e3dd5 SHA512 f197a8b6192266da628750776863fda125d29530ce7bdfda1f65845ba8b6bcb95fa32cfb810e4b72b6c1825b20f9e2d794b3b5d2226a91589c4f03493ee3d490

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild
new file mode 100644
index 0000000000..c648c3d07d
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
  2024-03-16 19:32 [gentoo-commits] repo/proj/guru:dev " Julien Roy
@ 2024-03-16 19:37 ` Julien Roy
  0 siblings, 0 replies; 21+ messages in thread
From: Julien Roy @ 2024-03-16 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     8ab83526bae0db51406bf6e1f4f2f2b01fa3df20
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Mar 16 19:24:02 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Mar 16 19:24:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8ab83526

dev-python/tulir-telethon: add 1.35.0_alpha1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.35.0_alpha1.ebuild            | 29 ++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 893459c3f4..1010d67be6 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,2 +1,3 @@
 DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6
 DIST tulir-telethon-1.34.0a3.tar.gz 577740 BLAKE2B 2759d72ff83ee27e7f22b756099d9fd312026e6c28417a3a9243f8be941ff01997a2794324ecee8d71864c240ea7adc9770c04b12b0302c4d3b5a34ec26e3dd5 SHA512 f197a8b6192266da628750776863fda125d29530ce7bdfda1f65845ba8b6bcb95fa32cfb810e4b72b6c1825b20f9e2d794b3b5d2226a91589c4f03493ee3d490
+DIST tulir-telethon-1.35.0a1.tar.gz 590359 BLAKE2B e145d6c89f7c465c308994c3646fcdd2e99941c37b3ba0be170f8784b0d8e18b5b513fad9b52e8d706532e359649d3368759f6d4676438c200882902a8a5be83 SHA512 17199aea16ede2051583cac857bac65b23301273f64e157c29acca142c7fe4bb9d3ea8d147c121a095b7a30c0bb92eab83aee3946093168ca5096fa84c9d4167

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild
new file mode 100644
index 0000000000..4e216ff22c
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
+HOMEPAGE="https://github.com/tulir/Telethon/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2024-05-13 22:38 Julien Roy
  0 siblings, 0 replies; 21+ messages in thread
From: Julien Roy @ 2024-05-13 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e76e86f2a90952a12e25c3c13e2a6661b1a3e27c
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon May 13 20:56:25 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon May 13 22:18:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e76e86f2

dev-python/tulir-telethon: enable py3.12

Closes: https://bugs.gentoo.org/931447
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild
index 4e216ff22c..dd878b8341 100644
--- a/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild
+++ b/dev-python/tulir-telethon/tulir-telethon-1.35.0_alpha1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 PYPI_NO_NORMALIZE=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
  2024-05-13 22:21 [gentoo-commits] repo/proj/guru:dev " Julien Roy
@ 2024-05-13 22:38 ` Julien Roy
  0 siblings, 0 replies; 21+ messages in thread
From: Julien Roy @ 2024-05-13 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     82f32e551a73593b3dc8869b59e3a6cbc487c139
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon May 13 20:56:55 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon May 13 22:18:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82f32e55

dev-python/tulir-telethon: drop 1.34.0_alpha2, 1.34.0_alpha3

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/tulir-telethon/Manifest                 |  2 --
 .../tulir-telethon-1.34.0_alpha2.ebuild            | 34 ----------------------
 .../tulir-telethon-1.34.0_alpha3.ebuild            | 34 ----------------------
 3 files changed, 70 deletions(-)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index 1010d67be6..d38d36cccd 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1,3 +1 @@
-DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6
-DIST tulir-telethon-1.34.0a3.tar.gz 577740 BLAKE2B 2759d72ff83ee27e7f22b756099d9fd312026e6c28417a3a9243f8be941ff01997a2794324ecee8d71864c240ea7adc9770c04b12b0302c4d3b5a34ec26e3dd5 SHA512 f197a8b6192266da628750776863fda125d29530ce7bdfda1f65845ba8b6bcb95fa32cfb810e4b72b6c1825b20f9e2d794b3b5d2226a91589c4f03493ee3d490
 DIST tulir-telethon-1.35.0a1.tar.gz 590359 BLAKE2B e145d6c89f7c465c308994c3646fcdd2e99941c37b3ba0be170f8784b0d8e18b5b513fad9b52e8d706532e359649d3368759f6d4676438c200882902a8a5be83 SHA512 17199aea16ede2051583cac857bac65b23301273f64e157c29acca142c7fe4bb9d3ea8d147c121a095b7a30c0bb92eab83aee3946093168ca5096fa84c9d4167

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild
deleted file mode 100644
index c648c3d07d..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYPI_NO_NORMALIZE=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild
deleted file mode 100644
index c648c3d07d..0000000000
--- a/dev-python/tulir-telethon/tulir-telethon-1.34.0_alpha3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYPI_NO_NORMALIZE=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-MY_PV="${PV/_alph/}"
-DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
-HOMEPAGE="https://github.com/tulir/Telethon/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/hachoir[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	dev-python/pyaes[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-socks[${PYTHON_USEDEP}]
-	dev-python/rsa[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2024-08-09 12:46 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2024-08-09 12:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9494053e9f3f1aa548fcd400f1a73b3bfe15efeb
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Aug  8 22:37:02 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Aug  8 22:37:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9494053e

dev-python/tulir-telethon: add 1.37.0_alpha1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/tulir-telethon/Manifest                 |  1 +
 .../tulir-telethon-1.37.0_alpha1.ebuild            | 47 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/tulir-telethon/Manifest b/dev-python/tulir-telethon/Manifest
index d38d36ccc..f93a6b4a6 100644
--- a/dev-python/tulir-telethon/Manifest
+++ b/dev-python/tulir-telethon/Manifest
@@ -1 +1,2 @@
 DIST tulir-telethon-1.35.0a1.tar.gz 590359 BLAKE2B e145d6c89f7c465c308994c3646fcdd2e99941c37b3ba0be170f8784b0d8e18b5b513fad9b52e8d706532e359649d3368759f6d4676438c200882902a8a5be83 SHA512 17199aea16ede2051583cac857bac65b23301273f64e157c29acca142c7fe4bb9d3ea8d147c121a095b7a30c0bb92eab83aee3946093168ca5096fa84c9d4167
+DIST tulir-telethon-1.37.0_alpha1.gh.tar.gz 504857 BLAKE2B ce9bedc0ef7c6b1673ce62aa9f298c92d11aba5d0ea59eb47ab48b0529e9e8e60c9b86c0bdea2dfc9052a0458c7d8129d7a8f1f75e6bf16df45381177b04b4f8 SHA512 db704622d58677c4b7470850ad37129c227487caa3cf34d60a5fa81f91306a46f943bcecbbe8ca045c7f47c780b917ada3e9a1860aa82c99751a131fc847b15a

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild
new file mode 100644
index 000000000..26823b794
--- /dev/null
+++ b/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+MY_PN="Telethon"
+MY_PV="${PV/_alph/}"
+DESCRIPTION="Full-featured Telegram client library for Python 3"
+HOMEPAGE="
+	https://pypi.org/project/tulir-telethon/
+	https://github.com/tulir/Telethon/
+"
+SRC_URI="https://github.com/tulir/${MY_PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/hachoir[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyaes[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/python-socks[${PYTHON_USEDEP}]
+	dev-python/rsa[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )
+"
+
+EPYTEST_DESELECT=(
+	tests/telethon/test_utils.py::test_private_get_extension
+)
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest tests/telethon
+}


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/
@ 2024-11-02 20:52 David Roman
  0 siblings, 0 replies; 21+ messages in thread
From: David Roman @ 2024-11-02 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     789599be68e76ec513cf3069bd0294dfa05169e8
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Nov  1 14:25:50 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Nov  1 14:37:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=789599be

dev-python/tulir-telethon: enable py3.13

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild
index 26823b794..cf69a02fc 100644
--- a/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild
+++ b/dev-python/tulir-telethon/tulir-telethon-1.37.0_alpha1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 PYPI_NO_NORMALIZE=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 


^ permalink raw reply related	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2024-11-02 20:52 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-09 12:03 [gentoo-commits] repo/proj/guru:master commit in: dev-python/tulir-telethon/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-11-02 20:52 David Roman
2024-08-09 12:46 David Roman
2024-05-13 22:38 Julien Roy
2024-05-13 22:21 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-13 22:38 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-03-16 19:32 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-03-16 19:37 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-01-09 12:03 David Roman
2023-12-31 15:32 David Roman
2023-12-31 15:32 David Roman
2023-12-31 15:32 David Roman
2023-11-18  9:53 Andrew Ammerlaan
2023-11-18  9:53 Andrew Ammerlaan
2023-10-17 12:26 David Roman
2023-10-17 12:26 David Roman
2023-10-17  4:15 Viorel Munteanu
2023-10-17  4:15 Viorel Munteanu
2023-06-15  9:33 Florian Schmaus
2023-06-15  9:33 Florian Schmaus
2023-04-14 17:36 Viorel Munteanu
2023-04-14 17:36 Viorel Munteanu
2023-01-22  8:21 Viorel Munteanu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox