Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to devel-xorg-modular grimoire by Vlad Glagolev (07dc22640fe852d9c7e061a671b061afd1306ea9)

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 devel-xorg-modular grimoire by Vlad Glagolev (07dc22640fe852d9c7e061a671b061afd1306ea9)
  • Date: Fri, 2 Dec 2011 09:06:57 -0600

GIT changes to devel-xorg-modular grimoire by Vlad Glagolev
<stealth AT sourcemage.org>:

dev/null |binary
devel/bluefish/DEPENDS | 13 ++++++++++++-
devel/bluefish/HISTORY | 3 +++
net/libpcap/HISTORY | 2 +-
net/tcpdump/DETAILS | 2 +-
net/tcpdump/HISTORY | 5 +++++
net/tcpdump/PRE_BUILD | 4 ++++
net/tcpdump/ppi.h | 9 +++++++++
python-pypi/urwid/DETAILS | 2 +-
python-pypi/urwid/HISTORY | 3 +++
python-pypi/urwid/urwid-0.9.9.2.tar.gz.sig | 0
python-pypi/urwid/urwid-0.9.9.3.tar.gz.sig |binary
utils/metalog/DEPENDS | 3 ++-
utils/metalog/HISTORY | 5 +++++
utils/metalog/PRE_BUILD | 5 +++++
15 files changed, 51 insertions(+), 5 deletions(-)

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

metalog: stable sorcery OK

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

bluefish: correctly handle GTK+ dependency

commit 12964eaf99f481d6078b510bc126d1f2d23e5a25
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

urwid: => 0.9.9.3

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

tcpdump: => 4.2.0

commit 0bf58c6f343850cb6f8da3bf4dee8a432bd2c242
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

libpcap: HISTORY's readability++

diff --git a/devel/bluefish/DEPENDS b/devel/bluefish/DEPENDS
index 560ac3f..4c6f5c0 100755
--- a/devel/bluefish/DEPENDS
+++ b/devel/bluefish/DEPENDS
@@ -1,5 +1,16 @@
depends pcre &&
-depends gtk+3 &&
+
+if [[ $BLUEFISH_UNSTABLE == y ]]; then
+ depends gtk+2
+else
+ if spell_ok gtk+2 && spell_ok gtk+3; then
+ optional_depends gtk+2 "--with-gtk2" "" "to use gtk2 even if gtk3 is
available"
+ elif spell_ok gtk+2 && ! spell_ok gtk+3; then
+ depends gtk+2 '--with-gtk2'
+ else
+ depends gtk+3
+ fi
+fi &&

optional_depends gucharmap "" "" "for the character map plugin" &&

diff --git a/devel/bluefish/HISTORY b/devel/bluefish/HISTORY
index c3db6de..f8b2aa1 100644
--- a/devel/bluefish/HISTORY
+++ b/devel/bluefish/HISTORY
@@ -1,3 +1,6 @@
+2011-12-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: correctly handle GTK+ dependency
+
2011-11-24 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.2.0
* DEPENDS: gtk+2 -> gtk+3
diff --git a/net/libpcap/HISTORY b/net/libpcap/HISTORY
index 3bf9779..45ad015 100644
--- a/net/libpcap/HISTORY
+++ b/net/libpcap/HISTORY
@@ -1,5 +1,5 @@
2011-11-29 Treeve Jelbert <treeve AT sourcemage.org>
- *DETAILS: version 1.2.0
+ * DETAILS: version 1.2.0

2010-04-06 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.1.1, updated SOURCE_DIRECTORY
diff --git a/net/tcpdump/DETAILS b/net/tcpdump/DETAILS
index 38da6ea..bc52ec4 100755
--- a/net/tcpdump/DETAILS
+++ b/net/tcpdump/DETAILS
@@ -1,5 +1,5 @@
SPELL=tcpdump
- VERSION=4.1.1
+ VERSION=4.2.0
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/net/tcpdump/HISTORY b/net/tcpdump/HISTORY
index 24d7ca2..bd3028a 100644
--- a/net/tcpdump/HISTORY
+++ b/net/tcpdump/HISTORY
@@ -1,3 +1,8 @@
+2011-12-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 4.2.0
+ * PRE_BUILD: copy missing header to source dir
+ * ppi.h: added, missing header from git tree
+
2010-04-06 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 4.1.1, updated SOURCE_DIRECTORY

