From: <jh...@us...> - 2009-11-14 06:35:57
|
Revision: 155 http://etch.svn.sourceforge.net/etch/?rev=155&view=rev Author: jheiss Date: 2009-11-14 06:35:51 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Config file for MacPorts Added Paths: ----------- trunk/client/Portfile Added: trunk/client/Portfile =================================================================== --- trunk/client/Portfile (rev 0) +++ trunk/client/Portfile 2009-11-14 06:35:51 UTC (rev 155) @@ -0,0 +1,50 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name etch +version 3.11 +categories sysutils +maintainers aput.net:jheiss openmaintainer + +description Etch is a system configuration management tool. + +long_description Etch is a tool for managing the configuration of \ + Unix systems. Etch can manage text or binary \ + files, links and directories. The contents of \ + files can be supplied from static files or \ + generated on the fly by scripts or templates. \ + Permissions and ownership as well as any pre or \ + post commands to run when updating the file are \ + configured in simple XML files. + +homepage http://etch.sourceforge.net/ +platforms darwin + +master_sites sourceforge + +checksums md5 e462d44552ce628b2a2e121eb5825b62 \ + sha1 0cee484b291e89adaa46b1fccc763e14ccb41f90 \ + rmd160 5221532a9bba2b93274a8fd419dc4da6ec965e5e + +depends_build port:rb-rake +depends_run port:ruby \ + port:facter + +PortGroup ruby 1.0 + +# fetch +# extract +# patch +# configure +# build +# destroot + +use_configure no +build {} +test.run no +destroot.cmd rake +destroot.target install\[${destroot}\] +destroot.destdir "" + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-11-14 17:25:41
|
Revision: 158 http://etch.svn.sourceforge.net/etch/?rev=158&view=rev Author: jheiss Date: 2009-11-14 17:25:34 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Need to cd to client directory before running rake install Modified Paths: -------------- trunk/client/Portfile Modified: trunk/client/Portfile =================================================================== --- trunk/client/Portfile 2009-11-14 17:25:15 UTC (rev 157) +++ trunk/client/Portfile 2009-11-14 17:25:34 UTC (rev 158) @@ -44,7 +44,7 @@ use_configure no build {} test.run no -destroot.cmd rake +destroot.cmd cd client && rake destroot.target install\[${destroot}\] destroot.destdir "" 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:18:04
|
Revision: 169 http://etch.svn.sourceforge.net/etch/?rev=169&view=rev Author: jheiss Date: 2009-11-14 22:17:56 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Remove old comments Modified Paths: -------------- trunk/client/Portfile Modified: trunk/client/Portfile =================================================================== --- trunk/client/Portfile 2009-11-14 22:08:11 UTC (rev 168) +++ trunk/client/Portfile 2009-11-14 22:17:56 UTC (rev 169) @@ -34,13 +34,6 @@ PortGroup ruby 1.0 -# fetch -# extract -# patch -# configure -# build -# destroot - use_configure no build {} test.run no This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-12-17 04:36:29
|
Revision: 186 http://etch.svn.sourceforge.net/etch/?rev=186&view=rev Author: jheiss Date: 2009-12-17 04:36:21 +0000 (Thu, 17 Dec 2009) Log Message: ----------- Update with the changes made by the MacPorts folks when they added the port to the official repo. Modified Paths: -------------- trunk/client/Portfile Modified: trunk/client/Portfile =================================================================== --- trunk/client/Portfile 2009-12-10 23:52:19 UTC (rev 185) +++ trunk/client/Portfile 2009-12-17 04:36:21 UTC (rev 186) @@ -2,6 +2,7 @@ # $Id$ PortSystem 1.0 +PortGroup ruby 1.0 name etch version %VER% @@ -29,15 +30,12 @@ rmd160 %RMD160% depends_build port:rb-rake -depends_run port:ruby \ - port:facter +depends_run port:facter -PortGroup ruby 1.0 - +worksrcdir ${worksrcdir}/client use_configure no build {} -test.run no -destroot.cmd cd client && rake +destroot.cmd ${prefix}/bin/rake destroot.target install\[${destroot}\] -destroot.destdir "" +destroot.destdir This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2010-12-22 20:44:08
|
Revision: 240 http://etch.svn.sourceforge.net/etch/?rev=240&view=rev Author: jheiss Date: 2010-12-22 20:44:02 +0000 (Wed, 22 Dec 2010) Log Message: ----------- Add supported_archs field per suggestion of macports folks Modified Paths: -------------- trunk/client/Portfile Modified: trunk/client/Portfile =================================================================== --- trunk/client/Portfile 2010-12-22 20:15:58 UTC (rev 239) +++ trunk/client/Portfile 2010-12-22 20:44:02 UTC (rev 240) @@ -8,6 +8,7 @@ version %VER% categories sysutils maintainers aput.net:jheiss openmaintainer +supported_archs noarch description Etch is a system configuration management tool. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2010-12-22 21:04:24
|
Revision: 242 http://etch.svn.sourceforge.net/etch/?rev=242&view=rev Author: jheiss Date: 2010-12-22 21:04:18 +0000 (Wed, 22 Dec 2010) Log Message: ----------- Move the MacPort's Portfile template to Portfile.template. Save the latest Portfile in svn so that we can easily diff against it, as the MacPorts guys have indicated that they prefer a diff to a whole file. Update the Rakefile to generate the Portfile from Portfile.template. Added Paths: ----------- trunk/client/Portfile Added: trunk/client/Portfile =================================================================== --- trunk/client/Portfile (rev 0) +++ trunk/client/Portfile 2010-12-22 21:04:18 UTC (rev 242) @@ -0,0 +1,41 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup ruby 1.0 + +name etch +version 3.16.0 +categories sysutils +maintainers aput.net:jheiss openmaintainer + +description Etch is a system configuration management tool. + +long_description Etch is a tool for managing the configuration of \ + Unix systems. Etch can manage text or binary \ + files, links and directories. The contents of \ + files can be supplied from static files or \ + generated on the fly by scripts or templates. \ + Permissions and ownership as well as any pre or \ + post commands to run when updating the file are \ + configured in simple XML files. + +homepage http://etch.sourceforge.net/ +platforms darwin + +master_sites sourceforge + +checksums md5 5ee5d5aad12f4d5271ae8b676419948f \ + sha1 c1e4d4496e8edd9adf85d9893a5fc56935703946 \ + rmd160 5fd7d9e84e966a2031a30d4da49ab822bfca746c + +depends_build port:rb-rake +depends_run port:facter + +worksrcdir ${worksrcdir}/client +supported_archs noarch +use_configure no +build {} +destroot.cmd ${prefix}/bin/rake +destroot.target install\[${destroot}\] +destroot.destdir This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2010-12-22 21:09:33
|
Revision: 244 http://etch.svn.sourceforge.net/etch/?rev=244&view=rev Author: jheiss Date: 2010-12-22 21:09:27 +0000 (Wed, 22 Dec 2010) Log Message: ----------- Update to 3.17.0 version Modified Paths: -------------- trunk/client/Portfile Modified: trunk/client/Portfile =================================================================== --- trunk/client/Portfile 2010-12-22 21:07:20 UTC (rev 243) +++ trunk/client/Portfile 2010-12-22 21:09:27 UTC (rev 244) @@ -5,7 +5,7 @@ PortGroup ruby 1.0 name etch -version 3.16.0 +version 3.17.0 categories sysutils maintainers aput.net:jheiss openmaintainer @@ -25,9 +25,9 @@ master_sites sourceforge -checksums md5 5ee5d5aad12f4d5271ae8b676419948f \ - sha1 c1e4d4496e8edd9adf85d9893a5fc56935703946 \ - rmd160 5fd7d9e84e966a2031a30d4da49ab822bfca746c +checksums md5 9b5216f62d4add225f50984cc07f630b \ + sha1 a4bc1c61f349464ca793d858abeca08760bde6e5 \ + rmd160 f827b360c69cceab1a864b11c7cf434b7c7a4a39 depends_build port:rb-rake depends_run port:facter This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |