1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove e2mmap from sync_default_gems.rb

This commit is contained in:
Hiroshi SHIBATA 2019-11-29 21:31:55 +09:00 committed by SHIBATA Hiroshi
parent c50d30f659
commit 0b1b2f2442
Notes: git 2019-11-30 08:01:05 +09:00

View file

@ -30,7 +30,6 @@
# * https://github.com/ruby/irb
# * https://github.com/ruby/tracer
# * https://github.com/ruby/forwardable
# * https://github.com/ruby/e2mmap
# * https://github.com/ruby/mutex_m
# * https://github.com/ruby/racc
# * https://github.com/ruby/singleton
@ -85,7 +84,6 @@ $repositories = {
irb: 'ruby/irb',
tracer: 'ruby/tracer',
forwardable: "ruby/forwardable",
e2mmap: "ruby/e2mmap",
mutex_m: "ruby/mutex_m",
racc: "ruby/racc",
singleton: "ruby/singleton",
@ -221,10 +219,6 @@ def sync_default_gems(gem)
cp_r("#{upstream}/ext/fcntl", "ext")
cp_r("#{upstream}/fcntl.gemspec", "ext/fcntl")
`git checkout ext/fcntl/depend`
when "e2mmap"
rm_rf(%w[lib/e2mmap*])
cp_r(Dir.glob("#{upstream}/lib/*"), "lib")
cp_r("#{upstream}/e2mmap.gemspec", "lib/e2mmap")
when "strscan"
rm_rf(%w[ext/strscan test/strscan])
cp_r("#{upstream}/ext/strscan", "ext")