Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (6976827cbf4d00b76929c106d0a750e517ad5861)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (6976827cbf4d00b76929c106d0a750e517ad5861)
  • Date: Wed, 26 Sep 2012 18:16:03 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

ChangeLog | 3 +
graphics/advancecomp/DEPENDS | 1
graphics/advancecomp/DETAILS | 37
+++++++++++++++++++++++
graphics/advancecomp/HISTORY | 5 +++
graphics/advancecomp/advancecomp-1.15.tar.gz.sig |binary
5 files changed, 46 insertions(+)

New commits:
commit 74f915c4a52c916aa5b472b12d07fbf36dd8bcab
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

advancecomp: Remove broken bzip2 optional dependency

./configure --enable-bzip2
...
checking for BZ2_bzBuffToBuffCompress in -lbz2... yes
...
g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -DUSE_ERROR_SILENT
-DUSE_COMPRESS -c -o compress.o compress.cc
compress.cc: In function 'bool compress_bzip2(const unsigned char*,
unsigned int, unsigned char*, unsigned int&, int, int)':
compress.cc:186:125: error: invalid conversion from 'unsigned char*' to
'char*' [-fpermissive]
/usr/include/bzlib.h:204:15: error: initializing argument 1 of 'int
BZ2_bzBuffToBuffCompress(char*, unsigned int*, char*, unsigned int, int,
int, int)' [-fpermissive]
compress.cc:186:125: error: invalid conversion from 'unsigned char*' to
'char*' [-fpermissive]
/usr/include/bzlib.h:204:15: error: initializing argument 3 of 'int
BZ2_bzBuffToBuffCompress(char*, unsigned int*, char*, unsigned int, int,
int, int)' [-fpermissive]
compress.cc: In function 'bool decompress_bzip2(const unsigned char*,
unsigned int, unsigned char*, unsigned int)':
compress.cc:193:100: error: invalid conversion from 'unsigned char*' to
'char*' [-fpermissive]
/usr/include/bzlib.h:214:15: error: initializing argument 1 of 'int
BZ2_bzBuffToBuffDecompress(char*, unsigned int*, char*, unsigned int,
int, int)' [-fpermissive]
compress.cc:193:100: error: invalid conversion from 'unsigned char*' to
'char*' [-fpermissive]
/usr/include/bzlib.h:214:15: error: initializing argument 3 of 'int
BZ2_bzBuffToBuffDecompress(char*, unsigned int*, char*, unsigned int,
int, int)' [-fpermissive]
make[1]: *** [compress.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory `/tmp/advancecomp-1.15'

commit a6ad68a0986ff44ab64cf3ea8b75817836c2b551
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

advancecomp: Added a collection of recompression utilities

diff --git a/ChangeLog b/ChangeLog
index 0af6445..3548289 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2012-09-26 Eric Sandall <sandalle AT sourcemage.org>
+ * graphics/advancecomp: Added a collection of recompression utilities
+
2012-09-15 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* editors/texworks: new spell, an IDE for LaTeX
* haskell/haskell-extensible-exceptions: new spell, extensible
exceptions
diff --git a/graphics/advancecomp/DEPENDS b/graphics/advancecomp/DEPENDS
new file mode 100755
index 0000000..b851d47
--- /dev/null
+++ b/graphics/advancecomp/DEPENDS
@@ -0,0 +1 @@
+depends -sub "CXX" gcc
diff --git a/graphics/advancecomp/DETAILS b/graphics/advancecomp/DETAILS
new file mode 100755
index 0000000..27bd9c4
--- /dev/null
+++ b/graphics/advancecomp/DETAILS
@@ -0,0 +1,37 @@
+ SPELL=advancecomp
+ VERSION=1.15
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME"
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/advancemame/$SOURCE
+ WEB_SITE=http://advancemame.sourceforge.net/comp-readme.html
+ ENTERED=20120926
+ LICENSE[0]=GPL
+ DOCS="AUTHORS COPYING HISTORY README"
+ KEYWORDS="graphics"
+ SHORT="A collection of recompression utilities"
+cat << EOF
+AdvanceCOMP is a collection of recompression utilities for your .ZIP
archives,
+.PNG snapshots, .MNG video clips and .GZ files. It's mainly intended for
+recompressing your rom, snapshot and clip collection of emulated games.
+
+The main features are :
+* Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip
implementation.
+* Recompress MNG files using Delta and Move optimization.
+
+AdvanceCOMP includes four utilities, all of which allow the extend of DEFLATE
+searching to be set of one of four levels:
+* advpng, removal of ancillary chunks, concatenation of all individual IDAT
+ chunks; then re-encoding of the combined PNG image file using the 7-Zip
+ deflate method.
+* advmng, attempt to make use of delta encoding, followed by re-encoding of
+ compressed sections using 7-Zip deflate method.
+* advdef, general re-encoding of anything featuring a zlib stream, this
+ includes .gz and .png files.
+* advzip, re-encoding of compressed DEFLATE streams within a .zip archive.
+The additional searching performed during compression (and therefore
additional
+CPU usage), can often make gains of 5%-10% in compressed size, according to
the
+AdvanceCOMP authors. After using AdvanceCOMP, the output remains a backwards-
+compatible and compliant DEFLATE stream, capable of being decoded by any
+existing tools.
+EOF
diff --git a/graphics/advancecomp/HISTORY b/graphics/advancecomp/HISTORY
new file mode 100644
index 0000000..01a5395
--- /dev/null
+++ b/graphics/advancecomp/HISTORY
@@ -0,0 +1,5 @@
+2012-09-26 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+ Using '--disable-bzip2' will try to enable bzip2 support
+ Remove bzip2 optional dependency as it is broken
+
diff --git a/graphics/advancecomp/advancecomp-1.15.tar.gz.sig
b/graphics/advancecomp/advancecomp-1.15.tar.gz.sig
new file mode 100644
index 0000000..d902f9d
Binary files /dev/null and b/graphics/advancecomp/advancecomp-1.15.tar.gz.sig
differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (6976827cbf4d00b76929c106d0a750e517ad5861), Eric Sandall, 09/26/2012

Archive powered by MHonArc 2.6.24.

Top of Page