X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=Rakefile;h=67cd0d21df9ca2e6b1ed14e6a873cc1fdabf742b;hb=refs%2Fheads%2Fnext;hp=69f0b687bdbc60febe3cf3f55bb3b8e9a122e362;hpb=a6ba8231b67f424e302d9d70d9b9ed69f6678ee6;p=sup diff --git a/Rakefile b/Rakefile index 69f0b68..67cd0d2 100644 --- a/Rakefile +++ b/Rakefile @@ -1,34 +1,8 @@ -require 'rubygems' -require 'hoe' -$:.unshift 'lib' # force loading from ./lib/ if it exists -require 'sup' - -class Hoe - def extra_deps; @extra_deps.reject { |x| Array(x).first == "hoe" } end -end # thanks to "Mike H" - -## allow people who use development versions by running "rake gem" -## and installing the resulting gem it to be able to do this. (gem -## versions must be in dotted-digit notation only). -version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION - -Hoe.new('sup', version) do |p| - p.rubyforge_name = 'sup' - p.author = "William Morgan" - p.summary = 'A console-based email client with the best features of GMail, mutt, and emacs. Features full text search, labels, tagged operations, multiple buffers, recent contacts, and more.' - p.description = p.paragraphs_of('README.txt', 2..9).join("\n\n") - p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[2].gsub(/^\s+/, "") - p.changes = p.paragraphs_of('History.txt', 0..0).join("\n\n") - p.email = "wmorgan-sup@masanjin.net" - p.extra_deps = [['ferret', '>= 0.10.13'], ['ncurses', '>= 0.9.1'], ['rmail', '>= 0.17'], 'highline', 'net-ssh', ['trollop', '>= 1.7'], 'lockfile', 'mime-types'] -end - -rule 'ss?.png' => 'ss?-small.png' do |t| -end - ## is there really no way to make a rule for this? WWW_FILES = %w(www/index.html README.txt doc/Philosophy.txt doc/FAQ.txt doc/NewUserGuide.txt www/main.css) +rule 'ss?.png' => 'ss?-small.png' do |t| +end SCREENSHOTS = FileList["www/ss?.png"] SCREENSHOTS_SMALL = [] SCREENSHOTS.each do |fn| @@ -41,12 +15,52 @@ SCREENSHOTS.each do |fn| end task :upload_webpage => WWW_FILES do |t| - sh "scp -C #{t.prerequisites * ' '} wmorgan@rubyforge.org:/var/www/gforge-projects/sup/" + sh "rsync -essh -cavz #{t.prerequisites * ' '} wmorgan@rubyforge.org:/var/www/gforge-projects/sup/" end task :upload_webpage_images => (SCREENSHOTS + SCREENSHOTS_SMALL) do |t| - sh "scp -C #{t.prerequisites * ' '} wmorgan@rubyforge.org:/var/www/gforge-projects/sup/" + sh "rsync -essh -cavz #{t.prerequisites * ' '} wmorgan@rubyforge.org:/var/www/gforge-projects/sup/" end # vim: syntax=ruby # -*- ruby -*- +task :upload_report do |t| + sh "ditz html ditz" + sh "rsync -essh -cavz ditz wmorgan@rubyforge.org:/var/www/gforge-projects/sup/" +end + +$:.push "lib" +require 'rubygems' +require "sup-files" +require "sup-version" +require 'rake/gempackagetask.rb' + +spec = Gem::Specification.new do |s| + s.name = %q{sup} + s.version = SUP_VERSION + s.date = Time.now.to_s + s.authors = ["William Morgan"] + s.email = %q{wmorgan-sup@masanjin.net} + s.summary = %q{A console-based email client with the best features of GMail, mutt, and emacs. Features full text search, labels, tagged operations, multiple buffers, recent contacts, and more.} + s.homepage = %q{http://sup.rubyforge.org/} + s.description = %q{Sup is a console-based email client for people with a lot of email. It supports tagging, very fast full-text search, automatic contact-list management, and more. If you're the type of person who treats email as an extension of your long-term memory, Sup is for you. Sup makes it easy to: - Handle massive amounts of email. - Mix email from different sources: mbox files (even across different machines), Maildir directories, IMAP folders, POP accounts, and GMail accounts. - Instantaneously search over your entire email collection. Search over body text, or use a query language to combine search predicates in any way. - Handle multiple accounts. Replying to email sent to a particular account will use the correct SMTP server, signature, and from address. - Add custom code to handle certain types of messages or to handle certain types of text within messages. - Organize email with user-defined labels, automatically track recent contacts, and much more! The goal of Sup is to become the email client of choice for nerds everywhere.} + s.files = SUP_FILES + s.executables = SUP_EXECUTABLES + + s.add_dependency "ferret", ">= 0.11.6" + s.add_dependency "ncurses", ">= 0.9.1" + s.add_dependency "rmail", ">= 0.17" + s.add_dependency "highline" + s.add_dependency "net-ssh" + s.add_dependency "trollop", ">= 1.12" + s.add_dependency "lockfile" + s.add_dependency "mime-types", "~> 1" + s.add_dependency "gettext" + s.add_dependency "fastthread" +end + +Rake::GemPackageTask.new(spec) do |pkg| + pkg.need_tar = true +end + +task :tarball => ["pkg/sup-#{SUP_VERSION}.tgz"]