You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by lu...@apache.org on 2011/04/09 02:02:21 UTC

svn commit: r1090493 - in /incubator/deltacloud/trunk: ./ client/ server/ server/support/fedora/

Author: lutter
Date: Sat Apr  9 00:02:21 2011
New Revision: 1090493

URL: http://svn.apache.org/viewvc?rev=1090493&view=rev
Log:
Fixes from review of rc1 for version 0.3.0

  - move NOTICE files to server/ and client/ dir and include in artifacts
  - generate md5 and sha1 hashes for each artifact individually
  - rename COPYING to LICENSE in server/ and client/ dir
  - include DISCLAIMER in server/ and client/
  - adjust gem and rpm spec files

Added:
    incubator/deltacloud/trunk/client/DISCLAIMER
    incubator/deltacloud/trunk/client/LICENSE
      - copied, changed from r1090492, incubator/deltacloud/trunk/client/COPYING
    incubator/deltacloud/trunk/client/NOTICE
      - copied, changed from r1090492, incubator/deltacloud/trunk/NOTICE
    incubator/deltacloud/trunk/server/DISCLAIMER
    incubator/deltacloud/trunk/server/LICENSE
      - copied, changed from r1090492, incubator/deltacloud/trunk/server/COPYING
    incubator/deltacloud/trunk/server/NOTICE
      - copied, changed from r1090492, incubator/deltacloud/trunk/NOTICE
Removed:
    incubator/deltacloud/trunk/NOTICE
    incubator/deltacloud/trunk/client/COPYING
    incubator/deltacloud/trunk/server/COPYING
Modified:
    incubator/deltacloud/trunk/Rakefile
    incubator/deltacloud/trunk/client/deltacloud-client.gemspec
    incubator/deltacloud/trunk/server/Rakefile
    incubator/deltacloud/trunk/server/deltacloud-core.gemspec
    incubator/deltacloud/trunk/server/support/fedora/deltacloud-core.spec
    incubator/deltacloud/trunk/server/support/fedora/rubygem-deltacloud-core.spec

Modified: incubator/deltacloud/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/Rakefile?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/Rakefile (original)
+++ incubator/deltacloud/trunk/Rakefile Sat Apr  9 00:02:21 2011
@@ -42,16 +42,19 @@ task :release => [ :package ] do
            "server/pkg/deltacloud-core-#{versions[:server]}.gem" ]
   FileUtils.mkdir_p("release")
   files.each do |src|
-    dst = File::join("release", File::basename(src))
+    base = File::basename(src)
+    dst = File::join("release", base)
     FileUtils.cp(src, dst)
     cmd = <<EOS
 gpg -q --batch --verify #{dst}.asc > /dev/null 2>&1 || \
   gpg --output #{dst}.asc --armour --detach-sig #{dst}
 EOS
     system(cmd)
+    Dir::chdir("release") do
+      system("md5sum #{base} > #{base}.md5")
+      system("sha1sum #{base} > #{base}.sha1")
+    end
   end
-  system("md5sum #{files.join(" ")} > release/MD5SUM")
-  system("sha1sum #{files.join(" ")} > release/SHA1SUM")
 end
 
 desc "Remove the release directory"

Added: incubator/deltacloud/trunk/client/DISCLAIMER
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/client/DISCLAIMER?rev=1090493&view=auto
==============================================================================
--- incubator/deltacloud/trunk/client/DISCLAIMER (added)
+++ incubator/deltacloud/trunk/client/DISCLAIMER Sat Apr  9 00:02:21 2011
@@ -0,0 +1,8 @@
+Apache Deltacloud is an effort undergoing incubation at The Apache Software
+Foundation (ASF), sponsored by the Incubator PMC. Incubation is required of
+all newly accepted projects until a further review indicates that the
+infrastructure, communications, and decision making process have stabilized
+in a manner consistent with other successful ASF projects.  While
+incubation status is not necessarily a reflection of the completeness or
+stability of the code, it does indicate that the project has yet to be
+fully endorsed by the ASF.

Copied: incubator/deltacloud/trunk/client/LICENSE (from r1090492, incubator/deltacloud/trunk/client/COPYING)
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/client/LICENSE?p2=incubator/deltacloud/trunk/client/LICENSE&p1=incubator/deltacloud/trunk/client/COPYING&r1=1090492&r2=1090493&rev=1090493&view=diff
==============================================================================
    (empty)

Copied: incubator/deltacloud/trunk/client/NOTICE (from r1090492, incubator/deltacloud/trunk/NOTICE)
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/client/NOTICE?p2=incubator/deltacloud/trunk/client/NOTICE&p1=incubator/deltacloud/trunk/NOTICE&r1=1090492&r2=1090493&rev=1090493&view=diff
==============================================================================
    (empty)

Modified: incubator/deltacloud/trunk/client/deltacloud-client.gemspec
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/client/deltacloud-client.gemspec?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/client/deltacloud-client.gemspec (original)
+++ incubator/deltacloud/trunk/client/deltacloud-client.gemspec Sat Apr  9 00:02:21 2011
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
   s.executables = 'deltacloudc'
   s.default_executable = 'deltacloudc'
   s.test_files= Dir.glob("specs/**/**")
-  s.extra_rdoc_files = Dir["COPYING"]
+  s.extra_rdoc_files = Dir["LICENSE", "NOTICE", "DISCLAIMER"]
 
   s.add_dependency('rest-client', '>= 1.6.1')
   s.add_dependency('nokogiri', '>= 1.4.3')

