X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/f40a013dec1551bfbad0caedbea189677ae74fc3..146b161112b68c99ecd607ec5360accc1f4db3cd:/Rakefile diff --git a/Rakefile b/Rakefile index 04cb216a9..f88237bd7 100644 --- a/Rakefile +++ b/Rakefile @@ -2,65 +2,111 @@ 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 "generate the bundle file." -task :bundle do - sh 'emacs --batch -l yasnippet.el --eval "(yas/compile-bundle)"' - sh "tar czf pkg/yasnippet-bundle-#{$version}.el.tgz yasnippet-bundle.el" +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 - FileUtils.rm_r Dir[release_dir + "/**/.svn"] - FileUtils.cd 'pkg' - sh "tar cjf yasnippet-#{$version}.tar.bz2 yasnippet-#{$version}" - FileUtils.cd ".." + File.open(File.join(release_dir,'yasnippet-pkg.el'), 'w') do |file| + file.puts < [:bundle, :package, 'doc:archive'] do - sh "googlecode_upload.py -s \"YASnippet Release #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Package,OpSys-All\"" + - " pkg/yasnippet-#{$version}.tar.bz2" - sh "googlecode_upload.py -s \"YASnippet Bundle #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Package,OpSys-All\"" + - " pkg/yasnippet-bundle-#{$version}.el.tgz" - sh "googlecode_upload.py -s \"YASnippet Document #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Docs,OpSys-All\"" + - " pkg/yasnippet-doc-#{$version}.tar.bz2" - FileUtils.cp "yasnippet-bundle.el", "pkg/yasnippet-bundle-#{$version}.el" - sh "echo for ELPA | mutt -a pkg/yasnippet-bundle-#{$version}.el -s " + - "'YASnippet bundle v#{$version}' elpa@tromey.com" +task :release => [: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 :upload do - sh "rsync -avz --exclude '.svn' doc " + - "pluskid.lifegoo.com:~/public_html/upload/project/yasnippet/" - end - task :archive do release_dir = "pkg/yasnippet-#{$version}" FileUtils.mkdir_p(release_dir) sh "tar cjf pkg/yasnippet-doc-#{$version}.tar.bz2 " + "--exclude=doc/.svn --exclude=doc/images/.svn doc/*.html doc/images" end + + task :upload do + if File.exists? 'doc/gh-pages' + Dir.chdir 'doc/gh-pages' do + sh "git checkout gh-pages" + end + Dir.glob("doc/*.{html,css}").each do |file| + FileUtils.cp file, 'doc/gh-pages' + end + 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.\n\n" + + "From #{curRev.chomp()}'" + sh "git push" + end + end + end end +desc "Compile yasnippet.el into yasnippet.elc" + +rule '.elc' => '.el' do |t| + sh "#{$EMACS} --batch -L . --eval \"(setq byte-compile-error-on-warn t)\"" + + " -f batch-byte-compile #{t.source}" +end +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