Date: Tuesday, May 14, 2013 @ 21:17:44
  Author: heftig
Revision: 185532

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  chromaprint/repos/extra-i686/PKGBUILD
    (from rev 185531, chromaprint/trunk/PKGBUILD)
  chromaprint/repos/extra-x86_64/PKGBUILD
    (from rev 185531, chromaprint/trunk/PKGBUILD)
Deleted:
  chromaprint/repos/extra-i686/PKGBUILD
  chromaprint/repos/extra-i686/ffmpeg.patch
  chromaprint/repos/extra-x86_64/PKGBUILD
  chromaprint/repos/extra-x86_64/ffmpeg.patch

---------------------------+
 /PKGBUILD                 |   62 ++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD       |   35 ------------------------
 extra-i686/ffmpeg.patch   |   21 --------------
 extra-x86_64/PKGBUILD     |   35 ------------------------
 extra-x86_64/ffmpeg.patch |   21 --------------
 5 files changed, 62 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-05-14 19:16:09 UTC (rev 185531)
+++ extra-i686/PKGBUILD 2013-05-14 19:17:44 UTC (rev 185532)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Wieland Hoffmann <[email protected]>
-# Maintainer: Gaetan Bisson <[email protected]>
-
-pkgname=chromaprint
-pkgver=0.7
-pkgrel=4
-pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
-url='http://acoustid.org/chromaprint/'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('ffmpeg')
-makedepends=('cmake')
-source=("https://github.com/downloads/lalinsky/${pkgname}/${pkgname}-${pkgver}.tar.gz";
-        'ffmpeg.patch')
-sha1sums=('6a961585e82d26d357eb792216becc0864ddcdb2'
-          '4c99e8be678ccd0373ab1c0b52c068d6fabe21a2')
-
-build() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-
-       patch -p1 -i ../ffmpeg.patch
-
-       cmake \
-               -DCMAKE_INSTALL_PREFIX=/usr \
-               -DCMAKE_BUILD_TYPE=Release \
-               -DBUILD_EXAMPLES=ON \
-               .
-       make
-}
-
-package() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-       make DESTDIR="${pkgdir}" install
-}

