I'll be looking at this over the coming weekend.
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 .. 5 6 7 8 9 10 11 12 13 14 15 .. 25 Next › Last »
rbellamy commented on 2015-04-23 17:03 (UTC)
willemw commented on 2015-04-23 06:53 (UTC)
error: failed to prepare transaction (could not satisfy dependencies)
:: flexget: requires python2-sqlalchemy<0.9.99
Available in the official repos:
community/python2-sqlalchemy 1.0.0-1
JohnRobson commented on 2015-04-12 14:55 (UTC)
2 Issues:
1) gpg --keyserver pgp.mit.edu --recv-keys 78244A9E30051117
2) :: python2-dateutil1 and python2-dateutil are in conflict. Remove python2-dateutil? [y/N]
error: unresolvable package conflicts detected
error: failed to prepare transaction (conflicting dependencies)
:: python2-dateutil1 and python2-dateutil are in conflict
rbellamy commented on 2015-02-23 08:41 (UTC)
@Alfarr, this one is managed by the OS package manager (pacman, et al), rather than a framework package manager (pip, et al).
Aside from that, they're the same code... as a matter of fact, I grabulate the archive from the pypi package.
Alfarr commented on 2015-02-23 06:04 (UTC)
What is the difference between this package and the one I did install with python2-pip?
willemw commented on 2014-12-10 10:11 (UTC)
Thanks. Installing python2-beautifulsoup3 gets rid of the error messages.
However, I have python2-tvrage from the AUR installed, which is the version from PyPI. No other tvrage instances are installed. Maybe python2-tvrage is missing depends=('python2-beautifulsoup3')?
jarondl commented on 2014-12-09 19:34 (UTC)
Hi @willemw this is not a packaging problem, and it has nothing to do with this package. The error is caused by tvrage, but not in the version that's on aur, nor the version on PyPI, but on the bitbucket version. The bitbucket version needs python2-beautifulsoup3 which you did not install.
willemw commented on 2014-12-09 17:30 (UTC)
When running flexget:
CRITICAL plugin Plugin `flexget.plugins.search_newznab` failed to import dependencies
ERROR plugin No module named BeautifulSoup
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/flexget/plugin.py", line 390, in _load_plugins_from_dirs
__import__(module_name)
File "/usr/lib/python2.7/site-packages/flexget/plugins/search_newznab.py", line 11, in <module>
from flexget.plugins.api_tvrage import lookup_series
File "/usr/lib/python2.7/site-packages/flexget/plugins/api_tvrage.py", line 9, in <module>
import tvrage.api
File "/usr/lib/python2.7/site-packages/tvrage/api.py", line 28, in <module>
import feeds
File "/usr/lib/python2.7/site-packages/tvrage/feeds.py", line 28, in <module>
from util import _fetch
File "/usr/lib/python2.7/site-packages/tvrage/util.py", line 29, in <module>
from BeautifulSoup import BeautifulSoup
ImportError: No module named BeautifulSoup
CRITICAL plugin Plugin `flexget.plugins.api_tvrage` failed to import dependencies
ERROR plugin No module named BeautifulSoup
...
jarondl commented on 2014-12-07 19:14 (UTC)
Hi @rbellamy
python-dateutil 2.3 is out (in community), and it does not have the bug that caused upstream to disallow 2.2. So can you please switch the dependency from python2-dateutil1 to python2-dateutil ?
rbellamy commented on 2014-11-24 20:25 (UTC)
@jarondl - regarding the question on ChangeLogs: https://wiki.archlinux.org/index.php/PKGBUILD#changelog
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.