Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db10d9b5abdc82a17165ea9746dba2e58a047ca6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db10d9b5abdc82a17165ea9746dba2e58a047ca6)
  • Date: Tue, 2 Apr 2013 09:00:33 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 4 ++++
collab/openldap/DETAILS | 8 ++++----
collab/openldap/HISTORY | 3 +++
utils/mozcache/BUILD | 3 +++
utils/mozcache/CONFIGURE | 3 +++
utils/mozcache/DEPENDS | 31 +++++++++++++++++++++++++++++++
utils/mozcache/DETAILS | 15 +++++++++++++++
utils/mozcache/HISTORY | 2 ++
8 files changed, 65 insertions(+), 4 deletions(-)

New commits:
commit db10d9b5abdc82a17165ea9746dba2e58a047ca6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

openldap: => 2.4.35

commit 70844f31a4feda77a6a4b8380fe9c7ff4bbf2e59
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

mozcache: new spell, viewer and manager for cache files stored by
Gecko-based browsers

diff --git a/ChangeLog b/ChangeLog
index 688f633..3d22225 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * utils/mozcache: new spell, viewer and manager for cache files stored
+ by Gecko-based browsers
+
2013-04-01 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* x11-toolkits/qt4-private-headers: new spell, private headers for qt4

diff --git a/collab/openldap/DETAILS b/collab/openldap/DETAILS
index 014d1fd..f5e5cdd 100755
--- a/collab/openldap/DETAILS
+++ b/collab/openldap/DETAILS
@@ -1,12 +1,12 @@
SPELL=openldap
if [[ $OPENLDAP_BRANCH == stable ]]; then
- VERSION=2.4.34
+ VERSION=2.4.35
SOURCE=$SPELL-$VERSION.tgz
-
SOURCE_HASH=sha512:e72d5b8ce9cdeeca1d0c418532c8430ad153bb08301a80caed94659bda46ae8dc90dd1cc1efd90089e609cdd4712fea05062fda87810e15a92de3e7635752d64
+
SOURCE_HASH=sha512:b39232b4bab7ecb0ae14961adaa555590ca24ecbaeb3d94ea251e2de3bf7425ce364a2a488f9745fae17f106cdf198c852c73b5f2b910d329c598db435d6b31d
else
- VERSION=2.4.34
+ VERSION=2.4.35
SOURCE=$SPELL-$VERSION.tgz
-
SOURCE_HASH=sha512:e72d5b8ce9cdeeca1d0c418532c8430ad153bb08301a80caed94659bda46ae8dc90dd1cc1efd90089e609cdd4712fea05062fda87810e15a92de3e7635752d64
+
SOURCE_HASH=sha512:b39232b4bab7ecb0ae14961adaa555590ca24ecbaeb3d94ea251e2de3bf7425ce364a2a488f9745fae17f106cdf198c852c73b5f2b910d329c598db435d6b31d
fi
SECURITY_PATCH=2
SOURCE_URI=$SPELL-release/$SOURCE
diff --git a/collab/openldap/HISTORY b/collab/openldap/HISTORY
index 68f9fe4..e2ab21e 100644
--- a/collab/openldap/HISTORY
+++ b/collab/openldap/HISTORY
@@ -1,3 +1,6 @@
+2013-04-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 2.4.35
+
2013-03-04 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.4.34

diff --git a/utils/mozcache/BUILD b/utils/mozcache/BUILD
new file mode 100755
index 0000000..64d9c44
--- /dev/null
+++ b/utils/mozcache/BUILD
@@ -0,0 +1,3 @@
+OPTS="$MOZCACHE_OPTS $OPTS" &&
+
+default_build
diff --git a/utils/mozcache/CONFIGURE b/utils/mozcache/CONFIGURE
new file mode 100755
index 0000000..6fdf806
--- /dev/null
+++ b/utils/mozcache/CONFIGURE
@@ -0,0 +1,3 @@
+config_query_list MOZCACHE_GTK "Which GTK+ version to use for GUI?" \
+ gtk+2 \
+ gtk+
diff --git a/utils/mozcache/DEPENDS b/utils/mozcache/DEPENDS
new file mode 100755
index 0000000..8a79aa9
--- /dev/null
+++ b/utils/mozcache/DEPENDS
@@ -0,0 +1,31 @@
+depends zlib &&
+depends pkgconfig &&
+depends $MOZCACHE_GTK &&
+
+if is_depends_enabled $SPELL gtk+; then
+ persistent_add MOZCACHE_OPTS &&
+
+ list_add "MOZCACHE_OPTS" "--enable-gtk-1v2" &&
+
+ optional_depends libx11 \
+ "--enable-xsetlocale" \
+ "--disable-xsetlocale" \
+ "to use Xsetlocale" &&
+
+ optional_depends libunicode \
+ "--with-unicode" \
+ "--without-unicode" \
+ "for Unicode support"
+fi &&
+
+if is_depends_enabled $SPELL gtk+2; then
+ optional_depends gettext \
+ "--enable-nls" \
+ "--disable-nls" \
+ "for Native Language Support"
+fi &&
+
+optional_depends pcre \
+ "--with-regex=pcre" \
+ "--with-regex=posix" \
+ "for regular expressions support via PCRE"
diff --git a/utils/mozcache/DETAILS b/utils/mozcache/DETAILS
new file mode 100755
index 0000000..25e079a
--- /dev/null
+++ b/utils/mozcache/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=mozcache
+ VERSION=1.3.4
+
SOURCE_HASH=sha512:688ae9e90f5a02d890bb54c77acea3a5796a2ac432225dd9b7cd8fb8ed2557cae75173f96a149fa37bab4d37c16a3d7bb062e2c0b1bc7db99f8350b9817f084f
+ SOURCE=$SPELL-$VERSION-src.tar.bz2
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=http://mozcache.sourceforge.net/
+ LICENSE[0]=GPL
+ ENTERED=20130402
+ SHORT="viewer and manager for cache files stored by Gecko-based
browsers"
+cat << EOF
+MozCache is a program for viewing, searching in, saving and deleting cache
files
+of Mozilla, Firefox, SeaMonkey and both current and older versions of
Netscape
+web browsers.
+EOF
diff --git a/utils/mozcache/HISTORY b/utils/mozcache/HISTORY
new file mode 100644
index 0000000..9052155
--- /dev/null
+++ b/utils/mozcache/HISTORY
@@ -0,0 +1,2 @@
+2013-03-31 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, CONFIGURE, BUILD: spell created



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db10d9b5abdc82a17165ea9746dba2e58a047ca6), Vlad Glagolev, 04/02/2013

Archive powered by MHonArc 2.6.24.

Top of Page