From: <jh...@us...> - 2009-11-14 18:19:00
|
Revision: 162 http://etch.svn.sourceforge.net/etch/?rev=162&view=rev Author: jheiss Date: 2009-11-14 18:18:52 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Don't make dist dependent on test for now, tests take a long time to run and require a bunch of prerequisites that might not be set up on the box used to build the distribution files. Assume the user has run the test suite themselves. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-11-14 18:15:24 UTC (rev 161) +++ Rakefile 2009-11-14 18:18:52 UTC (rev 162) @@ -14,7 +14,8 @@ end desc 'Build distribution files for new release' -task :dist => :test do +#task :dist => :test_tag do +task :dist do rm_rf(DIST) mkdir(DIST) system("(cd #{TAGDIR} && find client server test etchserver-* README | grep -v '\.svn' | cpio -pdum ../../#{DIST})") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-11-14 22:06:41
|
Revision: 167 http://etch.svn.sourceforge.net/etch/?rev=167&view=rev Author: jheiss Date: 2009-11-14 22:06:33 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Include VERSION file in distribution. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-11-14 21:42:41 UTC (rev 166) +++ Rakefile 2009-11-14 22:06:33 UTC (rev 167) @@ -18,7 +18,7 @@ task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* README | grep -v '\.svn' | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") system("tar czf #{DIST}.tar.gz #{DIST}") rm_rf(DIST) system("openssl md5 #{DIST}.tar.gz > #{DIST}.tar.gz.md5") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-11-17 00:33:06
|
Revision: 171 http://etch.svn.sourceforge.net/etch/?rev=171&view=rev Author: jheiss Date: 2009-11-17 00:32:59 +0000 (Tue, 17 Nov 2009) Log Message: ----------- Switch to a more conventional version number scheme of major.minor.patch rather than major.patch. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-11-16 21:57:29 UTC (rev 170) +++ Rakefile 2009-11-17 00:32:59 UTC (rev 171) @@ -1,4 +1,4 @@ -ETCHVER = '3.13' +ETCHVER = '3.15.0' TAGNAME = "release-#{ETCHVER}" TAGDIR = "tags/#{TAGNAME}" DIST = "etch-#{ETCHVER}" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-12-04 23:54:14
|
Revision: 179 http://etch.svn.sourceforge.net/etch/?rev=179&view=rev Author: jheiss Date: 2009-12-04 23:54:08 +0000 (Fri, 04 Dec 2009) Log Message: ----------- Update per demise of alltests.rb Add LICENSE file to distribution. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-12-03 23:01:12 UTC (rev 178) +++ Rakefile 2009-12-04 23:54:08 UTC (rev 179) @@ -5,20 +5,20 @@ desc 'Run test suite in trunk' task :test_trunk do - system('./trunk/test/alltests.rb') + system('cd trunk/client && rake test') end desc 'Run test suite in current tag' task :test_tag do - system("./#{TAGDIR}/test/alltests.rb") + system("cd #{TAGDIR}/client && rake test") end desc 'Build distribution files for new release' -#task :dist => :test_tag do +#task :dist => [:tag, :test_tag] do task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") system("tar czf #{DIST}.tar.gz #{DIST}") rm_rf(DIST) system("openssl md5 #{DIST}.tar.gz > #{DIST}.tar.gz.md5") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2010-06-28 22:02:51
|
Revision: 208 http://etch.svn.sourceforge.net/etch/?rev=208&view=rev Author: jheiss Date: 2010-06-28 22:02:45 +0000 (Mon, 28 Jun 2010) Log Message: ----------- Fix paths in test tasks Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2010-06-25 17:03:50 UTC (rev 207) +++ Rakefile 2010-06-28 22:02:45 UTC (rev 208) @@ -5,12 +5,12 @@ desc 'Run test suite in trunk' task :test_trunk do - system('cd trunk/client && rake test') + system('cd trunk && rake test') end desc 'Run test suite in current tag' task :test_tag do - system("cd #{TAGDIR}/client && rake test") + system("cd #{TAGDIR} && rake test") end desc 'Build distribution files for new release' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2011-01-19 23:15:42
|
Revision: 257 http://etch.svn.sourceforge.net/etch/?rev=257&view=rev Author: jheiss Date: 2011-01-19 23:15:32 +0000 (Wed, 19 Jan 2011) Log Message: ----------- Exclude logs and sqlite database from distributions. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2011-01-18 00:19:56 UTC (rev 256) +++ Rakefile 2011-01-19 23:15:32 UTC (rev 257) @@ -18,7 +18,7 @@ task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | grep -v server/log/*.log | grep -v server/db/*.sqlite3 | cpio -pdum ../../#{DIST})") system("tar czf #{DIST}.tar.gz #{DIST}") rm_rf(DIST) system("openssl md5 #{DIST}.tar.gz > #{DIST}.tar.gz.md5") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2011-04-12 06:59:21
|
Revision: 272 http://etch.svn.sourceforge.net/etch/?rev=272&view=rev Author: jheiss Date: 2011-04-12 06:59:15 +0000 (Tue, 12 Apr 2011) Log Message: ----------- Fix the line that generates the distribution tarball to properly exclude databases and log files. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2011-04-12 06:49:05 UTC (rev 271) +++ Rakefile 2011-04-12 06:59:15 UTC (rev 272) @@ -18,7 +18,7 @@ task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | grep -v server/log/*.log | grep -v server/db/*.sqlite3 | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\\.svn' | grep -v server/log/.*.log | grep -v server/db/.*.sqlite3 | cpio -pdum ../../#{DIST})") system("tar czf #{DIST}.tar.gz #{DIST}") rm_rf(DIST) system("openssl md5 #{DIST}.tar.gz > #{DIST}.tar.gz.md5") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |