Package Details: flexget 3.13.7-2

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)

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, traditional su cannot do it because the shell of the flexget 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 or alias 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

  • Added flexget-webui and flexget-webui-v1 in optdepends, 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.
  • Fixed dependency packages.
  • 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.
  • Removed check function in PKGBUILD due to the official testing of flexget before release.

If upgrade fail, you should remove old flexget first, and reinstall.

Latest Comments

« First ‹ Previous 1 .. 13 14 15 16 17 18 19 20 21 22 23 .. 25 Next › Last »

cgirard commented on 2013-07-08 09:44 (UTC)

pytransmissionrpc optional dep could be replaced by python2-transmissionrpc

American_Jesus commented on 2013-06-17 22:05 (UTC)

requires python2-itsdangerous>=0.21

<deleted-account> commented on 2013-06-01 05:45 (UTC)

For the 'beautifulsoup4' issue (pkg_resources.DistributionNotFound: beautifulsoup4>=4.1,<4.2), I updated this file : /usr/lib/python2.7/site-packages/FlexGet-1.1-py2.7.egg-info/requires.txt which now reads : 'beautifulsoup4>=4.1, <=4.2' instead of : 'beautifulsoup4>=4.1, <4.2' Seems to work so far.

carbonosity commented on 2013-05-31 18:11 (UTC)

Change the line chmod ugo+r ${pkgdir}/usr/lib/python2.7/site-packages/FlexGet-1.0-py2.7.egg-info/* in the PKGBUILD to be... chmod ugo+r ${pkgdir}/usr/lib/python2.7/site-packages/FlexGet-1.1-py2.7.egg-info/* and it will build fine.

American_Jesus commented on 2013-05-30 13:37 (UTC)

don't build chmod: cannot access '/tmp/yaourt-tmp-aj/aur-flexget/pkg/flexget/usr/lib/python2.7/site-packages/FlexGet-1.0-py2.7.egg-info/*': No such file or direct also, requires python2-tvrage, python2-jsonschema, beautifulsoup4>=4.1,<4.2 (not beautifulsoup4 4.2, only 4.1.x)

thebodzio commented on 2013-05-28 00:07 (UTC)

I made package https://aur.archlinux.org/packages/python2-transmissionrpc/ to replace outdated pytransmissionrpc. Could you please update optional dependency? That is, of course, if you'll find my package an improvement :).

thebodzio commented on 2013-05-27 22:50 (UTC)

1.1.18 seems to be the latest (check http://download.flexget.com/)

thebodzio commented on 2013-04-03 13:25 (UTC)

“pkg_resources.DistributionNotFound: SQLAlchemy>=0.7,<0.7.99” is still there…

thebodzio commented on 2013-04-02 23:10 (UTC)

The following patch did it in my case (simply removed the “upper bound” from SQLAlchemy dependency check): --- pavement.py.old 2013-04-03 00:53:25.257784397 +0200 +++ pavement.py 2013-04-03 00:55:23.184820740 +0200 @@ -19,7 +19,7 @@ sys.path.insert(0, '') options = environment.options -install_requires = ['FeedParser>=5.1.3', 'SQLAlchemy >=0.7, <0.7.99', 'PyYAML', 'BeautifulSoup>=3.2, <3.3', +install_requires = ['FeedParser>=5.1.3', 'SQLAlchemy >=0.7', 'PyYAML', 'BeautifulSoup>=3.2, <3.3', 'beautifulsoup4>=4.1, <4.2', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'jinja2', 'flask', 'cherrypy', 'requests>=1.0, <1.99', 'python-dateutil!=2.0'] if sys.version_info < (2, 7):