1.2.73 is here : http://sprunge.us/fDGO
It's an update of foobster's PKGBUILD without CRLF.
Search Criteria
Package Details: flexget 3.13.7-2
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-07 03:48 (UTC) |
Dependencies (83)
- 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 63 more dependencies...
Required by (0)
Sources (6)
Latest Comments
« First ‹ Previous 1 .. 11 12 13 14 15 16 17 18 19 20 21 .. 25 Next › Last »
bricewge commented on 2014-01-31 11:12 (UTC)
foobster commented on 2014-01-27 16:31 (UTC)
For 1.2.69: http://pastebin.com/2r1fCzBw
An update of TorArneThune's PKGBUILD because the 1.2.61 binary is no longer there. Also, if you installed the outdated package first you need to uninstall these packages before installing with the new PKGBUILD:
pacman -R python2-sqlalchemy-0.7.9 flexget python2-dateutil
TorThune commented on 2014-01-23 12:11 (UTC)
For 1.2.61: http://paste2.org/LPLyA7Ut
I've changed the python2-dateutil dependency to python2-dateutil1 (available in AUR) as python2-dateutil in the official repository is now version 2.2, a version that flexget not yet supports.
kevku commented on 2014-01-13 13:57 (UTC)
1.2.33: http://paste2.org/tIJHZvdO
adampolski commented on 2013-12-16 05:22 (UTC)
After experimenting with some changes to the PKGBUILD file with no luck, I eventually gave up and tried installing flexget using pip2. This seems to install the latest version correctly.
You'll need to install the package python2-pip and then run the command `pip2 install flexget` as root. Make sure to remove any Arch-packaged versions of flexget and any required python packages first.
cacack commented on 2013-11-25 21:40 (UTC)
Eh, looks like 1.1.163 has issues with dateutil 2.2...
cacack commented on 2013-11-25 21:30 (UTC)
Updated PKGBUILD here: https://gist.github.com/cacack/7647788. Bumped version to 1.1.163 and included the dependencies listed in the comments.
lolilolicon commented on 2013-10-26 04:28 (UTC)
new dependency: AUR/python2-tmdb3
someoneelse123 commented on 2013-10-23 15:34 (UTC)
cgirard: That doesn't actually explains much, as package is clearly build with wrong dependencies right now... (i.e. my installation just got broken and correctly specified deps would prevent that)
cgirard commented on 2013-10-23 15:23 (UTC)
@kozec: already explained below.
Seems to be fixed in latest/next version though: https://github.com/Flexget/Flexget/issues/81
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.