Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master binary grimoire by Eric Sandall (34428b8ebf178e5e855bf61f10fb4c95f2f78b37)

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 binary grimoire by Eric Sandall (34428b8ebf178e5e855bf61f10fb4c95f2f78b37)
  • Date: Tue, 5 Jan 2010 22:32:15 -0600

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

ChangeLog | 1
bin-http/google-chrome-bin/BUILD | 1
bin-http/google-chrome-bin/DEPENDS | 8
++
bin-http/google-chrome-bin/DETAILS | 20
++++++
bin-http/google-chrome-bin/HISTORY | 3
bin-http/google-chrome-bin/INSTALL | 31
++++++++++
bin-http/google-chrome-bin/PRE_BUILD | 3
bin-http/google-chrome-bin/google-chrome-beta_current_i386.rpm.sig |binary
bin-http/google-chrome-bin/google-chrome-beta_current_x86_64.rpm.sig |binary
bin-http/google-chrome/BUILD | 1
bin-http/google-chrome/DEPENDS | 8
--
bin-http/google-chrome/DETAILS | 20
------
bin-http/google-chrome/HISTORY | 3
bin-http/google-chrome/INSTALL | 31
----------
bin-http/google-chrome/PRE_BUILD | 3
bin-http/google-chrome/google-chrome-beta_current_i386.rpm.sig | 0
bin-http/google-chrome/google-chrome-beta_current_x86_64.rpm.sig | 0
dev/null |binary
18 files changed, 67 insertions(+), 66 deletions(-)

New commits:
commit 34428b8ebf178e5e855bf61f10fb4c95f2f78b37
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

google-chrome: Renamed to google-chrome-bin

diff --git a/ChangeLog b/ChangeLog
index b9872d2..ff8dc3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2010-01-05 Eric Sandall <sandalle AT sourcemage.org>
* bin-http/google-chrome: Added Google Chrome web browser
+ * bin-http/google-chrome: Renamed to google-chrome-bin

