curses 1.2.3-x86-mingw32 → 1.2.4-x86-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: ae1a403a5cf98c4556460ed4283a22d2db100d79
4
- data.tar.gz: 2a444e3eda04735adbcb384af0fd9022dc7f9258
3
+ metadata.gz: d4d65fe6f42a0b4fd66ec443e77d93037a6e6697
4
+ data.tar.gz: 66943ccf5dc0139bf3ad5bde95a75b5c0dc24259
5
5
  SHA512:
6
- metadata.gz: 6283e52c1d4cd95428dbe8fa6d889422a0757b3c4a3f2a1da342d7a372bb760174559ec46fc7fb1ad27f92af124525c3753e3628860a5808e08c5c435321022b
7
- data.tar.gz: 89510d080693330b0a9a40da47145c6537f6544621f6ccc668f582e28433def918fec5d8a50e38e1bc3636a0b44337f94e91fabaea07ddf7b263aa29fa3e3bfa
6
+ metadata.gz: 1f40fa29797f6088f588aff9ab58a72e322c8c555e543f99045f9bf3444ef9dfdad6e0c201eacf25206f6405c4ec7e5dfeeca8ef7d8c8ab075dabe8b35fab4b2
7
+ data.tar.gz: c725a0458bef0e7b9c3c2d7da79f0941ab47f5c7714e6738687a83ed8578f25270a583c1a863bc68daf33a3bcf222dc5e67b4007c1d554a88b1c07b365931cf0
data/History.md CHANGED
@@ -1,3 +1,13 @@
1
+ ### 1.2.4 / 2017-09-13
2
+
3
+ Bug fixes:
4
+
5
+ * Fix the path of pdcurses.dll for i386-mingw. (Issue #36)
6
+
7
+ Documentation:
8
+
9
+ * Include reference to ncurses dependency. Pull request #34 by qume.
10
+
1
11
  ### 1.2.3 / 2017-07-03
2
12
 
3
13
  Bug fixes:
data/README.md CHANGED
@@ -18,6 +18,15 @@ with the release of Ruby 2.1.0. (see [ruby/ruby@9c5b2fd][2])
18
18
  ## Install
19
19
 
20
20
  $ gem install curses
21
+
22
+ Requires ncurses or ncursesw (with wide character support).
23
+ On Debian based distributions, you can install it with apt:
24
+
25
+ $ apt install libncurses5-dev
26
+
27
+ Or
28
+
29
+ $ apt install libncursesw5-dev
21
30
 
22
31
  ## Developers
23
32
 
data/Rakefile CHANGED
@@ -28,10 +28,10 @@ namespace :build do
28
28
  sh "nmake -f vcwin32.mak clean all WIDE=Y DLL=Y"
29
29
  cp %w[pdcurses.dll pdcurses.lib], "../../#{RUBY_PLATFORM}/PDCurses"
30
30
  else
31
- sh "make -f mingwin32.mak clean all _linux_w32=1 WIDE=Y DLL=Y"
31
+ sh "make -f mingwin32.mak clean all WIDE=Y DLL=Y"
32
32
  cp "pdcurses.dll", "../../x86-mingw32/PDCurses"
33
33
 
34
- sh "make -f mingwin32.mak clean all _linux_w64=1 WIDE=Y DLL=Y"
34
+ sh "make -f mingwin32.mak clean all _w64=1 WIDE=Y DLL=Y"
35
35
  cp "pdcurses.dll", "../../x64-mingw32/PDCurses"
36
36
  end
37
37
  end
data/curses.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new { |s|
2
2
  s.name = "curses"
3
- s.version = "1.2.3"
3
+ s.version = "1.2.4"
4
4
  s.author = ["Shugo Maeda", 'Eric Hodel']
5
5
  s.email = ["shugo@ruby-lang.org", 'drbrain@segment7.net']
6
6
  s.homepage = "https://github.com/ruby/curses"
data/lib/2.2/curses.so CHANGED
Binary file
data/lib/2.3/curses.so CHANGED
Binary file
data/lib/2.4/curses.so CHANGED
Binary file
data/lib/curses.rb CHANGED
@@ -1,4 +1,5 @@
1
- pdcurses_path = File.expand_path("../vendor/#{RUBY_PLATFORM}/PDCurses", __dir__)
1
+ platform = RUBY_PLATFORM.sub(/i[3-7]86/, "x86")
2
+ pdcurses_path = File.expand_path("../vendor/#{platform}/PDCurses", __dir__)
2
3
  pdcurses_bundled = File.directory?(pdcurses_path)
3
4
  if pdcurses_bundled
4
5
  path = ENV["PATH"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curses
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Shugo Maeda
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-02 00:00:00.000000000 Z
12
+ date: 2017-09-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler