Thanks for the comments.
For now I just updated it to the latest version still using python2, I will look into the migration to python3 and the creation of all dependency packages.
Search Criteria
Package Details: flexget 3.13.5-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.22 |
First Submitted: | 2009-09-11 19:38 (UTC) |
Last Updated: | 2024-12-25 16:14 (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 2 3 4 5 6 7 8 9 10 11 .. 25 Next › Last »
sleduc commented on 2016-08-16 07:52 (UTC)
je-vv commented on 2016-08-16 06:21 (UTC)
Just in case, a brief of what I did to upgrade to 2.2.20 and at the same time migrate to python3 (none of the new pkgs are in AUR):
flexget -> 2.2.20
-> CHANGE to python3
-> REMOVE all #AUR# on deps
-> REMOVE "prepare"
-> NEW DEPENDENCY python-pathlib
-> MOVED from OPT to DEP (really opt?)
python-transmissionrpc python-rarfile
https://pypi.python.org/packages/7b/eb/58d9e635e9be0aebb7977f56c0696bbc39b308eccde494ea98257bf5a3d9/FlexGet-2.2.20.tar.gz
sha256sums 42b49386fd5f0bb60e1e920d2a5eb5651c9ef0d0df12f464fe2d3a3d64dcef87
python-apscheduler -> 3.2.0
https://pypi.python.org/packages/c8/40/16a2df29261992cee18f6cba9731d9101302cc76d24794a332f6e567fe2f/APScheduler-3.2.0.tar.gz
sha256sums 5baa1195ba711868fae257612cf80372ff1124014ca896884bf132f75636f638
python-flask-restful -> REMOVE python2
python-rpyc -> REMOVE python2
python-flask-compress -> new python3
python-flask-cors -> new python3
python-flask-restplus086 -> new python3
python-flask-restplus -> new python3 (required 086, only for completeness)
python-rednose -> new python3 (prior deps on this)
python-termstyle -> new python3 (prior deps on this)
python-safe -> new python3
python-pynzb -> new python3
python-pytvmaze -> new python3
python-pathlib -> new python3
je-vv commented on 2016-08-16 03:15 (UTC)
2.2.20 out, on pypi.org
kevku commented on 2016-06-20 10:50 (UTC)
requiers guessit<=2.0.4
adam900710 commented on 2016-04-29 01:55 (UTC)
Thanks, I asked in upstream IRC, and decided to use virtualenv + pip do install it for a given user.
sleduc commented on 2016-04-28 17:54 (UTC)
Unfortunately I do not think this is possible.
In fact I guess it would require some modification of the code of Flexget to be more "modular".
But I fear we can't do much on the "packaging" side since flexget will not even start if one dependency is missing.
Maybe you could ask this question "upstream" (in https://github.com/Flexget/Flexget/issues)
adam900710 commented on 2016-04-28 02:50 (UTC)
Any idea to stripe off the so many python dependency?
Or is there any option to disable features which I won't need?
Personally speaking, I just need flexget to filter torrents and download to given dir.
Nothing more, the dependency makes me quite scared though.
sleduc commented on 2016-03-18 19:54 (UTC)
Thanks, I updated the dependency (and the package version), it should all work correctly now.
cgirard commented on 2016-03-18 09:44 (UTC)
OK, sorry about this. I've created python2-flask-restplus086 for Flexget and updated the SRCINFO of python2-flask-restplus.
mkaito commented on 2016-03-18 02:24 (UTC)
I installed restplus 0.8.6 manually, and it seems like things work again. I guess cgirard might have to revert the update, if he was specifically holding back for flexget.
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.