Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 May 2018 05:19:17 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r470675 - in head: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/seamonkey www/seamonkey/files www/waterfox www/waterfo...
Message-ID:  <201805230519.w4N5JH1s092413@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed May 23 05:19:16 2018
New Revision: 470675
URL: https://svnweb.freebsd.org/changeset/ports/470675

Log:
  gecko: restore support for native extensions after r470668/r470672
  
  PR:		226919

Modified:
  head/mail/thunderbird/Makefile   (contents, props changed)
  head/mail/thunderbird/files/patch-addon-search   (contents, props changed)
  head/www/firefox-esr/Makefile   (contents, props changed)
  head/www/firefox-esr/files/patch-addon-search   (contents, props changed)
  head/www/firefox/Makefile   (contents, props changed)
  head/www/firefox/files/patch-addon-search   (contents, props changed)
  head/www/seamonkey/Makefile   (contents, props changed)
  head/www/seamonkey/files/patch-addon-search   (contents, props changed)
  head/www/waterfox/Makefile   (contents, props changed)
  head/www/waterfox/files/patch-addon-search   (contents, props changed)

Modified: head/mail/thunderbird/Makefile
==============================================================================
--- head/mail/thunderbird/Makefile	Wed May 23 04:49:02 2018	(r470674)
+++ head/mail/thunderbird/Makefile	Wed May 23 05:19:16 2018	(r470675)
@@ -3,7 +3,7 @@
 
 PORTNAME=	thunderbird
 DISTVERSION=	52.8.0
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	mail news net-im ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source

Modified: head/mail/thunderbird/files/patch-addon-search
==============================================================================
--- head/mail/thunderbird/files/patch-addon-search	Wed May 23 04:49:02 2018	(r470674)
+++ head/mail/thunderbird/files/patch-addon-search	Wed May 23 05:19:16 2018	(r470675)
@@ -45,7 +45,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
            addon.isPlatformCompatible = Array.some(nodes, function(aNode) {
              let text = aNode.textContent.toLowerCase().trim();
 -            return text == "all" || text == Services.appinfo.OS.toLowerCase();
-+            return text == "all" || text == "linux";
++            return text == "all" || text == "linux" || text == Services.appinfo.OS.toLowerCase();
            });
            break;
          case "install":
@@ -54,7 +54,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
              let os = node.getAttribute("os").trim().toLowerCase();
              // If the os is not ALL and not the current OS then ignore this xpi
 -            if (os != "all" && os != Services.appinfo.OS.toLowerCase())
-+            if (os != "all" && os != "linux")
++            if (os != "all" && os != "linux" && os != Services.appinfo.OS.toLowerCase())
                break;
            }
  
