You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(3) |
Feb
(9) |
Mar
(39) |
Apr
|
May
|
Jun
(7) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
(30) |
Apr
(10) |
May
(52) |
Jun
(32) |
Jul
(18) |
Aug
(6) |
Sep
(32) |
Oct
(70) |
Nov
(18) |
Dec
(29) |
2004 |
Jan
(23) |
Feb
(6) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
(11) |
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
(4) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
|
Dec
|
2009 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: fess <fe...@us...> - 2002-02-17 19:06:26
|
Update of /cvsroot/wigwam/wigwam-base/bootstrap In directory usw-pr-cvs1:/tmp/cvs-serv15803 Modified Files: wigwam-bootstrap.in Log Message: Paul Mineiro: to actually support --base-only flag as advertised :) -- p Index: wigwam-bootstrap.in =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bootstrap/wigwam-bootstrap.in,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- wigwam-bootstrap.in 27 Oct 2001 20:51:50 -0000 1.19 +++ wigwam-bootstrap.in 17 Feb 2002 19:06:20 -0000 1.20 @@ -953,6 +953,11 @@ } ) +test "x$base_only" = "x1" && { + echo "$id: WARNING: --base-only requested, not building packages" 1>&2 + exit 0 +} + touch "$PLAYPEN_ROOT/ext/etc/installed-packages" |
From: fess <fe...@us...> - 2002-01-21 20:08:35
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv4477 Modified Files: ChangeLog Log Message: add a staggering option to avoid troubles with ssh-agent Index: ChangeLog =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/ChangeLog,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- ChangeLog 2001/12/29 03:35:38 1.56 +++ ChangeLog 2002/01/21 20:08:33 1.57 @@ -2,6 +2,7 @@ * prevent prepare-new-playpen from overriding the `propeller' default to `linewise' when publishing. (fess) "yea!" + * add -s option to litemass (fess) -- ??? |
From: fess <fe...@us...> - 2002-01-21 20:07:45
|
Update of /cvsroot/wigwam/wigwam-base/bin-scripts In directory usw-pr-cvs1:/tmp/cvs-serv30106 Modified Files: litemass.in Log Message: add a staggering option to avoid troubles with ssh-agent Index: litemass.in =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bin-scripts/litemass.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- litemass.in 2001/12/20 08:17:15 1.4 +++ litemass.in 2002/01/21 20:07:42 1.5 @@ -41,6 +41,7 @@ my $SSH_IDENTITY = undef; my $SSH_OPTIONS = ''; my $SSH_PROGRAM = (defined $ENV{LITEMASS_RSH}) ? $ENV{LITEMASS_RSH} : 'ssh'; +my $STAGGER = 0; if (defined $ENV{SSH_OPTIONS}) { $SSH_OPTIONS = $ENV{SSH_OPTIONS}; @@ -83,6 +84,9 @@ } elsif ($arg eq 'p') { $PRETTY_MODE = 1; + } elsif ($arg eq 's') { + $STAGGER = shift; + } elsif ($arg eq 'c') { $DISPLAY_COMMAND = 1; @@ -144,6 +148,9 @@ $PIPES{$host} = gensym(); pipe($PIPES{$host}, PIPE); + # how good does staggering the agent access work? + # use select for microsleep; + select undef,undef,undef, $STAGGER/1000; my $rv = fork(); if ($rv < 0) { @@ -280,6 +287,10 @@ even if it succeeded. -p "Pretty" mode, indent the verbose or error output. -c print the command to be executed for each host. + -s MILLISECONDS Set the spacing in milliseconds between forking + a child. This is useful if rapid access to + your ssh-agent is causing some authentication + failures. We recommend 60 for ssh1. the default is 0. Environment variables: SSH_OPTIONS Unless -r is specified, these are passed as options |
From: Heather S. <hsh...@us...> - 2002-01-10 19:22:54
|
Update of /cvsroot/wigwam/wigwam-base/doc In directory usw-pr-cvs1:/tmp/cvs-serv22535 Modified Files: wigwam.sgml Log Message: added missing step into walkthrough "Study A:" Index: wigwam.sgml =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/doc/wigwam.sgml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- wigwam.sgml 2001/12/29 00:24:14 1.13 +++ wigwam.sgml 2002/01/10 19:22:50 1.14 @@ -1372,6 +1372,7 @@ cvs co project-name cd project-name ./autogen.sh + . ./setup-env packagectl install service_static_apache - service_mysqld </userinput></programlisting> The <literal>-</literal> indicate that the latest version |
From: Dave B. <dav...@us...> - 2001-12-29 08:08:56
|
Update of /cvsroot/wigwam/wigwam-base/bootstrap In directory usw-pr-cvs1:/tmp/cvs-serv9187 Modified Files: Makefile.am Log Message: use BUILT_SOURCES, though there's no operational difference. (heh, hopefully ;) Index: Makefile.am =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bootstrap/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Makefile.am 2001/12/20 07:59:25 1.2 +++ Makefile.am 2001/12/29 08:08:53 1.3 @@ -6,7 +6,7 @@ bin_PROGRAMS=wwmd5 -CLEANFILES=wwmd5.c +BUILT_SOURCES=wwmd5.c wwmd5.c: wigwam-bootstrap ./wigwam-bootstrap --ww-spew-file wwmd5.c wwmd5.c |
From: fess <fe...@us...> - 2001-12-29 03:35:41
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv31154 Modified Files: ChangeLog Log Message: prepare-new-playpen was setting NO_PROPELLER which causes propeller to set it's mode to "terse". if it's mode is set propeller ignores the WIGWAM_IS_PUBLSHING envvar it normaly uses to set the mode to linewise. I took out the NO_PROPELLER bit, as it's not needed now that the WIGWAM_IS_PUBLISHING bit is in there. and, yea!, now, while publishing, you can see what a remote machine is doing before it's 'done.' doing it. wish I had gotten this out for the last release. it does'nt seem important enough for a new release. Index: ChangeLog =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/ChangeLog,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- ChangeLog 2001/12/29 00:34:01 1.55 +++ ChangeLog 2001/12/29 03:35:38 1.56 @@ -1,3 +1,10 @@ +wigam-base (3.0.47) + + * prevent prepare-new-playpen from overriding the `propeller' + default to `linewise' when publishing. (fess) "yea!" + + -- ??? + wigwam-base (3.0.46) * $playpen_services can now be "all" even if there are no services (fess) |
From: fess <fe...@us...> - 2001-12-29 03:35:41
|
Update of /cvsroot/wigwam/wigwam-base/publish-scripts In directory usw-pr-cvs1:/tmp/cvs-serv31154/publish-scripts Modified Files: prepare-new-playpen Log Message: prepare-new-playpen was setting NO_PROPELLER which causes propeller to set it's mode to "terse". if it's mode is set propeller ignores the WIGWAM_IS_PUBLSHING envvar it normaly uses to set the mode to linewise. I took out the NO_PROPELLER bit, as it's not needed now that the WIGWAM_IS_PUBLISHING bit is in there. and, yea!, now, while publishing, you can see what a remote machine is doing before it's 'done.' doing it. wish I had gotten this out for the last release. it does'nt seem important enough for a new release. Index: prepare-new-playpen =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/publish-scripts/prepare-new-playpen,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- prepare-new-playpen 2001/04/04 03:12:48 1.2 +++ prepare-new-playpen 2001/12/29 03:35:38 1.3 @@ -33,10 +33,6 @@ exit 1 } -# Disable the "propeller" display when building/installing packages. -NO_PROPELLER=1 -export NO_PROPELLER - # This script should only be run during publication. WIGWAM_IS_PUBLISHING=1 export WIGWAM_IS_PUBLISHING |
From: fess <fe...@us...> - 2001-12-29 02:40:06
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv15672 Modified Files: HACKING Log Message: Refinements to the process Index: HACKING =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/HACKING,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- HACKING 2001/09/16 21:40:27 1.7 +++ HACKING 2001/12/29 02:40:03 1.8 @@ -21,20 +21,25 @@ update the ChangeLog to note that you're releasing it and when commit it. ( date +'%a, %d %b %Y %T %z' ) - run ./autogen.sh - (2) in wigwam-base, run - - make distcheck - - to produce a tarball. (you should already have `run-test' in wigwam-test) + run cvs update -A and make sure you've commited everything. - (3) tag the version using cvs. run + (2) tag the version using cvs. run cvs tag v1-2-3 for version 1.2.3 of the the tarball. + (3) Make the tarball + + in wigwam-base, run: + + run ./autogen.sh + + make distcheck + + to produce a tarball. (you should already have `run-test' in wigwam-test) + (4) verify that wigwam bootstrap version is the same as the version you are releasing. @@ -88,6 +93,8 @@ look it all over make sure it seems sane. release should appear on sourceforge files page now. + however lately it has been taking a little while for + the files to show up. (7) package wigwam-base for the wigwam-pacakge-archive update and publish it. @@ -97,9 +104,10 @@ #( in wigwam-package-archive ) cvs up cheesy-upgrade wigwam-base OLDVERSION OLDRELEASE NEWVERSION + #check that they work. cvsaddtree public/wigwam-base/NEWVERSION-1 cvs ci public/wigwam-base/NEWVERSION-1 - #check then publish + #publish (8) update and publish wigwam-framework.org |
From: fess <fe...@us...> - 2001-12-29 00:34:04
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv19115 Modified Files: ChangeLog Log Message: noted relase time Index: ChangeLog =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/ChangeLog,v retrieving revision 1.54 retrieving revision 1.55 diff -u -r1.54 -r1.55 --- ChangeLog 2001/12/29 00:24:13 1.54 +++ ChangeLog 2001/12/29 00:34:01 1.55 @@ -7,6 +7,8 @@ * incorperate packagectl hook between installing and patching. to deal with bad upstream tarballs (daveb/fess) + -- john "fess" fessenden <fe...@dd...> Fri, 28 Dec 2001 16:33:21 -0800 + wigwam-base (3.0.45) * bug fix: ww-wgrep was not portable to solaris. broke packagectl. (fess) |
From: fess <fe...@us...> - 2001-12-29 00:32:24
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv18769 Modified Files: configure.in Log Message: upgrade to version 3.0.46 Index: configure.in =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/configure.in,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- configure.in 2001/09/24 22:55:24 1.17 +++ configure.in 2001/12/29 00:32:21 1.18 @@ -1,6 +1,6 @@ builtin(include, m4-macros/curses.m4) AC_INIT(bin-scripts) -AM_INIT_AUTOMAKE(wigwam-base, 3.0.45 ) +AM_INIT_AUTOMAKE(wigwam-base, 3.0.46 ) if test "x$WIGWAM_IS_PUBLISHING" = x1 || test "x$SKIP_SGMLTOOLS_TESTS" = x1 ; then |
From: fess <fe...@us...> - 2001-12-29 00:24:17
|
Update of /cvsroot/wigwam/wigwam-base/build-scripts In directory usw-pr-cvs1:/tmp/cvs-serv16435/build-scripts Modified Files: expand-sources Log Message: commit daveb's changes to add a hook between unpacking sources and patching them. passes wigwam-test. Index: expand-sources =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/build-scripts/expand-sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- expand-sources 2001/07/28 13:45:58 1.2 +++ expand-sources 2001/12/29 00:24:14 1.3 @@ -14,8 +14,12 @@ Note that PATCHES must be included as an empty argument if there are no patches. -Recognized ARCHIVE formats: .tar.gz, .tar, .tar.bz2, .tgz, .zip, .arj" +Recognized ARCHIVE formats: .tar.gz, .tar, .tar.bz2, .tgz, .zip, .arj +Additionally, if .prepatch or .postpatch files are found +parallel to OPTIONS-FILE, those scripts are run before +or after the patches are applied." + options_file="$1" archives="$2" patches="$3" @@ -114,6 +118,11 @@ true fi +# Give the user a chance to fix up sources before applying +# the patches. This is mostly to allow permission fixes. +options_file_base=`echo "$options_file" | sed -e 's/\\.options$//'` +test -r "$options_file_base.prepatch" && ( . "$options_file_base.prepatch" ; ) + # _ _ _ # __ _ _ __ _ __| |_ _ _ __ __ _| |_ __| |_ ___ ___ # / _` | '_ \ '_ \ | || | | '_ \/ _` | _/ _| ' \/ -_|_-< @@ -163,5 +172,9 @@ echo "$id: patch $patch_flags" 1>&2 } done + +# Apply the postpatch script, if it exists. +# For example, maybe you want to 'chmod +x newly-created-file'. +test -r "$options_file_base.postpatch" && ( . "$options_file_base.postpatch" ; ) exit 0 |
From: fess <fe...@us...> - 2001-12-29 00:24:17
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv16435 Modified Files: ChangeLog Log Message: commit daveb's changes to add a hook between unpacking sources and patching them. passes wigwam-test. Index: ChangeLog =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/ChangeLog,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- ChangeLog 2001/12/20 08:20:45 1.53 +++ ChangeLog 2001/12/29 00:24:13 1.54 @@ -4,6 +4,8 @@ * bug fix: wigwam-base now installs wwmd5 not just relying on wigwam-bootstrap do it. (fess) * add '-p' option to litemass. (fess) + * incorperate packagectl hook between installing and patching. + to deal with bad upstream tarballs (daveb/fess) wigwam-base (3.0.45) |
From: fess <fe...@us...> - 2001-12-29 00:24:17
|
Update of /cvsroot/wigwam/wigwam-base/doc In directory usw-pr-cvs1:/tmp/cvs-serv16435/doc Modified Files: wigwam.sgml Log Message: commit daveb's changes to add a hook between unpacking sources and patching them. passes wigwam-test. Index: wigwam.sgml =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/doc/wigwam.sgml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- wigwam.sgml 2001/08/15 21:34:01 1.12 +++ wigwam.sgml 2001/12/29 00:24:14 1.13 @@ -2230,7 +2230,25 @@ optional, and may contain support files, usually from the author of the package. </para> - +<para> + If a package's source files need modifications, + for example, for portability or to make them better adapted to wigwam, + you may include patches in the package. These should + be normal patches, produced with <command>diff -u</command>. + They will be automatically found and applied if + they end with <filename>.patch</filename>, <filename>.patch.bz2</filename> + or <filename>.patch.gz</filename>. +</para> +<para> + Sometimes patching sources is not enough to fix them so they build. + For example, sometimes a file's permission needs to be changed. + To do that, one can put code in the <filename>.prepatch</filename> + file: +<programlisting> + chmod +x configure-helper-script + chmod +w some-random-file +</programlisting> +</para> <para> Makefile-style packages recognized the additional variables: |
From: fess <fe...@us...> - 2001-12-28 23:44:09
|
Update of /cvsroot/wigwam/wigwam-base/doc In directory usw-pr-cvs1:/tmp/cvs-serv5923/doc Modified Files: .cvsignore Log Message: add generated html dirs to ignore Index: .cvsignore =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/doc/.cvsignore,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- .cvsignore 2001/02/08 17:25:12 1.1.1.1 +++ .cvsignore 2001/12/28 23:44:04 1.2 @@ -5,3 +5,5 @@ wigwam.pdf wigwam *.1 +wigwam-html +wigwam-html1 |
From: fess <fe...@us...> - 2001-12-20 08:20:47
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv3931 Modified Files: ChangeLog Log Message: - litemass - wwmd5 Index: ChangeLog =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/ChangeLog,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- ChangeLog 2001/09/26 04:06:56 1.52 +++ ChangeLog 2001/12/20 08:20:45 1.53 @@ -1,6 +1,9 @@ wigwam-base (3.0.46) * $playpen_services can now be "all" even if there are no services (fess) + * bug fix: wigwam-base now installs wwmd5 not just relying on + wigwam-bootstrap do it. (fess) + * add '-p' option to litemass. (fess) wigwam-base (3.0.45) |
From: fess <fe...@us...> - 2001-12-20 08:17:17
|
Update of /cvsroot/wigwam/wigwam-base/bin-scripts In directory usw-pr-cvs1:/tmp/cvs-serv1940/bin-scripts Modified Files: litemass.in Log Message: add a "pretty" output mode. which indents the output. Index: litemass.in =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bin-scripts/litemass.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- litemass.in 2001/09/08 00:21:25 1.3 +++ litemass.in 2001/12/20 08:17:15 1.4 @@ -35,6 +35,7 @@ my @HOSTS; my $VERBOSE = 0; my $RSYNC_MODE = 0; +my $PRETTY_MODE = 0; my $DISPLAY_COMMAND = 0; my $LOGIN = undef; my $SSH_IDENTITY = undef; @@ -79,6 +80,9 @@ } elsif ($arg eq 'r') { $RSYNC_MODE = 1; + } elsif ($arg eq 'p') { + $PRETTY_MODE = 1; + } elsif ($arg eq 'c') { $DISPLAY_COMMAND = 1; @@ -206,6 +210,7 @@ my $total = 0; my $last = ''; my $bytes; + my $pretty_newline_flag = 0; while (($bytes = read($pipe, $buf, 10240)) > 0) { if ($bytes > 0 && $total == 0) { if (!substr($buf, 0, 1)) { @@ -214,12 +219,21 @@ print 'success'; $VERBOSE && print ': '; } + print "\n " if $PRETTY_MODE; } if ($total < 2) { $buf = substr($buf, 2); } $total += $bytes; $last = $buf; + if ( $PRETTY_MODE ) { + if ( $pretty_newline_flag ) { + print " "; + $pretty_newline_flag = 0; + } + $pretty_newline_flag = 1 if ( $buf =~ /\n$/) ; + $buf =~ s/\n(.)/\n $1/g; + } print $buf; } print "\n" unless $last =~ /\n$/s; @@ -264,6 +278,7 @@ -r Rsync mode. Do not invoke ssh explicitly. -v Verbose mode. Print the program's output even if it succeeded. + -p "Pretty" mode, indent the verbose or error output. -c print the command to be executed for each host. Environment variables: |
From: fess <fe...@us...> - 2001-12-20 07:59:28
|
Update of /cvsroot/wigwam/wigwam-base/bootstrap In directory usw-pr-cvs1:/tmp/cvs-serv28700 Modified Files: .cvsignore Makefile.am Log Message: - create a make target for wwmd5.c to be pulled out of wigwam-bootstrap this will cause it to get built and installed with wigwam base. although it will allready be installed if this project was bootstraped with a newer version of wigwam-base, it will solve the case where the project is just updated from an old wigwam-base to a new one and the old bootstrap never generated wwmd5. this is my first real mucking with automake. daveb please check this over. Index: .cvsignore =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bootstrap/.cvsignore,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- .cvsignore 2001/02/08 17:25:11 1.1.1.1 +++ .cvsignore 2001/12/20 07:59:25 1.2 @@ -1,3 +1,5 @@ Makefile.in Makefile wigwam-bootstrap +wwmd5 +wwmd5.c Index: Makefile.am =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bootstrap/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- Makefile.am 2001/02/08 17:25:11 1.1.1.1 +++ Makefile.am 2001/12/20 07:59:25 1.2 @@ -3,3 +3,10 @@ pkgdata_SCRIPTS=$(subbed_scripts) EXTRA_DIST=$(source_scripts) + +bin_PROGRAMS=wwmd5 + +CLEANFILES=wwmd5.c + +wwmd5.c: wigwam-bootstrap + ./wigwam-bootstrap --ww-spew-file wwmd5.c wwmd5.c |
From: fess <fe...@us...> - 2001-12-20 07:54:16
|
Update of /cvsroot/wigwam/wigwam-base/bootstrap In directory usw-pr-cvs1:/tmp/cvs-serv28513 Removed Files: wwmd5.c Log Message: this was moved into wigwam-bootstrap. so it doesn't need to be commited here anymore. |
From: Heather S. <hsh...@us...> - 2001-11-01 19:14:05
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv15352 Modified Files: README INSTALL Log Message: Updated documentation. Perhaps it is even accurate? Index: README =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- README 2001/02/08 17:25:10 1.1.1.1 +++ README 2001/11/01 19:14:02 1.2 @@ -1,9 +1,24 @@ -This is a version of wigwam. +This is a version of wigwam, a server publication system. Wigwam allows +you to create projects running services which incorporate a variety of +different servers (such as httpd, smtpd, etc). Wigwam makes it simple for +you to take the collection of code, configuration, content and external +applications and publish it to various servers or server clusters as +needed. -Its documentation is in doc/. +Unless you are modifying wigwam-base, you almost certainly _don't_ want to +be installing it directly here! Instead, you should download : -What should this README contain? -Any suggestions? + wigwam-bootstrap + +from: + + http://wigwam.sourceforge.net/download.html + +start your project by folowing the example walkthroughs at: + + http://wigwam-framework.org/doc/wigwam-walkthroughs.html + +Directories: base-configuration/ Files to be copied into a newly bootstrapped wigwam playpen. Index: INSTALL =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/INSTALL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- INSTALL 2001/02/08 17:25:10 1.1.1.1 +++ INSTALL 2001/11/01 19:14:02 1.2 @@ -1 +1,20 @@ -please see user docs... for now +Please see the README -- you should only be installing wigwam base if you +are a developer who is modifying it (or you are trying to generate the +documentation). If you just want to use it to publish projects, you +should instead use wigwam-bootstrap as descriped at +http://wigwam.sourceforge.net + +To build wigwam-base, just do: + + autogen.sh + make + +If you have an issues, note that it does depend on the following: + + autoconf + automake + dia + docbook-to-man + sgmltools-lite + +As well as a few other things I'm still working on identifying. |
From: fess <fe...@us...> - 2001-10-27 20:52:04
|
Update of /cvsroot/wigwam/wigwam-base In directory usw-pr-cvs1:/tmp/cvs-serv30876 Modified Files: TODO Log Message: new todo Index: TODO =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/TODO,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- TODO 2001/09/26 04:06:56 1.11 +++ TODO 2001/10/27 20:52:02 1.12 @@ -1,3 +1,6 @@ +- Install of wigwam-base needs to install binaries that + wigwam-bootstrap would install, possibly by building boostrap, spewing + the files with it and then compiling and instaling them. - wparallelizer needs --sequential, and a way to cope with stdin. - maybe in `packagectl install' or `packagectl update-packages' can't find appropriate version, auto `packagectl update' |
From: fess <fe...@us...> - 2001-10-27 20:51:54
|
Update of /cvsroot/wigwam/wigwam-base/bootstrap In directory usw-pr-cvs1:/tmp/cvs-serv30812/bootstrap Modified Files: wigwam-bootstrap.in Log Message: make it easier to spot end of non indented if-else Index: wigwam-bootstrap.in =================================================================== RCS file: /cvsroot/wigwam/wigwam-base/bootstrap/wigwam-bootstrap.in,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- wigwam-bootstrap.in 2001/07/24 20:55:17 1.18 +++ wigwam-bootstrap.in 2001/10/27 20:51:50 1.19 @@ -1083,9 +1083,12 @@ cp "$outfile" "$PLAYPEN_ROOT/ext/build/logs" rm -f "$outfile" -# `else' clause for the if $spew_body = 1 far above. +#===================================================================== +# `else' clause for the if $spew_file = 1 far above. # The remainder of this file will be various C files # wigwam-bootstrap can compile. +#===================================================================== + else output_file="$3" |