Skip to Content.
Sympa Menu

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

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 (38947b8fc58be4f72800b985d9e7b26dabefc380)
  • Date: Sun, 4 May 2008 19:32:45 -0500

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

dev/null |binary
gnome2-apps/epiphany/BUILD | 28 ++++++++++++++++------------
gnome2-apps/epiphany/HISTORY | 2 ++
libs/gmime/DETAILS | 2 +-
libs/gmime/HISTORY | 3 +++
libs/gmime/gmime-2.2.18.tar.gz.sig | 0
libs/gmime/gmime-2.2.19.tar.gz.sig |binary
7 files changed, 22 insertions(+), 13 deletions(-)

New commits:
commit 8b60edfe9da9bdcc5b1dae554e2841e1aec85b01
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

gmime: updated to 2.2.19

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

epiphany: removed the webkit if statement and change rest to case

diff --git a/gnome2-apps/epiphany/BUILD b/gnome2-apps/epiphany/BUILD
index bb3a968..ed60ee9 100755
--- a/gnome2-apps/epiphany/BUILD
+++ b/gnome2-apps/epiphany/BUILD
@@ -1,15 +1,19 @@
-if [[ "${EPIPHANY_WEBKIT}" == "y" ]]; then
- OPTS="${OPTS} --with-engine=webkit"
-else
- if test "$(get_spell_provider $SPELL GECKO)" = firefox; then
- OPTS="${OPTS} --with-gecko=firefox"
- elif test "$(get_spell_provider $SPELL GECKO)" = seamonkey; then
- OPTS="${OPTS} --with-gecko=seamonkey"
- elif test "$(get_spell_provider $SPELL GECKO)" = xulrunner; then
- OPTS="${OPTS} --with-gecko=xulrunner"
- else
- OPTS="${OPTS} --with-gecko=mozilla"
- fi
+
+if [[ "${EPIPHANY_WEBKIT}" == "n" ]]; then
+ case "$(get_spell_provider $SPELL GECKO)" in
+ "firefox" )
+ OPTS="${OPTS} --with-gecko=firefox"
+ ;;
+ "seamonkey" )
+ OPTS="${OPTS} --with-gecko=seamonkey"
+ ;;
+ "xulrunner" )
+ OPTS="${OPTS} --with-gecko=xulrunner"
+ ;;
+ * )
+ OPTS="${OPTS} --with-gecko=mozilla"
+ ;;
+ esac
fi &&

# requires at least -O2 to not segfault on startup with gcc 4.0
diff --git a/gnome2-apps/epiphany/HISTORY b/gnome2-apps/epiphany/HISTORY
index f25072b..0f47561 100644
--- a/gnome2-apps/epiphany/HISTORY
+++ b/gnome2-apps/epiphany/HISTORY
@@ -2,6 +2,8 @@
* CONFIGURE: set +x
* DEPENDS: added switch needed to build with webkit if both installed
added comment to say no to gtk-doc if using webkit
+ * BUILD: removed the webkit switch
+ changed to using a case instead of if statements

2008-04-24 Elisamuel Resto <ryuji AT sourcemage.org>
* BUILD, CONFIGURE, DEPENDS: added prompts for WebKit engine support
diff --git a/libs/gmime/DETAILS b/libs/gmime/DETAILS
index 8e69397..3e0d295 100755
--- a/libs/gmime/DETAILS
+++ b/libs/gmime/DETAILS
@@ -1,5 +1,5 @@
SPELL=gmime
- VERSION=2.2.18
+ VERSION=2.2.19
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/libs/gmime/HISTORY b/libs/gmime/HISTORY
index b8445ba..f81a2cb 100644
--- a/libs/gmime/HISTORY
+++ b/libs/gmime/HISTORY
@@ -1,3 +1,6 @@
+2008-05-04 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: updated VERSION to 2.2.19
+
2008-03-16 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 2.2.18

diff --git a/libs/gmime/gmime-2.2.18.tar.gz.sig
b/libs/gmime/gmime-2.2.18.tar.gz.sig
deleted file mode 100644
index 1ff90e9..0000000
Binary files a/libs/gmime/gmime-2.2.18.tar.gz.sig and /dev/null differ
diff --git a/libs/gmime/gmime-2.2.19.tar.gz.sig
b/libs/gmime/gmime-2.2.19.tar.gz.sig
new file mode 100644
index 0000000..e4ad4a4
Binary files /dev/null and b/libs/gmime/gmime-2.2.19.tar.gz.sig differ



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (38947b8fc58be4f72800b985d9e7b26dabefc380), Robin Cook, 05/04/2008

Archive powered by MHonArc 2.6.24.

Top of Page