summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2012-06-17 11:30:29 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2012-06-17 11:30:29 +0800
commit0f75677622b96a12f710c644fcd851d48287094b (patch)
treee2e1f5403672738b9960157979748aca5cab5a06
parent7b7b8aabd3e521c2ac2fe6c86aec039f53bc3c2c (diff)
downloadmarcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar.gz
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar.bz2
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar.lz
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar.xz
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.tar.zst
marcuscom-ports-0f75677622b96a12f710c644fcd851d48287094b.zip
Fix the patch to disable a line of libsoup. But... The JavaScript is still
flank on FreeBSD for some reason while it works great on Linux (tested)....... finger point on gjs or gobject-introspection as SpiderMonkey has passed all tests, gotta check on gjs and gobject-introspection tomorrow. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16950 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--x11/gnome-shell/files/patch-js_ui_extensionSystem.js21
1 files changed, 15 insertions, 6 deletions
diff --git a/x11/gnome-shell/files/patch-js_ui_extensionSystem.js b/x11/gnome-shell/files/patch-js_ui_extensionSystem.js
index 6377d562e..33d06aa66 100644
--- a/x11/gnome-shell/files/patch-js_ui_extensionSystem.js
+++ b/x11/gnome-shell/files/patch-js_ui_extensionSystem.js
@@ -1,5 +1,5 @@
---- js/ui/extensionSystem.js.orig 2012-04-10 20:14:57.000000000 +0200
-+++ js/ui/extensionSystem.js 2012-05-25 22:43:38.000000000 +0200
+--- js/ui/extensionSystem.js.orig 2012-06-16 10:04:12.000000000 -0500
++++ js/ui/extensionSystem.js 2012-06-16 10:06:45.000000000 -0500
@@ -8,7 +8,6 @@
const Gio = imports.gi.Gio;
const St = imports.gi.St;
@@ -24,7 +24,16 @@
function _getCertFile() {
let localCert = GLib.build_filenamev([global.userdatadir, 'extensions.gnome.org.crt']);
if (GLib.file_test(localCert, GLib.FileTest.EXISTS))
-@@ -75,14 +69,6 @@
+@@ -51,8 +45,6 @@
+ return Config.SHELL_SYSTEM_CA_FILE;
+ }
+
+-_httpSession.ssl_ca_file = _getCertFile();
+-
+ // Arrays of uuids
+ var enabledExtensions;
+ // Contains the order that extensions were enabled in.
+@@ -75,14 +67,6 @@
shell_version: Config.PACKAGE_VERSION,
api_version: API_VERSION.toString() };
@@ -39,7 +48,7 @@
}
function uninstallExtensionFromUUID(uuid) {
-@@ -110,10 +96,6 @@
+@@ -110,10 +94,6 @@
}
function gotExtensionZipFile(session, message, uuid) {
@@ -50,7 +59,7 @@
// FIXME: use a GFile mkstemp-type method once one exists
let fd, tmpzip;
-@@ -126,7 +108,6 @@
+@@ -126,7 +106,6 @@
let stream = new Gio.UnixOutputStream({ fd: fd });
let dir = ExtensionUtils.userExtensionsDir.get_child(uuid);
@@ -58,7 +67,7 @@
stream.close(null);
let [success, pid] = GLib.spawn_async(null,
['unzip', '-uod', dir.get_path(), '--', tmpzip],
-@@ -440,12 +421,6 @@
+@@ -440,12 +419,6 @@
api_version: API_VERSION.toString() };
let url = REPOSITORY_URL_DOWNLOAD.format(this._uuid);