Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#65242 - [python-clickclick] Missing actual Python files, only has metadata
Attached to Project:
Community Packages
Opened by dllud (dllud) - Thursday, 23 January 2020, 03:20 GMT
Last edited by Filipe Laíns (FFY00) - Thursday, 23 January 2020, 18:21 GMT
Opened by dllud (dllud) - Thursday, 23 January 2020, 03:20 GMT
Last edited by Filipe Laíns (FFY00) - Thursday, 23 January 2020, 18:21 GMT
|
DetailsThe python-clickclick package as of version 1.2.2-3 only includes metadata (egg-info) files:
usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/ usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/PKG-INFO usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/SOURCES.txt usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/dependency_links.txt usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/entry_points.txt usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/requires.txt usr/lib/python3.8/site-packages/clickclick-1.2.2-py3.8.egg-info/top_level.txt The actual Python files with the library implementation are missing: usr/lib/python3.8/site-packages/clickclick/console.py usr/lib/python3.8/site-packages/clickclick/__init__.py usr/lib/python3.8/site-packages/clickclick/__pycache__/console.cpython-38.pyc usr/lib/python3.8/site-packages/clickclick/__pycache__/__init__.cpython-38.pyc As such, installing this package does not provide the expected Python module: ModuleNotFoundError: No module named 'clickclick' |
This task depends upon
Closed by Filipe Laíns (FFY00)
Thursday, 23 January 2020, 18:21 GMT
Reason for closing: Fixed
Additional comments about closing: python-clickclick 1.2.2-4
Thursday, 23 January 2020, 18:21 GMT
Reason for closing: Fixed
Additional comments about closing: python-clickclick 1.2.2-4
package() {
cd $pkgname-$pkgver
python setup.py build
}
package() {
cd $pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
No actual build function...