Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.19 grimoire by Eric Sandall (732f5e27c028194d3dcaccabf9d816a42f78993e)

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 stable-0.19 grimoire by Eric Sandall (732f5e27c028194d3dcaccabf9d816a42f78993e)
  • Date: Sun, 13 Apr 2008 02:49:21 -0500

GIT changes to stable-0.19 grimoire by Eric Sandall <sandalle AT sourcemage.org>:

VERSION | 2 +-
http/firefox/DETAILS | 4 ++--
http/firefox/HISTORY | 6 ++++++
http/firefox/PRE_BUILD | 2 +-
http/firefox/firefox-config.patch | 10 +++++-----
http/seamonkey/DETAILS | 6 +++---
http/seamonkey/HISTORY | 4 ++++
mail/exim/DEPENDS | 2 +-
mail/exim/HISTORY | 3 +++
9 files changed, 26 insertions(+), 13 deletions(-)

New commits:
commit 732f5e27c028194d3dcaccabf9d816a42f78993e
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

VERSION: 0.19-4

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

exim: Forgot to update EXIM_TLS check for gnutls

commit 54c0fb34787e90d37e7bcb690be91881fe6e5aa1
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

seamonkey: Updated to version 1.1.9 SECURITY_PATCH++
(cherry picked from commit 162f219d18702ac257f569a075bb97b928f5c475)

commit 8aa0406257e75f001bb9645067a963a4f8d8072c
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

firefox: Updated to version 2.0.0.13. SECURITY_PATCH++

diff --git a/VERSION b/VERSION
index 9dfa585..934e4c3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.19-3
+0.19-4
diff --git a/http/firefox/DETAILS b/http/firefox/DETAILS
index a02b585..92c538e 100755
--- a/http/firefox/DETAILS
+++ b/http/firefox/DETAILS
@@ -7,7 +7,7 @@ if [ "$FIREFOX_CVS" == "y" ]; then

SOURCE_URL[0]=ftp://ftp.mozilla.org/pub/mozilla.org/$SPELL/releases/$VERSION/source/$SOURCE
SOURCE2_URL[0]=${SOURCE_URL}.asc
else
- VERSION=2.0.0.12
+ VERSION=2.0.0.13
SOURCE=$SPELL-$VERSION-source.tar.bz2
SOURCE2=${SOURCE}.asc
SOURCE_GPG="firefox.gpg:${SOURCE2}:UPSTREAM_KEY"
@@ -17,7 +17,7 @@ else

SOURCE_URL[2]=ftp://ftp.in2p3.fr/pub/mozilla/$SPELL/releases/$VERSION/source/$SOURCE
SOURCE_URL[3]=ftp://ftp.sai.msu.su/pub/unix/WWW/browsers/$SOURCE
SOURCE2_URL[0]=${SOURCE_URL}.asc
- SECURITY_PATCH=15
+ SECURITY_PATCH=16
fi
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://www.mozilla.org/projects/firefox/
diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index efe2fb7..126a44e 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,9 @@
+2008-03-29 George Sherwood <george AT beernabeer.com>
+ * DETAILS: Updated to 2.0.0.13. SECURITY_PATCH++
+ * PRE_BUILD: Removed gcc43.patch
+ * gcc43.patch: Removed. Incorporated in upstream update.
+ * firefox-config.patch: Updated to 2.0.0.13
+
2008-02-13 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated devel to version 3.0 beta 3

diff --git a/http/firefox/PRE_BUILD b/http/firefox/PRE_BUILD
index 4d060c9..5bf88d7 100755
--- a/http/firefox/PRE_BUILD
+++ b/http/firefox/PRE_BUILD
@@ -6,7 +6,7 @@ cd mozilla &&
if [ "$FIREFOX_CVS" == "n" ]; then
patch -p1 < $SCRIPT_DIRECTORY/cairo-fixes.patch &&
patch -p0 < $SCRIPT_DIRECTORY/x-lib.patch
-fi &&
+fi &&

