couchbase 1.3.5-x64-mingw32 → 1.3.6-x64-mingw32

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
2
  SHA1:
3
- metadata.gz: 25299cfbd8ed2b7f10c7277c0baa1cea56c9c156
4
- data.tar.gz: 64006afc2453b86457b46065dd12e780857b54c1
3
+ metadata.gz: b37e03139cd0eb3cc18aeaae12b56585dde1de9f
4
+ data.tar.gz: e55f359b8736d406cbc6da38cd2e5add4de7e83b
5
5
  SHA512:
6
- metadata.gz: 44d9c21cd42db3f322fe5af1db00c0084ecde24467109d7971c4a097c637926157cc92df9b00a26603dd949dc2fce8999d946a3dedf921597c9803c2ce14d0d2
7
- data.tar.gz: 845496d39d0a1b870a494cd782c95944b1566a6e7642283b97adf31b527b2991820d7105ff40b12f03a130e94bcd8a037f706d2ac1d69e67de5121e0c7f44ed1
6
+ metadata.gz: 5edf07f1692b79c790c4f7405ea29baccf4e8772f06de4761573b46726cccc66aa7593560834d1cc4ba7371e867af5b958c29dcaa2c30484a2dab70ae8315c0c
7
+ data.tar.gz: 12e56e6a11695b1f436e6f302da15b656b293d1ffefb72b8ab8818d43db39cdda0665c2676e50077e2b724a0d61baaba81c13f1e937acf753edb35806f90e188
@@ -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
@@ -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: x64-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