rice 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +13 -5
  2. data/check_stdcxx_11.ac +142 -0
  3. data/ruby/lib/version.rb +1 -1
  4. metadata +12 -5
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 495da5bbce7f22d75691292a27ce312da7a284dd
4
- data.tar.gz: ef6cf052be2dd634bf9ac0108e0a836643a35ec1
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZDlhY2ZlNTY5YzE0NTMxOTdmYzViMTMxNDcxMTliYmY4ODE1ZWNhZA==
5
+ data.tar.gz: !binary |-
6
+ NjU1ZTViYzNhYTkzMmU1YmU0MzAzZmQ5NjY2N2M5MjZlNDBiNjE1Yw==
5
7
  SHA512:
6
- metadata.gz: 0b9646f9d06b709e3d3112522752f2a93e9fd95fa585d5a83848fa1cd886954eda4d20f0ac83915fbffe6b57907883f0208c2aa6d29767a4a8d0ff5a1827e608
7
- data.tar.gz: 4b1d664803ce2ec9d41f34f55fafdcc55ba9722ca35fd200c3029a5f70f33e963fd6f421558edc5c7b4c3a023733506d5fba4305a6bfb7946818415f7dd261ba
8
+ metadata.gz: !binary |-
9
+ Mjc2ZWJkODU5NWEyZTBlOGE0M2IyYTYxZDU4MTFhZTAzYzcyM2E0ODNjZDdl
10
+ MjkzOWVkZWNiYWRlMDA1NjE2YWY5NDMwYzJkOWQ4NDRlNGVkZTMzYWMzOGY2
11
+ NzYwYmE4ZmE3NjZhMDFlYzA2NGE0MTBiMmMwMTdkYjBiNWQzMmY=
12
+ data.tar.gz: !binary |-
13
+ NzU4YWEyY2ZmYjRmMmVjMjViODdiNzIwMGFlMjExYTgzZWUyZWU3YTU2NWVh
14
+ ZTdmNmNiZDI2N2ZiOWMxNTQxMzAzZmEwZjc2YTQxM2NhYmI4OGY5NjE4NDdk
15
+ MTY5MzhmZDg5YmIwYmUyNWYzZDY1OTEzMmVmYzNjZjNkMmI3ZTg=
@@ -0,0 +1,142 @@
1
+ # ============================================================================
2
+ # http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html
3
+ # ============================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_CXX_COMPILE_STDCXX_11([ext|noext],[mandatory|optional])
8
+ #
9
+ # DESCRIPTION
10
+ #
11
+ # Check for baseline language coverage in the compiler for the C++11
12
+ # standard; if necessary, add switches to CXXFLAGS to enable support.
13
+ #
14
+ # The first argument, if specified, indicates whether you insist on an
15
+ # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
16
+ # -std=c++11). If neither is specified, you get whatever works, with
17
+ # preference for an extended mode.
18
+ #
19
+ # The second argument, if specified 'mandatory' or if left unspecified,
20
+ # indicates that baseline C++11 support is required and that the macro
21
+ # should error out if no mode with that support is found. If specified
22
+ # 'optional', then configuration proceeds regardless, after defining
23
+ # HAVE_CXX11 if and only if a supporting mode is found.
24
+ #
25
+ # LICENSE
26
+ #
27
+ # Copyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>
28
+ # Copyright (c) 2012 Zack Weinberg <zackw@panix.com>
29
+ # Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>
30
+ # Copyright (c) 2014 Alexey Sokolov <sokolov@google.com>
31
+ #
32
+ # Copying and distribution of this file, with or without modification, are
33
+ # permitted in any medium without royalty provided the copyright notice
34
+ # and this notice are preserved. This file is offered as-is, without any
35
+ # warranty.
36
+
37
+ #serial 4
38
+
39
+ m4_define([_AX_CXX_COMPILE_STDCXX_11_testbody], [[
40
+ template <typename T>
41
+ struct check
42
+ {
43
+ static_assert(sizeof(int) <= sizeof(T), "not big enough");
44
+ };
45
+
46
+ struct Base {
47
+ virtual void f() {}
48
+ };
49
+ struct Child : public Base {
50
+ virtual void f() override {}
51
+ };
52
+
53
+ typedef check<check<bool>> right_angle_brackets;
54
+
55
+ int a;
56
+ decltype(a) b;
57
+
58
+ typedef check<int> check_type;
59
+ check_type c;
60
+ check_type&& cr = static_cast<check_type&&>(c);
61
+
62
+ auto d = a;
63
+ auto l = [](){};
64
+ ]])
65
+
66
+ AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [dnl
67
+ m4_if([$1], [], [],
68
+ [$1], [ext], [],
69
+ [$1], [noext], [],
70
+ [m4_fatal([invalid argument `$1' to AX_CXX_COMPILE_STDCXX_11])])dnl
71
+ m4_if([$2], [], [ax_cxx_compile_cxx11_required=true],
72
+ [$2], [mandatory], [ax_cxx_compile_cxx11_required=true],
73
+ [$2], [optional], [ax_cxx_compile_cxx11_required=false],
74
+ [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX_11])])
75
+ AC_LANG_PUSH([C++])dnl
76
+ ac_success=no
77
+ AC_CACHE_CHECK(whether $CXX supports C++11 features by default,
78
+ ax_cv_cxx_compile_cxx11,
79
+ [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
80
+ [ax_cv_cxx_compile_cxx11=yes],
81
+ [ax_cv_cxx_compile_cxx11=no])])
82
+ if test x$ax_cv_cxx_compile_cxx11 = xyes; then
83
+ ac_success=yes
84
+ fi
85
+
86
+ m4_if([$1], [noext], [], [dnl
87
+ if test x$ac_success = xno; then
88
+ for switch in -std=gnu++11 -std=gnu++0x; do
89
+ cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch])
90
+ AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch,
91
+ $cachevar,
92
+ [ac_save_CXXFLAGS="$CXXFLAGS"
93
+ CXXFLAGS="$CXXFLAGS $switch"
94
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
95
+ [eval $cachevar=yes],
96
+ [eval $cachevar=no])
97
+ CXXFLAGS="$ac_save_CXXFLAGS"])
98
+ if eval test x\$$cachevar = xyes; then
99
+ CXXFLAGS="$CXXFLAGS $switch"
100
+ ac_success=yes
101
+ break
102
+ fi
103
+ done
104
+ fi])
105
+
106
+ m4_if([$1], [ext], [], [dnl
107
+ if test x$ac_success = xno; then
108
+ for switch in -std=c++11 -std=c++0x; do
109
+ cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch])
110
+ AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch,
111
+ $cachevar,
112
+ [ac_save_CXXFLAGS="$CXXFLAGS"
113
+ CXXFLAGS="$CXXFLAGS $switch"
114
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
115
+ [eval $cachevar=yes],
116
+ [eval $cachevar=no])
117
+ CXXFLAGS="$ac_save_CXXFLAGS"])
118
+ if eval test x\$$cachevar = xyes; then
119
+ CXXFLAGS="$CXXFLAGS $switch"
120
+ ac_success=yes
121
+ break
122
+ fi
123
+ done
124
+ fi])
125
+ AC_LANG_POP([C++])
126
+ if test x$ax_cxx_compile_cxx11_required = xtrue; then
127
+ if test x$ac_success = xno; then
128
+ AC_MSG_ERROR([*** A compiler with support for C++11 language features is required.])
129
+ fi
130
+ else
131
+ if test x$ac_success = xno; then
132
+ HAVE_CXX11=0
133
+ AC_MSG_NOTICE([No compiler with C++11 support was found])
134
+ else
135
+ HAVE_CXX11=1
136
+ AC_DEFINE(HAVE_CXX11,1,
137
+ [define if the compiler supports basic C++11 syntax])
138
+ fi
139
+
140
+ AC_SUBST(HAVE_CXX11)
141
+ fi
142
+ ])
data/ruby/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rice
2
- VERSION = "1.6.1"
2
+ VERSION = "1.6.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Brannan
@@ -11,12 +11,18 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2014-05-05 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: |
15
- Rice is a C++ interface to Ruby's C API. It provides a type-safe and
14
+ description: ! 'Rice is a C++ interface to Ruby''s C API. It provides a type-safe
15
+ and
16
+
16
17
  exception-safe interface in order to make embedding Ruby and writing
18
+
17
19
  Ruby extensions with C++ easier. It is similar to Boost.Python in many
20
+
18
21
  ways, but also attempts to provide an object-oriented interface to all
22
+
19
23
  of the Ruby C API.
24
+
25
+ '
20
26
  email:
21
27
  - curlypaul924@gmail.com
22
28
  - jasonroelofs@gmail.com
@@ -35,6 +41,7 @@ files:
35
41
  - Rakefile
36
42
  - aclocal.m4
37
43
  - bootstrap
44
+ - check_stdcxx_11.ac
38
45
  - config.guess
39
46
  - config.sub
40
47
  - configure
@@ -236,12 +243,12 @@ require_paths:
236
243
  - ruby/lib
237
244
  required_ruby_version: !ruby/object:Gem::Requirement
238
245
  requirements:
239
- - - ">="
246
+ - - ! '>='
240
247
  - !ruby/object:Gem::Version
241
248
  version: '0'
242
249
  required_rubygems_version: !ruby/object:Gem::Requirement
243
250
  requirements:
244
- - - ">="
251
+ - - ! '>='
245
252
  - !ruby/object:Gem::Version
246
253
  version: '0'
247
254
  requirements: []