View | Details | Raw Unified | Return to bug 251910
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	gjs
4
PORTNAME=	gjs
5
PORTVERSION=	1.66.0
5
PORTVERSION=	1.66.1
6
CATEGORIES=	lang gnome
6
CATEGORIES=	lang gnome
7
MASTER_SITES=	GNOME
7
MASTER_SITES=	GNOME
8
DIST_SUBDIR=	gnome
8
DIST_SUBDIR=	gnome
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1601286593
1
TIMESTAMP = 1608174437
2
SHA256 (gnome/gjs-1.66.0.tar.xz) = f30cf90e016db6c8fdd0059749559611760f0721f375b2b61e0b7239b43ab5f8
2
SHA256 (gnome/gjs-1.66.1.tar.xz) = 8d4240455eff642c8bf6d9805077e33e0a60cb2ea13f77a55f7f30c29668344c
3
SIZE (gnome/gjs-1.66.0.tar.xz) = 439596
3
SIZE (gnome/gjs-1.66.1.tar.xz) = 439992
(-)files/patch-gjs_jsapi-class.h (-16 lines)
Lines 1-16 Link Here
1
--- gjs/jsapi-class.h.orig	2020-09-12 19:34:36 UTC
2
+++ gjs/jsapi-class.h
3
@@ -77,11 +77,11 @@ bool gjs_define_property_dynamic(JSContext       *cx,
4
  *                              do_base_typecheck and priv_from_js
5
  */
6
 #define GJS_DEFINE_PRIV_FROM_JS(type, klass)                                   \
7
-    GJS_ALWAYS_INLINE [[nodiscard]] [[maybe_unused]] static inline bool        \
8
+    GJS_ALWAYS_INLINE static inline bool        \
9
     do_base_typecheck(JSContext* cx, JS::HandleObject obj, bool throw_error) { \
10
         return gjs_typecheck_instance(cx, obj, &klass, throw_error);           \
11
     }                                                                          \
12
-    GJS_ALWAYS_INLINE [[nodiscard]] static inline type* priv_from_js(          \
13
+    GJS_ALWAYS_INLINE static inline type* priv_from_js(          \
14
         JSContext* cx, JS::HandleObject obj) {                                 \
15
         return static_cast<type*>(                                             \
16
             JS_GetInstancePrivate(cx, obj, &klass, nullptr));                  \
(-)files/patch-gjs_jsapi-util-args.h (-11 lines)
Lines 1-11 Link Here
1
--- gjs/jsapi-util-args.h.orig	2020-09-12 19:34:36 UTC
2
+++ gjs/jsapi-util-args.h
3
@@ -43,7 +43,7 @@
4
 #include "gjs/jsapi-util.h"
5
 #include "gjs/macros.h"
6
 
7
-GJS_ALWAYS_INLINE [[nodiscard]] static inline bool check_nullable(
8
+GJS_ALWAYS_INLINE static inline bool check_nullable(
9
     const char*& fchar, const char*& fmt_string) {
10
     if (*fchar != '?')
11
         return false;

Return to bug 251910