couchbase 1.3.5-x86-mingw32 → 1.3.6-x86-mingw32

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f995c345a321d8c33147e83879f4b574c6edf12
4
- data.tar.gz: d229cfdb9b65f7781ab194690e5425e56adfe0c7
3
+ metadata.gz: 581b1afa5fae6c39456a1e0cd0f744bf65203360
4
+ data.tar.gz: 3591b29c9246dddb3c9dc9a79aab100e341a543e
5
5
  SHA512:
6
- metadata.gz: d81743f7961968eb0bab3caf12bd7eced9f32a337dfeca8acd311b895b7efc9b55b64a654d87acf5b62fc3b4553fc17f2aeee680628bf46e3af555787b01d46f
7
- data.tar.gz: cf0a3b9bb8e73f97051ee121d12080124f3d7f1bcb8b6e2bbf07b5f116fe282a0796c46b46ab310504ad81bc056c6e02e7414f8bd216a2c5cdbb9125ea46f9bd
6
+ metadata.gz: 97b3a3c9a7c7000177212ef26535aac5d842b6ad4c42da734338a10b2588efbe7b22fff255e6831f2060abacb3c81ad53a2da768a4db0f4f22e5a59ddb0a03f4
7
+ data.tar.gz: bb959db3fbc3c8b96405b8a590eb5bef648688f1ed1dd38ef6865085b6bd71080ef2e33d88df76b8265d84ecdece79b59367b80b98e0d9cfe394104bafd9d5fa
data/README.markdown CHANGED
@@ -627,6 +627,17 @@ supported on Windows. An example config looks like this:
627
627
  Found Ruby version 2.0.0 for platform x64-mingw32 (/home/avsej/.rake-compiler/ruby/x86_64-w64-mingw32/ruby-2.0.0-p247/lib/ruby/2.0.0/x64-mingw32/rbconfig.rb)
628
628
  Found Ruby version 2.1.0 for platform x64-mingw32 (/home/avsej/.rake-compiler/ruby/x86_64-w64-mingw32/ruby-2.1.0/lib/ruby/2.1.0/x64-mingw32/rbconfig.rb)
629
629
 
630
+ To install all versions needed for `rake package:windows` use these
631
+ commands:
632
+
633
+ $ rake-compiler cross-ruby HOST=i386-mingw32 VERSION=1.8.7-p374
634
+ $ rake-compiler cross-ruby HOST=i386-mingw32 VERSION=1.9.3-p448
635
+ $ rake-compiler cross-ruby HOST=i386-mingw32 VERSION=2.0.0-p247
636
+ $ rake-compiler cross-ruby HOST=i386-mingw32 VERSION=2.1.0
637
+ $ rake-compiler cross-ruby HOST=x64-mingw32 VERSION=1.9.3-p448
638
+ $ rake-compiler cross-ruby HOST=x64-mingw32 VERSION=2.0.0-p247
639
+ $ rake-compiler cross-ruby HOST=x64-mingw32 VERSION=2.1.0
640
+
630
641
  Before you build, check relevant ruby and libcouchbase versions in
631
642
  `tasks/compile.rake`. After that you can run the `package:windows`
632
643
  task and you will find all artifacts in `pkg/` directory:
@@ -3,6 +3,11 @@
3
3
  This document is a list of user visible feature changes and important
4
4
  bugfixes. Do not forget to update this doc in every important patch.
5
5
 
6
+ ## 1.3.6 (2014-02-17)
7
+
8
+ * [major] Fix linkage issue which blocks library installation on
9
+ windows.
10
+
6
11
  ## 1.3.5 (2014-02-05)
7
12
 
8
13
  * [major] RCBC-159, RCBC-152 Honor the :environment constructor argument
@@ -53,6 +53,7 @@ end
53
53
 
54
54
 
55
55
  if RbConfig::CONFIG['target_os'] =~ /mingw32/
56
+ $LDFLAGS << ' -static-libgcc'
56
57
  dir_config("libcouchbase")
57
58
  else
58
59
  LIBDIR = RbConfig::CONFIG['libdir']
@@ -17,5 +17,5 @@
17
17
 
18
18
  # Couchbase ruby client
19
19
  module Couchbase
20
- VERSION = "1.3.5"
20
+ VERSION = "1.3.6"
21
21
  end
data/tasks/compile.rake CHANGED
@@ -131,6 +131,8 @@ task "package:windows" => ["package", "lib/couchbase_ext.rb"] do
131
131
  h[v] = ENV[v]
132
132
  h
133
133
  end
134
+ ENV['LDFLAGS'] = '-static-libgcc'
135
+
134
136
  CROSS_PLATFORMS.each do |platform|
135
137
  ENV['TARGET'] = platform.name
136
138
  rm_rf("tmp/ ports/")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: couchbase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Couchbase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-05 00:00:00.000000000 Z
11
+ date: 2014-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yaji