Out-of-date, this version breaks with python2-sqlalchemy 0.7.0. It's fixed in 1.0r2244.
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 .. 19 20 21 22 23 24 25 Next › Last »
<deleted-account> commented on 2011-05-26 20:59 (UTC)
amrhassan commented on 2011-05-13 15:10 (UTC)
Please change the dependency of cherrypy to python2-cherrypy.
<deleted-account> commented on 2011-04-05 17:25 (UTC)
Should be dependant on python2-yaml and not python-yaml
This is probably also true of any other python libraries
<deleted-account> commented on 2011-04-03 04:15 (UTC)
This requires python2-yaml not python-yaml
pezz commented on 2011-03-21 05:39 (UTC)
Works after latest update, thanks!
<deleted-account> commented on 2011-03-20 23:58 (UTC)
It requires python2-feedparser instead of python-feedparser
pezz commented on 2011-03-20 08:14 (UTC)
Thanks for the update.
Still appears to be broken after the recent python-feedparser upgrade.
Not sure if you can do anything about it?
<deleted-account> commented on 2011-02-11 10:22 (UTC)
You'll want to update the dependency for pynzb to python2-pynzb
amrhassan commented on 2011-01-20 23:09 (UTC)
Also requires "python2-html5lib python-beautifulsoup python-yaml python-feedparser".
ndowens commented on 2011-01-11 04:01 (UTC)
MarianoC: Now has been fixed, thanks
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.