Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Robin Cook (2cbaa47fdd21c33e7a17d80958dfd35d07ba12f5)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Robin Cook <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Robin Cook (2cbaa47fdd21c33e7a17d80958dfd35d07ba12f5)
  • Date: Sun, 8 Apr 2012 11:24:35 -0500

GIT changes to master grimoire by Robin Cook <rcook AT wyrms.net>:

ChangeLog | 3 +++
dev/null |binary
spelling/mythes/DETAILS | 4 ++--
spelling/mythes/HISTORY | 3 +++
spelling/mythes/mythes-1.2.0.tar.gz.sig | 0
spelling/mythes/mythes-1.2.2.tar.gz.sig |binary
utils/bsdiff/BUILD | 1 +
utils/bsdiff/DEPENDS | 1 +
utils/bsdiff/DETAILS | 18 ++++++++++++++++++
utils/bsdiff/HISTORY | 2 ++
utils/bsdiff/PRE_BUILD | 4 ++++
utils/bsdiff/bsdiff-4.3.tar.gz.sig |binary
utils/bsdiff/bsdiff.patch | 23 +++++++++++++++++++++++
13 files changed, 57 insertions(+), 2 deletions(-)

New commits:
commit 2cbaa47fdd21c33e7a17d80958dfd35d07ba12f5
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

bsdiff: new spell: binary patch tool

commit e0e8ca844fc1549f37052e2a8f3c74c98ec5b98d
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

mythes: updated to 1.2.2

diff --git a/ChangeLog b/ChangeLog
index 59a6b64..d53e8bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2013-04-08 Robin Cook <rcook AT wyrms.net>
+ * utils/bsdiff: new spell, binary patch tool
+
2012-04-07 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* x11/lightdm-gtk-greeter: new spell, gtk greeter for lightdm

