Search Criteria
Package Details: python-arxiv 2.1.0-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/python-arxiv.git (read-only, click to copy) |
|---|---|
| Package Base: | python-arxiv |
| Description: | Python wrapper for the arXiv API: http://arxiv.org/help/api/ |
| Upstream URL: | https://github.com/lukasschwab/arxiv.py |
| Licenses: | MIT |
| Submitter: | yodaembedding |
| Maintainer: | yodaembedding |
| Last Packager: | yodaembedding |
| Votes: | 1 |
| Popularity: | 0.000000 |
| First Submitted: | 2021-02-28 06:35 (UTC) |
| Last Updated: | 2023-12-27 01:45 (UTC) |
Latest Comments
m040601 commented on 2026-05-06 03:47 (UTC) (edited on 2026-05-06 03:52 (UTC) by m040601)
This PKGBUILD has been marked out of date for two months,
It was last touched almost three years ago
The maintainer seems absent from the AUR
His last updated other PKGBUILDs were also touched two years ago.
https://aur.archlinux.org/packages?K=yodaembedding&SeB=m&O=0&SB=l&SO=d
gesh: Why not submit an orphan request and adopt the package ? It is a dependency for an important one, papis afterall.
gesh commented on 2026-03-07 20:07 (UTC)
Note: In 2.4.0,
python-arxivreplaced thepython-setuptoolsmakedepend withpython-hatchling+python-hatch-vcsgesh commented on 2024-12-23 14:39 (UTC) (edited on 2024-12-23 14:44 (UTC) by gesh)
Note: Package needs to be rebuilt for Python 3.13 (a bump to pkgrel suffices)
gesh commented on 2024-03-25 13:05 (UTC)
Also, please update to PEP517 installs -- directly invoking
setup.pyis deprecated nowadays.gesh commented on 2024-02-13 20:59 (UTC) (edited on 2025-08-15 12:29 (UTC) by gesh)
This doesn't need to be a split package --
$pkgbasecan be dropped, andpkgnamemade into a string instead. Similarly,depends+=()can be removed frompackage(). Also, https://wiki.archlinux.org/title/Python_packaging_guidelines suggests using_nameinstead of_module. Besides, is there a reason you're adding--skip-build? Finally, you could addcheck() { cd "${srcdir}/${_module}-${pkgver}"; python setup.py test; }andcheckdepends=(python-pytest python-ruff python-pdoc==13.1.0 python-pip-audit)EDIT: Only
python-pytestis necessary here, I don't know how I misreadrequirements.txtthat badly. In particular, addingpython-pip-auditwould add 6 transitive AUR dependencies to the package for absolutely no gain, as it is a dev dependency only used upstream. Apologies for the confusion.