curses 1.2.3 → 1.2.4

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: de07d676231ff6e7b3158e6269c0550c8b1012bb
4
- data.tar.gz: 98e8b67646b33baade9acebff80a57647cd84882
3
+ metadata.gz: 752aede822d94ce057584a85299d487d950d6879
4
+ data.tar.gz: bd0a91aafa38b4b9c84bcc0e2d39973d46f4d7b2
5
5
  SHA512:
6
- metadata.gz: 9c13dbfd0115ed11c7d56e570fe7d7a6c57745b079d1cdfc1372d4384663c013261b1d94ae66484c3c74faebba0f657a2486dc855bacdd58b5d4ac94d975639f
7
- data.tar.gz: 01d4901128959d6d5187721e3661a5512cc236f952fcabb6e6f4721fefa1b0f4dbdee77bd835b76110046b70b404c3b8147d7564f967b44491e8745b32e65e7c
6
+ metadata.gz: ba77b3fb94a501d9eeb8d10ddc83310aa1105aec4265686c4a515b5f7564507b8372c81bab68a8596472b0aba2ca6dcde01a8be278a839febe5f15ad4162fc25
7
+ data.tar.gz: 771c80d69e9c10b2e3505cd9cec68daee19a46581254062dc739e4a61ba7b05b97a38f276682b284a79a279383fa2104410efbf0ac719e2d4b274a9be515986b
data/History.md CHANGED
@@ -1,3 +1,17 @@
1
+ ### 1.2.4 / 2017-09-13
2
+
3
+ New features:
4
+
5
+ * Update PDCurses.
6
+
7
+ Bug fixes:
8
+
9
+ * Fix the path of pdcurses.dll for i386-mingw. (Issue #36)
10
+
11
+ Documentation:
12
+
13
+ * Include reference to ncurses dependency. Pull request #34 by qume.
14
+
1
15
  ### 1.2.3 / 2017-07-03
2
16
 
3
17
  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
@@ -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"
@@ -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: ruby
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