Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (8a3a88b20e3492ec9ab0a78693803b2bdfe0e31c)

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 master grimoire by Eric Sandall (8a3a88b20e3492ec9ab0a78693803b2bdfe0e31c)
  • Date: Mon, 10 Nov 2008 21:58:14 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

dev/null |binary
http/gnash/CONFIGURE | 6 +++---
http/gnash/DETAILS | 10 +++++-----
http/gnash/HISTORY | 9 +++++++++
http/gnash/gnash-0.8.4.tar.bz2.sig |binary
http/gnash/gnash.gpg | 0
6 files changed, 17 insertions(+), 8 deletions(-)

New commits:
commit 8a3a88b20e3492ec9ab0a78693803b2bdfe0e31c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gnash: Make gstreamer default for sound by listing first

commit 72b5765e0ca1522c6affd27863047e2df85a0e95
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gnash: Updated to 0.8.4
Stop using gnash.gpg for now, they have a new GPG key every stupid release
and don't even put it on public GPG servers.
Verified tarball with posted md5sum.

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

Revert "gnash: Updated to 0.8.4"

This reverts commit 1bf3c92bfd72bef1d0085bb4d86131c730c63bcb.

gnash.gpg needs updating to contain the GPG key for this release.

Conflicts:

http/gnash/HISTORY

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

gnash: Enable MIT-SHM X extension by default (per upstream)

From: http://www.gnu.org/software/gnash/manual/gnashref.html#docdepend
Currently support is only available using GTK gui and AGG renderer.
Keeping it enabled is not a problem as it will not be used if not
available in the current X session.

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

Revert "gnash: Default renderer is agg, list it first"

This reverts commit 31de1687dd30f3f495822256794a894dd7c4de98.

While agg is the default, this is mostly for devices without hardware
accelerated graphics. Per
http://www.gnu.org/software/gnash/manual/gnashref.html#docdepend, OpenGL
is superior to AGG, so let's use OpenGL by default.

commit 31de1687dd30f3f495822256794a894dd7c4de98
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gnash: Default renderer is agg, list it first

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

gnash: Default media is gstreamer, list it first

commit 1bf3c92bfd72bef1d0085bb4d86131c730c63bcb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gnash: Updated to 0.8.4

diff --git a/http/gnash/CONFIGURE b/http/gnash/CONFIGURE
index d028ed5..8111207 100755
--- a/http/gnash/CONFIGURE
+++ b/http/gnash/CONFIGURE
@@ -6,7 +6,7 @@ config_query_option GNASH_OPTS
\

config_query_option GNASH_OPTS \
"Enable support for the MIT-SHM X extension" \
- n \
+ y \
"--enable-mit-shm" \
"--disable-mit-shm" &&

@@ -22,7 +22,7 @@ config_query_list GNASH_GUI
\

config_query_list GNASH_MEDIA \
"Which media backend do you want to use?" \
- ffmpeg gstreamer libmad &&
+ gstreamer ffmpeg libmad &&

config_query_list GNASH_RENDERER \
"Which renderer to use?" \
@@ -31,4 +31,4 @@ config_query_list GNASH_RENDERER
\
# doesn't have much sense to keep this here but anyway...
config_query_list GNASH_SOUND \
"Which sound system do you want to use?" \
- sdl gstreamer
+ gstreamer sdl
diff --git a/http/gnash/DETAILS b/http/gnash/DETAILS
index 8ec4840..5cfb216 100755
--- a/http/gnash/DETAILS
+++ b/http/gnash/DETAILS
@@ -1,12 +1,12 @@
SPELL=gnash
- VERSION=0.8.3
+ VERSION=0.8.4
SOURCE=$SPELL-$VERSION.tar.bz2
- SOURCE2=$SOURCE.sig
+# SOURCE2=$SOURCE.sig
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$GNU_URL/$SPELL/$VERSION/$SOURCE
- SOURCE2_URL[0]=$GNU_URL/$SPELL/$VERSION/$SOURCE2
- SOURCE2_IGNORE=signature
- SOURCE_GPG=gnash.gpg:$SOURCE2:UPSTREAM_KEY
+# SOURCE2_URL[0]=$GNU_URL/$SPELL/$VERSION/$SOURCE2
+# SOURCE2_IGNORE=signature
+ SOURCE_GPG=gurus.gpg:$SOURCE.sig:UPSTREAM_HASH
LICENSE[0]=GPL
WEB_SITE=http://www.gnu.org/software/gnash/
ENTERED=20070308
diff --git a/http/gnash/HISTORY b/http/gnash/HISTORY
index a1f48dc..83a46f7 100644
--- a/http/gnash/HISTORY
+++ b/http/gnash/HISTORY
@@ -1,3 +1,12 @@
+2008-11-10 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 0.8.4
+ Stop using gnash.gpg for now, they have a new GPG key every stupid
release
+ and don't even put it on public GPG servers
+ Verified tarball with posted md5sum
+ * CONFIGURE: Default media is gstreamer, list it first
+ MIT-SHM X extension is enabled by default upstream
+ Make gstreamer default for sound by listing first
+
2008-06-26 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: updated to 0.8.3

diff --git a/http/gnash/gnash-0.8.4.tar.bz2.sig
b/http/gnash/gnash-0.8.4.tar.bz2.sig
new file mode 100644
index 0000000..21cc4c0
Binary files /dev/null and b/http/gnash/gnash-0.8.4.tar.bz2.sig differ
diff --git a/http/gnash/gnash.gpg b/http/gnash/gnash.gpg
deleted file mode 100644
index e565de8..0000000
Binary files a/http/gnash/gnash.gpg and /dev/null differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (8a3a88b20e3492ec9ab0a78693803b2bdfe0e31c), Eric Sandall, 11/10/2008

Archive powered by MHonArc 2.6.24.

Top of Page