@@ -67,7 +67,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
      try {
        for (let platform of this.targetPlatforms) {
 -        if (platform.os == Services.appinfo.OS) {
-+        if (platform.os == "Linux") {
++        if (platform.os == "Linux" || platform.os == Services.appinfo.OS) {
            if (platform.abi) {
              needsABI = true;
              if (platform.abi === abi)

Modified: head/www/firefox-esr/Makefile
==============================================================================
--- head/www/firefox-esr/Makefile	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/firefox-esr/Makefile	Wed May 23 05:19:16 2018	(r470675)
@@ -4,7 +4,7 @@
 PORTNAME=	firefox
 DISTVERSION=	52.8.0
 DISTVERSIONSUFFIX=esr
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \

Modified: head/www/firefox-esr/files/patch-addon-search
==============================================================================
--- head/www/firefox-esr/files/patch-addon-search	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/firefox-esr/files/patch-addon-search	Wed May 23 05:19:16 2018	(r470675)
@@ -44,7 +44,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
            addon.isPlatformCompatible = Array.some(nodes, function(aNode) {
              let text = aNode.textContent.toLowerCase().trim();
 -            return text == "all" || text == Services.appinfo.OS.toLowerCase();
-+            return text == "all" || text == "linux";
++            return text == "all" || text == "linux" || text == Services.appinfo.OS.toLowerCase();
            });
            break;
          case "install":
@@ -53,7 +53,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
              let os = node.getAttribute("os").trim().toLowerCase();
              // If the os is not ALL and not the current OS then ignore this xpi
 -            if (os != "all" && os != Services.appinfo.OS.toLowerCase())
-+            if (os != "all" && os != "linux")
++            if (os != "all" && os != "linux" && os != Services.appinfo.OS.toLowerCase())
                break;
            }
  
@@ -66,7 +66,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
      try {
        for (let platform of this.targetPlatforms) {
 -        if (platform.os == Services.appinfo.OS) {
-+        if (platform.os == "Linux") {
++        if (platform.os == "Linux" || platform.os == Services.appinfo.OS) {
            if (platform.abi) {
              needsABI = true;
              if (platform.abi === abi)

Modified: head/www/firefox/Makefile
==============================================================================
--- head/www/firefox/Makefile	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/firefox/Makefile	Wed May 23 05:19:16 2018	(r470675)
@@ -3,7 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	60.0.1
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \

Modified: head/www/firefox/files/patch-addon-search
==============================================================================
--- head/www/firefox/files/patch-addon-search	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/firefox/files/patch-addon-search	Wed May 23 05:19:16 2018	(r470675)
@@ -36,7 +36,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
        if (Array.isArray(aEntry.current_version.files)) {
          for (let file of aEntry.current_version.files) {
 -          if (file.platform == "all" || file.platform == Services.appinfo.OS.toLowerCase()) {
-+          if (file.platform == "all" || file.platform == "linux") {
++          if (file.platform == "all" || file.platform == "linux" || file.platform == Services.appinfo.OS.toLowerCase()) {
              if (file.url) {
                addon.sourceURI = NetUtil.newURI(file.url);
              }
@@ -49,7 +49,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
      try {
        for (let platform of this.targetPlatforms) {
 -        if (platform.os == Services.appinfo.OS) {
-+        if (platform.os == "Linux") {
++        if (platform.os == "Linux" || platform.os == Services.appinfo.OS) {
            if (platform.abi) {
              needsABI = true;
              if (platform.abi === abi)

Modified: head/www/seamonkey/Makefile
==============================================================================
--- head/www/seamonkey/Makefile	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/seamonkey/Makefile	Wed May 23 05:19:16 2018	(r470675)
@@ -3,7 +3,7 @@
 
 PORTNAME=	seamonkey
 DISTVERSION=	2.49.3
-PORTREVISION=	6
+PORTREVISION=	7
 MOZILLA_VER=	52 # above + 3
 CATEGORIES?=	www mail news editors irc ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \

Modified: head/www/seamonkey/files/patch-addon-search
==============================================================================
--- head/www/seamonkey/files/patch-addon-search	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/seamonkey/files/patch-addon-search	Wed May 23 05:19:16 2018	(r470675)
@@ -42,7 +42,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
            addon.isPlatformCompatible = Array.some(nodes, function(aNode) {
              let text = aNode.textContent.toLowerCase().trim();
 -            return text == "all" || text == Services.appinfo.OS.toLowerCase();
-+            return text == "all" || text == "linux";
++            return text == "all" || text == "linux" || text == Services.appinfo.OS.toLowerCase();
            });
            break;
          case "install":
@@ -51,7 +51,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
              let os = node.getAttribute("os").trim().toLowerCase();
              // If the os is not ALL and not the current OS then ignore this xpi
 -            if (os != "all" && os != Services.appinfo.OS.toLowerCase())
-+            if (os != "all" && os != "linux")
++            if (os != "all" && os != "linux" && os != Services.appinfo.OS.toLowerCase())
                break;
            }
  
@@ -64,7 +64,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
      try {
        for (let platform of this.targetPlatforms) {
 -        if (platform.os == Services.appinfo.OS) {
-+        if (platform.os == "Linux") {
++        if (platform.os == "Linux" || platform.os == Services.appinfo.OS) {
            if (platform.abi) {
              needsABI = true;
              if (platform.abi === abi)

Modified: head/www/waterfox/Makefile
==============================================================================
--- head/www/waterfox/Makefile	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/waterfox/Makefile	Wed May 23 05:19:16 2018	(r470675)
@@ -3,7 +3,7 @@
 PORTNAME=	waterfox
 DISTVERSION=	56.2.0-13
 DISTVERSIONSUFFIX=	-gd2cdd42f4115b
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www ipv6
 
 MAINTAINER=	jbeich@FreeBSD.org

Modified: head/www/waterfox/files/patch-addon-search
==============================================================================
--- head/www/waterfox/files/patch-addon-search	Wed May 23 04:49:02 2018	(r470674)
+++ head/www/waterfox/files/patch-addon-search	Wed May 23 05:19:16 2018	(r470675)
@@ -42,7 +42,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
            addon.isPlatformCompatible = Array.some(nodes, function(aNode) {
              let text = aNode.textContent.toLowerCase().trim();
 -            return text == "all" || text == Services.appinfo.OS.toLowerCase();
-+            return text == "all" || text == "linux";
++            return text == "all" || text == "linux" || text == Services.appinfo.OS.toLowerCase();
            });
            break;
          case "install":
@@ -51,7 +51,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
              let os = node.getAttribute("os").trim().toLowerCase();
              // If the os is not ALL and not the current OS then ignore this xpi
 -            if (os != "all" && os != Services.appinfo.OS.toLowerCase())
-+            if (os != "all" && os != "linux")
++            if (os != "all" && os != "linux" && os != Services.appinfo.OS.toLowerCase())
                break;
            }
  
@@ -64,7 +64,7 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644
      try {
        for (let platform of this.targetPlatforms) {
 -        if (platform.os == Services.appinfo.OS) {
-+        if (platform.os == "Linux") {
++        if (platform.os == "Linux" || platform.os == Services.appinfo.OS) {
            if (platform.abi) {
              needsABI = true;
              if (platform.abi === abi)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805230519.w4N5JH1s092413>