[arch-commits] Commit in bullet/repos (3 files)

2020-12-27 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, December 28, 2020 @ 00:18:14
  Author: svenstaro
Revision: 405040

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 405039, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 405039, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   85 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 89 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 405039, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-28 00:18:14 UTC (rev 405040)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=3.08
+pkgrel=1
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('4177c2b2f3b007691102973e7a3d4337b8de559d20058db75a2d25eab35b9be62fa14e3362435ef6f7ea2f6b8cf02a78770cc49c17e979adf3a2b41f19ee702a'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+build() {
+  cd bullet3-${pkgver}
+
+  cmake . \
+  -Bbuild \
+  -GNinja \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=1 \
+  -DINSTALL_LIBS=1 \
+  -DINSTALL_EXTRA_LIBS=1 \
+  -DBUILD_PYBULLET=ON \
+  -DBUILD_PYBULLET_NUMPY=ON \
+  -DBUILD_OPENGL3_DEMOS=ON \
+  -DCMAKE_BUILD_TYPE=Release
+
+  ninja -C build
+
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  cd build
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
"${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
"${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
"${pkgdir}"/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
"${pkgdir}"/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
"${pkgdir}"/usr/lib/libBussIK.so
+  install -Dm755 "${srcdir}"/bullet3_examplebrowser.sh 
"${pkgdir}"/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
"${pkgdir}"/opt/bullet/App_ExampleBrowser
+  cp -r data "${pkgdir}"/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet' 'gcc-libs')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
"${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
"${pkgdir}"/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
"${pkgdir}"/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html "${pkgdir}"/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 405039, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-12-28 00:18:14 UTC (rev 
405040)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2020-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, December 4, 2020 @ 19:54:12
  Author: svenstaro
Revision: 402868

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 402867, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 402867, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   92 
 bullet3_examplebrowser.sh |4 +
 2 files changed, 96 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 402867, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-04 19:54:12 UTC (rev 402868)
@@ -0,0 +1,92 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=3.07
+pkgrel=1
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+
https://github.com/bulletphysics/bullet3/commit/e32fc59c88a3908876949c6f2665e8d091d987fa.patch
+bullet3_examplebrowser.sh)
+sha512sums=('31fc7cb4ed8b939abc9eeb0a8f6fff3a454ea4ebcffd797fd35a2320fe3ab222fcd315569809ea148d0efff47267f5eec9f4bf7aaf07730a06aa9babd2abc9a6'
+
'd3a2c2698d988c0d3972060b411029a91b4e37149e1fa120e2cb15fd25eb06bb4094745bdd682427cb3b6128c88fa7d42f0cf78064e7da36a034a80f327b7c33'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+prepare() {
+  cd bullet3-${pkgver}
+  patch -Np1 -i "${srcdir}"/e32fc59c88a3908876949c6f2665e8d091d987fa.patch
+}
+
+build() {
+  cd bullet3-${pkgver}
+
+  cmake . \
+  -Bbuild \
+  -GNinja \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=1 \
+  -DINSTALL_LIBS=1 \
+  -DINSTALL_EXTRA_LIBS=1 \
+  -DBUILD_PYBULLET=ON \
+  -DBUILD_PYBULLET_NUMPY=ON \
+  -DBUILD_OPENGL3_DEMOS=ON \
+  -DCMAKE_BUILD_TYPE=Release
+
+  ninja -C build
+
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  cd build
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
"${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
"${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
"${pkgdir}"/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
"${pkgdir}"/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
"${pkgdir}"/usr/lib/libBussIK.so
+  install -Dm755 "${srcdir}"/bullet3_examplebrowser.sh 
"${pkgdir}"/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
"${pkgdir}"/opt/bullet/App_ExampleBrowser
+  cp -r data "${pkgdir}"/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet' 'gcc-libs')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
"${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
"${pkgdir}"/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
"${pkgdir}"/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html "${pkgdir}"/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 402867, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-12-04 19:54:12 UTC (rev 
402868)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 17:09:19
  Author: foutrelis
Revision: 400616

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 400615, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 400615, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   85 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 89 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 400615, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-12 17:09:19 UTC (rev 400616)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=3.05
+pkgrel=2
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('4cb67547b466e01f6c2258b1f350fdfac0f2dc73a7962b6e196491e6722e1cd22cdfe80d7b2f4e1e92a90f91e277bff5cabfd0f55ef55010f9a4d7286843cecd'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+build() {
+  cd bullet3-${pkgver}
+
+  cmake . \
+  -Bbuild \
+  -GNinja \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=1 \
+  -DINSTALL_LIBS=1 \
+  -DINSTALL_EXTRA_LIBS=1 \
+  -DBUILD_PYBULLET=ON \
+  -DBUILD_PYBULLET_NUMPY=ON \
+  -DBUILD_OPENGL3_DEMOS=ON \
+  -DCMAKE_BUILD_TYPE=Release
+
+  ninja -C build
+
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  cd build
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
"${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
"${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
"${pkgdir}"/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
"${pkgdir}"/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
"${pkgdir}"/usr/lib/libBussIK.so
+  install -Dm755 "${srcdir}"/bullet3_examplebrowser.sh 
"${pkgdir}"/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
"${pkgdir}"/opt/bullet/App_ExampleBrowser
+  cp -r data "${pkgdir}"/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet' 'gcc-libs')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
"${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
"${pkgdir}"/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
"${pkgdir}"/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html "${pkgdir}"/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 400615, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-11-12 17:09:19 UTC (rev 
400616)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, September 24, 2020 @ 23:59:06
  Author: svenstaro
Revision: 396521

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 396520, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 396520, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   85 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 89 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 396520, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 23:59:06 UTC (rev 396521)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=3.05
+pkgrel=1
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('4cb67547b466e01f6c2258b1f350fdfac0f2dc73a7962b6e196491e6722e1cd22cdfe80d7b2f4e1e92a90f91e277bff5cabfd0f55ef55010f9a4d7286843cecd'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+build() {
+  cd bullet3-${pkgver}
+
+  cmake . \
+  -Bbuild \
+  -GNinja \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=1 \
+  -DINSTALL_LIBS=1 \
+  -DINSTALL_EXTRA_LIBS=1 \
+  -DBUILD_PYBULLET=ON \
+  -DBUILD_PYBULLET_NUMPY=ON \
+  -DBUILD_OPENGL3_DEMOS=ON \
+  -DCMAKE_BUILD_TYPE=Release
+
+  ninja -C build
+
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  cd build
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
"${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
"${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
"${pkgdir}"/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
"${pkgdir}"/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
"${pkgdir}"/usr/lib/libBussIK.so
+  install -Dm755 "${srcdir}"/bullet3_examplebrowser.sh 
"${pkgdir}"/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
"${pkgdir}"/opt/bullet/App_ExampleBrowser
+  cp -r data "${pkgdir}"/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet' 'gcc-libs')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
"${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
"${pkgdir}"/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
"${pkgdir}"/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html "${pkgdir}"/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 396520, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-09-24 23:59:06 UTC (rev 
396521)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2020-05-16 Thread Evangelos Foutras via arch-commits
Date: Saturday, May 16, 2020 @ 11:41:52
  Author: foutrelis
Revision: 384328

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 384327, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 384327, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   84 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 88 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 384327, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-16 11:41:52 UTC (rev 384328)
@@ -0,0 +1,84 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=2.89
+pkgrel=2
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools')
+source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('3c4ba6a3b3623ef44dd4a23e0bc2e90dec1f2b7af463edcb886e110feac1dfb4a91945f0ed640052cac228318539e275976d37238102fb10a0f78aef065a730b'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+prepare() {
+  mkdir bullet3-${pkgver}/build
+}
+
+build() {
+  cd bullet3-${pkgver}/build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DBUILD_SHARED_LIBS=1 \
+   -DINSTALL_LIBS=1 \
+   -DINSTALL_EXTRA_LIBS=1 \
+   -DBUILD_PYBULLET=ON \
+   -DBUILD_PYBULLET_NUMPY=ON \
+   -DBUILD_OPENGL3_DEMOS=ON \
+   -DCMAKE_BUILD_TYPE=Release
+
+  make
+
+  cd ..
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
${pkgdir}/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
${pkgdir}/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
${pkgdir}/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
${pkgdir}/usr/lib/libBussIK.so
+  install -Dm755 ${srcdir}/bullet3_examplebrowser.sh 
${pkgdir}/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
${pkgdir}/opt/bullet/App_ExampleBrowser
+  cp -r data ${pkgdir}/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
${pkgdir}/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
${pkgdir}/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
${pkgdir}/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html ${pkgdir}/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 384327, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-05-16 11:41:52 UTC (rev 
384328)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 07:42:05
  Author: felixonmars
Revision: 366692

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 366691, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 366691, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   74 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 78 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 366691, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-04 07:42:05 UTC (rev 366692)
@@ -0,0 +1,74 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs')
+pkgver=2.88
+pkgrel=2
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy')
+source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('15face1940d496c96fd19a44139d11d2cbb629526c40432be4a0eef5fa9a532c842ec7318248c0359a080f2034111bf1a3c2d3a6fd789bec675bd368fac7bd93'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+prepare() {
+  mkdir bullet3-${pkgver}/build
+}
+
+build() {
+  cd bullet3-${pkgver}/build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DBUILD_SHARED_LIBS=1 \
+   -DINSTALL_LIBS=1 \
+   -DINSTALL_EXTRA_LIBS=1 \
+   -DBUILD_PYBULLET=ON \
+   -DBUILD_PYBULLET_NUMPY=ON \
+   -DBUILD_OPENGL3_DEMOS=ON \
+   -DCMAKE_BUILD_TYPE=Release
+
+  make
+
+  cd ..
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
${pkgdir}/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
${pkgdir}/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
${pkgdir}/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
${pkgdir}/usr/lib/libBussIK.so
+  install -Dm755 ${srcdir}/bullet3_examplebrowser.sh 
${pkgdir}/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
${pkgdir}/opt/bullet/App_ExampleBrowser
+  cp -r data ${pkgdir}/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
${pkgdir}/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
${pkgdir}/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
${pkgdir}/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html ${pkgdir}/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 366691, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2019-11-04 07:42:05 UTC (rev 
366692)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2019-01-02 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 2, 2019 @ 15:15:41
  Author: svenstaro
Revision: 342890

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 342889, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 342889, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   74 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 78 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 342889, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-02 15:15:41 UTC (rev 342890)
@@ -0,0 +1,74 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs')
+pkgver=2.88
+pkgrel=1
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy')
+source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('15face1940d496c96fd19a44139d11d2cbb629526c40432be4a0eef5fa9a532c842ec7318248c0359a080f2034111bf1a3c2d3a6fd789bec675bd368fac7bd93'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+prepare() {
+  mkdir bullet3-${pkgver}/build
+}
+
+build() {
+  cd bullet3-${pkgver}/build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DBUILD_SHARED_LIBS=1 \
+   -DINSTALL_LIBS=1 \
+   -DINSTALL_EXTRA_LIBS=1 \
+   -DBUILD_PYBULLET=ON \
+   -DBUILD_PYBULLET_NUMPY=ON \
+   -DBUILD_OPENGL3_DEMOS=ON \
+   -DCMAKE_BUILD_TYPE=Release
+
+  make
+
+  cd ..
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
${pkgdir}/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
${pkgdir}/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
${pkgdir}/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
${pkgdir}/usr/lib/libBussIK.so
+  install -Dm755 ${srcdir}/bullet3_examplebrowser.sh 
${pkgdir}/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
${pkgdir}/opt/bullet/App_ExampleBrowser
+  cp -r data ${pkgdir}/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
${pkgdir}/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
${pkgdir}/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
${pkgdir}/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html ${pkgdir}/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 342889, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2019-01-02 15:15:41 UTC (rev 
342890)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


[arch-commits] Commit in bullet/repos (3 files)

2018-07-23 Thread Felix Yan via arch-commits
Date: Monday, July 23, 2018 @ 17:22:17
  Author: felixonmars
Revision: 329470

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 329469, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 329469, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   81 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 85 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 329469, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-07-23 17:22:17 UTC (rev 329470)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs')
+pkgver=2.87
+pkgrel=2
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy')
+source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('649e470223295666eda6f7ff59d03097637c2645b5cd951977060ae14b89f56948ce03e437e83c986d26876f187d7ee34e790bc3882d5d66da9af89a4ab81c21'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+prepare() {
+  cd bullet3-${pkgver}
+
+}
+
+build() {
+  cd bullet3-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DBUILD_SHARED_LIBS=1 \
+   -DINSTALL_LIBS=1 \
+   -DINSTALL_EXTRA_LIBS=1 \
+   -DBUILD_PYBULLET=ON \
+   -DBUILD_PYBULLET_NUMPY=ON \
+   -DBUILD_OPENGL3_DEMOS=ON \
+   -DCMAKE_BUILD_TYPE=Release
+
+  make
+
+  cd ..
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
${pkgdir}/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
${pkgdir}/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
${pkgdir}/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
${pkgdir}/usr/lib/libBussIK.so
+  install -Dm755 ${srcdir}/bullet3_examplebrowser.sh 
${pkgdir}/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
${pkgdir}/opt/bullet/App_ExampleBrowser
+  cp -r data ${pkgdir}/opt/bullet/
+
+  # install license
+  install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+  depends=()
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
${pkgdir}/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
${pkgdir}/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
${pkgdir}/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html ${pkgdir}/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 329469, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2018-07-23 17:22:17 UTC (rev 
329470)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser