xapian-ruby 1.4.16 → 1.4.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -13
  3. data/Rakefile +2 -0
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e47b96289e21ee62bd8126350170accadf552a098e219923441ff2f29d9eaf90
4
- data.tar.gz: 23158ec6a370d3d863431712f9f7fe169a3d36813c54b8e9f700121de06d3ee9
3
+ metadata.gz: f569cc0d0c5401bf8cbd8d6b208b0f32b38084fdc7c4ba17576637331fd2d9a0
4
+ data.tar.gz: 965f8f93f0be9397a31c676238ecc9d3cd426865e3c115d942672db826d3f821
5
5
  SHA512:
6
- metadata.gz: f0dba5b2733ddccaf4de0903f4a3bec20996e640d299d9b70de6313e71639813569bd3fe0be915d6a704feb11f082ce43dfed9ae5816e3517f2e06206bd89f30
7
- data.tar.gz: 99de833e7d321a6fa0a3a7e6c26012d8640620397c6b6786046d89a27df31722879c99c1b41ed151fdaa34f06bf7820ed86522d3b34a8f6702540a4dcecc10a0
6
+ metadata.gz: ed1179c725762375772c2a5dca97331832b5c69f8bf13c6ab0710a000dc167948144ba0b067a1dc0fbe76aa9ce7b957477211e05f584c99ffa196017ec3c7637
7
+ data.tar.gz: 8d71b09da2789b2ab0001a71482d98e54c89de3485d82f77e3fc3b5d4763b4f8ad9a2e05e3051fcf3bac061675a752d6184c04d8fe9916398cdc14da3a7cf041
data/CHANGELOG.md CHANGED
@@ -1,58 +1,62 @@
1
- ##1.4.16 (June 21st, 2020)
1
+ ## 1.4.17 (June 29th, 2021)
2
+
3
+ - add compatibility for macOS Big Sur
4
+
5
+ ## 1.4.16 (June 21st, 2020)
2
6
 
3
7
  - update to xapian 1.4.16
4
8
 
5
- ##1.4.9 (Nove,ber 7th, 2018)
9
+ ## 1.4.9 (Nove,ber 7th, 2018)
6
10
 
7
11
  - update to xapian 1.2.22
8
12
  ##1.2.22 (January 12th, 2016)
9
13
 
10
14
  - update to xapian 1.2.22
11
15
 
12
- ##1.2.21 (July 14th, 2015)
16
+ ## 1.2.21 (July 14th, 2015)
13
17
 
14
18
  - update to xapian 1.2.21
15
19
 
16
- ##1.2.20 (May 5th, 2015)
20
+ ## 1.2.20 (May 5th, 2015)
17
21
 
18
22
  - fixed tar flags
19
23
  ##1.2.19.1 (December 30th, 2014)
20
24
 
21
25
  - fixed tar flags
22
26
 
23
- ##1.2.19 (December 30th, 2014)
27
+ ## 1.2.19 (December 30th, 2014)
24
28
 
25
29
  - update to xapian 1.2.19
26
30
  - fix for ruby 2.2
27
31
 
28
- ##1.2.17 (February 19th, 2014)
32
+ ## 1.2.17 (February 19th, 2014)
29
33
 
30
34
  update to xapian 1.2.17
31
35
 
32
- ##1.2.15.1 (April 30th, 2012)
36
+ ## 1.2.15.1 (April 30th, 2012)
33
37
 
34
38
  source formats fixed (gzipped)
35
39
 
36
- ##1.2.15 (April 29th, 2012)
40
+ ## 1.2.15 (April 29th, 2012)
37
41
 
38
42
  update to xapian 1.2.15
39
43
 
40
- ##1.2.12 (July 11th, 2012)
44
+ ## 1.2.12 (July 11th, 2012)
41
45
 
42
46
  update to xapian 1.2.12
43
47
 
44
- ##1.2.8 (February 19th, 2012)
48
+ ## 1.2.8 (February 19th, 2012)
45
49
 
46
50
  update to xapian 1.2.8
47
51
 
48
- ##1.2.7.1 (October 24th, 2011)
52
+ ## 1.2.7.1 (October 24th, 2011)
49
53
 
50
54
  changed LDFLAGS to be more compatible
51
55
 
52
- ##1.2.7 (September 5th, 2011)
56
+ ## 1.2.7 (September 5th, 2011)
53
57
 
54
58
  update to xapian 1.2.7
55
59
 
56
- ##1.2.6 (July 8th, 2011)
60
+ ## 1.2.6 (July 8th, 2011)
57
61
 
58
62
  Initial release
data/Rakefile CHANGED
@@ -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.4.16
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: 2020-06-22 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