public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/alexandria/files: alexandria-rakefile.patch alexandria-0.6.2-rake-0.8.1.patch
@ 2008-03-09 10:23 Hans de Graaff (graaff)
  0 siblings, 0 replies; only message in thread
From: Hans de Graaff (graaff) @ 2008-03-09 10:23 UTC (permalink / raw
  To: gentoo-commits

graaff      08/03/09 10:23:13

  Added:                alexandria-rakefile.patch
                        alexandria-0.6.2-rake-0.8.1.patch
  Log:
  Version bump
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.1                  app-misc/alexandria/files/alexandria-rakefile.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/files/alexandria-rakefile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/files/alexandria-rakefile.patch?rev=1.1&content-type=text/plain

Index: alexandria-rakefile.patch
===================================================================
# Remove the post install tasks because it's not properly installed when
# they run and portage does exactly the same things later anyway.

--- Rakefile.orig	2008-01-23 22:25:02.000000000 +0000
+++ Rakefile	2008-01-23 22:25:50.000000000 +0000
@@ -220,7 +220,5 @@
   system("gtk-update-icon-cache -f -t /usr/share/icons/hicolor") # HACK
 end
 
-task :post_install => [:scrollkeeper, :gconf, :update_icon_cache]
-
 
 #vim: filetype=ruby syntax=Ruby



1.1                  app-misc/alexandria/files/alexandria-0.6.2-rake-0.8.1.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/files/alexandria-0.6.2-rake-0.8.1.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/files/alexandria-0.6.2-rake-0.8.1.patch?rev=1.1&content-type=text/plain

Index: alexandria-0.6.2-rake-0.8.1.patch
===================================================================
# Merge changes from upstream to fix compilation with rake 0.8.1

--- tasks.rb.orig	2007-12-19 20:49:17.000000000 +0000
+++ tasks.rb	2008-02-07 11:33:54.000000000 +0000
@@ -38,6 +38,7 @@
 # these may be distributed as ordinary libraries,
 # or as gems. Try the library versions first.
 retrying_with_rubygems = false
+
 begin
   require 'rake'
   require 'rake/tasklib'
@@ -199,21 +200,35 @@
       desc "Run RSpec specifications"
       Spec::Rake::SpecTask.new("spec") do |t|
         t.spec_files = @files.specs
-        t.spec_opts = ["--format", "specdoc"]
+        t.spec_opts = ["--format", "progress"]
       end
+
       namespace :spec do
+        Spec::Rake::SpecTask.new("autotest") do |t|
+          t.spec_files = @files.specs
+          t.spec_opts = ["--format", "progress"]
+        end
+
         desc "Verify test coverage"
         Spec::Rake::SpecTask.new("rcov") do |t|
-          t.spec_files = FileList['spec/**/*_spec.rb']
+          t.spec_files = @files.specs
           t.spec_opts = ["--format", "specdoc"]
           t.rcov_opts = ["--exclude", "spec"]
           t.rcov = true
         end
+        desc "Generate spec html"
         Spec::Rake::SpecTask.new("html") do |t|
-          t.spec_files = FileList['spec/**/*_spec.rb']
+          t.spec_files = @files.specs
           t.spec_opts = ["--format", "html"]
           t.rcov_opts = ["--exclude", "spec"]
         end
+        desc "Profile slowest examples"
+        Spec::Rake::SpecTask.new("profile") do |t|
+          t.spec_files = @files.specs 
+          t.spec_opts = ["--format", "profile"]
+          t.rcov_opts = ["--exclude", "spec"]
+        end
+
         desc "Run slower acceptance tests (real world data)"
         Spec::Rake::SpecTask.new("acceptance") do |t|
           t.spec_files = FileList['spec/acceptance/*_spec.rb']
@@ -258,8 +273,8 @@
     end
     dest = source_path ? dest_basedir + source_path : dest_basedir
     FileUtils.mkdir_p dest unless test ?d, dest
-    puts "Installing #{file} to #{dest}"
-    File.install(file.to_s, dest.to_s, mode)
+    puts "Installing #{file} to #{dest} with #{mode}"
+    FileUtils.install(file.to_s, dest.to_s, :mode => mode)
   end
 
   def define_install_tasks
@@ -318,9 +333,9 @@
 
     def base_installation
       [
-       ['lib',  build.files.libs,     rubylib,  0644],
-       ['data', build.files.data,     sharedir, 0644],
-       ['bin',  build.files.programs, bindir,   0755]
+        ['lib',  build.files.libs,     rubylib,  0644],
+        ['data', build.files.data,     sharedir, 0644],
+        ['bin',  build.files.programs, bindir,   0755]
       ]
     end
 
@@ -329,7 +344,7 @@
       icon_group = []
       build.files.icons.each do |filename|
         filename =~ /.*\/(.+)\/.+/
-        size = $1
+          size = $1
         dest = File.join(icon_dir, size, 'apps')
         icon_group << [File.dirname(filename), filename, dest, 0644]
       end
@@ -357,8 +372,8 @@
         end
       end
       [
-       ['doc', docdir_files, doc_dir, 0644],
-       ['.', curdir_files, doc_dir, 0644]
+        ['doc', docdir_files, doc_dir, 0644],
+        ['.', curdir_files, doc_dir, 0644]
       ]
     end
 
@@ -388,7 +403,7 @@
   def template_copy(src, dest, data)
     src_text = File.open(src).read()
     dest_text = src_text.gsub(/#(\w+)#/) { |match| data[$1.intern] }
-    FileUtils.mkdir_p(File.dirname(dest))
+      FileUtils.mkdir_p(File.dirname(dest))
     File.open(dest, 'w') { |f| f.write(dest_text) }
   end
 
@@ -416,16 +431,16 @@
         # HACK gconf
         gconf_dir = File.join(@debinstall.staging_dir, "/usr/share/gconf/schemas")
         FileUtils.mkdir_p(gconf_dir)
-        File.install("schemas/alexandria.schemas", gconf_dir, 0644)
+        FileUtils.install("schemas/alexandria.schemas", gconf_dir, 0644)
 
         # HACK copyright
         doc_dir = File.join(@debinstall.staging_dir, "/usr/share/doc/#{@name}")
         FileUtils.mkdir_p(doc_dir)
-        File.install("debian/copyright", doc_dir, 0644)
+        FileUtils.install("debian/copyright", doc_dir, 0644)
         FileUtils.rm_f(File.join(doc_dir, 'COPYING'))
         FileUtils.rm_f(File.join(doc_dir, 'INSTALL'))
-        File.install("debian/README.Debian", doc_dir, 0644)
-        File.install("debian/changelog", doc_dir, 0644)
+        FileUtils.install("debian/README.Debian", doc_dir, 0644)
+        FileUtils.install("debian/changelog", doc_dir, 0644)
 
         autogen_files = ["lib/alexandria/config.rb",
                          "lib/alexandria/version.rb",
@@ -549,7 +564,7 @@
     end
     def locale_for(omf_file)
       omf_file =~ /.*-(.+)\.omf/
-      $1
+        $1
     end
     def in_files
       FileList["#{@omf_dir}/*.omf.in"]
@@ -566,9 +581,9 @@
   def define_gettext_tasks
     # extract translations from PO files into other files
     file files.desktop => ["#{files.desktop}.in",
-                           *@gettext.po_files] do |f|
-      system("intltool-merge -d #{@gettext.po_dir} #{f.name}.in #{f.name}")
-    end
+      *@gettext.po_files] do |f|
+      raise "Need to install intltool" unless system("intltool-merge -d #{@gettext.po_dir} #{f.name}.in #{f.name}")
+      end
 
     # create MO files
     rule( /\.mo$/ => [ lambda { |dest| @gettext.source_file(dest) }]) do |t|



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-09 10:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-09 10:23 [gentoo-commits] gentoo-x86 commit in app-misc/alexandria/files: alexandria-rakefile.patch alexandria-0.6.2-rake-0.8.1.patch Hans de Graaff (graaff)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox