mwrap.git  about / heads / tags
LD_PRELOAD malloc wrapper + line stats for Ruby
blob efb62b1c26f54ab5668f90a7fdc61f98ce6e6b7e 1513 bytes (raw)
$ git show HEAD:Rakefile	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
# Copyright (C) mwrap hackers <mwrap-public@80x24.org>
# License: GPL-2.0+ <https://www.gnu.org/licenses/gpl-2.0.txt>
require 'rake/testtask'
begin
  require 'rake/extensiontask'
  Rake::ExtensionTask.new('mwrap')
rescue LoadError
  warn 'rake-compiler not available, cross compiling disabled'
end

Rake::TestTask.new('test-ruby')
task 'test-ruby' => :compile
task :default => :compile

task 'test-httpd': 'lib/mwrap.so' do
  require 'rbconfig'
  ENV['RUBY'] = RbConfig.ruby
  sh "#{ENV['PROVE'] || 'prove'} -v"
end

task test: %w(test-ruby test-httpd)

c_files = File.readlines('MANIFEST').grep(%r{ext/.*\.[ch]$}).map!(&:chomp!)
task 'compile:mwrap' => c_files

olddoc = ENV['OLDDOC'] || 'olddoc'
rdoc = ENV['RDOC'] || 'rdoc'
task :rsync_docs do
  require 'fileutils'
  top = %w(README COPYING LATEST NEWS NEWS.atom.xml)
  system("git", "set-file-times")
  dest = ENV["RSYNC_DEST"] || "80x24.org:/srv/80x24/mwrap/"
  FileUtils.rm_rf('doc')
  sh "#{olddoc} prepare"
  sh "#{rdoc} -f dark216" # dark216 requires olddoc 1.7+
  File.unlink('doc/created.rid') rescue nil
  File.unlink('doc/index.html') rescue nil
  FileUtils.cp(top, 'doc')
  sh "#{olddoc} merge"

  Dir['doc/**/*'].each do |txt|
    st = File.stat(txt)
    if st.file?
      gz = "#{txt}.gz"
      tmp = "#{gz}.#$$"
      sh("gzip --rsyncable -9 <#{txt} >#{tmp}")
      File.utime(st.atime, st.mtime, tmp) # make nginx gzip_static happy
      File.rename(tmp, gz)
    end
  end
  sh("rsync --chmod=Fugo=r #{ENV['RSYNC_OPT']} -av doc/ #{dest}/")
end

git clone https://80x24.org/mwrap.git