Bug#38567: Ups and downs in market.

2007-11-07 Thread Orlando Mccracken
A breaking news

Nano Chemical Systems Holdings, Inc. (N C S H.PK)

Time is of the essence for this opportunity to not pass on by.
N C S H  is assured a major upward swing in price.
Now is the moment to decide to let this pass or to soar with it.

Just go a head and read the latest Investment News:
http://biz.yahoo.com/bw/071106/20071106006006.html?.v=1




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




nettoe-1.1.0-2 patch.

2007-11-07 Thread Grant Defayette
This concerns nettoe-1.1.0-2

I have added an option to specify the server and client ports on the
command line. The default ports (7501, and 7502) are not mentioned in
the man page. I didn't fix that. I have also slightly improved the way
multiple arguments
are handled by the argument parsing function. This patch/diff is below.

I put the altered sources in nettoe-1.1.1 just for my reference, I do
not intend to imply that my changes make a new release. I was not able
to get in touch with the original author.

I am not sure that I generated this patch properly. If not please give
me simple instructions (I know it is not very hard, but it has been
awhile since I have done it) if you would like to use the code. 

diff -p -c nettoe-1.1.0/src/game.h nettoe-1.1.1/src/game.h
*** nettoe-1.1.0/src/game.h 2001-07-21 16:59:10.0 -0400
--- nettoe-1.1.1/src/game.h 2007-11-07 02:38:10.0 -0500
***
*** 22,29 
  #define AUTHOR_EMAIL "<[EMAIL PROTECTED]>"
  #define RELEASE_DATE "22 July 2001"
  
- #define SERVER_PORT_NUMBER 7501
- #define CLIENT_PORT_NUMBER 7502
  #define MAXDATASIZE 50
  
  #define MAX_PNAME_LEN 15 /* this define max chars for the player
names*/
--- 22,27 
***
*** 31,37 
  int NO_BEEP;
  
  int NO_COLORS;
! 
  
  
  
--- 29,36 
  int NO_BEEP;
  
  int NO_COLORS;
! extern SERVER_PORT_NUMBER;
! extern CLIENT_PORT_NUMBER;
  
  
  
diff -p -c nettoe-1.1.0/src/misc.c nettoe-1.1.1/src/misc.c
*** nettoe-1.1.0/src/misc.c 2001-07-21 16:59:23.0 -0400
--- nettoe-1.1.1/src/misc.c 2007-11-07 02:47:55.0 -0500
***
*** 28,33 
--- 28,34 
  #include "terminal.h"
  
  
+ 
  int who_start_first (void)
  {
int generated_number;
*** void print_infos_screen (void)
*** 101,113 
  void parse_cmd_args (int argc, char *argv[])
  {
 int i;
! 
 if (argc < 2)
   return;
  
for (i = 1; i <= argc - 1; i++)
  {
- 
   if ( (!strcmp(argv[i], "-h")) || (!strcmp(argv[i], "--help")) )
   {
   fprintf(stdout, "netToe %s the enhanced, networked, Tic Tac
Toe game.\n", VERSION);
--- 102,113 
  void parse_cmd_args (int argc, char *argv[])
  {
 int i;
!int nothing = 1;
 if (argc < 2)
   return;
  
for (i = 1; i <= argc - 1; i++)
  {
   if ( (!strcmp(argv[i], "-h")) || (!strcmp(argv[i], "--help")) )
   {
   fprintf(stdout, "netToe %s the enhanced, networked, Tic Tac
Toe game.\n", VERSION);
*** void parse_cmd_args (int argc, char *arg
*** 118,123 
--- 118,124 
 fprintf(stdout, "-nc, --no-colors disable colors\n");
   fprintf(stdout, "-h,  --help  display this help and exit
\n");
   fprintf(stdout, "-v,  --version   output version information
and exit\n");
+  fprintf(stdout, "-p [server] [client],  --port [server]
[client] set port numbers\n");
   fprintf(stdout, "\n");
   fprintf(stdout, "The netToe project can be found at: %s\n",
HOMEPAGE);
   fprintf(stdout, "\n");
*** void parse_cmd_args (int argc, char *arg
*** 138,163 
  
   exit(EXIT_SUCCESS);
  }
- 
else if ( (!strcmp(argv[i], "-nb"))  || (!strcmp(argv[i],
"--no-beep")) )
  {
 NO_BEEP = 1;
!return;
  }
else if ( (!strcmp(argv[i], "-nc"))  || (!strcmp(argv[i],
"--no-colors")) )
  {
 NO_COLORS = 1;
!return;
  }
  
!   else
  {
 fprintf(stdout, "%s: unrecognized option `%s'\n", argv[0],
argv[i]);
 fprintf(stdout, "Try `%s --help' for more information.\n",
argv[0]);
  
 exit (EXIT_SUCCESS);
  }
!   }
  
return;
  }
--- 139,176 
  
   exit(EXIT_SUCCESS);
  }
else if ( (!strcmp(argv[i], "-nb"))  || (!strcmp(argv[i],
"--no-beep")) )
  {
 NO_BEEP = 1;
!nothing = 0;
  }
else if ( (!strcmp(argv[i], "-nc"))  || (!strcmp(argv[i],
"--no-colors")) )
  {
 NO_COLORS = 1;
!nothing = 0;
  }
+   else if ( (!strcmp(argv[i], "-p"))  || (!strcmp(argv[i],
"--port")) )
+  {
+   if (argc >= i + 2)
+   {
+   SERVER_PORT_NUMBER = atoi(argv[(++i)]);
+   CLIENT_PORT_NUMBER = atoi(argv[(++i)]);
+   }
+   fprintf(stdout, "Server: %i Client: %i\n", SERVER_PORT_NUMBER,
CLIENT_PORT_NUMBER);
+   nothing = 0;
+  }
+ else {
+   nothing = 1;
+  }
  
!   if (nothing)
  {
 fprintf(stdout, "%s: unrecognized option `%s'\n", argv[0],
argv[i]);
 fprintf(stdout, "Try `%s --help' for more information.\n",
argv[0]);
  
 exit (EXIT_SUCCESS);
  }
!   } /*end for*/
  
return;
  }
diff -p -c nettoe-1.1.0/src/nettoe.c nettoe-1.1.1/src/nettoe.c
*** nettoe-1.1.0/src/nettoe.c   2001-07-21 16:58:24.0 -0400
--- nettoe-1.1.1/src/nettoe.c   2007-11-07 02:37:32.0 -0500
***
*** 29,35 
  #include "network.h"
  #include "game.h"
  
! 
  char c11, c12, c13;
  char c21, c22, c23;
  cha

Bug#450474: tclex: FTBFS: ./configure: line 615: /usr/share/lib/tcl8.4/tclConfig.sh: No such file or directory

2007-11-07 Thread Lucas Nussbaum
Package: tclex
version: 1.2a1-11
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071106 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
dpkg-source: building tclex in tclex_1.2a1-11.dsc
 debian/rules build
dh_testdir
cd src; chmod +x configure; ./configure; 
creating cache ./config.cache
setting prefix to: /usr/share
checking for a BSD compatible install... /usr/bin/install -c
./configure: line 615: /usr/share/lib/tcl8.4/tclConfig.sh: No such file or 
directory
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/11/06

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#450536: Please add some packages to Build-Depends...

2007-11-07 Thread Marco Rodrigues
Package: wmbinclock

Hi!

Please add " x11proto-xext-dev, libxt-dev, libxext-dev " to Build-Depends.

Thanks!

-- 
Marco Rodrigues

http://Marco.Tondela.org



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#450536: marked as done (Please add some packages to Build-Depends...)

2007-11-07 Thread Debian Bug Tracking System
Your message dated Thu, 08 Nov 2007 00:09:35 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Bug#450536: Please add some packages to Build-Depends...
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: wmbinclock

Hi!

Please add " x11proto-xext-dev, libxt-dev, libxext-dev " to Build-Depends.

Thanks!

-- 
Marco Rodrigues

http://Marco.Tondela.org


--- End Message ---
--- Begin Message ---
Marco Rodrigues <[EMAIL PROTECTED]> writes:

> Package: wmbinclock
>
> Hi!
>
> Please add " x11proto-xext-dev, libxt-dev, libxext-dev " to Build-Depends.

wmbinclock build-depends on libx11-dev, which depends on libxext-dev,
which in turn depends on x11proto-xext-dev.  libxt-dev is not used.
Please check with "apt-get build-dep" before reporting bugs.

Cheers,

Matej

--- End Message ---


Bug#450536:

2007-11-07 Thread Marco Rodrigues
Hi!

The packages I asked to be added, it's because of..

https://bugs.launchpad.net/ubuntu/+source/wmbinclock/+bug/135571

https://launchpad.net/ubuntu/+source/wmbinclock

It does FTBFS because of the missing packages.. They're added to Ubuntu.

-- 
Marco Rodrigues

http://Marco.Tondela.org



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#450536:

2007-11-07 Thread Matej Vela
reopen 450536
retitle 450536 wmbinclock: should build-depend on libxext-dev
tag 450536 experimental
thanks

Marco Rodrigues <[EMAIL PROTECTED]> writes:

> The packages I asked to be added, it's because of..
>
> https://bugs.launchpad.net/ubuntu/+source/wmbinclock/+bug/135571
>
> https://launchpad.net/ubuntu/+source/wmbinclock
>
> It does FTBFS because of the missing packages.. They're added to Ubuntu.

I see... This does not apply to etch or sid, but libx11-dev from
experimental no longer depends on libxext-dev.

Cheers,

Matej



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#450536

2007-11-07 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reopen 450536
Bug#450536: Please add some packages to Build-Depends...
Bug reopened, originator not changed.

> retitle 450536 wmbinclock: should build-depend on libxext-dev
Bug#450536: Please add some packages to Build-Depends...
Changed Bug title to `wmbinclock: should build-depend on libxext-dev' from 
`Please add some packages to Build-Depends...'.

> tag 450536 experimental
Bug#450536: wmbinclock: should build-depend on libxext-dev
There were no tags set.
Tags added: experimental

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]