Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/lang/mozjs60 Deal with a difference in the GCC visilib...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/632170d16d9f
branches:  trunk
changeset: 429349:632170d16d9f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Sat Apr 18 21:59:15 2020 +0000

description:
Deal with a difference in the GCC visilibity pragma between GCC and
clang. Bump revision.

diffstat:

 lang/mozjs60/Makefile                            |   4 ++--
 lang/mozjs60/distinfo                            |   4 ++--
 lang/mozjs60/patches/patch-.._public_TypeDecls.h |  19 +++++++++++++++++++
 3 files changed, 23 insertions(+), 4 deletions(-)

diffs (54 lines):

diff -r 303628ff3447 -r 632170d16d9f lang/mozjs60/Makefile
--- a/lang/mozjs60/Makefile     Sat Apr 18 21:55:07 2020 +0000
+++ b/lang/mozjs60/Makefile     Sat Apr 18 21:59:15 2020 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2020/04/12 08:27:58 adam Exp $
+# $NetBSD: Makefile,v 1.5 2020/04/18 21:59:15 joerg Exp $
 
 DISTNAME=      mozjs60_60.8.0.orig
 PKGNAME=       ${DISTNAME:S/_/-/:S/.orig//}
-PKGREVISION=   2
+PKGREVISION=   3
 CATEGORIES=    lang
 MASTER_SITES=  http://deb.debian.org/debian/pool/main/m/mozjs60/
 EXTRACT_SUFX=  .tar.xz
diff -r 303628ff3447 -r 632170d16d9f lang/mozjs60/distinfo
--- a/lang/mozjs60/distinfo     Sat Apr 18 21:55:07 2020 +0000
+++ b/lang/mozjs60/distinfo     Sat Apr 18 21:59:15 2020 +0000
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.2 2020/04/09 09:40:47 jperkin Exp $
+$NetBSD: distinfo,v 1.3 2020/04/18 21:59:15 joerg Exp $
 
 SHA1 (mozjs60_60.8.0.orig.tar.xz) = b66207ee477c110995029f173e6b026f2e013591
 RMD160 (mozjs60_60.8.0.orig.tar.xz) = fef033969a51dc56c84669d33401f60bd499de6d
 SHA512 (mozjs60_60.8.0.orig.tar.xz) = ad4d5d17824b1d0e50fc43a56cb5ffe022ffd150ce0e4af4e57326b8c1a8688c90da72c156122f637f558300b1caeb2f50d0bc83a1a12455fed3be656dd8c5be
 Size (mozjs60_60.8.0.orig.tar.xz) = 25294372 bytes
-SHA1 (patch-.._.._config_rules.mk) = cf3421d991e1cbfab4c0cdcb7b648b1388fa32d5
 SHA1 (patch-.._.._python_mozbuild_mozbuild_backend_recursivemake.py) = dda670432e5673c5d28dcf6c4902d4a724e71170
+SHA1 (patch-.._public_TypeDecls.h) = 846e0707755cbe7e97cc380f66bfe6da0daf996e
 SHA1 (patch-gc_Memory.cpp) = ba865bee4b99ce6298404b41b465b281fd23555f
 SHA1 (patch-jsdate.cpp) = f9314460476ffbc00fe85a75bddc964807d0153f
 SHA1 (patch-threading_posix_Thread.cpp) = c48a642fa98d8112c149142a4af4ac633d3ae332
diff -r 303628ff3447 -r 632170d16d9f lang/mozjs60/patches/patch-.._public_TypeDecls.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/mozjs60/patches/patch-.._public_TypeDecls.h  Sat Apr 18 21:59:15 2020 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-.._public_TypeDecls.h,v 1.1 2020/04/18 21:59:15 joerg Exp $
+
+--- ../public/TypeDecls.h.orig 2020-04-18 19:25:46.593269032 +0000
++++ ../public/TypeDecls.h
+@@ -22,6 +22,7 @@
+ 
+ #include "js-config.h"
+ 
++#pragma GCC visibility push(default)
+ typedef uint8_t jsbytecode;
+ 
+ class JSAtom;
+@@ -89,5 +90,6 @@ typedef PersistentRooted<JS::Symbol*> Pe
+ typedef PersistentRooted<Value> PersistentRootedValue;
+ 
+ }  // namespace JS
++#pragma GCC visibility pop(default)
+ 
+ #endif /* js_TypeDecls_h */



Home | Main Index | Thread Index | Old Index