[arch-commits] Commit in alure/repos/community-x86_64 (4 files)

Allan McRae allan at archlinux.org
Sat Feb 16 12:01:34 UTC 2019


    Date: Saturday, February 16, 2019 @ 12:01:32
  Author: allan
Revision: 433474

archrelease: copy trunk to community-x86_64

Added:
  alure/repos/community-x86_64/PKGBUILD
    (from rev 433473, alure/trunk/PKGBUILD)
  alure/repos/community-x86_64/build.patch
    (from rev 433473, alure/trunk/build.patch)
Deleted:
  alure/repos/community-x86_64/PKGBUILD
  alure/repos/community-x86_64/build.patch

-------------+
 PKGBUILD    |   87 ++++++++++++++++++++++++++++++----------------------------
 build.patch |   24 ++++++++--------
 2 files changed, 57 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-02-16 12:00:21 UTC (rev 433473)
+++ PKGBUILD	2019-02-16 12:01:32 UTC (rev 433474)
@@ -1,42 +0,0 @@
-# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
-# Contributor: Markus Martin <markus at archwyrm.net>
-
-pkgname=alure
-pkgver=1.2
-pkgrel=5
-pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
-arch=('i686' 'x86_64')
-url='http://kcat.strangesoft.net/alure.html'
-license=('MIT')
-depends=('openal')
-makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
-optdepends=('libsndfile: for uncompressed audio support'
-            'libvorbis: for OGG Vorbis support'
-            'flac: for FLAC support'
-            'mpg123: for MPEG support'
-            'dumb: for IT, XM, S3M and MOD support'
-            'fluidsynth: for SoundFont 2 support')
-source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2"
-        build.patch)
-md5sums=('3088aba074ad02d95ea51e705053b9f5'
-         '6a8dfd62ccae920d393b4202736aba46')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../build.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: alure/repos/community-x86_64/PKGBUILD (from rev 433473, alure/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-02-16 12:01:32 UTC (rev 433474)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Markus Martin <markus at archwyrm.net>
+
+pkgname=alure
+pkgver=1.2
+pkgrel=6
+pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
+arch=('x86_64')
+url='http://kcat.strangesoft.net/alure.html'
+license=('MIT')
+depends=('openal')
+makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
+optdepends=('libsndfile: for uncompressed audio support'
+            'libvorbis: for OGG Vorbis support'
+            'flac: for FLAC support'
+            'mpg123: for MPEG support'
+            'dumb: for IT, XM, S3M and MOD support'
+            'fluidsynth: for SoundFont 2 support')
+source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2"
+        build.patch)
+md5sums=('3088aba074ad02d95ea51e705053b9f5'
+         '6a8dfd62ccae920d393b4202736aba46')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../build.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # workaround for recent gcc build issue
+  CXXFLAGS="$CXXFLAGS -fpermissive"
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: build.patch
===================================================================
--- build.patch	2019-02-16 12:00:21 UTC (rev 433473)
+++ build.patch	2019-02-16 12:01:32 UTC (rev 433474)
@@ -1,12 +0,0 @@
-diff -rupN a/src/codec_fluidsynth.cpp b/src/codec_fluidsynth.cpp
---- a/src/codec_fluidsynth.cpp	2011-07-29 08:37:48.000000000 +0000
-+++ b/src/codec_fluidsynth.cpp	2014-01-03 10:42:13.280792235 +0000
-@@ -32,7 +32,7 @@
- #endif
- 
- #include <istream>
--
-+#include <unistd.h>
- #include <fluidsynth.h>
- 
- 

Copied: alure/repos/community-x86_64/build.patch (from rev 433473, alure/trunk/build.patch)
===================================================================
--- build.patch	                        (rev 0)
+++ build.patch	2019-02-16 12:01:32 UTC (rev 433474)
@@ -0,0 +1,12 @@
+diff -rupN a/src/codec_fluidsynth.cpp b/src/codec_fluidsynth.cpp
+--- a/src/codec_fluidsynth.cpp	2011-07-29 08:37:48.000000000 +0000
++++ b/src/codec_fluidsynth.cpp	2014-01-03 10:42:13.280792235 +0000
+@@ -32,7 +32,7 @@
+ #endif
+ 
+ #include <istream>
+-
++#include <unistd.h>
+ #include <fluidsynth.h>
+ 
+ 



More information about the arch-commits mailing list