Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (722b821e1332fcac935a613a8f3acff7d8ed1757)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (722b821e1332fcac935a613a8f3acff7d8ed1757)
  • Date: Sun, 16 Sep 2012 19:55:57 -0500

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

disk/squashfs-tools/BUILD | 8 ++++++++
disk/squashfs-tools/CONFIGURE | 2 ++
disk/squashfs-tools/DEPENDS | 6 ++++++
disk/squashfs-tools/DETAILS | 4 ++--
disk/squashfs-tools/HISTORY | 5 +++++
5 files changed, 23 insertions(+), 2 deletions(-)

New commits:
commit 722b821e1332fcac935a613a8f3acff7d8ed1757
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

Updating squashfs-tools to the latest version

Also including configurable options to be able to xz compress the
filesystem or use LZO compression. Handy.

diff --git a/disk/squashfs-tools/BUILD b/disk/squashfs-tools/BUILD
index e930399..01ed7e3 100755
--- a/disk/squashfs-tools/BUILD
+++ b/disk/squashfs-tools/BUILD
@@ -1,4 +1,12 @@
cd squashfs-tools &&
+if [[ "$SQUASHFS_LZMA" == "y" ]]; then
+ sedit "s/#XZ_SUPPORT/XZ_SUPPORT/" Makefile
+fi &&
+if [[ "$SQUASHFS_LZO" == "y" ]]; then
+ sedit "s/#LZO_SUPPORT/LZO_SUPPORT/" Makefile &&
+ sedit "s:#LZO_DIR = /usr/local:LZO_DIR = /usr:" Makefile
+fi &&
+
make


diff --git a/disk/squashfs-tools/CONFIGURE b/disk/squashfs-tools/CONFIGURE
new file mode 100755
index 0000000..7082767
--- /dev/null
+++ b/disk/squashfs-tools/CONFIGURE
@@ -0,0 +1,2 @@
+config_query SQUASHFS_LZMA "Do you want LZMA compression support? (will
depend on some LZMA)" n &&
+config_query SQUASHFS_LZO "Do you want lzo compression support? (will depend
on lzo)" n
diff --git a/disk/squashfs-tools/DEPENDS b/disk/squashfs-tools/DEPENDS
new file mode 100755
index 0000000..695ab9d
--- /dev/null
+++ b/disk/squashfs-tools/DEPENDS
@@ -0,0 +1,6 @@
+if [[ "$SQUASHFS_LZMA" == "y" ]]; then
+ depends LZMA
+fi &&
+if [[ "$SQUASHFS_LZO" == "y" ]]; then
+ depends lzo
+fi
diff --git a/disk/squashfs-tools/DETAILS b/disk/squashfs-tools/DETAILS
index 1649e9e..1b6670c 100755
--- a/disk/squashfs-tools/DETAILS
+++ b/disk/squashfs-tools/DETAILS
@@ -1,9 +1,9 @@
SPELL=squashfs-tools
- VERSION=4.0
+ VERSION=4.2
SOURCE=squashfs${VERSION}.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/squashfs${VERSION}
SOURCE_URL[0]=${SOURCEFORGE_URL}/squashfs/${SOURCE}
-
SOURCE_HASH=sha512:4056c5f061496c2b984b5aa3a4047aa0f19c6effe107f46b21dd3ee780a71b9cb23c50662b327ea04c63e8150c0a911b716e181ab6372bfc67a01f9342e29b7c
+
SOURCE_HASH=sha512:4b69c5d3008803347d0ce7628957e3873c9ebd799662b25dfb739afb6a1ce97bdd02b0465ac4d949bc38af2155880ac068209dc638b94e5c86a8011ec3a00de0
WEB_SITE=http://squashfs.sourceforge.net/
LICENSE[0]=GPL
ENTERED=20050104
diff --git a/disk/squashfs-tools/HISTORY b/disk/squashfs-tools/HISTORY
index e86fc86..21fe32e 100644
--- a/disk/squashfs-tools/HISTORY
+++ b/disk/squashfs-tools/HISTORY
@@ -1,3 +1,8 @@
+2012-09-16 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: updated to 4.2
+ * CONFIGURE: added a couple configure options
+ * DEPENDS: depend depending on those configure options
+
2010-08-20 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* DETAILS: updated spell to 4.0




  • [SM-Commit] GIT changes to master grimoire by David Kowis (722b821e1332fcac935a613a8f3acff7d8ed1757), David Kowis, 09/16/2012

Archive powered by MHonArc 2.6.24.

Top of Page