rdf-smart 0.0.163 → 0.0.164
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/Makefile +1 -1
- data/ext/extconf.rb +2 -2
- data/ext/rsm.o +0 -0
- data/ext/smart.so +0 -0
- data/rdf-smart.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e194d9f73fc59f774b095e29c3fa9889fa816cfe
|
4
|
+
data.tar.gz: db91b494b6435a8dc0c66aad7130493ca92665b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af6cae8c081de689aa573a96e5f2eccebc04b4663e6f214b7abfba4684d35703843eb70c300cae395274a7fb44269b033e06dbd795b1a3804b24419367a3e8a8
|
7
|
+
data.tar.gz: 660918f6c3929d0989c6ec9a0f0252c57bc6c5f31b7c989a5f6196d619d894c0c6549c4d5adaeba3d9e705fcab8ca6827fd4560b3e7855b8ab097b09bdd25882
|
data/ext/Makefile
CHANGED
@@ -78,7 +78,7 @@ optflags = -O3 -fno-fast-math
|
|
78
78
|
debugflags = -ggdb3
|
79
79
|
warnflags = -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration
|
80
80
|
CCDLFLAGS = -fPIC
|
81
|
-
CFLAGS = $(CCDLFLAGS) -DRSM_VERSION=\"0.0.
|
81
|
+
CFLAGS = $(CCDLFLAGS) -DRSM_VERSION=\"0.0.164\" -std=c99 -I/usr/include/rasqal -I/usr/include/raptor2 -g -Wall -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -fPIC $(ARCH_FLAG)
|
82
82
|
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
83
83
|
DEFS =
|
84
84
|
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -D_FORTIFY_SOURCE=2 $(DEFS) $(cppflags)
|
data/ext/extconf.rb
CHANGED
@@ -7,11 +7,11 @@ $CFLAGS = '-g -Wall ' + $CFLAGS
|
|
7
7
|
$LIBPATH.push(RbConfig::CONFIG['libdir'])
|
8
8
|
|
9
9
|
unless have_library("raptor2")
|
10
|
-
|
10
|
+
puts "Library raptor2 not found"
|
11
11
|
exit 1
|
12
12
|
end
|
13
13
|
unless have_library("rasqal")
|
14
|
-
|
14
|
+
puts "Library rasqal not found"
|
15
15
|
exit 1
|
16
16
|
end
|
17
17
|
$CFLAGS = ' -DRSM_VERSION=\\"' + spec.version.to_s + '\\" -std=c99 ' + `rasqal-config --cflags`.chomp + $CFLAGS
|
data/ext/rsm.o
CHANGED
Binary file
|
data/ext/smart.so
CHANGED
Binary file
|
data/rdf-smart.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'rdf-smart'
|
3
|
-
s.version = '0.0.
|
3
|
+
s.version = '0.0.164'
|
4
4
|
s.date = '2014-06-17'
|
5
5
|
s.summary ="RDF.rb segfaults. A lot. We don't. RDF.rb has lots of features. We don't."
|
6
6
|
s.description ="Minimal sparql support for ruby. Basically the roqet tool from http://librdf.org, with always guessing input type, and always json output."
|