Package Details: powerpill 2021.11-14

Git Clone URL: https://aur.archlinux.org/powerpill.git (read-only, click to copy)
Package Base: powerpill
Description: Pacman wrapper for faster downloads.
Upstream URL: https://xyne.dev/projects/powerpill
Keywords: arch_linux pacman system
Licenses: GPL
Submitter: Xyne
Maintainer: Xyne
Last Packager: Xyne
Votes: 243
Popularity: 0.96
First Submitted: 2012-11-29 03:58 (UTC)
Last Updated: 2023-06-27 09:33 (UTC)

Dependencies (9)

Required by (1)

Sources (2)

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10 11 12 13 14 15 .. 20 Next › Last »

dapolinario commented on 2018-02-02 21:10 (UTC)

Can you add fish completion to this package, using pacman's fish completion as a template?

Xyne commented on 2017-12-31 05:11 (UTC)

@bemeurer Thanks for reporting the error and posting the traceback. It should be fixed with today's pm2ml update.

bemeurer commented on 2017-12-27 14:07 (UTC) (edited on 2017-12-27 14:10 (UTC) by bemeurer)

I inconsistently run into the following error https://gist.github.com/bemeurer/a051eb7a3962ae9438e53c37f16a9846

It seems to happen whenever I run PACMAN=powerpill pacaur -Syu --devel --needed --noconfirm and there is and update. If when it errors I run the command again, it runs successfully.

Xyne commented on 2017-11-26 21:55 (UTC)

> I'm running my own version of python3 I don't know what that means. Regardless, run the setup script with your version to install the modules to a recognized path.

Ataraxy commented on 2017-11-22 05:22 (UTC)

I'm running my own version of python3 and I'm seeing: /home/ravi/.local/share/virtualenvs/py3/bin/python3: No module named Powerpill How do I work around this? Could Powerpill be a PYPI package?

Xyne commented on 2017-08-21 13:13 (UTC)

All of the dependencies should be updated together. Please ask the maintainer of the package in the Antergos repo to update the package. You can also enable my repo in pacman.conf.

pdf commented on 2017-08-18 22:59 (UTC)

Dependencies should probably be updated to pm2ml >= 2017.3, otherwise powerpill dies when syncing with the following stack trace, when using older pm2ml (antergos carries 2016.8-1 in their repo, for example): Traceback (most recent call last): File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/usr/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/usr/lib/python3.6/site-packages/Powerpill.py", line 990, in <module> sys.exit(run_main()) File "/usr/lib/python3.6/site-packages/Powerpill.py", line 975, in run_main return main(args) File "/usr/lib/python3.6/site-packages/Powerpill.py", line 955, in main powerpill.refresh_databases() File "/usr/lib/python3.6/site-packages/Powerpill.py", line 783, in refresh_databases self.pm2ml.refresh_databases(**pm2ml_passthrough_args) AttributeError: 'Pm2ml' object has no attribute 'refresh_databases'

Xyne commented on 2017-06-17 23:13 (UTC)

@Lasp94 https://pgp.mit.edu/pks/lookup?op=vindex&search=0x1D1F0DC78F173680 https://xyne.archlinux.ca/#signing-key It's also in the pacman keyring: pacman-key --export 1D1F0DC78F173680 > xyne.asc @Shebang Pacman's definition of a "foreign" package is anything that it can't find in the sync databases. If you are overwriting those files with new ones (with pacman -Sy, powerpill -Sy, yaourt -Sy, or anything else that updates them), then the sync database is temporarily unavailable (or at least incompletely). Running "pacman -Qm" in parallel will thus check empty/incomplete databases and report everything it doesn't find as foreign. Just break up the sync and download operations: $ powerpill -Sy $ pacman -Qm > foreign.txt $ powerpill -Su and replace "pacman -Qm" with "cat foreign.txt" in your script.