diff --git a/spelling/mythes/DETAILS b/spelling/mythes/DETAILS
index a3756df..607855b 100755
--- a/spelling/mythes/DETAILS
+++ b/spelling/mythes/DETAILS
@@ -1,9 +1,9 @@
SPELL=mythes
- VERSION=1.2.0
+ VERSION=1.2.2
SOURCE="$SPELL-${VERSION}.tar.gz"
SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
SOURCE_URL[0]=${SOURCEFORGE_URL}/hunspell/${SOURCE}
-#
SOURCE_HASH=sha512:4969b5445aa9fa14a440191103f80b70f2c22ef659cd5b1c6a94f6201699b44ad496b24c7da04e3dbdd49398602f2abaae0e59bbe6755ed7f6cf7f079838a832
+# SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/$SPELL-${VERSION}"
WEB_SITE=http://hunspell.sourceforge.net/
LICENSE[0]=BSD
diff --git a/spelling/mythes/HISTORY b/spelling/mythes/HISTORY
index 7b8b0d4..4337023 100644
--- a/spelling/mythes/HISTORY
+++ b/spelling/mythes/HISTORY
@@ -1,3 +1,6 @@
+2012-04-01 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: updated VERSION to 1.2.2
+
2011-07-30 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DEPENDS: changed dependency on g++ to dependency on gcc with
sub-depends on CXX (scripted)
diff --git a/spelling/mythes/mythes-1.2.0.tar.gz.sig
b/spelling/mythes/mythes-1.2.0.tar.gz.sig
deleted file mode 100644
index 9054fae..0000000
Binary files a/spelling/mythes/mythes-1.2.0.tar.gz.sig and /dev/null differ
diff --git a/spelling/mythes/mythes-1.2.2.tar.gz.sig
b/spelling/mythes/mythes-1.2.2.tar.gz.sig
new file mode 100644
index 0000000..3b93a80
Binary files /dev/null and b/spelling/mythes/mythes-1.2.2.tar.gz.sig differ
diff --git a/utils/bsdiff/BUILD b/utils/bsdiff/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/utils/bsdiff/BUILD
@@ -0,0 +1 @@
+make
diff --git a/utils/bsdiff/DEPENDS b/utils/bsdiff/DEPENDS
new file mode 100755
index 0000000..e02b7b9
--- /dev/null
+++ b/utils/bsdiff/DEPENDS
@@ -0,0 +1 @@
+depends bzip2
diff --git a/utils/bsdiff/DETAILS b/utils/bsdiff/DETAILS
new file mode 100755
index 0000000..c90da58
--- /dev/null
+++ b/utils/bsdiff/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=bsdiff
+ VERSION=4.3
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://www.daemonology.net/bsdiff/$SOURCE
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
+ WEB_SITE=http://www.daemonology.net/bsdiff/
+ ENTERED=20120408
+ LICENSE[0]=
+ KEYWORDS="utils"
+ SHORT="Diff program that works on binaries."
+cat << EOF
+bsdiff and bspatch are tools for building and applying patches to binary
files.
+By using suffix sorting (specifically, Larsson and Sadakane's qsufsort) and
+taking advantage of how executable files change, bsdiff routinely produces
+binary patches 50-80% smaller than those produced by Xdelta, and 15% smaller
+than those produced by .RTPatch.
+EOF
diff --git a/utils/bsdiff/HISTORY b/utils/bsdiff/HISTORY
new file mode 100644
index 0000000..5e72be4
--- /dev/null
+++ b/utils/bsdiff/HISTORY
@@ -0,0 +1,2 @@
+2012-04-08 Robin Cook <rcook AT wyrms.net>
+ * New Spell: DETAILS, DEPENDS, PRE_BUILD, BUILD
diff --git a/utils/bsdiff/PRE_BUILD b/utils/bsdiff/PRE_BUILD
new file mode 100755
index 0000000..3432b9e
--- /dev/null
+++ b/utils/bsdiff/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+patch -p1 < $SCRIPT_DIRECTORY/bsdiff.patch
diff --git a/utils/bsdiff/bsdiff-4.3.tar.gz.sig
b/utils/bsdiff/bsdiff-4.3.tar.gz.sig
new file mode 100644
index 0000000..47485d1
Binary files /dev/null and b/utils/bsdiff/bsdiff-4.3.tar.gz.sig differ
diff --git a/utils/bsdiff/bsdiff.patch b/utils/bsdiff/bsdiff.patch
new file mode 100644
index 0000000..f5989b3
--- /dev/null
+++ b/utils/bsdiff/bsdiff.patch
@@ -0,0 +1,23 @@
+diff -u bsdiff-4.3/Makefile bsdiff-mod/Makefile
+--- bsdiff-4.3/Makefile 2005-08-16 17:14:10.000000000 -0500
++++ bsdiff-mod/Makefile 2012-04-08 11:11:29.552182360 -0500
+@@ -1,8 +1,8 @@
+ CFLAGS += -O3 -lbz2
+
+-PREFIX ?= /usr/local
+-INSTALL_PROGRAM ?= ${INSTALL} -c -s -m 555
+-INSTALL_MAN ?= ${INSTALL} -c -m 444
++PREFIX ?= /usr
++INSTALL_PROGRAM ?= install -c -s -m 555
++INSTALL_MAN ?= install -c -m 444
+
+ all: bsdiff bspatch
+ bsdiff: bsdiff.c
+@@ -10,6 +10,4 @@
+
+ install:
+ ${INSTALL_PROGRAM} bsdiff bspatch ${PREFIX}/bin
+-.ifndef WITHOUT_MAN
+- ${INSTALL_MAN} bsdiff.1 bspatch.1 ${PREFIX}/man/man1
+-.endif
++ ${INSTALL_MAN} bsdiff.1 bspatch.1 ${PREFIX}/share/man/man1



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (2cbaa47fdd21c33e7a17d80958dfd35d07ba12f5), Robin Cook, 04/08/2012

Archive powered by MHonArc 2.6.24.

Top of Page