pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/firefox



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Fri Sep 14 14:54:19 UTC 2018

Modified Files:
        pkgsrc/www/firefox: distinfo
Added Files:
        pkgsrc/www/firefox/patches: patch-build_moz.configure_rust.configure

Log Message:
Fix configure with Rust 1.29.0


To generate a diff of this commit:
cvs rdiff -u -r1.323 -r1.324 pkgsrc/www/firefox/distinfo
cvs rdiff -u -r0 -r1.4 \
    pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/firefox/distinfo
diff -u pkgsrc/www/firefox/distinfo:1.323 pkgsrc/www/firefox/distinfo:1.324
--- pkgsrc/www/firefox/distinfo:1.323   Wed Sep  5 15:29:58 2018
+++ pkgsrc/www/firefox/distinfo Fri Sep 14 14:54:18 2018
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.323 2018/09/05 15:29:58 ryoon Exp $
+$NetBSD: distinfo,v 1.324 2018/09/14 14:54:18 ryoon Exp $
 
 SHA1 (firefox-62.0.source.tar.xz) = bfb9f02ba288d69c2b2fa2449ab0e25531863d76
 RMD160 (firefox-62.0.source.tar.xz) = a552523ac590868b22717e8c38795924dae18a05
@@ -7,6 +7,7 @@ Size (firefox-62.0.source.tar.xz) = 2580
 SHA1 (patch-aa) = 94c03ed9a0e72bb87c850f2e1965fb8755933822
 SHA1 (patch-browser_app_profile_firefox.js) = 30e93d7817c7e17b96ba96d3d3fb3701020260d4
 SHA1 (patch-build_moz.configure_old.configure) = 3b887ca0ee9e42558f3a72429f88a19676b309d9
+SHA1 (patch-build_moz.configure_rust.configure) = bdfb66b5fa215affa3b273ea58d394f3eb7f7102
 SHA1 (patch-dom_media_CubebUtils.cpp) = 3632cd0dd4b95f53f01050b8898b33fe198916b6
 SHA1 (patch-gfx_angle_checkout_src_common_third__party_smhasher_src_PMurHash.cpp) = f1d0adae2873545818072adb4e8599267bc4e6c5
 SHA1 (patch-gfx_angle_checkout_src_compiler_translator_InfoSink.h) = 96330213707b218b6cfc71589fbf67d14b268dfc

Added files:

Index: pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure
diff -u /dev/null pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure:1.4
--- /dev/null   Fri Sep 14 14:54:19 2018
+++ pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure Fri Sep 14 14:54:19 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-build_moz.configure_rust.configure,v 1.4 2018/09/14 14:54:19 ryoon Exp $
+
+* fuchsia OS "triplet" is notb triplet. Convert the "triplet" to triplet.
+
+--- build/moz.configure/rust.configure.orig    2018-08-30 16:44:17.000000000 +0000
++++ build/moz.configure/rust.configure
+@@ -119,6 +119,8 @@ def rust_supported_targets(rustc):
+     ambiguous = set()
+     per_raw_os = {}
+     for t in out:
++        if t == 'aarch64-fuchsia' or t == 'x86_64-fuchsia':
++            t = t.replace('-', '--')
+         t = split_triplet(t, allow_unknown=True)
+         key = (t.cpu, t.endianness, t.os)
+         if key in per_os:



Home | Main Index | Thread Index | Old Index