Added: incubator/deltacloud/trunk/server/DISCLAIMER
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/DISCLAIMER?rev=1090493&view=auto
==============================================================================
--- incubator/deltacloud/trunk/server/DISCLAIMER (added)
+++ incubator/deltacloud/trunk/server/DISCLAIMER Sat Apr  9 00:02:21 2011
@@ -0,0 +1,8 @@
+Apache Deltacloud is an effort undergoing incubation at The Apache Software
+Foundation (ASF), sponsored by the Incubator PMC. Incubation is required of
+all newly accepted projects until a further review indicates that the
+infrastructure, communications, and decision making process have stabilized
+in a manner consistent with other successful ASF projects.  While
+incubation status is not necessarily a reflection of the completeness or
+stability of the code, it does indicate that the project has yet to be
+fully endorsed by the ASF.

Copied: incubator/deltacloud/trunk/server/LICENSE (from r1090492, incubator/deltacloud/trunk/server/COPYING)
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/LICENSE?p2=incubator/deltacloud/trunk/server/LICENSE&p1=incubator/deltacloud/trunk/server/COPYING&r1=1090492&r2=1090493&rev=1090493&view=diff
==============================================================================
    (empty)

Copied: incubator/deltacloud/trunk/server/NOTICE (from r1090492, incubator/deltacloud/trunk/NOTICE)
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/NOTICE?p2=incubator/deltacloud/trunk/server/NOTICE&p1=incubator/deltacloud/trunk/NOTICE&r1=1090492&r2=1090493&rev=1090493&view=diff
==============================================================================
    (empty)

Modified: incubator/deltacloud/trunk/server/Rakefile
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/Rakefile?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/Rakefile (original)
+++ incubator/deltacloud/trunk/server/Rakefile Sat Apr  9 00:02:21 2011
@@ -83,7 +83,9 @@ task :install, [:install_dir, :bin_dir] 
     Dir["public/**/**"],
     Dir["views/**/**"],
     "config.ru",
-    "COPYING",
+    "LICENSE",
+    "DISCLAIMER",
+    "NOTICE",
     "README.md",
     "*.rb"
   ]

Modified: incubator/deltacloud/trunk/server/deltacloud-core.gemspec
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/deltacloud-core.gemspec?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/deltacloud-core.gemspec (original)
+++ incubator/deltacloud/trunk/server/deltacloud-core.gemspec Sat Apr  9 00:02:21 2011
@@ -58,7 +58,7 @@ Gem::Specification.new do |s|
   s.bindir = 'bin'
   s.executables = 'deltacloudd'
   s.test_files= Dir.glob("tests/*_test.rb")
-  s.extra_rdoc_files = Dir["COPYING"]
+  s.extra_rdoc_files = Dir["LICENSE", "DISCLAIMER", "NOTICE"]
   s.required_ruby_version = '>= 1.8.1'
 
   s.add_dependency('rake', '>= 0.8.7')

Modified: incubator/deltacloud/trunk/server/support/fedora/deltacloud-core.spec
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/support/fedora/deltacloud-core.spec?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/support/fedora/deltacloud-core.spec (original)
+++ incubator/deltacloud/trunk/server/support/fedora/deltacloud-core.spec Sat Apr  9 00:02:21 2011
@@ -104,7 +104,9 @@ fi
 %{_bindir}/deltacloudd
 %dir %{geminstdir}/
 %{geminstdir}/bin
-%{geminstdir}/COPYING
+%{geminstdir}/LICENSE
+%{geminstdir}/DISCLAIMER
+%{geminstdir}/NOTICE
 %{geminstdir}/config.ru
 %{geminstdir}/*.rb
 %{geminstdir}/Rakefile
@@ -127,6 +129,9 @@ fi
 %{geminstdir}/deltacloud-core.gemspec
 
 %changelog
+* Fri Apr  8 2011 David Lutterkort <lu...@redhat.com> - 0.3.0-1
+- Renamed COPYING to LICENSE, include NOTICE and DISCLAIMER
+
 * Fri Feb 04 2011 Michal Fojtik <mf...@redhat.com> - 0.2.0-2
 - Package renamed to deltacloud-core, since it's not library and it's providing
   full REST API server with init script.

Modified: incubator/deltacloud/trunk/server/support/fedora/rubygem-deltacloud-core.spec
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/support/fedora/rubygem-deltacloud-core.spec?rev=1090493&r1=1090492&r2=1090493&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/support/fedora/rubygem-deltacloud-core.spec (original)
+++ incubator/deltacloud/trunk/server/support/fedora/rubygem-deltacloud-core.spec Sat Apr  9 00:02:21 2011
@@ -95,7 +95,9 @@ fi
 %{_bindir}/deltacloudd
 %dir %{geminstdir}/
 %{geminstdir}/bin
-%{geminstdir}/COPYING
+%{geminstdir}/LICENSE
+%{geminstdir}/NOTICE
+%{geminstdir}/DISCLAIMER
 %{geminstdir}/config.ru
 %{geminstdir}/*.rb
 %{geminstdir}/Rakefile
@@ -118,5 +120,8 @@ fi
 %{geminstdir}/%{gemname}.gemspec
 
 %changelog
+* Fri Apr  8 2011 David Lutterkort <lu...@redhat.com> - 0.3.0-1
+- - Renamed COPYING to LICENSE, include NOTICE and DISCLAIMER
+
 * Mon Jan 31 2011 Michal Fojtik <mf...@redhat.com> - 0.2.0-1
 - Initial package