Package Details: subliminal-git 2.2.1.r44.gda2817d-1

Git Clone URL: https://aur.archlinux.org/subliminal-git.git (read-only, click to copy)
Package Base: subliminal-git
Description: Python library and CLI tool for searching and downloading subtitles.
Upstream URL: https://github.com/Diaoul/subliminal
Licenses: MIT
Conflicts: subliminal
Provides: subliminal
Submitter: acieroid
Maintainer: gileri
Last Packager: gileri
Votes: 33
Popularity: 0.22
First Submitted: 2012-12-24 07:53 (UTC)
Last Updated: 2024-12-03 20:07 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

je-vv commented on 2016-08-15 06:29 (UTC)

The new 2.0.3 now dependes on latest guessit 2.0.4, so the dep 'python-guessit<2.0' needs to be removed. To build the man page now it's required as well sphinxcontrib-programoutput. There's a PKGBUID that needs to remove the python2 line in "package" under: https://github.com/aur-archive/sphinxcontrib-programoutput There's NO need to have 2 binaries for sublimal, so I wouldn't make a link on the python3 one... Here it's a cleaner python3 PKGBUILD: ++++++++++ pkgname=('subliminal') pkgver=2.0.3 pkgrel=1 pkgdesc="Python library and CLI tool for searching and downloading subtitles." arch=(any) url="https://github.com/Diaoul/subliminal" license=('MIT') makedepends=('git' 'python-setuptools' 'python-sphinx' 'gettext') depends=( 'python-beautifulsoup4>=4.2.0' 'python-guessit>=0.9.1' 'python-requests>=2.0' 'python-enzyme>=0.4.1' 'python-dogpile.cache>=0.5.4' 'python-click>=4.0' 'python-pysrt>=1.0.1' 'python-six>=1.9.0' 'python-babelfish>=0.5.2' 'python-chardet>=2.3.0' 'python-stevedore>=1.0.0' 'python-rarfile' 'python-appdirs' 'sphinxcontrib-programoutput' ) source=("https://github.com/Diaoul/${pkgname}/archive/${pkgver}.tar.gz" 'sphinx-manpages.patch') sha256sums=('12ad058d8bfdb0471d2021f8a486c2a11d2470e845bec1e71f698e4523ddc8fe' '469997e6da019b567bee8bf7ad734ff963786481feaffda526bd33ac8db20f0b') provides=('subliminal') conflicts=('subliminal-git' 'python-subliminal' 'python2-subliminal' 'python-subliminal-git' 'python2-subliminal-git' 'subliminal-docs' 'subliminal-docs-git' 'python-subliminal-git-docs') build() { cd ${srcdir}/${pkgname}-${pkgver} patch -p1 -i ${srcdir}/sphinx-manpages.patch cd ${srcdir}/${pkgname}-${pkgver}/docs make man } package() { cd ${srcdir}/${pkgname}-${pkgver} python setup.py install --root="${pkgdir}/" --optimize=1 install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm644 docs/_build/man/subliminal.1 -t "${pkgdir}/usr/share/man/man1" }

ebs007 commented on 2016-06-29 02:15 (UTC)

line 92: .pkgbuild -> file or dir not found img: https://s31.postimg.org/q67ca7m4b/Captura_de_tela_de_2016_06_28_23_13_55.png

whynothugo commented on 2016-06-27 04:02 (UTC) (edited on 2016-06-27 04:04 (UTC) by whynothugo)

Dependency python-rarfile and python-appdir are missing (and a few other, apparently).

baldrick commented on 2016-05-19 09:45 (UTC)

This isn't compiling for me at all, dependency hell commences...

ekkelett commented on 2016-05-05 15:39 (UTC)

So, some fun dependencies missing: - python-pysrt - python-dogpile - python-dogpile.cache - python-beautifulsoup4

whynothugo commented on 2016-04-12 02:53 (UTC) (edited on 2016-04-12 02:53 (UTC) by whynothugo)

python3 package should actually be called "subliminal-git". The "python-" prefix is for library-only python packages.

tmplt commented on 2016-03-10 10:44 (UTC)

I get the following: ==> Starting package_python-subliminal-git-docs()... sphinx-build -b man -d _build/doctrees -n . _build/man Running Sphinx v1.3.6 Exception occurred: File "/tmp/makepkg/subliminal-git/src/subliminal/subliminal/subtitle.py", line 10, in <module> import pysrt ImportError: No module named 'pysrt'

hcartiaux commented on 2016-03-09 18:58 (UTC)

We should use the git branch "develop" (not yet tested myself). The development happens here, and the develop branch is merged into master only when there is a new release. The develop branch has new dependencies, rarfile>=2.7, appdirs>=12, guessit > 2: https://github.com/Diaoul/subliminal/pull/564