gnu: ruby: Remove custom 'rake gem' build phase from all gems.
* gnu/packages/ruby.scm (ruby-hoe, ruby-rake-compiler, ruby-net-http-persistent, ruby-minitest, ruby-minitest-sprint, ruby-minitest-bacon): Remove custom 'rake gem' build phase that is now handled automatically by the Ruby build system.
This commit is contained in:
parent
76ae915ec8
commit
4ca5c91f65
@ -162,11 +162,6 @@ (define-public ruby-hoe
|
|||||||
(base32
|
(base32
|
||||||
"0i8dimf8kxcjgqj9x65bbi3l6hc9p9gbfbb1vmrz42764a4jjbz9"))) )
|
"0i8dimf8kxcjgqj9x65bbi3l6hc9p9gbfbb1vmrz42764a4jjbz9"))) )
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases (alist-replace
|
|
||||||
'build
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))
|
|
||||||
%standard-phases)))
|
|
||||||
(synopsis "Ruby project management helper")
|
(synopsis "Ruby project management helper")
|
||||||
(description
|
(description
|
||||||
"Hoe is a rake/rubygems helper for project Rakefiles. It helps manage,
|
"Hoe is a rake/rubygems helper for project Rakefiles. It helps manage,
|
||||||
@ -198,9 +193,7 @@ (define-public ruby-rake-compiler
|
|||||||
(lambda _
|
(lambda _
|
||||||
;; Remove cucumber test file because the
|
;; Remove cucumber test file because the
|
||||||
;; dependencies are not available right now.
|
;; dependencies are not available right now.
|
||||||
(delete-file "tasks/cucumber.rake")))
|
(delete-file "tasks/cucumber.rake"))))))
|
||||||
(replace 'build
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))))))
|
|
||||||
(synopsis "Building and packaging helper for Ruby native extensions")
|
(synopsis "Building and packaging helper for Ruby native extensions")
|
||||||
(description "Rake-compiler proivides a framework for building and
|
(description "Rake-compiler proivides a framework for building and
|
||||||
packaging native C and Java extensions in Ruby.")
|
packaging native C and Java extensions in Ruby.")
|
||||||
@ -517,10 +510,6 @@ (define-public ruby-net-http-persistent
|
|||||||
(base32
|
(base32
|
||||||
"1q18vji31w8gfr6ajziqkqs8n5lzkw0bl00dm2a8s05zhavzw9j9"))))
|
"1q18vji31w8gfr6ajziqkqs8n5lzkw0bl00dm2a8s05zhavzw9j9"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'build ; no gemspec
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ruby-connection-pool" ,ruby-connection-pool)
|
`(("ruby-connection-pool" ,ruby-connection-pool)
|
||||||
("ruby-hoe" ,ruby-hoe)))
|
("ruby-hoe" ,ruby-hoe)))
|
||||||
@ -546,10 +535,6 @@ (define-public ruby-minitest
|
|||||||
(base32
|
(base32
|
||||||
"09xjiahk7q8hid1i39ahrmghaslpj9n36zna72i3ah7kf1bh2l01"))))
|
"09xjiahk7q8hid1i39ahrmghaslpj9n36zna72i3ah7kf1bh2l01"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'build ; no gemspec
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ruby-hoe" ,ruby-hoe)))
|
`(("ruby-hoe" ,ruby-hoe)))
|
||||||
(synopsis "Small test suite library for Ruby")
|
(synopsis "Small test suite library for Ruby")
|
||||||
@ -572,10 +557,6 @@ (define-public ruby-minitest-sprint
|
|||||||
(base32
|
(base32
|
||||||
"0rbmxz94lqg5vjz60p8v2bzq8adwvmx501amvk0l124sfwmw94ms"))))
|
"0rbmxz94lqg5vjz60p8v2bzq8adwvmx501amvk0l124sfwmw94ms"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'build ; no gemspec
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ruby-hoe" ,ruby-hoe)
|
`(("ruby-hoe" ,ruby-hoe)
|
||||||
("ruby-minitest" ,ruby-minitest)))
|
("ruby-minitest" ,ruby-minitest)))
|
||||||
@ -599,10 +580,6 @@ (define-public ruby-minitest-bacon
|
|||||||
(base32
|
(base32
|
||||||
"19r9fm41i0mm1xncqls8frbj1i9nr3sq1cx2mh878r6kdl02d70h"))))
|
"19r9fm41i0mm1xncqls8frbj1i9nr3sq1cx2mh878r6kdl02d70h"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'build ; no gemspec
|
|
||||||
(lambda _ (zero? (system* "rake" "gem")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ruby-hoe" ,ruby-hoe)))
|
`(("ruby-hoe" ,ruby-hoe)))
|
||||||
(inputs
|
(inputs
|
||||||
|
Loading…
Reference in New Issue
Block a user