xapian-ruby 1.2.20 → 1.4.17

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: 27db6f2ff794e4f9938a0532881c8bfb77de390e
4
- data.tar.gz: 78c0cd8251c9d9fd79c823442d6f10e35f0deb47
2
+ SHA256:
3
+ metadata.gz: f569cc0d0c5401bf8cbd8d6b208b0f32b38084fdc7c4ba17576637331fd2d9a0
4
+ data.tar.gz: 965f8f93f0be9397a31c676238ecc9d3cd426865e3c115d942672db826d3f821
5
5
  SHA512:
6
- metadata.gz: 04018016f359a7c98f69fd1e89f6c5a0790acca2c2ac468fe6e34c4149554e6c527f40998b8c6c988cfc7264f2f6ec950608d0c438a8ffb7a7ea7603659b4fd9
7
- data.tar.gz: a4dc27d4652c7ef8e036f27600c4a6ef457322d5fef91850b2112fbdcac115fffbbb4338a13fbd596ca3839df5dc507924d7c39ddee1adc62055a232248a7ab8
6
+ metadata.gz: ed1179c725762375772c2a5dca97331832b5c69f8bf13c6ab0710a000dc167948144ba0b067a1dc0fbe76aa9ce7b957477211e05f584c99ffa196017ec3c7637
7
+ data.tar.gz: 8d71b09da2789b2ab0001a71482d98e54c89de3485d82f77e3fc3b5d4763b4f8ad9a2e05e3051fcf3bac061675a752d6184c04d8fe9916398cdc14da3a7cf041
data/CHANGELOG.md CHANGED
@@ -1,43 +1,62 @@
1
- ##1.2.20 (May 5th, 2015)
1
+ ## 1.4.17 (June 29th, 2021)
2
+
3
+ - add compatibility for macOS Big Sur
4
+
5
+ ## 1.4.16 (June 21st, 2020)
6
+
7
+ - update to xapian 1.4.16
8
+
9
+ ## 1.4.9 (Nove,ber 7th, 2018)
10
+
11
+ - update to xapian 1.2.22
12
+ ##1.2.22 (January 12th, 2016)
13
+
14
+ - update to xapian 1.2.22
15
+
16
+ ## 1.2.21 (July 14th, 2015)
17
+
18
+ - update to xapian 1.2.21
19
+
20
+ ## 1.2.20 (May 5th, 2015)
2
21
 
3
22
  - fixed tar flags
4
- ##1.2.19.1 (December 30th, 2014)
23
+ ##1.2.19.1 (December 30th, 2014)
5
24
 
6
25
  - fixed tar flags
7
26
 
8
- ##1.2.19 (December 30th, 2014)
27
+ ## 1.2.19 (December 30th, 2014)
9
28
 
10
29
  - update to xapian 1.2.19
11
30
  - fix for ruby 2.2
12
31
 
13
- ##1.2.17 (February 19th, 2014)
32
+ ## 1.2.17 (February 19th, 2014)
14
33
 
15
34
  update to xapian 1.2.17
16
35
 
17
- ##1.2.15.1 (April 30th, 2012)
36
+ ## 1.2.15.1 (April 30th, 2012)
18
37
 
19
38
  source formats fixed (gzipped)
20
39
 
21
- ##1.2.15 (April 29th, 2012)
40
+ ## 1.2.15 (April 29th, 2012)
22
41
 
23
42
  update to xapian 1.2.15
24
43
 
25
- ##1.2.12 (July 11th, 2012)
44
+ ## 1.2.12 (July 11th, 2012)
26
45
 
27
46
  update to xapian 1.2.12
28
47
 
29
- ##1.2.8 (February 19th, 2012)
48
+ ## 1.2.8 (February 19th, 2012)
30
49
 
31
50
  update to xapian 1.2.8
32
51
 
33
- ##1.2.7.1 (October 24th, 2011)
52
+ ## 1.2.7.1 (October 24th, 2011)
34
53
 
35
54
  changed LDFLAGS to be more compatible
36
55
 
37
- ##1.2.7 (September 5th, 2011)
56
+ ## 1.2.7 (September 5th, 2011)
38
57
 
39
58
  update to xapian 1.2.7
40
59
 
41
- ##1.2.6 (July 8th, 2011)
60
+ ## 1.2.6 (July 8th, 2011)
42
61
 
43
62
  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.20'
12
+ ver = '1.4.16'
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.20
4
+ version: 1.4.17
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-05-05 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.20.tar.xz
25
- - xapian_source/xapian-core-1.2.20.tar.xz
24
+ - xapian_source/xapian-bindings-1.4.16.tar.xz
25
+ - xapian_source/xapian-core-1.4.16.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