Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (421ef6c97baad9ab99198d21d39f9c8a259aab74)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (421ef6c97baad9ab99198d21d39f9c8a259aab74)
  • Date: Wed, 13 May 2015 16:24:25 -0500

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

ChangeLog | 3 +++
devel/florist/DETAILS | 9 ++++-----
devel/florist/HISTORY | 3 +++
libs/assimp/BUILD | 1 +
libs/assimp/DEPENDS | 6 ++++++
libs/assimp/DETAILS | 20 ++++++++++++++++++++
libs/assimp/HISTORY | 3 +++
7 files changed, 40 insertions(+), 5 deletions(-)

New commits:
commit 421ef6c97baad9ab99198d21d39f9c8a259aab74
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

devel/florist: version 2014

commit 3d25544cfd052e8c2e7e314dbd54394db89ea915
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

libs/assimp: new spell, an import library for 3D models

diff --git a/ChangeLog b/ChangeLog
index 9a8c9f9..ff757fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2015-05-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * libs/assimp: new spell, an importer library for 3D models
+
2015-05-09 Vlad Glagolev <stealth AT sourcemage.org>
* archive/lzma-utils: spell deprecated, in favour of xz-utils

diff --git a/devel/florist/DETAILS b/devel/florist/DETAILS
index a711bb6..9007028 100755
--- a/devel/florist/DETAILS
+++ b/devel/florist/DETAILS
@@ -1,10 +1,9 @@
SPELL=florist
- VERSION=2012
- PATCHLEVEL=1
+ VERSION=2014
SOURCE="${SPELL}-gpl-${VERSION}-src.tgz"
-
SOURCE_URL[0]='http://mirrors.cdn.adacore.com/art/47d2e0f943f4c34f5812df70c5a6c0379b7cf4fa'
-
SOURCE_HASH=sha512:1742756736460f3ca2829c7465a568c177c74ea9417a7bb3e609903672f2fb7b0cbf3f0598bd381c1fd49755b83837583df753e53a03da86ae797028b72c97c5
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-gpl-${VERSION}-src"
+
SOURCE_URL[0]='http://mirrors.cdn.adacore.com/art/224f73e1cd4afd1f0f6ca3bd1ad0191aa7f81e05'
+
SOURCE_HASH=sha512:3dedeadfddb60ba41a41d04eaa5ba045090501b7690bdfdd7859b988d0fdeb54059893450c5c31f82d0825d03465e800e6e5ccdbae2c7a4b8254037b2eeb31b5
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-src"
WEB_SITE="http://libre.adacore.com";
LICENSE[0]=GPL
ENTERED=20100830
diff --git a/devel/florist/HISTORY b/devel/florist/HISTORY
index 07eae67..00d525c 100644
--- a/devel/florist/HISTORY
+++ b/devel/florist/HISTORY
@@ -1,3 +1,6 @@
+2015-05-13 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 2014
+
2013-03-13 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 2012

diff --git a/libs/assimp/BUILD b/libs/assimp/BUILD
new file mode 100755
index 0000000..e013b8d
--- /dev/null
+++ b/libs/assimp/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/libs/assimp/DEPENDS b/libs/assimp/DEPENDS
new file mode 100755
index 0000000..ad14e3d
--- /dev/null
+++ b/libs/assimp/DEPENDS
@@ -0,0 +1,6 @@
+depends -sub CXX gcc &&
+depends cmake &&
+
+optional_depends boost "-DASSIMP_ENABLE_BOOST_WORKAROUND=ON" \
+ "-DASSIMP_ENABLE_BOOST_WORKAROUND=OFF" \
+ "use functionality from boost"
diff --git a/libs/assimp/DETAILS b/libs/assimp/DETAILS
new file mode 100755
index 0000000..e3ec265
--- /dev/null
+++ b/libs/assimp/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=assimp
+ VERSION=3.1.1
+ SOURCE="${SPELL}-${VERSION}.zip"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/project/${SPELL}/${SPELL}-3.1/${SOURCE}
+
SOURCE_HASH=sha512:c466d312c0db53fa31b5d1e9b0f65e547a82fb28b1df0a6a96f0dcd876b636a6883d9d705d325193acc58910272b5f158ba37d824ecad29eccf7cf5731697527
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://assimp.sourceforge.net/index.html";
+ LICENSE[0]=BSD
+ ENTERED=20150510
+ SHORT="a portable Open Source library to import various
well-known 3D model formats"
+cat << EOF
+Open Asset Import Library (short name: Assimp) is a portable Open Source
+library to import various well-known 3D model formats in a uniform manner.
The
+most recent version also knows how to export 3d files and is therefore
+suitable as a general-purpose 3D model converter.
+
+Assimp aims to provide a full asset conversion pipeline for use in game
+engines / realtime rendering systems of any kind, but it is not limited to
+this purpose. In the past, it has been used in a wide range of applications.
+EOF
diff --git a/libs/assimp/HISTORY b/libs/assimp/HISTORY
new file mode 100644
index 0000000..dc34235
--- /dev/null
+++ b/libs/assimp/HISTORY
@@ -0,0 +1,3 @@
+2015-05-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * BUILD, DEPENDS, DETAILS: spell created
+



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (421ef6c97baad9ab99198d21d39f9c8a259aab74), Florian Franzmann, 05/13/2015

Archive powered by MHonArc 2.6.24.

Top of Page