if [ "$FIREFOX_CVS" == "y" ]; then
cp $SCRIPT_DIRECTORY/mozconfig3 .mozconfig
diff --git a/http/firefox/firefox-config.patch
b/http/firefox/firefox-config.patch
index d86d1c5..a1dc473 100644
--- a/http/firefox/firefox-config.patch
+++ b/http/firefox/firefox-config.patch
@@ -14,8 +14,8 @@
exit 0
;;
--cflags)
-- if test "/usr/local/include/firefox-2.0.0.12" != /usr/include ; then
-- includes="-I/usr/local/include/firefox-2.0.0.12"
+- if test "/usr/local/include/firefox-2.0.0.13" != /usr/include ; then
+- includes="-I/usr/local/include/firefox-2.0.0.13"
+ if test "/usr/include/firefox" != /usr/include ; then
+ includes="-I/usr/include/firefox"
fi
@@ -25,14 +25,14 @@
if test "$echo_cflags" = "yes"; then
nspr_cflags="-I/usr/include/nspr"
for n in $echo_components; do
-- component_includes="$component_includes
-I/usr/local/include/firefox-2.0.0.12/$n"
+- component_includes="$component_includes
-I/usr/local/include/firefox-2.0.0.13/$n"
+ component_includes="$component_includes -I/usr/include/firefox/$n"
done
echo $component_includes $includes $nspr_cflags
fi

if test "$echo_idlflags" = "yes"; then
-- echo "-I/usr/local/share/idl/firefox-2.0.0.12"
+- echo "-I/usr/local/share/idl/firefox-2.0.0.13"
+ echo "-I/usr/share/idl/firefox"
fi

@@ -41,6 +41,6 @@
;;
esac
done
-- echo -L/usr/local/lib/firefox-2.0.0.12 $libs
+- echo -L/usr/local/lib/firefox-2.0.0.13 $libs
+ echo -L/usr/lib $libs
fi
diff --git a/http/seamonkey/DETAILS b/http/seamonkey/DETAILS
index e3852d9..709dc6a 100755
--- a/http/seamonkey/DETAILS
+++ b/http/seamonkey/DETAILS
@@ -1,12 +1,12 @@
SPELL=seamonkey
- VERSION=1.1.8
+ VERSION=1.1.9
SOURCE=$SPELL-$VERSION.source.tar.bz2
-
SOURCE_HASH=sha512:8cea1796743608c61b432ebfa391b53e96df59213e2c232105fe5ef2df98fd87d8743444f23c712f4c4fa66e068acca410760f0f3b74997e0561baeb14112952:UPSTREAM_HASH
+
SOURCE_HASH=sha512:3c43e14b73663dc30b05c10ca430a0f69b6099838b6eb2e2659e10d741698f999ee49e3a7812fbd758fd6a05a1a87d810e7929984cca4740c705f7a143430db0:UPSTREAM_HASH
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URI=seamonkey/releases/$VERSION/$SOURCE
SOURCE_URL[0]=http://releases.mozilla.org/pub/mozilla.org/$SOURCE_URI
WEB_SITE=http://www.mozilla.org/
- SECURITY_PATCH=10
+ SECURITY_PATCH=11
ENTERED=20010922
LICENSE[0]=MPL
DOCS="LICENSE README.txt"
diff --git a/http/seamonkey/HISTORY b/http/seamonkey/HISTORY
index d8f15ea..931e1ff 100644
--- a/http/seamonkey/HISTORY
+++ b/http/seamonkey/HISTORY
@@ -1,3 +1,7 @@
+2008-03-29 George Sherwood <george AT beernabeer.com>
+ * DETAILS: Updated to version 1.1.9. SECURITY_PATCH++
+
http://www.mozilla.org/projects/security/known-vulnerabilities.html#SeaMonkey
+
2008-02-11 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS, PRE_BUILD, BUILD: Create unique SOURCE_DIRECTORY
Fixes Bug #7977
diff --git a/mail/exim/DEPENDS b/mail/exim/DEPENDS
index 3e369cc..294c37f 100755
--- a/mail/exim/DEPENDS
+++ b/mail/exim/DEPENDS
@@ -7,7 +7,7 @@ elif [[ "$EXIM_CRON" == "fcron" ]]; then
depends fcron
fi &&

-if [[ "$EXIM_TLS" == "y" ]]; then
+if [[ "$EXIM_TLS" == "gnutls" ]]; then
depends gnutls &&
depends libgcrypt &&
depends libtasn1
diff --git a/mail/exim/HISTORY b/mail/exim/HISTORY
index 5495b45..fb1938d 100644
--- a/mail/exim/HISTORY
+++ b/mail/exim/HISTORY
@@ -1,3 +1,6 @@
+2008-04-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Check for EXIM_TLS being "gnutls" not "y"
+
2007-10-28 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* BUILD: added support for demime
* CONFIGURE: added support for demime



  • [SM-Commit] GIT changes to stable-0.19 grimoire by Eric Sandall (732f5e27c028194d3dcaccabf9d816a42f78993e), Eric Sandall, 04/13/2008

Archive powered by MHonArc 2.6.24.

Top of Page