xapian-ruby 1.2.21 → 1.4.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9b7b6b0d1fe4a5073a0d5f693575b586fad7688f
4
- data.tar.gz: e2e95c3bd9f360f8fd8374cf9eb75748833fff77
2
+ SHA256:
3
+ metadata.gz: 1a6e9d29650af6f2184b0c80aed14b643d194dc8936dbd6ba91c1092d6da42f5
4
+ data.tar.gz: 0b6ed8fb2ab195ac74088790543ca6f5d7c7ef322eceb54c9b4b310aa5759392
5
5
  SHA512:
6
- metadata.gz: 06311a90fcd011419d26a5c54423f3d6a0f9bb266cc65036a3c2693c1a9116be5714571037bdb749b3dd4bdb473960acce81c60f38d1173efc87c064334cf474
7
- data.tar.gz: 746c38f88615ad3b4898c577551db5fa5630453aa623833c77ccf0d26d54fde809e8de34d8ad001aa4d73dbaf4dffe4c3adcc5957f7fbc95cb41b173ad911bef
6
+ metadata.gz: 117e037c1c46d8734e8a67d824895d9d5c4c8acfa5830e1008e811dcaa851d2742296358e64a887a7d4208e94661a8ddb74058ed35257a2038471c0f194df60d
7
+ data.tar.gz: 444adbf3d1f3244f419eee910d6906a742b76aaf5fb1544a8448f95775b1201e1ba9b325b3f1d41c638d625477666d93157eb2e5e7eb3800700943c25c083446
data/CHANGELOG.md CHANGED
@@ -1,47 +1,66 @@
1
- ##1.2.21 (July 14th, 2015)
1
+ ## 1.4.18 (June 29th, 2021)
2
+
3
+ - version bump to Xapian 1.4.18
4
+
5
+ ## 1.4.17 (June 29th, 2021)
6
+
7
+ - add compatibility for macOS Big Sur
8
+
9
+ ## 1.4.16 (June 21st, 2020)
10
+
11
+ - update to xapian 1.4.16
12
+
13
+ ## 1.4.9 (Nove,ber 7th, 2018)
14
+
15
+ - update to xapian 1.2.22
16
+ ##1.2.22 (January 12th, 2016)
17
+
18
+ - update to xapian 1.2.22
19
+
20
+ ## 1.2.21 (July 14th, 2015)
2
21
 
3
22
  - update to xapian 1.2.21
4
23
 
5
- ##1.2.20 (May 5th, 2015)
24
+ ## 1.2.20 (May 5th, 2015)
6
25
 
7
26
  - fixed tar flags
8
- ##1.2.19.1 (December 30th, 2014)
27
+ ##1.2.19.1 (December 30th, 2014)
9
28
 
10
29
  - fixed tar flags
11
30
 
12
- ##1.2.19 (December 30th, 2014)
31
+ ## 1.2.19 (December 30th, 2014)
13
32
 
14
33
  - update to xapian 1.2.19
15
34
  - fix for ruby 2.2
16
35
 
17
- ##1.2.17 (February 19th, 2014)
36
+ ## 1.2.17 (February 19th, 2014)
18
37
 
19
38
  update to xapian 1.2.17
20
39
 
21
- ##1.2.15.1 (April 30th, 2012)
40
+ ## 1.2.15.1 (April 30th, 2012)
22
41
 
23
42
  source formats fixed (gzipped)
24
43
 
25
- ##1.2.15 (April 29th, 2012)
44
+ ## 1.2.15 (April 29th, 2012)
26
45
 
27
46
  update to xapian 1.2.15
28
47
 
29
- ##1.2.12 (July 11th, 2012)
48
+ ## 1.2.12 (July 11th, 2012)
30
49
 
31
50
  update to xapian 1.2.12
32
51
 
33
- ##1.2.8 (February 19th, 2012)
52
+ ## 1.2.8 (February 19th, 2012)
34
53
 
35
54
  update to xapian 1.2.8
36
55
 
37
- ##1.2.7.1 (October 24th, 2011)
56
+ ## 1.2.7.1 (October 24th, 2011)
38
57
 
39
58
  changed LDFLAGS to be more compatible
40
59
 
41
- ##1.2.7 (September 5th, 2011)
60
+ ## 1.2.7 (September 5th, 2011)
42
61
 
43
62
  update to xapian 1.2.7
44
63
 
45
- ##1.2.6 (July 8th, 2011)
64
+ ## 1.2.6 (July 8th, 2011)
46
65
 
47
66
  Initial release
data/README.rdoc CHANGED
@@ -1,3 +1,4 @@
1
1
  = Xapian-Ruby
2
2
 
3
- Xapian-Ruby installs the current xapian libs and ruby bindings
3
+ Xapian-Ruby installs the current Xapian libraries and Ruby bindings.
4
+ The Xapian libraries will reside within the lib folder of this gem.
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ def system!(cmd)
9
9
  system(cmd) or raise
10
10
  end
11
11
 
12
- ver = '1.2.21'
12
+ ver = '1.4.18'
13
13
  source_dir = 'xapian_source'
14
14
  core = "xapian-core-#{ver}"
15
15
  bindings = "xapian-bindings-#{ver}"
@@ -26,12 +26,14 @@ task :default do
26
26
  system! "mkdir -p lib"
27
27
 
28
28
  Dir.chdir core do
29
+ system! 'sed -i".bak" -e "s/darwin\\[91\\]/darwin[912]/g" configure'
29
30
  system! "./configure --prefix=#{prefix} --exec-prefix=#{prefix}"
30
31
  system! "make clean all"
31
32
  system! "cp -r .libs/* ../lib/"
32
33
  end
33
34
 
34
35
  Dir.chdir bindings do
36
+ system! 'sed -i".bak" -e "s/darwin\\[91\\]/darwin[912]/g" configure'
35
37
  ENV['RUBY'] ||= "#{c['bindir']}/#{c['RUBY_INSTALL_NAME']}"
36
38
  ENV['XAPIAN_CONFIG'] = xapian_config
37
39
  system! "./configure --prefix=#{prefix} --exec-prefix=#{prefix} --with-ruby"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xapian-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.21
4
+ version: 1.4.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gernot Kogler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-14 00:00:00.000000000 Z
11
+ date: 2021-06-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: gernot.kogler (at) garaio (dot) com
@@ -21,8 +21,8 @@ files:
21
21
  - LICENSE
22
22
  - README.rdoc
23
23
  - Rakefile
24
- - xapian_source/xapian-bindings-1.2.21.tar.xz
25
- - xapian_source/xapian-core-1.2.21.tar.xz
24
+ - xapian_source/xapian-bindings-1.4.18.tar.xz
25
+ - xapian_source/xapian-core-1.4.18.tar.xz
26
26
  homepage: https://github.com/garaio/xapian-ruby
27
27
  licenses: []
28
28
  metadata: {}
@@ -34,15 +34,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
34
34
  requirements:
35
35
  - - ">="
36
36
  - !ruby/object:Gem::Version
37
- version: '0'
37
+ version: 1.8.0
38
38
  required_rubygems_version: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.3.6
43
43
  requirements: []
44
- rubyforge_project:
45
- rubygems_version: 2.2.2
44
+ rubygems_version: 3.0.3
46
45
  signing_key:
47
46
  specification_version: 4
48
47
  summary: xapian libraries and ruby bindings