diff --git a/net/tcpdump/PRE_BUILD b/net/tcpdump/PRE_BUILD
new file mode 100755
index 0000000..58dc3a4
--- /dev/null
+++ b/net/tcpdump/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+cp -v "$SPELL_DIRECTORY/ppi.h" "ppi.h"
diff --git a/net/tcpdump/ppi.h b/net/tcpdump/ppi.h
new file mode 100644
index 0000000..733eb95
--- /dev/null
+++ b/net/tcpdump/ppi.h
@@ -0,0 +1,9 @@
+typedef struct ppi_header {
+ uint8_t ppi_ver;
+ uint8_t ppi_flags;
+ uint16_t ppi_len;
+ uint32_t ppi_dlt;
+} ppi_header_t;
+
+#define PPI_HDRLEN 8
+
diff --git a/python-pypi/urwid/DETAILS b/python-pypi/urwid/DETAILS
index d449981..eb36588 100755
--- a/python-pypi/urwid/DETAILS
+++ b/python-pypi/urwid/DETAILS
@@ -1,5 +1,5 @@
SPELL=urwid
- VERSION=0.9.9.2
+ VERSION=0.9.9.3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://excess.org/$SPELL/$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/python-pypi/urwid/HISTORY b/python-pypi/urwid/HISTORY
index c4b13d7..b70cbf5 100644
--- a/python-pypi/urwid/HISTORY
+++ b/python-pypi/urwid/HISTORY
@@ -1,3 +1,6 @@
+2011-12-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.9.9.3
+
2011-07-23 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.9.9.2; corrected desc
* DEPENDS: added, for missing dependencies
diff --git a/python-pypi/urwid/urwid-0.9.9.2.tar.gz.sig
b/python-pypi/urwid/urwid-0.9.9.2.tar.gz.sig
deleted file mode 100644
index 1b72e7c..0000000
Binary files a/python-pypi/urwid/urwid-0.9.9.2.tar.gz.sig and /dev/null differ
diff --git a/python-pypi/urwid/urwid-0.9.9.3.tar.gz.sig
b/python-pypi/urwid/urwid-0.9.9.3.tar.gz.sig
new file mode 100644
index 0000000..ccd5274
Binary files /dev/null and b/python-pypi/urwid/urwid-0.9.9.3.tar.gz.sig differ
diff --git a/utils/metalog/DEPENDS b/utils/metalog/DEPENDS
index 89cffe6..26f027b 100755
--- a/utils/metalog/DEPENDS
+++ b/utils/metalog/DEPENDS
@@ -1,3 +1,4 @@
depends p7zip &&
depends gnupg &&
-depends pcre
+depends pcre &&
+depends xz-utils
diff --git a/utils/metalog/HISTORY b/utils/metalog/HISTORY
index 1a67962..819072c 100644
--- a/utils/metalog/HISTORY
+++ b/utils/metalog/HISTORY
@@ -1,3 +1,8 @@
+2011-12-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing dependency
+ * PRE_BUILD: added, to make it work with stable sorcery (otherwise
it's
+ useless)
+
2011-12-01 Arjan Bouter <abouter AT sourcemage.org>
* DETAILS: version 2
* PRE_BUILD, config.patch: sorcery handles config files, no need for
a patch
diff --git a/utils/metalog/PRE_BUILD b/utils/metalog/PRE_BUILD
new file mode 100755
index 0000000..37f3c99
--- /dev/null
+++ b/utils/metalog/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+
+xz -dc "$SOURCE_CACHE/$SOURCE" | tar x -C "$BUILD_DIRECTORY"
+
+cd "$SOURCE_DIRECTORY"



  • [SM-Commit] GIT changes to devel-xorg-modular grimoire by Vlad Glagolev (07dc22640fe852d9c7e061a671b061afd1306ea9), Vlad Glagolev, 12/02/2011

Archive powered by MHonArc 2.6.24.

Top of Page