X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/1688fc34428891aa1986c80a7f7cb02684a68c31..146b161112b68c99ecd607ec5360accc1f4db3cd:/Rakefile diff --git a/Rakefile b/Rakefile index d065b3f2c..f88237bd7 100644 --- a/Rakefile +++ b/Rakefile @@ -2,41 +2,41 @@ require 'fileutils' +$EMACS = ENV["EMACS"] +if not $EMACS or $EMACS == 't' + $EMACS = "emacs" +end + def find_version - File.read("yasnippet.el") =~ /;; Package-version: *([0-9.]+[a-z]?) *$/ + File.read("yasnippet.el", :encoding => "UTF-8") =~ /;; Package-version: *([0-9.]+?) *$/ $version = $1 end find_version FileUtils.mkdir_p('pkg') - -desc "convert some textmate bundles to yasnippets" -task :convert_bundles do - Dir.glob "extras/bundles/*-tmbundle" do |bundle_dir| - puts "Converting from #{bundle_dir}" - mode_prefix = File.basename(bundle_dir).match(/[^-]*/)[0] - raise "Couldn't guess mode name for #{bundle_dir}" unless mode_prefix - output = "./extras/imported/#{mode_prefix}-mode" - FileUtils.mkdir_p output - sh "./extras/textmate_import.rb -d #{bundle_dir} -o #{output} -q" - end +desc "run tests in batch mode" +task :tests do + sh "#{$EMACS} -Q -L . -l yasnippet-tests.el" + + " --batch -f ert-run-tests-batch-and-exit" end desc "create a release package" task :package do release_dir = "pkg/yasnippet-#{$version}" FileUtils.mkdir_p(release_dir) - files = ['snippets', 'yasnippet.el', 'dropdown-list.el'] + files = ['snippets', 'yasnippet.el'] FileUtils.cp_r files, release_dir File.open(File.join(release_dir,'yasnippet-pkg.el'), 'w') do |file| file.puts < [:package, 'doc:archive'] do raise "Not implemented for github yet!" end -rule '.html' => '.rst' do |t| - sh "doc/compile-doc.py #{t.source} > #{t.name}" -end desc "Generate document" -task :doc => FileList['doc/*.rst'].ext('html') +task :doc, [:htmlize] do |t, args| + load_path = '-L .' + if args[:htmlize] + load_path += " -L #{args[:htmlize]}" + end + sh "#{$EMACS} -Q #{load_path} --batch -l doc/yas-doc-helper.el" + + " -f yas--generate-html-batch" +end namespace :doc do task :archive do @@ -69,8 +73,22 @@ namespace :doc do Dir.glob("doc/images/*").each do |file| FileUtils.cp file, 'doc/gh-pages/images' end + Dir.glob("doc/stylesheets/*.css").each do |file| + FileUtils.cp file, 'doc/gh-pages/stylesheets' + end + curRev = `git rev-parse --verify HEAD`.chomp() + expRev = IO.read('doc/html-revision').chomp() + if curRev != expRev + raise ("The HTML rev: #{expRev},\n" + + "current rev: #{curRev}!\n") + end + if !system "git diff-index --quiet HEAD" + system "git status --untracked-files=no" + raise "You have uncommitted changes!" + end Dir.chdir 'doc/gh-pages' do - sh "git commit -a -m 'Automatic documentation update.'" + sh "git commit -a -m 'Automatic documentation update.\n\n" + + "From #{curRev.chomp()}'" sh "git push" end end @@ -80,8 +98,15 @@ end desc "Compile yasnippet.el into yasnippet.elc" rule '.elc' => '.el' do |t| - sh "emacs --batch -L . --eval \"(byte-compile-file \\\"#{t.source}\\\")\"" + sh "#{$EMACS} --batch -L . --eval \"(setq byte-compile-error-on-warn t)\"" + + " -f batch-byte-compile #{t.source}" end -task :compile => FileList["yasnippet.el", "dropdown-list.el"].ext('elc') +task :compile => FileList["yasnippet.el"].ext('elc') task :default => :doc + +desc "use yasmate to convert textmate bundles" +task :convert_bundles do + cd "yasmate" + sh "rake convert_bundles" + end