[arch-commits] Commit in openal/repos (4 files)

Jan Steffens heftig at archlinux.org
Tue Aug 1 21:20:13 UTC 2017


    Date: Tuesday, August 1, 2017 @ 21:20:12
  Author: heftig
Revision: 301511

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

Added:
  openal/repos/extra-i686/PKGBUILD
    (from rev 301510, openal/trunk/PKGBUILD)
  openal/repos/extra-x86_64/PKGBUILD
    (from rev 301510, openal/trunk/PKGBUILD)
Deleted:
  openal/repos/extra-i686/PKGBUILD
  openal/repos/extra-x86_64/PKGBUILD

-----------------------+
 /PKGBUILD             |  120 ++++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD   |   58 -----------------------
 extra-x86_64/PKGBUILD |   58 -----------------------
 3 files changed, 120 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2017-08-01 21:19:14 UTC (rev 301510)
+++ extra-i686/PKGBUILD	2017-08-01 21:20:12 UTC (rev 301511)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Contributor: Jason Chu <jchu at xentac.net>
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.18.0
-pkgrel=2
-pkgdesc="Cross-platform 3D audio library, software implementation"
-arch=(i686 x86_64)
-url="https://github.com/kcat/openal-soft"
-license=(LGPL)
-depends=(glibc)
-makedepends=(alsa-lib pkgconfig cmake libpulse qt5-base fluidsynth portaudio jack sdl2 sdl_sound
-             ffmpeg git)
-_commit=61e43d4039277c538f3f6e0af7c988e7d71d8558  # tags/openal-soft-1.18.0
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd openal-soft
-  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
-}
-
-prepare() {
-  mkdir build examples
-  cd openal-soft
-
-  # https://bugs.archlinux.org/task/54908
-  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_LIBDIR=lib ../openal-soft
-  make
-}
-
-package_openal() {
-  optdepends=('qt5-base: alsoft-config GUI Configurator'
-              'fluidsynth: MIDI rendering')
-
-  make -C build DESTDIR="$pkgdir" install
-
-  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
-
-### Split openal-examples
-  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
-}
-
-package_openal-examples() {
-  pkgdesc+=" (example programs)"
-  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
-
-  mkdir "$pkgdir/usr"
-  mv -v examples "$pkgdir/usr/bin"
-}

Copied: openal/repos/extra-i686/PKGBUILD (from rev 301510, openal/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2017-08-01 21:20:12 UTC (rev 301511)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Jason Chu <jchu at xentac.net>
+
+pkgbase=openal
+pkgname=(openal openal-examples)
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="Cross-platform 3D audio library, software implementation"
+arch=(i686 x86_64)
+url="https://github.com/kcat/openal-soft"
+license=(LGPL)
+depends=(glibc)
+makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 sdl_sound ffmpeg
+             git cmake ninja)
+_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd openal-soft
+  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build examples
+  cd openal-soft
+
+  # https://bugs.archlinux.org/task/54908
+  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
+}
+
+build() {
+  cd build
+  cmake ../openal-soft -G Ninja \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_LIBDIR=lib
+  ninja
+}
+
+package_openal() {
+  optdepends=('qt5-base: alsoft-config GUI Configurator'
+              'fluidsynth: MIDI rendering')
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
+
+### Split openal-examples
+  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
+}
+
+package_openal-examples() {
+  pkgdesc+=" (example programs)"
+  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
+
+  mkdir "$pkgdir/usr"
+  mv -v examples "$pkgdir/usr/bin"
+}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2017-08-01 21:19:14 UTC (rev 301510)
+++ extra-x86_64/PKGBUILD	2017-08-01 21:20:12 UTC (rev 301511)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Contributor: Jason Chu <jchu at xentac.net>
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.18.0
-pkgrel=2
-pkgdesc="Cross-platform 3D audio library, software implementation"
-arch=(i686 x86_64)
-url="https://github.com/kcat/openal-soft"
-license=(LGPL)
-depends=(glibc)
-makedepends=(alsa-lib pkgconfig cmake libpulse qt5-base fluidsynth portaudio jack sdl2 sdl_sound
-             ffmpeg git)
-_commit=61e43d4039277c538f3f6e0af7c988e7d71d8558  # tags/openal-soft-1.18.0
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd openal-soft
-  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
-}
-
-prepare() {
-  mkdir build examples
-  cd openal-soft
-
-  # https://bugs.archlinux.org/task/54908
-  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_LIBDIR=lib ../openal-soft
-  make
-}
-
-package_openal() {
-  optdepends=('qt5-base: alsoft-config GUI Configurator'
-              'fluidsynth: MIDI rendering')
-
-  make -C build DESTDIR="$pkgdir" install
-
-  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
-
-### Split openal-examples
-  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
-}
-
-package_openal-examples() {
-  pkgdesc+=" (example programs)"
-  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
-
-  mkdir "$pkgdir/usr"
-  mv -v examples "$pkgdir/usr/bin"
-}

Copied: openal/repos/extra-x86_64/PKGBUILD (from rev 301510, openal/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2017-08-01 21:20:12 UTC (rev 301511)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Jason Chu <jchu at xentac.net>
+
+pkgbase=openal
+pkgname=(openal openal-examples)
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="Cross-platform 3D audio library, software implementation"
+arch=(i686 x86_64)
+url="https://github.com/kcat/openal-soft"
+license=(LGPL)
+depends=(glibc)
+makedepends=(alsa-lib libpulse fluidsynth portaudio jack qt5-base sdl2 sdl_sound ffmpeg
+             git cmake ninja)
+_commit=bf9c36408af9d45c99bc12b5b7b995aee628bdb6  # tags/openal-soft-1.18.1
+source=("git+https://github.com/kcat/openal-soft#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd openal-soft
+  git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build examples
+  cd openal-soft
+
+  # https://bugs.archlinux.org/task/54908
+  git cherry-pick -n d4f3490a880f779f460332689a396ade69840f50
+}
+
+build() {
+  cd build
+  cmake ../openal-soft -G Ninja \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_LIBDIR=lib
+  ninja
+}
+
+package_openal() {
+  optdepends=('qt5-base: alsoft-config GUI Configurator'
+              'fluidsynth: MIDI rendering')
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
+
+### Split openal-examples
+  mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
+}
+
+package_openal-examples() {
+  pkgdesc+=" (example programs)"
+  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
+
+  mkdir "$pkgdir/usr"
+  mv -v examples "$pkgdir/usr/bin"
+}



More information about the arch-commits mailing list