[arch-commits] Commit in bullet/trunk (954.patch PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Thu Feb 9 14:54:28 UTC 2017


    Date: Thursday, February 9, 2017 @ 14:54:27
  Author: svenstaro
Revision: 288508

upgpkg: bullet 2.86-1

upstream release 2.86

Added:
  bullet/trunk/954.patch
Modified:
  bullet/trunk/PKGBUILD

-----------+
 954.patch |   23 +++++++++++++++++++++++
 PKGBUILD  |   22 +++++++++++++++-------
 2 files changed, 38 insertions(+), 7 deletions(-)

Added: 954.patch
===================================================================
--- 954.patch	                        (rev 0)
+++ 954.patch	2017-02-09 14:54:27 UTC (rev 288508)
@@ -0,0 +1,23 @@
+From 04b3e88cdeb847efd3917b534bc53a74c572dcdf Mon Sep 17 00:00:00 2001
+From: Erwin Coumans <erwincoumans at google.com>
+Date: Tue, 7 Feb 2017 19:15:22 -0800
+Subject: [PATCH] Attempt to use VERSION string for CMakeLists.txt See Issue
+ 953, https://github.com/bulletphysics/bullet3/issues/953
+
+---
+ CMakeLists.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 26e662c..66f8871 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,7 +5,7 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
+ SET(MSVC_INCREMENTAL_DEFAULT ON)
+ 
+ PROJECT(BULLET_PHYSICS)
+-SET(BULLET_VERSION 2.85)
++FILE (STRINGS "VERSION" BULLET_VERSION)
+ 
+ IF(COMMAND cmake_policy)
+    cmake_policy(SET CMP0003 NEW)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-02-09 14:51:26 UTC (rev 288507)
+++ PKGBUILD	2017-02-09 14:54:27 UTC (rev 288508)
@@ -4,16 +4,24 @@
 
 pkgbase=bullet
 pkgname=('bullet' 'bullet-docs')
-pkgver=2.85.1
-pkgrel=3
+pkgver=2.86
+pkgrel=1
 pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
 arch=('i686' '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")
-md5sums=('194cf1ef1eeb7fa9ac7dc580219d3c8b')
+source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz"
+        954.patch)
+sha512sums=('af8a6b282ab606437d7975a59cd8a9c2bf273c83b0e79f0c4c1de6fa51695ba6d5f3c853dce2fdba9cb55e7572214e15089e54db51afc465ca26f502cbd5a4f9'
+            '6ab8a2e3ac518705e09a4a5ca51ce5efd9d07918ad5374d3b69b3879239576ef1641ca86154e04345027503533ec5578aa5155131b83e927c2a09d34f44e9a70')
 
+prepare() {
+  cd bullet3-${pkgver}
+
+  patch -Np1 -i ${srcdir}/954.patch
+}
+
 build() {
   cd bullet3-${pkgver}
 
@@ -33,7 +41,6 @@
   make
 
   cd ..
-  #sed -i 's/GENERATE_HTMLHELP.*//g' Doxyfile
   doxygen
 }
 
@@ -47,8 +54,9 @@
 
   make DESTDIR=${pkgdir} install
 
-  install -Dm755 examples/pybullet/libpybullet.so.2.85 ${pkgdir}/usr/lib/libpybullet.so.2.85
-  install -Dm755 examples/ExampleBrowser/libBulletExampleBrowserLib.so.2.85 ${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.2.85
+  ls examples/pybullet
+  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



More information about the arch-commits mailing list