From quozl at us.netrek.org Wed Feb 1 00:17:13 2006 From: quozl at us.netrek.org (James Cameron) Date: Wed, 1 Feb 2006 17:17:13 +1100 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: References: <200601311429.21131.tanner@real-time.com> <20060201025458.GA10831@us.netrek.org> <200601312142.20263.tanner@real-time.com> Message-ID: <20060201061713.GB10831@us.netrek.org> On Wed, Feb 01, 2006 at 12:34:45AM -0500, Zach wrote: > Do you have instructions on how you packaged the CoW client for > Debian? If so it would be helpful for those interested in packaging > other netrek clients for Debian release. Huh? What sort of question is that? ;-) All the information on how to package forms part of the source package. There's no mystery. I was able to understand how it was done by reading the source package. (Although first time I tried without reading it, and made a small mistake). We're certainly not here to train you on how to package for Debian. There's a huge community to do that already, like Debian Mentors. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From tanner at real-time.com Wed Feb 1 00:26:08 2006 From: tanner at real-time.com (Bob Tanner) Date: Wed, 1 Feb 2006 00:26:08 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <20060201061713.GB10831@us.netrek.org> References: <200601311429.21131.tanner@real-time.com> <20060201061713.GB10831@us.netrek.org> Message-ID: <200602010026.09279.tanner@real-time.com> On Wednesday 01 February 2006 00:17, James Cameron wrote: > > Do you have instructions on how you packaged the CoW client for > > Debian? If so it would be helpful for those interested in packaging > > other netrek clients for Debian release. > > Huh? ?What sort of question is that? ?;-) One written in English? This isn't specific to netrek, but the %s/showeq/netrek-client.cow/g and you can do the same thing. http://faq.eqenchanters.org/index.php?action=artikel&cat=383683&id=45&artlang=en -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From tanner at users.sourceforge.net Wed Feb 1 02:20:54 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Wed, 01 Feb 2006 08:20:54 +0000 Subject: [netrek-dev] client/cow/debian find-key.sh, NONE, 1.1 changelog, 1.1, 1.2 rules, 1.3, 1.4 Message-ID: Update of /cvsroot/netrek/client/cow/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19944/debian Modified Files: changelog rules Added Files: find-key.sh Log Message: * At compile time figure out what RSA key to build against * Created find-key.sh Index: rules =================================================================== RCS file: /cvsroot/netrek/client/cow/debian/rules,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- rules 31 Jan 2006 20:12:36 -0000 1.3 +++ rules 1 Feb 2006 08:20:52 -0000 1.4 @@ -33,14 +33,10 @@ DEB_CONFIGURE_EXTRA_FLAGS := --enable-unstable \ --x-includes=/usr/X11R6/include -# Generic key.def that will work for QA building -# -#DEB_MAKE_ENVVARS := KEYDEF="sample_key.def" -# My personal and trusted key, won't work for you, comment out below and -# uncomment the line above (sample_key.def) if you want to QA build +# Delegate finding KEYDEF find-key # -DEB_MAKE_ENVVARS := KEYDEF="/home/tanner/.netrek/key-debian.def" +DEB_MAKE_ENVVARS := KEYDEF=`debian/find-key.sh` install/netrek-client-cow:: install netrek debian/netrek-client-cow/usr/bin/netrek-client-cow --- NEW FILE: find-key.sh --- #!/bin/bash # # COPYRIGHT # Copyright (c) 2006 Bob Tanner # # LICENSE # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation version 2 # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., 59 # Temple Place, Suite 330, Boston, MA 02111-1307 USA. # # Scan these locations for KEYDEF entries. First entry is my personal key, the # second/third entries are fake, used as an example of how to add other scan # locations # SCAN="/home/tanner/.netrek/key-debian.def \ /u/aussie/quozl/.netrek/vanilla.def \ /home/a/ahn/src/netrek/keydef \ " # Look for a key # for key in ${SCAN}; do if [ -r $key ]; then echo $key exit 0 fi done # If we get here we didn't have a key, so do the default # echo "sample_key.def" exit 0 Index: changelog =================================================================== RCS file: /cvsroot/netrek/client/cow/debian/changelog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- changelog 31 Jan 2006 18:21:55 -0000 1.1 +++ changelog 1 Feb 2006 08:20:52 -0000 1.2 @@ -1,3 +1,10 @@ +netrek-client-cow (3.01pl0-2) unstable; urgency=low + + * At compile time figure out what RSA key to build against + * Created find-key.sh + + -- Robert J. Tanner Wed, 1 Feb 2006 02:20:12 -0600 + netrek-client-cow (3.01pl0-1) unstable; urgency=low * Initial release From tanner at users.sourceforge.net Wed Feb 1 02:20:54 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Wed, 01 Feb 2006 08:20:54 +0000 Subject: [netrek-dev] client/cow config.guess,1.3,1.4 config.sub,1.3,1.4 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19944 Modified Files: config.guess config.sub Log Message: * At compile time figure out what RSA key to build against * Created find-key.sh Index: config.guess =================================================================== RCS file: /cvsroot/netrek/client/cow/config.guess,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- config.guess 31 Jan 2006 20:12:35 -0000 1.3 +++ config.guess 1 Feb 2006 08:20:51 -0000 1.4 @@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +# Free Software Foundation, Inc. -timestamp='2005-08-03' +timestamp='2001-09-04' # This file is free software; you can redistribute it and/or modify it [...1533 lines suppressed...] - exit ;; + exit 0 ;; c4*) echo c4-convex-bsd - exit ;; + exit 0 ;; esac fi @@ -1424,9 +1277,7 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess -and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + ftp://ftp.gnu.org/pub/gnu/config/ If the version you run ($0) is already up to date, please send the following data and any information you think might be Index: config.sub =================================================================== RCS file: /cvsroot/netrek/client/cow/config.sub,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- config.sub 31 Jan 2006 20:12:36 -0000 1.3 +++ config.sub 1 Feb 2006 08:20:52 -0000 1.4 @@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# 2000, 2001, 2002 Free Software Foundation, Inc. -timestamp='2005-07-08' +timestamp='2002-03-07' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,15 +21,14 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# +# Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. - # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # @@ -71,7 +70,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -84,11 +83,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; + echo "$timestamp" ; exit 0 ;; --version | -v ) - echo "$version" ; exit ;; + echo "$version" ; exit 0 ;; --help | --h* | -h ) - echo "$usage"; exit ;; + echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -100,7 +99,7 @@ *local*) # First pass through any local machine types. echo $1 - exit ;; + exit 0;; * ) break ;; @@ -119,8 +118,7 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ - kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) + nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -146,7 +144,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis) os= basic_machine=$1 ;; @@ -230,55 +228,34 @@ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ - | bfin \ | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | d10v | d30v | dsp16xx \ + | fr30 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64vr | mips64vrel \ - | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipstx39 | mipstx39el \ + | m32r | m68000 | m68k | m88k | mcore \ + | mips | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el | mips64vr4300 \ + | mips64vr4300el | mips64vr5000 | mips64vr5000el \ + | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ + | mipsisa32 | mipsisa64 \ | mn10200 | mn10300 \ - | ms1 \ - | msp430 \ | ns16k | ns32k \ - | or32 \ + | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b \ + | sh | sh[34] | sh[34]eb | shbe | shle | sh64 \ + | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ + | tahoe | thumb | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ + | x86 | xscale | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; - m32c) - basic_machine=$basic_machine-unknown - ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown @@ -304,63 +281,41 @@ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | arm-* | armbe-* | armle-* | armv*-* \ | avr-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ + | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c54x-* \ + | clipper-* | cydra-* \ + | d10v-* | d30v-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fr30-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | m32r-* | m32rle-* \ + | m32r-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | ms1-* \ - | msp430-* \ + | m88110-* | m88k-* | mcore-* \ + | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ + | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ + | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tron-* \ + | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* | sh64-* \ + | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ + | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ + | xtensa-* \ | ymp-* \ | z8k-*) ;; - m32c-*) - ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -377,9 +332,6 @@ basic_machine=a29k-amd os=-udi ;; - abacus) - basic_machine=abacus-unknown - ;; adobe68k) basic_machine=m68010-adobe os=-scout @@ -394,12 +346,6 @@ basic_machine=a29k-none os=-bsd ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; amdahl) basic_machine=580-amdahl os=-sysv @@ -459,27 +405,12 @@ basic_machine=j90-cray os=-unicos ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16c) - basic_machine=cr16c-unknown - os=-elf - ;; crds | unos) basic_machine=m68k-crds ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; da30 | da30-*) basic_machine=m68k-da30 ;; @@ -502,10 +433,6 @@ basic_machine=m88k-motorola os=-sysv3 ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -684,6 +611,10 @@ mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; + mmix*) + basic_machine=mmix-knuth + os=-mmixware + ;; monitor) basic_machine=m68k-rom68k os=-coff @@ -771,12 +702,9 @@ basic_machine=hppa1.1-oki os=-proelf ;; - openrisc | openrisc-*) + or32 | or32-*) basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 + os=-coff ;; OSE68000 | ose68000) basic_machine=m68000-ericsson @@ -800,55 +728,49 @@ pbb) basic_machine=m68k-tti ;; - pc532 | pc532-*) + pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) + pentiumpro | p6 | 6x86 | athlon) basic_machine=i686-pc ;; - pentiumii | pentium2 | pentiumiii | pentium3) + pentiumii | pentium2) basic_machine=i686-pc ;; - pentium4) - basic_machine=i786-pc - ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + pentiumii-* | pentium2-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown - ;; + ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown - ;; + ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown - ;; + ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown - ;; + ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; @@ -879,16 +801,6 @@ basic_machine=a29k-amd os=-udi ;; - sb1) - basic_machine=mipsisa64sb1-unknown - ;; - sb1el) - basic_machine=mipsisa64sb1el-unknown - ;; - sei) - basic_machine=mips-sei - os=-seiux - ;; sequent) basic_machine=i386-sequent ;; @@ -896,9 +808,6 @@ basic_machine=sh-hitachi os=-hms ;; - sh64) - basic_machine=sh64-unknown - ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks @@ -957,7 +866,7 @@ sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; - sv1) + sv1) basic_machine=sv1-cray os=-unicos ;; @@ -965,6 +874,10 @@ basic_machine=i386-sequent os=-dynix ;; + t3d) + basic_machine=alpha-cray + os=-unicos + ;; t3e) basic_machine=alphaev5-cray os=-unicos @@ -977,14 +890,6 @@ basic_machine=tic54x-unknown os=-coff ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff - ;; tx39) basic_machine=mipstx39-unknown ;; @@ -998,10 +903,6 @@ tower | tower-32) basic_machine=m68k-ncr ;; - tpf) - basic_machine=s390x-ibm - os=-tpf - ;; udi29k) basic_machine=a29k-amd os=-udi @@ -1023,8 +924,8 @@ os=-vms ;; vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; + basic_machine=f301-fujitsu + ;; vxworks960) basic_machine=i960-wrs os=-vxworks @@ -1045,11 +946,11 @@ basic_machine=hppa1.1-winbond os=-proelf ;; - xbox) - basic_machine=i686-pc - os=-mingw32 + windows32) + basic_machine=i386-pc + os=-windows32-msvcrt ;; - xps | xps100) + xps | xps100) basic_machine=xps100-honeywell ;; ymp) @@ -1079,9 +980,6 @@ romp) basic_machine=romp-ibm ;; - mmix) - basic_machine=mmix-knuth - ;; rs6000) basic_machine=rs6000-ibm ;; @@ -1098,13 +996,16 @@ we32k) basic_machine=we32k-att ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + sh3 | sh4 | sh3eb | sh4eb) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b) + sh64) + basic_machine=sh64-unknown + ;; + sparc | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; - cydra) + cydra) basic_machine=cydra-cydrome ;; orion) @@ -1119,6 +1020,10 @@ pmac | pmac-mpw) basic_machine=powerpc-apple ;; + c4x*) + basic_machine=c4x-none + os=-coff + ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; @@ -1174,21 +1079,18 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ + | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku*) + | -morphos* | -superux* | -rtmk* | -rtmk-nova*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1200,21 +1102,16 @@ ;; esac ;; - -nto-qnx*) - ;; -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` + os=-nto-qnx ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; - -linux-dietlibc) - os=-linux-dietlibc - ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; @@ -1227,9 +1124,6 @@ -opened*) os=-openedition ;; - -os400*) - os=-os400 - ;; -wince*) os=-wince ;; @@ -1251,9 +1145,6 @@ -atheos*) os=-atheos ;; - -syllable*) - os=-syllable - ;; -386bsd) os=-bsd ;; @@ -1264,7 +1155,7 @@ os=-rtmk-nova ;; -ns2 ) - os=-nextstep2 + os=-nextstep2 ;; -nsk*) os=-nsk @@ -1276,9 +1167,6 @@ -sinix*) os=-sysv4 ;; - -tpf*) - os=-tpf - ;; -triton*) os=-sysv3 ;; @@ -1306,17 +1194,8 @@ -xenix) os=-xenix ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -aros*) - os=-aros - ;; - -kaos*) - os=-kaos - ;; - -zvmoe) - os=-zvmoe + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint ;; -none) ;; @@ -1349,14 +1228,11 @@ arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff - ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; - pdp11-*) + pdp11-*) os=-none ;; *-dec | vax-*) @@ -1395,15 +1271,9 @@ *-be) os=-beos ;; - *-haiku) - os=-haiku - ;; *-ibm) os=-aix ;; - *-knuth) - os=-mmixware - ;; *-wec) os=-proelf ;; @@ -1455,19 +1325,19 @@ *-next) os=-nextstep3 ;; - *-gould) + *-gould) os=-sysv ;; - *-highlevel) + *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; - *-sgi) + *-sgi) os=-irix ;; - *-siemens) + *-siemens) os=-sysv4 ;; *-masscomp) @@ -1536,16 +1406,10 @@ -mvs* | -opened*) vendor=ibm ;; - -os400*) - vendor=ibm - ;; -ptx*) vendor=sequent ;; - -tpf*) - vendor=ibm - ;; - -vxsim* | -vxworks* | -windiss*) + -vxsim* | -vxworks*) vendor=wrs ;; -aux*) @@ -1569,7 +1433,7 @@ esac echo $basic_machine$os -exit +exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) From keyos at keyos.org Wed Feb 1 02:29:30 2006 From: keyos at keyos.org (Stas Pirogov) Date: Wed, 01 Feb 2006 10:29:30 +0200 (IST) Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <200602010026.09279.tanner@real-time.com> References: <200601311429.21131.tanner@real-time.com> <20060201061713.GB10831@us.netrek.org> <200602010026.09279.tanner@real-time.com> Message-ID: On Wed, 1 Feb 2006, Bob Tanner wrote: > This isn't specific to netrek, but the %s/showeq/netrek-client.cow/g and you > can do the same thing. Heh, now you'll have to give Zach link to regular expressions tutorial, so he'll know what you ment :) > > http://faq.eqenchanters.org/index.php?action=artikel&cat=383683&id=45&artlang=en > > -- > Bob Tanner | Phone : (952)943-8700 > http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 > Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 > > _______________________________________________ > netrek-dev mailing list > netrek-dev at mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > > From keyos at keyos.org Wed Feb 1 02:29:30 2006 From: keyos at keyos.org (Stas Pirogov) Date: Wed, 01 Feb 2006 10:29:30 +0200 (IST) Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <200602010026.09279.tanner@real-time.com> References: <200601311429.21131.tanner@real-time.com> <20060201061713.GB10831@us.netrek.org> <200602010026.09279.tanner@real-time.com> Message-ID: On Wed, 1 Feb 2006, Bob Tanner wrote: > This isn't specific to netrek, but the %s/showeq/netrek-client.cow/g and you > can do the same thing. Heh, now you'll have to give Zach link to regular expressions tutorial, so he'll know what you ment :) > > http://faq.eqenchanters.org/index.php?action=artikel&cat=383683&id=45&artlang=en > > -- > Bob Tanner | Phone : (952)943-8700 > http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 > Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 > > _______________________________________________ > netrek-dev mailing list > netrek-dev at mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > > From netrek at gmail.com Wed Feb 1 02:51:46 2006 From: netrek at gmail.com (Zach) Date: Wed, 1 Feb 2006 03:51:46 -0500 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <200602010026.09279.tanner@real-time.com> References: <200601311429.21131.tanner@real-time.com> <20060201061713.GB10831@us.netrek.org> <200602010026.09279.tanner@real-time.com> Message-ID: On 2/1/06, Bob Tanner wrote: > > This isn't specific to netrek, but the %s/showeq/netrek-client.cow/g and you > can do the same thing. > > http://faq.eqenchanters.org/index.php?action=artikel&cat=383683&id=45&artlang=en Thanks Bob! Zach From basic at us.netrek.org Wed Feb 1 08:32:51 2006 From: basic at us.netrek.org (Bob Tanner) Date: Wed, 1 Feb 2006 08:32:51 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-2 (source i386) Message-ID: <200602010832.58365.basic@us.netrek.org> See http://faq.eqenchanters.org for HOWTOs Format: 1.7 Date: Wed, 1 Feb 2006 02:20:12 -0600 Source: netrek-client-cow Binary: netrek-client-cow Architecture: source i386 Version: 3.01pl0-2 Distribution: unstable Urgency: low Maintainer: Robert J. Tanner Changed-By: Robert J. Tanner Description: netrek-client-cow - netrek Client Changes: netrek-client-cow (3.01pl0-2) unstable; urgency=low . * At compile time figure out what RSA key to build against * Created find-key.sh Files: 67a9619bef3847c332c9615ed8e17121 689 non-free/x11 optional netrek-client-cow_3.01pl0-2.dsc 96a756ceef17fff4abddbb683a3d0e14 1487192 non-free/x11 optional netrek-client-cow_3.01pl0-2.tar.gz 3d667b83f35ac154b216828e8e7fdad0 241468 non-free/x11 optional netrek-client-cow_3.01pl0-2_i386.deb -- Bob Tanner | http://faq.eqenchanters.org Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060201/3f56e5d0/attachment.pgp From tanner at users.sourceforge.net Wed Feb 1 08:51:45 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Wed, 01 Feb 2006 14:51:45 +0000 Subject: [netrek-dev] client/cow ChangeLog, 1.20, 1.21 config.guess, 1.4, 1.5 config.sub, 1.4, 1.5 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16627 Modified Files: ChangeLog config.guess config.sub Log Message: - Updated ChangeLog. Index: config.guess =================================================================== RCS file: /cvsroot/netrek/client/cow/config.guess,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- config.guess 1 Feb 2006 08:20:51 -0000 1.4 +++ config.guess 1 Feb 2006 14:51:42 -0000 1.5 @@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2001-09-04' +timestamp='2005-08-03' # This file is free software; you can redistribute it and/or modify it [...1533 lines suppressed...] - exit 0 ;; + exit ;; c4*) echo c4-convex-bsd - exit 0 ;; + exit ;; esac fi @@ -1277,7 +1424,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - ftp://ftp.gnu.org/pub/gnu/config/ + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess +and + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub If the version you run ($0) is already up to date, please send the following data and any information you think might be Index: config.sub =================================================================== RCS file: /cvsroot/netrek/client/cow/config.sub,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- config.sub 1 Feb 2006 08:20:52 -0000 1.4 +++ config.sub 1 Feb 2006 14:51:43 -0000 1.5 @@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2002-03-07' +timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,14 +21,15 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. - +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. + # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # @@ -70,7 +71,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -83,11 +84,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -99,7 +100,7 @@ *local*) # First pass through any local machine types. echo $1 - exit 0;; + exit ;; * ) break ;; @@ -118,7 +119,8 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) + nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ + kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -144,7 +146,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis) + -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; @@ -228,34 +230,55 @@ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | bfin \ | c4x | clipper \ - | d10v | d30v | dsp16xx \ - | fr30 \ + | d10v | d30v | dlx | dsp16xx \ + | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ - | m32r | m68000 | m68k | m88k | mcore \ - | mips | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el | mips64vr4300 \ - | mips64vr4300el | mips64vr5000 | mips64vr5000el \ - | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ - | mipsisa32 | mipsisa64 \ + | ip2k | iq2000 \ + | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64vr | mips64vrel \ + | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | ms1 \ + | msp430 \ | ns16k | ns32k \ - | openrisc | or32 \ + | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[34] | sh[34]eb | shbe | shle | sh64 \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ - | tahoe | thumb | tic80 | tron \ + | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xstormy16 | xtensa \ + | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; + m32c) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown @@ -281,41 +304,63 @@ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armv*-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ - | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c54x-* \ - | clipper-* | cydra-* \ - | d10v-* | d30v-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | fx80-* \ + | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ - | m32r-* \ + | ip2k-* | iq2000-* \ + | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | mcore-* \ - | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ - | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ - | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | ms1-* \ + | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* | sh64-* \ - | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ - | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; + m32c-*) + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -332,6 +377,9 @@ basic_machine=a29k-amd os=-udi ;; + abacus) + basic_machine=abacus-unknown + ;; adobe68k) basic_machine=m68010-adobe os=-scout @@ -346,6 +394,12 @@ basic_machine=a29k-none os=-bsd ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl os=-sysv @@ -405,12 +459,27 @@ basic_machine=j90-cray os=-unicos ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16c) + basic_machine=cr16c-unknown + os=-elf + ;; crds | unos) basic_machine=m68k-crds ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; da30 | da30-*) basic_machine=m68k-da30 ;; @@ -433,6 +502,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -611,10 +684,6 @@ mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; monitor) basic_machine=m68k-rom68k os=-coff @@ -702,9 +771,12 @@ basic_machine=hppa1.1-oki os=-proelf ;; - or32 | or32-*) + openrisc | openrisc-*) basic_machine=or32-unknown - os=-coff + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson @@ -728,49 +800,55 @@ pbb) basic_machine=m68k-tti ;; - pc532 | pc532-*) + pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; - pentiumpro | p6 | 6x86 | athlon) + pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; - pentiumii | pentium2) + pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; + pentium4) + basic_machine=i786-pc + ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentiumii-* | pentium2-*) + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown - ;; + ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown - ;; + ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown - ;; + ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown - ;; + ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; @@ -801,6 +879,16 @@ basic_machine=a29k-amd os=-udi ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; sequent) basic_machine=i386-sequent ;; @@ -808,6 +896,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh64) + basic_machine=sh64-unknown + ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks @@ -866,7 +957,7 @@ sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; - sv1) + sv1) basic_machine=sv1-cray os=-unicos ;; @@ -874,10 +965,6 @@ basic_machine=i386-sequent os=-dynix ;; - t3d) - basic_machine=alpha-cray - os=-unicos - ;; t3e) basic_machine=alphaev5-cray os=-unicos @@ -890,6 +977,14 @@ basic_machine=tic54x-unknown os=-coff ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -903,6 +998,10 @@ tower | tower-32) basic_machine=m68k-ncr ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; udi29k) basic_machine=a29k-amd os=-udi @@ -924,8 +1023,8 @@ os=-vms ;; vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; + basic_machine=f301-fujitsu + ;; vxworks960) basic_machine=i960-wrs os=-vxworks @@ -946,11 +1045,11 @@ basic_machine=hppa1.1-winbond os=-proelf ;; - windows32) - basic_machine=i386-pc - os=-windows32-msvcrt + xbox) + basic_machine=i686-pc + os=-mingw32 ;; - xps | xps100) + xps | xps100) basic_machine=xps100-honeywell ;; ymp) @@ -980,6 +1079,9 @@ romp) basic_machine=romp-ibm ;; + mmix) + basic_machine=mmix-knuth + ;; rs6000) basic_machine=rs6000-ibm ;; @@ -996,16 +1098,13 @@ we32k) basic_machine=we32k-att ;; - sh3 | sh4 | sh3eb | sh4eb) + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparc | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; - cydra) + cydra) basic_machine=cydra-cydrome ;; orion) @@ -1020,10 +1119,6 @@ pmac | pmac-mpw) basic_machine=powerpc-apple ;; - c4x*) - basic_machine=c4x-none - os=-coff - ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; @@ -1079,18 +1174,21 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ + | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova*) + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1102,16 +1200,21 @@ ;; esac ;; + -nto-qnx*) + ;; -nto*) - os=-nto-qnx + os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; @@ -1124,6 +1227,9 @@ -opened*) os=-openedition ;; + -os400*) + os=-os400 + ;; -wince*) os=-wince ;; @@ -1145,6 +1251,9 @@ -atheos*) os=-atheos ;; + -syllable*) + os=-syllable + ;; -386bsd) os=-bsd ;; @@ -1155,7 +1264,7 @@ os=-rtmk-nova ;; -ns2 ) - os=-nextstep2 + os=-nextstep2 ;; -nsk*) os=-nsk @@ -1167,6 +1276,9 @@ -sinix*) os=-sysv4 ;; + -tpf*) + os=-tpf + ;; -triton*) os=-sysv3 ;; @@ -1194,8 +1306,17 @@ -xenix) os=-xenix ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe ;; -none) ;; @@ -1228,11 +1349,14 @@ arm*-semi) os=-aout ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; - pdp11-*) + pdp11-*) os=-none ;; *-dec | vax-*) @@ -1271,9 +1395,15 @@ *-be) os=-beos ;; + *-haiku) + os=-haiku + ;; *-ibm) os=-aix ;; + *-knuth) + os=-mmixware + ;; *-wec) os=-proelf ;; @@ -1325,19 +1455,19 @@ *-next) os=-nextstep3 ;; - *-gould) + *-gould) os=-sysv ;; - *-highlevel) + *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; - *-sgi) + *-sgi) os=-irix ;; - *-siemens) + *-siemens) os=-sysv4 ;; *-masscomp) @@ -1406,10 +1536,16 @@ -mvs* | -opened*) vendor=ibm ;; + -os400*) + vendor=ibm + ;; -ptx*) vendor=sequent ;; - -vxsim* | -vxworks*) + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) @@ -1433,7 +1569,7 @@ esac echo $basic_machine$os -exit 0 +exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) Index: ChangeLog =================================================================== RCS file: /cvsroot/netrek/client/cow/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ChangeLog 27 Jan 2006 09:57:27 -0000 1.20 +++ ChangeLog 1 Feb 2006 14:51:42 -0000 1.21 @@ -1,3 +1,56 @@ +2006-02-01 Bob Tanner + + * debian/changelog, debian/find-key.sh, debian/rules: + - At compile time figure out what RSA key to build agains. + - Created find-key.sh + +2006-01-31 Bob Tanner + + * debian/control, debian/rules: + - Missed the libxt-dev Build-Depdends (pbuilder rules) + - For some reason configure cannot find the X11 headers, so added + the location into the configure invocation + + * debian/control, debian/rules: + - Missed gmp develop package + - Little documentation in debian/rules about key.def + + * Makefile: + - Couple GNU make specific changes to make building no dep targets + build by default. At least I believe the "::" does that under GNU + make. + + * system.mk.in: + - cow's Makefile is pretty convoluted and under normal(?) + circumstances requires 2 builds. At least under debian. Change the + depends to make a 1 time build possible which makes using pbuilder + easier :-) + + * .cvsignore: + - Ignore some of the files that cdbs creates. + + * CVSROOT/loginfo: + - Added netrek-dev at us.netrek.org too, since commits are very low + volume lately.:-P + + * debian/README.Debian, debian/changelog, debian/control, debian/dirs, + debian/netrek-client-cow.copyright, debian/netrek-client-cow.docs, + debian/netrek-client-cow.examples, debian/netrek-client-cow.install, + debian/netrek-client-cow.man, debian/netrek-client-cow.manpages, + debian/rules, debian/source.lintian-overrides, debian/watch: + - First commit for debian sid package. NOTE: Only worked the .deb on + sid, once a few people QA build it (James?) on sid and we share out + any lintian/linda issues, I'll build it for etch and sarge. + + * CVSROOT/loginfo: + - Found the problems(!) First, syncmail was way out of date, I snarfed + the recommended version and installed it into CVSROOT, of course the + commit of that change failed to send an email notification + (chick-n-egg problem) + - Next, cvs commit to cow are failing because there is no longer a + netrek-cow-cvs mailing list. + - Upgraded syncmail to recommend revision from sourceforge's sitedocs. + Fri Jan 27 20:47:54 2006 James Cameron * parsemeta.c: fix overloaded definition of global sock. From tanner at users.sourceforge.net Thu Feb 2 23:20:12 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Fri, 03 Feb 2006 05:20:12 +0000 Subject: [netrek-dev] CVSROOT loginfo,1.11,1.12 Message-ID: Update of /cvsroot/netrek/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv475 Modified Files: loginfo Log Message: Forgot we have a netrek-cvs list, changed commits to that email address. Index: loginfo =================================================================== RCS file: /cvsroot/netrek/CVSROOT/loginfo,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- loginfo 31 Jan 2006 18:29:46 -0000 1.11 +++ loginfo 3 Feb 2006 05:20:09 -0000 1.12 @@ -26,4 +26,4 @@ #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog # # Just testing -DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} netrek-vanilla-cvs at lists.sourceforge.net netrek-dev at us.netrek.org +DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} netrek-vanilla-cvs at lists.sourceforge.net netrek-cvs at us.netrek.org From netrek at gmail.com Thu Feb 2 23:32:22 2006 From: netrek at gmail.com (Zach) Date: Fri, 3 Feb 2006 00:32:22 -0500 Subject: [netrek-dev] CVSROOT loginfo,1.11,1.12 In-Reply-To: <43e2e9db.3f3371ef.7a33.ffffec69SMTPIN_ADDED@mx.gmail.com> References: <43e2e9db.3f3371ef.7a33.ffffec69SMTPIN_ADDED@mx.gmail.com> Message-ID: Is the latest Vanilla in the sourceforge CVS? What happened to the historical archive? Is that in sourceforge CVS? What is the user/password and path for the sourceforge CVS? Zach From tanner at real-time.com Thu Feb 2 23:51:14 2006 From: tanner at real-time.com (Bob Tanner) Date: Thu, 2 Feb 2006 23:51:14 -0600 Subject: [netrek-dev] OT: testing Message-ID: <20060203055114.GA6520@real-time.com> Seems like the footer is listing shadowknight. Testing to see if I fixed this problem. -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From tanner at real-time.com Fri Feb 3 01:48:34 2006 From: tanner at real-time.com (Bob Tanner) Date: Fri, 3 Feb 2006 01:48:34 -0600 Subject: [netrek-dev] OT: footer right, url right now? Message-ID: <20060203074834.GA9169@real-time.com> footer right, url right now? -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From tanner at real-time.com Fri Feb 3 01:50:20 2006 From: tanner at real-time.com (Bob Tanner) Date: Fri, 3 Feb 2006 01:50:20 -0600 Subject: [netrek-dev] OT: Fri Feb 3 01:50:20 CST 2006 Message-ID: <20060203075020.GA9225@real-time.com> Tesing From netrek at gmail.com Fri Feb 3 04:54:54 2006 From: netrek at gmail.com (Zach) Date: Fri, 3 Feb 2006 05:54:54 -0500 Subject: [netrek-dev] OT: testing In-Reply-To: <20060203055114.GA6520@real-time.com> References: <20060203055114.GA6520@real-time.com> Message-ID: What is showing shadowknight? Zach On 2/3/06, Bob Tanner wrote: > Seems like the footer is listing shadowknight. Testing to see if I fixed this > problem. > From netrek at gmail.com Fri Feb 3 04:55:13 2006 From: netrek at gmail.com (Zach) Date: Fri, 3 Feb 2006 05:55:13 -0500 Subject: [netrek-dev] OT: Fri Feb 3 01:50:20 CST 2006 In-Reply-To: <20060203075020.GA9225@real-time.com> References: <20060203075020.GA9225@real-time.com> Message-ID: success On 2/3/06, Bob Tanner wrote: > Tesing > > _______________________________________________ > netrek-dev mailing list > netrek-dev at us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > From netrek at gmail.com Fri Feb 3 04:55:33 2006 From: netrek at gmail.com (Zach) Date: Fri, 3 Feb 2006 05:55:33 -0500 Subject: [netrek-dev] OT: footer right, url right now? In-Reply-To: <20060203074834.GA9169@real-time.com> References: <20060203074834.GA9169@real-time.com> Message-ID: huh? On 2/3/06, Bob Tanner wrote: > footer right, url right now? > -- > Bob Tanner | Phone : (952)943-8700 > http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 > Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 > > _______________________________________________ > netrek-dev mailing list > netrek-dev at us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > From quozl at us.netrek.org Fri Feb 3 16:22:30 2006 From: quozl at us.netrek.org (James Cameron) Date: Sat, 4 Feb 2006 09:22:30 +1100 Subject: [netrek-dev] OT: testing In-Reply-To: References: <20060203055114.GA6520@real-time.com> Message-ID: <20060203222230.GB31771@us.netrek.org> On Fri, Feb 03, 2006 at 05:54:54AM -0500, Zach wrote: > What is showing shadowknight? The footer. Of the mailing list. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From quozl at us.netrek.org Fri Feb 3 16:21:55 2006 From: quozl at us.netrek.org (James Cameron) Date: Sat, 4 Feb 2006 09:21:55 +1100 Subject: [netrek-dev] CVSROOT loginfo,1.11,1.12 In-Reply-To: References: <43e2e9db.3f3371ef.7a33.ffffec69SMTPIN_ADDED@mx.gmail.com> Message-ID: <20060203222155.GA31771@us.netrek.org> On Fri, Feb 03, 2006 at 12:32:22AM -0500, Zach wrote: > Is the latest Vanilla in the sourceforge CVS? Of course. The latest release of the Netrek Server Vanilla is 2.10.1 from 30th September 2005. The CVS tag is v_2_10_1. The several changes since then are in CVS, but are not released as a .tar.gz yet. > What happened to the historical archive? Why do you want it? Why should we spend effort on even answering this question? It has been answered two or three times before in the past six months. > Is that in sourceforge CVS? Some is, some is not. > What is the user/password and path for the sourceforge CVS? Oh, come on. Can't you read SourceForge documentation? I can't tell you your password, but the project member list shows zingph as your username. If you've got a problem with your account, contact SourceForge about it, not us. Anonymous access to CVS is available from SourceForge. Go to the project page, click on CVS, then read the page. I'll not repeat what they say here, in case it changes. http://sourceforge.net/projects/netrek -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From xyzzy at speakeasy.org Fri Feb 3 16:33:18 2006 From: xyzzy at speakeasy.org (Trent Piepho) Date: Fri, 3 Feb 2006 14:33:18 -0800 (PST) Subject: [netrek-dev] CVSROOT loginfo,1.11,1.12 In-Reply-To: <20060203222155.GA31771@us.netrek.org> Message-ID: On Sat, 4 Feb 2006, James Cameron wrote: > On Fri, Feb 03, 2006 at 12:32:22AM -0500, Zach wrote: > > Is the latest Vanilla in the sourceforge CVS? > > Of course. The latest release of the Netrek Server Vanilla is 2.10.1 > from 30th September 2005. The CVS tag is v_2_10_1. The several changes > since then are in CVS, but are not released as a .tar.gz yet. > > > What happened to the historical archive? > > Why do you want it? Why should we spend effort on even answering this > question? It has been answered two or three times before in the past > six months. I want it because it contain useful information. When I'm looking at something like Hadley's bot, I wish I had a cvs log to look at. From netrek at gmail.com Fri Feb 3 22:31:52 2006 From: netrek at gmail.com (Zach) Date: Fri, 3 Feb 2006 23:31:52 -0500 Subject: [netrek-dev] OT: testing In-Reply-To: <20060203222230.GB31771@us.netrek.org> References: <20060203055114.GA6520@real-time.com> <20060203222230.GB31771@us.netrek.org> Message-ID: On 2/3/06, James Cameron wrote: > > The footer. Of the mailing list. This is what I see as the footer: netrek-dev mailing list netrek-dev at us.netrek.org http://mailman.us.netrek.org/listinfo/netrek-dev Zach From quozl at us.netrek.org Sun Feb 5 22:44:31 2006 From: quozl at us.netrek.org (James Cameron) Date: Mon, 6 Feb 2006 15:44:31 +1100 Subject: [netrek-dev] OT: testing In-Reply-To: References: <20060203055114.GA6520@real-time.com> <20060203222230.GB31771@us.netrek.org> Message-ID: <20060206044431.GB8174@us.netrek.org> On Fri, Feb 03, 2006 at 11:31:52PM -0500, Zach wrote: > This is what I see as the footer: Yes, and Bob would have seen that. It has changed as a result of his work. Great. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From quozl at us.netrek.org Mon Feb 6 00:50:58 2006 From: quozl at us.netrek.org (James Cameron) Date: Mon, 6 Feb 2006 17:50:58 +1100 Subject: [netrek-dev] CVSROOT loginfo,1.11,1.12 In-Reply-To: References: <20060203222155.GA31771@us.netrek.org> Message-ID: <20060206065058.GD8174@us.netrek.org> On Fri, Feb 03, 2006 at 02:33:18PM -0800, Trent Piepho wrote: > I want it because it contain useful information. When I'm looking at > something like Hadley's bot, I wish I had a cvs log to look at. Yes, that's a good reason. I understand that reason, and I encourage you to keep asking for the historical archive ... but alas I haven't got it and I can't get it. I was more interested in why Zach wanted it. If he was acting as your agent, I guess I understand now. ;-) Bob, have you got the old CVS tree lying around anywhere? Care to expose it via HTTP or something? -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From quozl at us.netrek.org Wed Feb 22 04:35:18 2006 From: quozl at us.netrek.org (James Cameron) Date: Wed, 22 Feb 2006 21:35:18 +1100 Subject: [netrek-dev] netrek-server-vanilla-2.10.2 released Message-ID: <20060222103518.GA15340@us.netrek.org> netrek-server-vanilla 2.10.2 was released today, with some interesting changes since 2.10.1. A multicast server solicitation feature is implemented for LAN parties. http://quozl.linux.org.au/netrek/ 71b9f4474c86922024ac13de87f69d4f netrek-server-vanilla-2.10.2.tar.gz Released first in Australia. Later it will be imported to SourceForge and other repositories. Summary of changes: - add documentation to debian packaging [cameron] - fix signal function in configure test [anonymous] - add reload option to netrekd for use by init.d scripts [cameron] - add tool for dumping metaserver or multicast server state [cameron] - remove robots from metaserver report [cameron] - fix refit to enable docking and restrict speed [shadow hunter] - add multicast server discovery [cameron] - fix leak of active process count in newstartd [cameron] - change file .metaservers to metaservers [cameron] -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060222/f156db94/attachment.pgp From quozl at us.netrek.org Wed Feb 22 22:51:45 2006 From: quozl at us.netrek.org (James Cameron) Date: Thu, 23 Feb 2006 15:51:45 +1100 Subject: [netrek-dev] cow release planned Message-ID: <20060223045145.GA23585@us.netrek.org> I'm planning to release a new version of COW, changing the version numbering from 3.01pl0 to 3.1.0, and as the new release has UDP metaserver stuff and LAN multicast discovery, I'm thinking 3.2.0 as the version number to use. Comments, patches, questions? -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060223/96a89803/attachment.pgp From stephen.thorne at gmail.com Wed Feb 22 23:00:46 2006 From: stephen.thorne at gmail.com (Stephen Thorne) Date: Thu, 23 Feb 2006 15:00:46 +1000 Subject: [netrek-dev] cow release planned In-Reply-To: <20060223045145.GA23585@us.netrek.org> References: <20060223045145.GA23585@us.netrek.org> Message-ID: <3e8ca5c80602222100u2ddc45ffwa88d1f9b42e6daf9@mail.gmail.com> On 2/23/06, James Cameron wrote: > I'm planning to release a new version of COW, changing the version > numbering from 3.01pl0 to 3.1.0, and as the new release has UDP > metaserver stuff and LAN multicast discovery, I'm thinking 3.2.0 as the > version number to use. > > Comments, patches, questions? +1 on new version number scheme I forsee the LAN multicast discovery being nice. Can you provide a short description of how it works (what port, what protocol, etc) -- Stephen Thorne Development Engineer From basic at us.netrek.org Wed Feb 22 23:40:39 2006 From: basic at us.netrek.org (Bob Tanner) Date: Wed, 22 Feb 2006 23:40:39 -0600 Subject: [netrek-dev] cow release planned In-Reply-To: <20060223045145.GA23585@us.netrek.org> References: <20060223045145.GA23585@us.netrek.org> Message-ID: <200602222340.39770.basic@us.netrek.org> On Wednesday 22 February 2006 22:51, James Cameron wrote: > I'm planning to release a new version of COW, changing the version > numbering from 3.01pl0 to 3.1.0, and as the new release has UDP > metaserver stuff and LAN multicast discovery, I'm thinking 3.2.0 as the > version number to use. > > Comments, patches, questions? I'm enqueued for a debian build with the 3.2.0 moniker as soon as the discussion is concluded and approved. I am also going to keep COW.deb in sync with COW cvs, so I'll be dropping the debian release, mean netrek-client-cow-3.2.0 vs netrek-client-cow-3.2.0-1. This also means I'll build from cvs and each build will be a full source package (if any one cares). -- Bob Tanner Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060222/38019958/attachment.pgp From quozl at us.netrek.org Wed Feb 22 23:54:11 2006 From: quozl at us.netrek.org (James Cameron) Date: Thu, 23 Feb 2006 16:54:11 +1100 Subject: [netrek-dev] multicast server discovery In-Reply-To: <3e8ca5c80602222100u2ddc45ffwa88d1f9b42e6daf9@mail.gmail.com> References: <20060223045145.GA23585@us.netrek.org> <3e8ca5c80602222100u2ddc45ffwa88d1f9b42e6daf9@mail.gmail.com> Message-ID: <20060223055411.GA23999@us.netrek.org> On Thu, Feb 23, 2006 at 03:00:46PM +1000, Stephen Thorne wrote: > I forsee the LAN multicast discovery being nice. Can you provide a > short description of how it works (what port, what protocol, etc) Multicast Server Discovery by James Cameron The multicast server discovery feature was added to the Vanilla server in 2.10.2 and the COW client in 3.2.0 and allows clients to discover nearby servers. The information here is subject to change, see the source code for the current behaviour. Protocol -------- Server discovery is done using a multicast UDP query on port 3521, and is an extension to the metaserver query and response protocol. Multicast UDP is done by sending a packet to the IP address 224.0.0.1. The sequence of events is: 1. the metaserver listens for client queries. 2. the server listens for client queries. 3. each client sends a metaserver query, to the listed metaservers and also to nearby servers using multicast. 4. the metaservers receive the query and send back a packet (or series of packets) listing the servers that it knows. The reply is directly to the client, and the client merges replies from all metaservers. 5. the server receives the query and sends back a packet about itself. The reply is directly to the client. 6. the client lists all the servers and the local servers on the metaserver window. This is done slightly asynchronously, so that the window will show information as it becomes available. 7. if the user presses the refresh button, steps 3 to 6 repeat. 8. if the user selects a server, play begins in the usual fashion as if the user had typed "netrek -h server". Packet Format ------------- The query packet is a single question mark. This is the same as that sent by the client to a metaserver. The reply packet from a server is a series of comma separated text fields, as follows: - s, the literal lowercase "s" character, marking this as a server reply (as opposed to a metaserver reply), - type, the type of server, such as "B" for Bronco, same meaning as the metaserver reply, - comment, the text from the server's comment file, which is to be shown on the metaserver window, - ports, the integer number of ports to follow in the message, (each port takes three fields), - port, the port number to contact the server on to play, (the IP address is assumed to be the address from which this reply came), - players, the number of players currently playing who joined on this port, - queue, the number of players waiting on the queue connected to this port. Example: s,B,Test Server,1,2592,0,0 indicates an empty test server. Other Uses ---------- There are some other uses for the same feature, such as: - listing specific servers in the client's metaserver list can allow the client to query these servers without involving the metaserver. - the test tool metaget can be used in scripts to query the metaserver, a specific server, or all nearby servers. Configuring Server ------------------ 1. add the 3521u line to ports, as per the sample_ports file, (this is done automatically for new servers), 2. add the file comment in SYSCONFDIR, with a description of your server, (this is done automatically for new servers, but the default name is "Unnamed Vanilla Server", 3. restart netrekd, 4. test with "metaget localhost", 5. test with "metaget 224.0.0.1". Configuring Client ------------------ No configuration is necessary. When the "-m" (metaserver) option is used, which is the default if no server name is given, the client will query the metaservers and use multicast discovery. Implementation -------------- The netrekd process receives the UDP query packets. See newstartd/newstartd.c for the UDP port support. The netrekd process forks the players program to handle queries. See tools/players for the UDP response handler, triggered by the "u" command line option. The metaget program demonstrates a way to make a query and receive the response, emitted to stdout. It isn't used in a running server unless a server owner chooses to use it somehow. See tools/metaget for the test query program. See parsemeta.c in the client source for additional details on making the query and procesisng the responses. Verification ------------ netrekd adds a line to server log file "log" for each query. Use "tcpdump -n -s 0 -X udp port 3521" to watch for multicast and metaserver query and response packets. For example: 16:51:49.857757 IP 10.0.0.1.40401 > 224.0.0.1.3521: UDP, length 1 0x0000: 4500 001d 0000 4000 0111 8fce 0a00 0001 E..... at ......... 0x0010: e000 0001 9dd1 0dc1 0009 2b47 3f00 0000 ..........+G?... 0x0020: 0000 0000 0000 0000 0000 0000 0000 .............. 16:51:49.859960 IP 10.0.0.3.3521 > 10.0.0.1.40401: UDP, length 38 0x0000: 4500 0042 000a 4000 4011 269e 0a00 0003 E..B.. at .@.&..... 0x0010: 0a00 0001 0dc1 9dd1 002e 17a9 732c 422c ............s,B, 0x0020: 556e 6e61 6d65 6420 5661 6e69 6c6c 6120 Unnamed.Vanilla. 0x0030: 5365 7276 6572 2c31 2c32 3539 322c 302c Server,1,2592,0, 0x0040: 300a 0. Known Bugs ---------- - doesn't properly handle observer ports for INL servers, but does handle the two queues for player ports, -- -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060223/754d1b38/attachment.pgp From quozl at us.netrek.org Sat Feb 25 01:11:56 2006 From: quozl at us.netrek.org (James Cameron) Date: Sat, 25 Feb 2006 18:11:56 +1100 Subject: [netrek-dev] Testing COW Maintainer Address Message-ID: <20060225071156.GA7123@us.netrek.org> In file CHANGES of the COW source is the address cow at netrek.org, but there's no documentation as to where this goes ... so I'm sending a message to see where it turns up. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060225/51c0973d/attachment.pgp From netrek at gmail.com Sat Feb 25 14:56:00 2006 From: netrek at gmail.com (Zach) Date: Sat, 25 Feb 2006 15:56:00 -0500 Subject: [netrek-dev] Testing COW Maintainer Address In-Reply-To: <20060225071156.GA7123@us.netrek.org> References: <20060225071156.GA7123@us.netrek.org> Message-ID: It probably goes to Kurt. Not sure if he is on the list but I have his current address. Zach On 2/25/06, James Cameron wrote: > In file CHANGES of the COW source is the address cow at netrek.org, but > there's no documentation as to where this goes ... so I'm sending a > message to see where it turns up. > > -- > James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.1 (GNU/Linux) > > iD8DBQFEAAM8bmRwv64kZsARAk7wAJ45N/MaliSPHwZ4U0bkigwj8BurAgCgxwIj > jw24d5gxV5N9dqaSWUAnQ88= > =wAim > -----END PGP SIGNATURE----- > > > _______________________________________________ > netrek-dev mailing list > netrek-dev at us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > > > From quozl at us.netrek.org Sat Feb 25 17:55:47 2006 From: quozl at us.netrek.org (James Cameron) Date: Sun, 26 Feb 2006 10:55:47 +1100 Subject: [netrek-dev] Testing COW Maintainer Address In-Reply-To: References: <20060225071156.GA7123@us.netrek.org> Message-ID: <20060225235547.GB11474@us.netrek.org> On Sat, Feb 25, 2006 at 03:56:00PM -0500, Zach wrote: > It probably goes to Kurt. Not sure if he is on the list but I have his > current address. The message itself was the test, and it went to netrek-dev, this mailing list. I'm satisfied with that and don't need to do anything more about it. I'm continuing to plan a release of COW. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From basic at us.netrek.org Sat Feb 25 21:18:18 2006 From: basic at us.netrek.org (Bob Tanner) Date: Sat, 25 Feb 2006 21:18:18 -0600 Subject: [netrek-dev] Testing COW Maintainer Address In-Reply-To: <20060225071156.GA7123@us.netrek.org> References: <20060225071156.GA7123@us.netrek.org> Message-ID: <200602252118.19096.basic@us.netrek.org> On Saturday 25 February 2006 01:11, James Cameron wrote: > In file CHANGES of the COW source is the address cow at netrek.org, but > there's no documentation as to where this goes ... so I'm sending a > message to see where it turns up. Stating the obvious, it came to netrek-dev. -- Bob Tanner Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From basic at us.netrek.org Mon Feb 27 23:56:27 2006 From: basic at us.netrek.org (Bob Tanner) Date: Mon, 27 Feb 2006 23:56:27 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) Message-ID: <200602272356.27823.basic@us.netrek.org> Format: 1.7 Date: Mon, 27 Feb 2006 23:51:48 -0600 Source: netrek-client-cow Binary: netrek-client-cow Architecture: i386 Version: 3.2.0-1 Distribution: unstable Urgency: low Maintainer: Robert J. Tanner Changed-By: Robert J. Tanner Description: netrek-client-cow - netrek Client Changes: netrek-client-cow (3.2.0-1) unstable; urgency=low . * Fix regression caused by previous change, resulting in bad file descriptor errors from select in ReadMetasRecv(). (Quozl) * Change to Quozl's new release numbering scheme, he is the official librarian you know. :-) Files: d69c96b99387d9e82c0ed67cec1b8d2f 242316 non-free/x11 optional netrek-client-cow_3.2.0-1_i386.deb -- Bob Tanner Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060227/aaf03715/attachment.pgp From netrek at gmail.com Tue Feb 28 00:07:41 2006 From: netrek at gmail.com (Zach) Date: Tue, 28 Feb 2006 01:07:41 -0500 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) In-Reply-To: <200602272356.27823.basic@us.netrek.org> References: <200602272356.27823.basic@us.netrek.org> Message-ID: What should we put in our sources.list file to find this in Debian? Zach On 2/28/06, Bob Tanner wrote: > Format: 1.7 > Date: Mon, 27 Feb 2006 23:51:48 -0600 > Source: netrek-client-cow > Binary: netrek-client-cow > Architecture: i386 > Version: 3.2.0-1 > Distribution: unstable > Urgency: low > Maintainer: Robert J. Tanner > Changed-By: Robert J. Tanner > Description: > netrek-client-cow - netrek Client > Changes: > netrek-client-cow (3.2.0-1) unstable; urgency=low > . > * Fix regression caused by previous change, resulting in bad file > descriptor errors from select in ReadMetasRecv(). (Quozl) > * Change to Quozl's new release numbering scheme, he is the official > librarian you know. :-) > Files: > d69c96b99387d9e82c0ed67cec1b8d2f 242316 non-free/x11 optional > netrek-client-cow_3.2.0-1_i386.deb > > > -- > Bob Tanner > Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 > > > _______________________________________________ > netrek-dev mailing list > netrek-dev at us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > From basic at us.netrek.org Tue Feb 28 00:49:42 2006 From: basic at us.netrek.org (Bob Tanner) Date: Tue, 28 Feb 2006 00:49:42 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) In-Reply-To: References: <200602272356.27823.basic@us.netrek.org> Message-ID: <200602280049.42888.basic@us.netrek.org> On Tuesday 28 February 2006 00:07, Zach wrote: > What should we put in our sources.list file to find this in Debian? > > Zach Echo... echo... echo.... http://archives.us.netrek.org/pipermail/netrek-dev/2006-January/002812.html -- Bob Tanner Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From netrek at gmail.com Tue Feb 28 00:58:50 2006 From: netrek at gmail.com (Zach) Date: Tue, 28 Feb 2006 01:58:50 -0500 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) In-Reply-To: <200602280049.42888.basic@us.netrek.org> References: <200602272356.27823.basic@us.netrek.org> <200602280049.42888.basic@us.netrek.org> Message-ID: On 2/28/06, Bob Tanner wrote: > > Echo... echo... echo.... Thx... thx... thx... :-) Zach From quozl at us.netrek.org Tue Feb 28 22:23:34 2006 From: quozl at us.netrek.org (James Cameron) Date: Wed, 1 Mar 2006 15:23:34 +1100 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) In-Reply-To: <200602272356.27823.basic@us.netrek.org> References: <200602272356.27823.basic@us.netrek.org> Message-ID: <20060301042334.GA24916@us.netrek.org> Hey Bob, what am I doing wrong? sources.list has ftp.real-time.com in it, inside an etch pbuilder, yet apt-cache show netrek-client-cow shows version 3.01pl0-1etch1, and apt-get source netrek-client-cow grabs the same version. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From tanner at real-time.com Tue Feb 28 23:19:46 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue, 28 Feb 2006 23:19:46 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.2.0-1 (i386) In-Reply-To: <20060301042334.GA24916@us.netrek.org> References: <200602272356.27823.basic@us.netrek.org> <20060301042334.GA24916@us.netrek.org> Message-ID: <200602282319.46637.tanner@real-time.com> On Tuesday 28 February 2006 22:23, James Cameron wrote: > Hey Bob, what am I doing wrong? > > sources.list has ftp.real-time.com in it, inside an etch pbuilder, yet > apt-cache show netrek-client-cow shows version 3.01pl0-1etch1, and > apt-get source netrek-client-cow grabs the same version. Quick put this up. Does it help? http://faq.eqenchanters.org/index.php?action=artikel&cat=366314&id=57&artlang=en -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mailman.us.netrek.org/pipermail/netrek-dev/attachments/20060228/992ed9c1/attachment.pgp