[arch-commits] Commit in (18 files)

Maxime Gauduin alucryd at nymeria.archlinux.org
Mon Jul 29 21:12:29 UTC 2013


    Date: Monday, July 29, 2013 @ 23:12:28
  Author: alucryd
Revision: 94738

Push beets and its deps

Added:
  beets/
  beets/trunk/
  beets/trunk/PKGBUILD
  python2-munkres/
  python2-munkres/trunk/
  python2-munkres/trunk/PKGBUILD
  python2-musicbrainzngs/
  python2-musicbrainzngs/trunk/
  python2-musicbrainzngs/trunk/PKGBUILD
  python2-pyacoustid/
  python2-pyacoustid/trunk/
  python2-pyacoustid/trunk/PKGBUILD
  python2-pylast/
  python2-pylast/trunk/
  python2-pylast/trunk/PKGBUILD
  python2-unidecode/
  python2-unidecode/trunk/
  python2-unidecode/trunk/PKGBUILD

---------------------------------------+
 beets/trunk/PKGBUILD                  |   42 ++++++++++++++++++++++++++++++++
 python2-munkres/trunk/PKGBUILD        |   39 +++++++++++++++++++++++++++++
 python2-musicbrainzngs/trunk/PKGBUILD |   34 +++++++++++++++++++++++++
 python2-pyacoustid/trunk/PKGBUILD     |   36 +++++++++++++++++++++++++++
 python2-pylast/trunk/PKGBUILD         |   31 +++++++++++++++++++++++
 python2-unidecode/trunk/PKGBUILD      |   30 ++++++++++++++++++++++
 6 files changed, 212 insertions(+)

Added: beets/trunk/PKGBUILD
===================================================================
--- beets/trunk/PKGBUILD	                        (rev 0)
+++ beets/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Adrian Sampson <adrian at radbox.org>
+
+pkgname=beets
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="Flexible music library manager and tagger"
+arch=('any')
+url="http://beets.radbox.org/"
+license=('MIT')
+depends=('mutagen' 'python2-distribute' 'python2-munkres' 'python2-musicbrainzngs' 'python2-unidecode' 'python2-yaml')
+optdepends=('gstreamer0.10-python: BPD audio player plugin'
+            'python2-flask: Web interface'
+            'python2-pyacoustid: Acoustic fingerprinting'
+            'python2-pylast: Lastgenre plugin')
+source=("http://pypi.python.org/packages/source/b/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('7424708a7ebd0884141537970b31cd41a09c5b799d9ce5d00d3704ce8aa520b6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+
+# Manpages
+  install -dm 755 "${pkgdir}"/usr/share/man/man{1,5}
+  install -m 644 man/beet.1 "${pkgdir}"/usr/share/man/man1/beet.1
+  install -m 644 man/beetsconfig.5 "${pkgdir}"/usr/share/man/man5/beetsconfig.5
+  gzip -9 "${pkgdir}"/usr/share/man/man{1/beet.1,5/beetsconfig.5}
+
+# License
+  install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: beets/trunk/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python2-munkres/trunk/PKGBUILD
===================================================================
--- python2-munkres/trunk/PKGBUILD	                        (rev 0)
+++ python2-munkres/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Adrian Sampson <adrian at radbox.org>
+
+pkgname=python2-munkres
+pkgver=1.0.5.4
+pkgrel=2
+pkgdesc='Munkres algorithm for the assignment problem'
+arch=('any')
+url='http://bmc.github.com/munkres/'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-distribute')
+source=("http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz")
+md5sums=('cb9d114fb523428bab4742e88bc83696')
+
+prepare() {
+  cd ${pkgname#*-}-${pkgver}
+
+  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
+}
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+
+# License
+  install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: python2-munkres/trunk/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python2-musicbrainzngs/trunk/PKGBUILD
===================================================================
--- python2-musicbrainzngs/trunk/PKGBUILD	                        (rev 0)
+++ python2-musicbrainzngs/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Adrian Sampson <adrian at radbox.org>
+
+pkgname=python2-musicbrainzngs
+pkgver=0.4
+pkgrel=3
+pkgdesc='Bindings for the MusicBrainz NGS service'
+arch=('any')
+url='https://github.com/alastair/python-musicbrainz-ngs'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-distribute')
+source=("http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz")
+sha256sums=('1a1b7c3cce851c491d5ad71b501bbed2bd653098e33565a0534050d4b922265a')
+
+build() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  rm -rf "${pkgdir}"/usr/lib/python2.7/site-packages/{docs,examples,test}
+
+# License
+  install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: python2-musicbrainzngs/trunk/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python2-pyacoustid/trunk/PKGBUILD
===================================================================
--- python2-pyacoustid/trunk/PKGBUILD	                        (rev 0)
+++ python2-pyacoustid/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Fernando Jiménez Solano <fjim at sdfeu.org>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=python2-pyacoustid
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="Bindings for Chromaprint acoustic fingerprinting and the Acoustid API"
+arch=('any')
+url='https://github.com/sampsyo/pyacoustid'
+license=('MIT')
+depends=('chromaprint')
+makedepends=('python2-distribute')
+source=("http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz"
+        'https://raw.github.com/sampsyo/beets/master/LICENSE')
+sha256sums=('31900428e7b344dca0c2da594b387e88620c319298e3a6400a968078194407d4'
+            'ea007e11dca00f67ef7f290d4eaa608b4f2d5b2668a47787d69b6cff348f2fcd')
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+
+# License
+  install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m 644 {../,"${pkgdir}"/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: python2-pyacoustid/trunk/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python2-pylast/trunk/PKGBUILD
===================================================================
--- python2-pylast/trunk/PKGBUILD	                        (rev 0)
+++ python2-pylast/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Limao Luo <luolimao+AUR at gmail.com>
+# Contributor: Wieland Hoffmann <the_mineo at web.de>
+# Contributor: Amr Hassan <amr.hassan at gmail.com>
+
+pkgname=python2-pylast
+pkgver=0.5.11
+pkgrel=3
+pkgdesc='A Python interface to the last.fm API'
+arch=('any')
+url='http://pylast.googlecode.com'
+license=('Apache')
+depends=('python2')
+makedepends=('python2-distribute')
+source=("http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz")
+sha256sums=('bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4')
+
+build() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: python2-pylast/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: python2-unidecode/trunk/PKGBUILD
===================================================================
--- python2-unidecode/trunk/PKGBUILD	                        (rev 0)
+++ python2-unidecode/trunk/PKGBUILD	2013-07-29 21:12:28 UTC (rev 94738)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Kwpolska <kwpolska at kwpolska.tk>
+
+pkgname=python2-unidecode
+_pyname=Unidecode
+pkgver=0.04.13
+pkgrel=2
+pkgdesc='ASCII transliterations of Unicode text'
+arch=('any')
+url='http://pypi.python.org/pypi/Unidecode/'
+license=('GPL')
+depends=('python2')
+options=('!emptydirs')
+source=("http://pypi.python.org/packages/source/U/Unidecode/Unidecode-${pkgver}.tar.gz")
+sha256sums=('ca58bf0ce984a20ad3a5d7fdbb7e773d8d1e5fd1570951e47c1908eed8fe0442')
+
+build() {
+  cd Unidecode-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd Unidecode-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: python2-unidecode/trunk/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property



More information about the arch-commits mailing list