Search Criteria
Package Details: python-telethon 1.30.3-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-telethon.git (read-only, click to copy) |
---|---|
Package Base: | python-telethon |
Description: | Full-featured Telegram client library for Python 3 |
Upstream URL: | https://github.com/LonamiWebs/Telethon |
Licenses: | MIT |
Submitter: | MaskRay |
Maintainer: | lilydjwg (lilac) |
Last Packager: | lilac |
Votes: | 6 |
Popularity: | 0.000001 |
First Submitted: | 2017-11-03 04:47 (UTC) |
Last Updated: | 2023-09-13 21:07 (UTC) |
Latest Comments
lilydjwg commented on 2021-12-14 16:35 (UTC)
yan12125 explicitly says to not bump pkgrel on rebuilds.
Anyway, you can't expect that all AUR maintainers bump their packages timely, so you'll still need to query and rebuild yourself. Something like
pacman -Qo /usr/lib/python3.9 | paru -Sa --rebuild -
will handle this rebuild. Bumping pkgrel at the wrong time is either too late or build a duplicate version, or both.Binary package repositories are different than AUR.
Unless explicitly agreed by TUs, I'm not going to bump pkgrel for rebuilds.
novenary commented on 2021-12-14 15:45 (UTC)
I think you've misunderstood their request.
This is not a VCS package (it doesn't contain a
pkgver()
function, and isn't building from the tip of a git branch). Bumpingpkgrel
in this case will cause AUR helpers to rebuild the package against the new Python release (which makes a significant change to the contents of the package itself, not just fixing a typo). Packages from the official repo also bumppkgrel
for new Python releases.lilydjwg commented on 2021-12-14 15:27 (UTC)
I'm not bumping pkgrel for a rebuild as TUs say. The AUR submission guidelines also says "Do not update those values if only minor changes to the PKGBUILD such as the correction of a typo are being published." Updating nothing other than pkgrel doesn't seem to be any more significant than "the correction of a typo".
lilydjwg commented on 2020-11-02 10:28 (UTC)
@JuniorJPDJ You need to pacman -R python-telethon. There was issues with 1.17.4.
JuniorJPDJ commented on 2020-11-02 10:21 (UTC)
I've got error when trying to update to 1.17.5 today:
BrainDamage commented on 2020-01-01 15:06 (UTC)
This package installs the tests dir in the destination python dir, this can conflict with many other packages. To fix it, add: local site_packages=$(python -c "import site; print(site.getsitepackages()[0])") rm -r "$pkgdir/$site_packages/tests/"
after executing install.
( see also https://wiki.archlinux.org/index.php/Python_package_guidelines#Test_directory_in_site-package )
lilydjwg commented on 2019-11-12 05:29 (UTC)
Hi streetwalrus, sorry for the delay because I didn't received notification.
Issues 1 and 2 have been resolved and I will implement others soon.
novenary commented on 2019-03-31 20:51 (UTC) (edited on 2019-03-31 20:52 (UTC) by novenary)
Hi, there are some minor issues with your PKGBUILD:
- async_generator is no longer required
- setuptools should be in the
makedepends
array, it's not required at runtime at any point- you should not set $LANG unless it's strictly necessary to build (which is not the case here), and especially not to en_US.UTF-8 as it will to fail if that locale isn't enabled on the build machine
- since the license is MIT, you should install the license file (
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
)I maintain the -git equivalent of this package and talk to the author on a daily basis, feel free to ask me if you have any questions. :)
5boro commented on 2018-08-08 09:42 (UTC)
Missing dependency : python-async_generator