Copied: chromaprint/repos/extra-i686/PKGBUILD (from rev 185531, 
chromaprint/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2013-05-14 19:17:44 UTC (rev 185532)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Wieland Hoffmann <[email protected]>
+# Maintainer: Gaetan Bisson <[email protected]>
+
+pkgname=chromaprint
+pkgver=0.7
+pkgrel=5
+pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
+url='http://acoustid.org/chromaprint/'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('ffmpeg')
+makedepends=('cmake' 'git')
+source=('git+https://bitbucket.org/acoustid/chromaprint.git#commit=dd51f8e')
+sha1sums=('SKIP')
+
+build() {
+       cd "${srcdir}/${pkgname}"
+
+       cmake \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DBUILD_EXAMPLES=ON \
+               .
+       make
+}
+
+package() {
+       cd "${srcdir}/${pkgname}"
+       make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/ffmpeg.patch
===================================================================
--- extra-i686/ffmpeg.patch     2013-05-14 19:16:09 UTC (rev 185531)
+++ extra-i686/ffmpeg.patch     2013-05-14 19:17:44 UTC (rev 185532)
@@ -1,21 +0,0 @@
-diff -Naur old/examples/fpcalc.c new/examples/fpcalc.c
---- old/examples/fpcalc.c      2012-09-06 04:05:36.000000000 +1000
-+++ new/examples/fpcalc.c      2013-03-07 00:43:11.950928188 +1100
-@@ -65,6 +65,9 @@
-               goto done;
-       }
- 
-+      /* request regular signed 16-bit packed format */
-+      codec_ctx->request_sample_fmt = AV_SAMPLE_FMT_S16;
-+
-       if (avcodec_open(codec_ctx, codec) < 0) {
-               fprintf(stderr, "ERROR: couldn't open the codec\n");
-               goto done;
-@@ -146,6 +149,7 @@
-                               int ostride[6] = { 2 };
-                               int len = buffer_size / istride[0];
-                               if (av_audio_convert(convert_ctx, obuf, 
ostride, ibuf, istride, len) < 0) {
-+                                      fprintf(stderr, "WARNING: unable to 
convert %d samples\n", buffer_size);
-                                       break;
-                               }
-                               buffer = buffer2;

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2013-05-14 19:16:09 UTC (rev 185531)
+++ extra-x86_64/PKGBUILD       2013-05-14 19:17:44 UTC (rev 185532)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Wieland Hoffmann <[email protected]>
-# Maintainer: Gaetan Bisson <[email protected]>
-
-pkgname=chromaprint
-pkgver=0.7
-pkgrel=4
-pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
-url='http://acoustid.org/chromaprint/'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('ffmpeg')
-makedepends=('cmake')
-source=("https://github.com/downloads/lalinsky/${pkgname}/${pkgname}-${pkgver}.tar.gz";
-        'ffmpeg.patch')
-sha1sums=('6a961585e82d26d357eb792216becc0864ddcdb2'
-          '4c99e8be678ccd0373ab1c0b52c068d6fabe21a2')
-
-build() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-
-       patch -p1 -i ../ffmpeg.patch
-
-       cmake \
-               -DCMAKE_INSTALL_PREFIX=/usr \
-               -DCMAKE_BUILD_TYPE=Release \
-               -DBUILD_EXAMPLES=ON \
-               .
-       make
-}
-
-package() {
-       cd "${srcdir}/${pkgname}-${pkgver}"
-       make DESTDIR="${pkgdir}" install
-}

Copied: chromaprint/repos/extra-x86_64/PKGBUILD (from rev 185531, 
chromaprint/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2013-05-14 19:17:44 UTC (rev 185532)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Wieland Hoffmann <[email protected]>
+# Maintainer: Gaetan Bisson <[email protected]>
+
+pkgname=chromaprint
+pkgver=0.7
+pkgrel=5
+pkgdesc='Library that implements a custom algorithm for extracting 
fingerprints from any audio source'
+url='http://acoustid.org/chromaprint/'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('ffmpeg')
+makedepends=('cmake' 'git')
+source=('git+https://bitbucket.org/acoustid/chromaprint.git#commit=dd51f8e')
+sha1sums=('SKIP')
+
+build() {
+       cd "${srcdir}/${pkgname}"
+
+       cmake \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DBUILD_EXAMPLES=ON \
+               .
+       make
+}
+
+package() {
+       cd "${srcdir}/${pkgname}"
+       make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/ffmpeg.patch
===================================================================
--- extra-x86_64/ffmpeg.patch   2013-05-14 19:16:09 UTC (rev 185531)
+++ extra-x86_64/ffmpeg.patch   2013-05-14 19:17:44 UTC (rev 185532)
@@ -1,21 +0,0 @@
-diff -Naur old/examples/fpcalc.c new/examples/fpcalc.c
---- old/examples/fpcalc.c      2012-09-06 04:05:36.000000000 +1000
-+++ new/examples/fpcalc.c      2013-03-07 00:43:11.950928188 +1100
-@@ -65,6 +65,9 @@
-               goto done;
-       }
- 
-+      /* request regular signed 16-bit packed format */
-+      codec_ctx->request_sample_fmt = AV_SAMPLE_FMT_S16;
-+
-       if (avcodec_open(codec_ctx, codec) < 0) {
-               fprintf(stderr, "ERROR: couldn't open the codec\n");
-               goto done;
-@@ -146,6 +149,7 @@
-                               int ostride[6] = { 2 };
-                               int len = buffer_size / istride[0];
-                               if (av_audio_convert(convert_ctx, obuf, 
ostride, ibuf, istride, len) < 0) {
-+                                      fprintf(stderr, "WARNING: unable to 
convert %d samples\n", buffer_size);
-                                       break;
-                               }
-                               buffer = buffer2;

Reply via email to