Use Python 3 for beets-git.

This commit is contained in:
Frederik “Freso” S. Olesen 2016-08-17 10:43:29 +02:00
parent 558216bf29
commit 4d273ea38d
No known key found for this signature in database
GPG Key ID: 27628EAF5DC1403E
2 changed files with 29 additions and 25 deletions

View File

@ -1,3 +1,5 @@
# Generated by mksrcinfo v8
# Sun Aug 28 21:35:17 UTC 2016
pkgbase = beets-git
pkgdesc = Flexible music library manager and tagger - git version
pkgver = 1.3.11.r31.ga0ff517
@ -6,21 +8,23 @@ pkgbase = beets-git
arch = any
license = MIT
makedepends = git
depends = python2-munkres
depends = python-munkres
depends = mutagen
depends = python2-setuptools
depends = python2-unidecode
depends = python2-musicbrainzngs
depends = python2-yaml
depends = python2-enum34
depends = python2-jellyfish
depends = python2-six
optdepends = python2-pyacoustid: acoustic fingerprinting
optdepends = python2-flask: web interface
optdepends = python2-gobject: BPD audio player plugin
optdepends = python2-pylast: lastgenre plugin
depends = python-setuptools
depends = python-unidecode
depends = python-musicbrainzngs
depends = python-yaml
depends = python-enum34
depends = python-jellyfish
depends = python-six
optdepends = python-pyacoustid: acoustic fingerprinting
optdepends = python-flask: web interface
optdepends = python-gobject: BPD audio player plugin
optdepends = python-pylast: lastgenre plugin
provides = beets
provides = beets-git
conflicts = beets
conflicts = beets-git
source = git://github.com/beetbox/beets.git
md5sums = SKIP

View File

@ -8,18 +8,18 @@ pkgdesc="Flexible music library manager and tagger - git version"
arch=('any')
url="http://beets.io/"
license=('MIT')
depends=('python2-munkres' 'mutagen'
'python2-setuptools' 'python2-unidecode'
'python2-musicbrainzngs' 'python2-yaml'
'python2-enum34' 'python2-jellyfish'
'python2-six')
depends=('python-munkres' 'mutagen'
'python-setuptools' 'python-unidecode'
'python-musicbrainzngs' 'python-yaml'
'python-enum34' 'python-jellyfish'
'python-six')
makedepends=('git')
optdepends=('python2-pyacoustid: acoustic fingerprinting'
'python2-flask: web interface'
'python2-gobject: BPD audio player plugin'
'python2-pylast: lastgenre plugin')
provides=('beets')
conflicts=('beets')
optdepends=('python-pyacoustid: acoustic fingerprinting'
'python-flask: web interface'
'python-gobject: BPD audio player plugin'
'python-pylast: lastgenre plugin')
provides=('beets' 'beets-git')
conflicts=('beets' 'beets-git')
source=('git://github.com/beetbox/beets.git')
md5sums=('SKIP')
@ -30,12 +30,12 @@ pkgver() {
build() {
cd ${srcdir}/beets
python2 setup.py build
python setup.py build
}
package() {
cd ${srcdir}/beets
python2 setup.py install --root=${pkgdir} --optimize=1
python setup.py install --root=${pkgdir} --optimize=1
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}