rubypython 0.5.2 → 0.5.3

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.
data/.hgtags CHANGED
@@ -6,3 +6,4 @@ fe1fe7136461a92e4012cd7c8f23c8c446d4fbc1 v0.2.11
6
6
  746fffb7ee3db61278d592c303939daeb6a17a03 v0.3.1
7
7
  e61cfeb18e14c8d0d86e68459bf7957535c4452b v0.3.2
8
8
  0e18cecdd4b7d6261a708a9b60b80a4794efac89 r0.5.0
9
+ cd45222e2319bf006798c50f5c18669ae6160246 r0.5.2
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.5.3 / 2011-10-22
2
+ * Bug Fixes:
3
+ * Improved 64-bit Python detection on Unixes with Linux-like semantics (e.g.,
4
+ .../lib64). Resolves issue #7 on bitbucket.
5
+
1
6
  === 0.5.2 / 2011-10-21
2
7
  * Minor Enhancements:
3
8
  * The traceback for Python exceptions is now returned usefully. [raineszm]
data/Rakefile CHANGED
@@ -5,30 +5,31 @@ require 'hoe'
5
5
 
6
6
  Hoe.plugin :doofus
7
7
  Hoe.plugin :gemspec
8
+ Hoe.plugin :rubyforge
8
9
  Hoe.plugin :git
9
10
  Hoe.plugin :hg
10
11
 
11
- Hoe.spec 'rubypython' do |spec|
12
- spec.rubyforge_name = spec.name
12
+ Hoe.spec 'rubypython' do
13
+ self.rubyforge_name = self.name
13
14
 
14
15
  developer('Steeve Morin', 'swiuzzz+rubypython@gmail.com')
15
16
  developer('Austin Ziegler', 'austin@rubyforge.org')
16
17
  developer('Zach Raines', 'raineszm+rubypython@gmail.com')
17
18
 
18
- spec.remote_rdoc_dir = 'rdoc'
19
- spec.rsync_args << ' --exclude=statsvn/'
19
+ self.remote_rdoc_dir = 'rdoc'
20
+ self.rsync_args << ' --exclude=statsvn/'
20
21
 
21
- spec.history_file = 'History.rdoc'
22
- spec.readme_file = 'README.rdoc'
23
- spec.extra_rdoc_files = FileList["*.rdoc"].to_a
22
+ self.history_file = 'History.rdoc'
23
+ self.readme_file = 'README.rdoc'
24
+ self.extra_rdoc_files = FileList["*.rdoc"].to_a
24
25
 
25
- spec.extra_deps << ['ffi', '~> 1.0.7']
26
- spec.extra_deps << ['blankslate', '>= 2.1.2.3']
26
+ self.extra_deps << ['ffi', '~> 1.0.7']
27
+ self.extra_deps << ['blankslate', '>= 2.1.2.3']
27
28
 
28
- spec.extra_dev_deps << ['rspec', '~> 2.0']
29
- spec.extra_dev_deps << ['tilt', '~> 1.0']
29
+ self.extra_dev_deps << ['rspec', '~> 2.0']
30
+ self.extra_dev_deps << ['tilt', '~> 1.0']
30
31
 
31
- spec.spec_extras[:requirements] = [ "Python, ~> 2.4" ]
32
+ self.spec_extras[:requirements] = [ "Python, ~> 2.4" ]
32
33
  end
33
34
 
34
35
  namespace :website do
data/lib/rubypython.rb CHANGED
@@ -15,7 +15,7 @@
15
15
  # puts cPickle.dumps("RubyPython is awesome!").rubify
16
16
  # RubyPython.stop
17
17
  module RubyPython
18
- VERSION = '0.5.2' #:nodoc:
18
+ VERSION = '0.5.3' #:nodoc:
19
19
 
20
20
  # Do not load the FFI interface by default. Wait until the user asks for
21
21
  # it.
@@ -63,6 +63,10 @@ class RubyPython::PythonExec
63
63
  locations << File.join("/opt/lib", name)
64
64
  locations << File.join("/usr/local/lib", name)
65
65
  locations << File.join("/usr/lib", name)
66
+ locations << File.join("/opt/local/lib64", name)
67
+ locations << File.join("/opt/lib64", name)
68
+ locations << File.join("/usr/local/lib64", name)
69
+ locations << File.join("/usr/lib64", name)
66
70
  end
67
71
  end
68
72
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypython
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 2
10
- version: 0.5.2
9
+ - 3
10
+ version: 0.5.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Steeve Morin
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2011-10-21 00:00:00 Z
20
+ date: 2011-10-23 00:00:00 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: ffi
@@ -53,9 +53,25 @@ dependencies:
53
53
  type: :runtime
54
54
  version_requirements: *id002
55
55
  - !ruby/object:Gem::Dependency
56
- name: rspec
56
+ name: rubyforge
57
57
  prerelease: false
58
58
  requirement: &id003 !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ hash: 7
64
+ segments:
65
+ - 2
66
+ - 0
67
+ - 4
68
+ version: 2.0.4
69
+ type: :development
70
+ version_requirements: *id003
71
+ - !ruby/object:Gem::Dependency
72
+ name: rspec
73
+ prerelease: false
74
+ requirement: &id004 !ruby/object:Gem::Requirement
59
75
  none: false
60
76
  requirements:
61
77
  - - ~>
@@ -66,11 +82,11 @@ dependencies:
66
82
  - 0
67
83
  version: "2.0"
68
84
  type: :development
69
- version_requirements: *id003
85
+ version_requirements: *id004
70
86
  - !ruby/object:Gem::Dependency
71
87
  name: tilt
72
88
  prerelease: false
73
- requirement: &id004 !ruby/object:Gem::Requirement
89
+ requirement: &id005 !ruby/object:Gem::Requirement
74
90
  none: false
75
91
  requirements:
76
92
  - - ~>
@@ -81,11 +97,11 @@ dependencies:
81
97
  - 0
82
98
  version: "1.0"
83
99
  type: :development
84
- version_requirements: *id004
100
+ version_requirements: *id005
85
101
  - !ruby/object:Gem::Dependency
86
102
  name: hoe
87
103
  prerelease: false
88
- requirement: &id005 !ruby/object:Gem::Requirement
104
+ requirement: &id006 !ruby/object:Gem::Requirement
89
105
  none: false
90
106
  requirements:
91
107
  - - ~>
@@ -96,7 +112,7 @@ dependencies:
96
112
  - 12
97
113
  version: "2.12"
98
114
  type: :development
99
- version_requirements: *id005
115
+ version_requirements: *id006
100
116
  description: |-
101
117
  RubyPython is a bridge between the Ruby and Python interpreters. It embeds a
102
118
  running Python interpreter in the Ruby application's process using FFI and