Fixed. Please retry to install.
Search Criteria
Package Details: flexget 3.13.6-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/flexget.git (read-only, click to copy) |
---|---|
Package Base: | flexget |
Description: | FlexGet is a program aimed to automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more. |
Upstream URL: | https://github.com/Flexget/Flexget |
Licenses: | MIT |
Submitter: | jonkristian |
Maintainer: | evine |
Last Packager: | evine |
Votes: | 76 |
Popularity: | 0.21 |
First Submitted: | 2009-09-11 19:38 (UTC) |
Last Updated: | 2025-01-04 16:13 (UTC) |
Dependencies (81)
- python-aniso8601
- python-apschedulerAUR
- python-attrs
- python-autocommand (python-autocommand-gitAUR)
- python-babelfish
- python-beautifulsoup4
- python-blinker
- python-brotli (python-brotli-gitAUR)
- python-certifi
- python-charset-normalizer
- python-cheroot
- python-cherrypy
- python-click
- python-colorama (python-colorama-gitAUR)
- python-dateutil
- python-feedparser
- python-flask
- python-flask-compress
- python-flask-cors
- python-flask-login
- Show 61 more dependencies...
Required by (0)
Sources (6)
Latest Comments
« First ‹ Previous 1 .. 16 17 18 19 20 21 22 23 24 25 Next › Last »
amrhassan commented on 2012-07-20 04:01 (UTC)
jplona commented on 2012-07-19 20:54 (UTC)
When attempting to install this package, I get
Dependency `python-beautifulsoup' of `flexget' does not exist.
amrhassan commented on 2012-05-30 07:26 (UTC)
Fixed.
<deleted-account> commented on 2012-05-30 06:39 (UTC)
After updating I got permission errors on /usr/lib/python2.7/site-packages/FlexGet-1.0-py2.7.egg-info/*. File permission was -rw-r----- instead of -rw-r--r--.
cacack commented on 2012-04-15 14:35 (UTC)
I'm getting permission denied errors on the templates directory when using the email output. 'sudo chmod -R o+r /usr/lib/python2.7/site-packages/flexget/templates/' did the trick.
<deleted-account> commented on 2012-03-12 09:31 (UTC)
Yay it works again! Thanks a bunch!
amrhassan commented on 2012-03-10 10:18 (UTC)
python2-dateutil dependency added. Please upgrade.
<deleted-account> commented on 2012-03-10 07:24 (UTC)
I'm also getting errors after upgrading:
Traceback (most recent call last):
File "/usr/bin/flexget", line 5, in <module>
from pkg_resources import load_entry_point
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 2707, in <module>
working_set.require(__requires__)
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 686, in require
needed = self.resolve(parse_requirements(requirements))
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 584, in resolve
raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: python-dateutil<2.0
amrhassan commented on 2012-03-09 10:30 (UTC)
1.0r2790 works well with python2-sqlalchemy-0.7.5-1 on my end. Are you still having problem?
B-Con commented on 2012-03-09 05:40 (UTC)
Won't run properly with the recent update to python2-sqlalchemy 0.7.5. Until flexget can work with python2-sqlalchemy 0.7.5, the PKGBUILD here needs to lock the dependency to 0.7.4.
Pinned Comments
evine commented on 2024-10-22 00:36 (UTC) (edited on 2024-10-26 00:26 (UTC) by evine)
@cmm11 I added this file
/usr/lib/systemd/system/flexget.service
with the intention of reducing the running permissions for users who use flexget-webui. Users using the webui can directly run command within the webui. If you have to run these commands from the command line, traditionalsu
cannot do it because the shell of theflexget
user is/usr/bin/nologin
and login is prohibited.You can run
sudo -u flexget flexget -c /var/lib/flexget/config.yml execute --task task_name
Or You can use the gosu that I just packaged to implement:
sudo gosu <user>:<group> <command>
, for example:sudo gosu flexget:flexget flexget -c /var/lib/flexget/config.yml execute --task task_name
.If you are using
/usr/lib/systemd/system/flexget.service
, you can add a alias in your shell rc file:alias flexget="sudo -u flexget /usr/bin/flexget -c /var/lib/flexget/config.yml
oralias flexget="sudo gosu flexget:flexget /usr/bin/flexget -c /var/lib/flexget/config.yml"
.evine commented on 2024-10-19 04:50 (UTC) (edited on 2024-10-22 01:53 (UTC) by evine)
After taking over Flexget, I had
flexget-webui
andflexget-webui-v1
inoptdepends
, you can install and enable webui if you need. When using webui, it is recommended to use/usr/lib/systemd/system/flexget.service
I have newly added./usr/lib/systemd/system/flexget.service
to run as a system user, the original methods that run as normal user still exists:/usr/lib/systemd/system/flexget@.service
and/usr/lib/systemd/user/flexget.service
.If upgrade fail, you should remove old
flexget
first, and reinstall.