2009-09-04 Ladislav Hagara <hgr AT vabo.cz>
* bin-http/ontopia: new spell
diff --git a/bin-http/google-chrome-bin/BUILD
b/bin-http/google-chrome-bin/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/bin-http/google-chrome-bin/BUILD
@@ -0,0 +1 @@
+true
diff --git a/bin-http/google-chrome-bin/DEPENDS
b/bin-http/google-chrome-bin/DEPENDS
new file mode 100755
index 0000000..caaa1c2
--- /dev/null
+++ b/bin-http/google-chrome-bin/DEPENDS
@@ -0,0 +1,8 @@
+depends dbus-glib &&
+depends gconf2 &&
+depends gtk+2 &&
+depends nspr &&
+depends nss &&
+depends rpmunpack &&
+
+suggest_depends xulrunner '' '' 'for Mozilla plugins'
diff --git a/bin-http/google-chrome-bin/DETAILS
b/bin-http/google-chrome-bin/DETAILS
new file mode 100755
index 0000000..6c55194
--- /dev/null
+++ b/bin-http/google-chrome-bin/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=google-chrome-bin
+ VERSION=4.0.249.43
+if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]
+then
+ SOURCE=${SPELL/-bin}-beta_current_x86_64.rpm
+else
+ SOURCE=$SPELL/-bin/}-beta_current_i386.rpm
+fi
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://dl.google.com/linux/direct/$SOURCE
+ LICENSE[0]=http://www.google.com/chrome/eula.html
+ WEB_SITE=http://chrome.google.com/
+ KEYWORDS="web http"
+ ENTERED=20100105
+ SHORT='Google web browser'
+cat << EOF
+Google Chrome is a web browser that runs web pages and applications with
+lightning speed.
+EOF
diff --git a/bin-http/google-chrome-bin/HISTORY
b/bin-http/google-chrome-bin/HISTORY
new file mode 100644
index 0000000..83b1570
--- /dev/null
+++ b/bin-http/google-chrome-bin/HISTORY
@@ -0,0 +1,3 @@
+2010-01-05 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS: Created
+
diff --git a/bin-http/google-chrome-bin/INSTALL
b/bin-http/google-chrome-bin/INSTALL
new file mode 100755
index 0000000..4b670f9
--- /dev/null
+++ b/bin-http/google-chrome-bin/INSTALL
@@ -0,0 +1,31 @@
+cp -v $SOURCE_DIRECTORY/opt/google/chrome/google-chrome.desktop \
+ $INSTALL_ROOT/usr/share/applications &&
+rm -f $SOURCE_DIRECTORY/opt/google/chrome/google-chrome.desktop &&
+
+install -d -m 0755 $INSTALL_ROOT/opt/google &&
+cp -arv $SOURCE_DIRECTORY/opt/google/* $INSTALL_ROOT/opt/google &&
+
+ln -s $TRACK_ROOT/opt/google/chrome/google-chrome \
+ $INSTALL_ROOT/usr/bin/google-chrome &&
+
+if [[ -d $INSTALL_ROOT/usr/lib/xulrunner/plugins ]]
+then
+ ln -s $INSTALL_ROOT/usr/lib/xulrunner/plugins \
+ $INSTALL_ROOT/opt/google/chrome/plugins
+fi &&
+
+#
+# Google Chrome RPM links to weird .so.1d and .so.0d
+# http://code.google.com/p/chromium/issues/detail?id=13425
+#
+for lib in nss3 nssutil3 smime3 ssl3
+do
+ ln -s $TRACK_ROOT/usr/lib/lib$lib.so \
+ $INSTALL_ROOT/opt/google/chrome/lib$lib.so.1d
+done &&
+
+for lib in plds4 plc4 nspr4
+do
+ ln -s $TRACK_ROOT/usr/lib/lib$lib.so \
+ $INSTALL_ROOT/opt/google/chrome/lib$lib.so.0d
+done
diff --git a/bin-http/google-chrome-bin/PRE_BUILD
b/bin-http/google-chrome-bin/PRE_BUILD
new file mode 100755
index 0000000..73c8d26
--- /dev/null
+++ b/bin-http/google-chrome-bin/PRE_BUILD
@@ -0,0 +1,3 @@
+mk_source_dir $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+unpack_file ''
diff --git
a/bin-http/google-chrome-bin/google-chrome-beta_current_i386.rpm.sig
b/bin-http/google-chrome-bin/google-chrome-beta_current_i386.rpm.sig
new file mode 100644
index 0000000..9f5c131
Binary files /dev/null and
b/bin-http/google-chrome-bin/google-chrome-beta_current_i386.rpm.sig differ
diff --git
a/bin-http/google-chrome-bin/google-chrome-beta_current_x86_64.rpm.sig
b/bin-http/google-chrome-bin/google-chrome-beta_current_x86_64.rpm.sig
new file mode 100644
index 0000000..362f46f
Binary files /dev/null and
b/bin-http/google-chrome-bin/google-chrome-beta_current_x86_64.rpm.sig differ
diff --git a/bin-http/google-chrome/BUILD b/bin-http/google-chrome/BUILD
deleted file mode 100755
index 27ba77d..0000000
--- a/bin-http/google-chrome/BUILD
+++ /dev/null
@@ -1 +0,0 @@
-true
diff --git a/bin-http/google-chrome/DEPENDS b/bin-http/google-chrome/DEPENDS
deleted file mode 100755
index caaa1c2..0000000
--- a/bin-http/google-chrome/DEPENDS
+++ /dev/null
@@ -1,8 +0,0 @@
-depends dbus-glib &&
-depends gconf2 &&
-depends gtk+2 &&
-depends nspr &&
-depends nss &&
-depends rpmunpack &&
-
-suggest_depends xulrunner '' '' 'for Mozilla plugins'
diff --git a/bin-http/google-chrome/DETAILS b/bin-http/google-chrome/DETAILS
deleted file mode 100755
index 4395971..0000000
--- a/bin-http/google-chrome/DETAILS
+++ /dev/null
@@ -1,20 +0,0 @@
- SPELL=google-chrome
- VERSION=4.0.249.43
-if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]
-then
- SOURCE=$SPELL-beta_current_x86_64.rpm
-else
- SOURCE=$SPELL-beta_current_i386.rpm
-fi
- SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://dl.google.com/linux/direct/$SOURCE
- LICENSE[0]=http://www.google.com/chrome/eula.html
- WEB_SITE=http://chrome.google.com/
- KEYWORDS="web http"
- ENTERED=20100105
- SHORT='Google web browser'
-cat << EOF
-Google Chrome is a web browser that runs web pages and applications with
-lightning speed.
-EOF
diff --git a/bin-http/google-chrome/HISTORY b/bin-http/google-chrome/HISTORY
deleted file mode 100644
index 83b1570..0000000
--- a/bin-http/google-chrome/HISTORY
+++ /dev/null
@@ -1,3 +0,0 @@
-2010-01-05 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS, DEPENDS: Created
-
diff --git a/bin-http/google-chrome/INSTALL b/bin-http/google-chrome/INSTALL
deleted file mode 100755
index 4b670f9..0000000
--- a/bin-http/google-chrome/INSTALL
+++ /dev/null
@@ -1,31 +0,0 @@
-cp -v $SOURCE_DIRECTORY/opt/google/chrome/google-chrome.desktop \
- $INSTALL_ROOT/usr/share/applications &&
-rm -f $SOURCE_DIRECTORY/opt/google/chrome/google-chrome.desktop &&
-
-install -d -m 0755 $INSTALL_ROOT/opt/google &&
-cp -arv $SOURCE_DIRECTORY/opt/google/* $INSTALL_ROOT/opt/google &&
-
-ln -s $TRACK_ROOT/opt/google/chrome/google-chrome \
- $INSTALL_ROOT/usr/bin/google-chrome &&
-
-if [[ -d $INSTALL_ROOT/usr/lib/xulrunner/plugins ]]
-then
- ln -s $INSTALL_ROOT/usr/lib/xulrunner/plugins \
- $INSTALL_ROOT/opt/google/chrome/plugins
-fi &&
-
-#
-# Google Chrome RPM links to weird .so.1d and .so.0d
-# http://code.google.com/p/chromium/issues/detail?id=13425
-#
-for lib in nss3 nssutil3 smime3 ssl3
-do
- ln -s $TRACK_ROOT/usr/lib/lib$lib.so \
- $INSTALL_ROOT/opt/google/chrome/lib$lib.so.1d
-done &&
-
-for lib in plds4 plc4 nspr4
-do
- ln -s $TRACK_ROOT/usr/lib/lib$lib.so \
- $INSTALL_ROOT/opt/google/chrome/lib$lib.so.0d
-done
diff --git a/bin-http/google-chrome/PRE_BUILD
b/bin-http/google-chrome/PRE_BUILD
deleted file mode 100755
index 73c8d26..0000000
--- a/bin-http/google-chrome/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-mk_source_dir $SOURCE_DIRECTORY &&
-cd $SOURCE_DIRECTORY &&
-unpack_file ''
diff --git a/bin-http/google-chrome/google-chrome-beta_current_i386.rpm.sig
b/bin-http/google-chrome/google-chrome-beta_current_i386.rpm.sig
deleted file mode 100644
index 9f5c131..0000000
Binary files a/bin-http/google-chrome/google-chrome-beta_current_i386.rpm.sig
and /dev/null differ
diff --git a/bin-http/google-chrome/google-chrome-beta_current_x86_64.rpm.sig
b/bin-http/google-chrome/google-chrome-beta_current_x86_64.rpm.sig
deleted file mode 100644
index 362f46f..0000000
Binary files
a/bin-http/google-chrome/google-chrome-beta_current_x86_64.rpm.sig and
/dev/null differ



  • [SM-Commit] GIT changes to master binary grimoire by Eric Sandall (34428b8ebf178e5e855bf61f10fb4c95f2f78b37), Eric Sandall, 01/05/2010

Archive powered by MHonArc 2.6.24.

Top of Page