RE: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Dave Korn
Original Message
From: Igor Pechtchanski
Sent: 18 April 2005 05:26

 On Mon, 18 Apr 2005, Dave Korn wrote:
 
  * postinstall.cc (RunFindVisitor::visitFile):  Don't index off front
   of string if it's too short to possibly contain .done.
 
 FYI: http://cygwin.com/ml/cygwin-apps/2005-02/msg00050.html.
   Igor


  Well, consider it PINGed!


cheers,
  DaveK
-- 
Can't think of a witty .sigline today



Vital information for anyone debugging setup.exe

2005-04-18 Thread Dave Korn




   NO!   NO!!!   NOOOo !!1!!!  

   
FOR GOD'S SAKE WHATEVER YOU DO DON'T USE INSIGHT

 ONLY EVER USE COMMAND-LINE GDB


AAARRRGRGH  MY EYES
  


;)



cheers, 
  DaveK
-- 
Can't think of a witty .sigline today



Re: Please upload: clamav-0.84rc1-1 [test]

2005-04-18 Thread Corinna Vinschen
On Apr 17 12:53, Reini Urban wrote:
 http://tu.xarch.at/publ/cygwin/release/clamav/setup.hint
 http://tu.xarch.at/publ/cygwin/release/clamav/clamav-0.84rc1-1.tar.bz2
 http://tu.xarch.at/publ/cygwin/release/clamav/clamav-0.84rc1-1-src.tar.bz2
 
 This is a test release, so I hardcoded the versions in the setup.hint.
 Please keep the rest.

Uploaded.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.


Re: Update: perl-Win32-GUI, perl-libwin32

2005-04-18 Thread Corinna Vinschen
On Apr 17 12:58, Reini Urban wrote:
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/setup.hint
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4.tar.bz2
  
 
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4-src.tar.bz2
  

Uploaded.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.


Re: Vital information for anyone debugging setup.exe

2005-04-18 Thread Brian Dessent
Dave Korn wrote:

 FOR GOD'S SAKE WHATEVER YOU DO DON'T USE INSIGHT

Heh, you noticed that too... I googled for a way to disable the popups,
but found nothing.  I just comment out the OutputDebugString() call in
msg() when using insight.

Brian


Re: new package: Joe's Own Editor

2005-04-18 Thread Corinna Vinschen
Hi Joe,

On Apr 17 16:12, Joe Allen wrote:
 I've modified JOE to be Cygwin compliant (it used to be called
 joe-3.3, now it's called joe-3.3-1), and I've created a
 script to make a Cygwin release of JOE whenever there is new
 main release of JOE.

Cool!  I'm not sure I understand you correctly, but it sounds you changed
the version number of joe to take over the Cygwin scheme.  That wasn't
necessary since the -1 is just the Cygwin subversion, for example, if you
changed the layout of the Cygwin tar archive for some reason.  If I just
got you wrong, scratch my comment :-)

 One thing I'm not sure about: I've listed aspell as a
 requirement.  This is not really true- the editor will run
 without it, but I find it annoying when the speller is not
 there, so it's kind of a soft requirement.

It's kinda your choice as the maintainer of the package and the usual
result of including also optional dependencies is that you will get
less questions on the Cygwin list in the style of JOE work but speeling
work not, help how?

 Here are the files:
 
 http://world.std.com/~jhallen/joe-3.3-1.tar.bz
 http://world.std.com/~jhallen/joe-3.3-1-src.tar.bz
 http://world.std.com/~jhallen/setup.hint
 
 Here is the setup.hint:
 
 category: Editors
 requires: cygwin aspell
 sdesc: Joe's Own Editor - world-famous Wordstar-like text editor
 ldesc: Joe's Own Editor - world-famous Wordstar-like text editor
 Includes clones of several other editors:
  joe - Main user interface
  jmacs - Gnu-emacs clone
  jstar - Wordstar clone
  jpico - PICO clone
 Editor has syntax highlighting, i18n support and works well
 in Cygwin console.

I reviewed the packaging and it looks pretty good to me with just one
exception.  Is it really intended to put the joe specific stuff, namely
the joe subdirectory into /etc?  This looks weird.  I'd prefer if the
joe subdir would be located in /usr/share which seems to be the correct
location following the FHS.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.


Re: new package: Joe's Own Editor

2005-04-18 Thread Max Bowsher
Corinna Vinschen wrote:
Hi Joe,
On Apr 17 16:12, Joe Allen wrote:
One thing I'm not sure about: I've listed aspell as a
requirement.  This is not really true- the editor will run
without it, but I find it annoying when the speller is not
there, so it's kind of a soft requirement.
It's kinda your choice as the maintainer of the package and the usual
result of including also optional dependencies is that you will get
less questions on the Cygwin list in the style of JOE work but speeling
work not, help how?
I don't think including that dependency is a good idea.
What if someone wants to use joe for editing source code? Or perhaps just 
wants a small install, and has faith in their own spelling? In such 
situations, the dependency would be very annoying.

Max.


Re: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Max Bowsher
Dave Korn wrote:
 Heh, guess how nicely this:-
 virtual void visitFile(String const basePath, const WIN32_FIND_DATA
*theFile)
   {
 String fileName(theFile-cFileName);
 if (fileName.substr(fileName.size() - 5) == .done)
   return;
bit of code plays with the file /etc/postinstall/d.sh?  (Hint: fileName ==
d.sh)
 The attached patch fixes the access violation that results from substr
indexing off the front of the string.  It builds and fixes the problem in
testing.
I am confused.
First, the quoted code should not cause any error, since this is a C++ 
string class, not direct pointer indexing.

Second, I just installed the 'd' package, and the postinstall script was 
successfully executed.

Max.


RE: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Dave Korn
Original Message
From: Max Bowsher
Sent: 18 April 2005 10:27

 Dave Korn wrote:
  Heh, guess how nicely this:-
 
  virtual void visitFile(String const basePath, const WIN32_FIND_DATA
*theFile) {
  String fileName(theFile-cFileName);
  if (fileName.substr(fileName.size() - 5) == .done)return;
 
 bit of code plays with the file /etc/postinstall/d.sh?  (Hint: fileName
 == d.sh) 
 
  The attached patch fixes the access violation that results from substr
 indexing off the front of the string.  It builds and fixes the problem in
 testing.
 
 I am confused.
 
 First, the quoted code should not cause any error, since this is a C++
 string class, not direct pointer indexing.
 
 Second, I just installed the 'd' package, and the postinstall script was
 successfully executed.
 
 Max.

  Hmm, it may depend on compiler or libstdc++ version.  When I run it under
gdb, the C++ class throws a range error exception.  When I run it standalone
I get a gpf-looking error box which is probably a default unhandled
exception handler.  Either way it bombs.

  Hang on, let me show you: I reverted the patch and recompiled, then I
renamed d.sh.done to d.sh in a DOS prompt and ran setup under gdb (ok, i
know that would cause a problem if any files needed replacing, but they
don't.)

C:\cygwin\usr\build\apps\obj-appsgdb ./setup.exe
GNU gdb 6.3.50_2004-12-28-cvs (cygwin-special)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain
conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as i686-pc-cygwin...
(gdb) set args -5
(gdb) run
Starting program: /usr/build/apps/obj-apps/setup.exe -5
warning: LOG: 2 Starting cygwin install, version 2.474
warning: LOG: 2 Failed to set CYGWIN=nontsec
warning: LOG: 2 Current Directory: C:\install-cyg
warning: LOG: 2 Changing gid to Users
warning: LOG: 2 Could not open service McShield for query, start and stop.
McAfe
e may not be installed, or we don't have access.
warning: LOG: 2 source: from cwd
warning: LOG: 2 root: C:\cygwin binary system
warning: LOG: 2 Selected local directory: C:\install-cyg
warning: LOG: 1 Found ini file -
C:\install-cyg/http%3a%2f%2fpepper%2fcygwin/set
up.ini
warning: LOG: 1 2% (8192 of 339169 bytes of ini file read)
warning: LOG: 1 4% (16384 of 339169 bytes of ini file read)
 ..snip!..
warning: LOG: 1 99% (335872 of 339169 bytes of ini file read)
warning: LOG: 1 100% (339169 of 339169 bytes of ini file read)
warning: LOG: 1 Found ini file -
C:\install-cyg/http%3a%2f%2fpepper.cam.artimi.c
om%2fcygwin/setup.ini
warning: LOG: 1 2% (8192 of 373610 bytes of ini file read)
warning: LOG: 1 4% (16384 of 373610 bytes of ini file read)
 ..snip!..
warning: LOG: 1 96% (360448 of 373610 bytes of ini file read)
warning: LOG: 1 98% (368640 of 373610 bytes of ini file read)
warning: LOG: 1 100% (373610 of 373610 bytes of ini file read)
warning: LOG: 1 Found ini file -
C:\install-cyg/http%3a%2f%2fwww.mirror.ac.uk%2f
sites%2fsources.redhat.com%2fftp%2fcygwin/setup.ini
warning: LOG: 1 2% (8192 of 389059 bytes of ini file read)
warning: LOG: 1 4% (16384 of 389059 bytes of ini file read)
warning: LOG: 1 6% (24576 of 389059 bytes of ini file read)
warning: LOG: 1 8% (32768 of 389059 bytes of ini file read)
 ..snip!..
warning: LOG: 1 100% (389059 of 389059 bytes of ini file read)
warning: .ini setup_version is 2.457.2.1, our setup_version is 2.474
warning: LOG: 2 Visited: 544 nodes out of 546.
warning: LOG: 2 Dependency ordered install:
warning: LOG: 2 terminfo
warning: LOG: 2 libncurses8
warning: LOG: 2 texinfo
warning: LOG: 2 _update-info-dir
warning: LOG: 2 ash
warning: LOG: 2 base-passwd
warning: LOG: 2 libintl3
warning: LOG: 2 libiconv2
warning: LOG: 2 libintl2
warning: LOG: 2 cygwin
warning: LOG: 2 groff
warning: LOG: 2 termcap
warning: LOG: 2 bash
warning: LOG: 2 libbz2_1
warning: LOG: 2 bzip2
warning: LOG: 2 coreutils
warning: LOG: 2 gawk
warning: LOG: 2 gzip
warning: LOG: 2 libpcre0
warning: LOG: 2 less
warning: LOG: 2 libcharset1
warning: LOG: 2 libiconv
warning: LOG: 2 mktemp
warning: LOG: 2 man
warning: LOG: 2 libgdbm3
warning: LOG: 2 libdb4.2
warning: LOG: 2 crypt
warning: LOG: 2 expat
warning: LOG: 2 perl
warning: LOG: 2 psutils
warning: LOG: 2 a2ps
warning: LOG: 2 login
warning: LOG: 2 agetty
warning: LOG: 2 antiword
warning: LOG: 2 libgdbm4
warning: LOG: 2 apache
warning: LOG: 2 libapr0
warning: LOG: 2 apr
warning: LOG: 2 libaprutil0
warning: LOG: 2 apr-util
warning: LOG: 2 libaspell15
warning: LOG: 2 libncurses7
warning: LOG: 2 ncurses
warning: LOG: 2 aspell-en
warning: LOG: 2 aspell
warning: LOG: 2 aspell-de
warning: LOG: 2 aspell-dev
warning: LOG: 2 aspell-doc
warning: LOG: 2 aspell-pl
warning: LOG: 2 astyle
warning: 

Re: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Max Bowsher
Max Bowsher wrote:
Dave Korn wrote:
 Heh, guess how nicely this:-
 virtual void visitFile(String const basePath, const WIN32_FIND_DATA
*theFile)
   {
 String fileName(theFile-cFileName);
 if (fileName.substr(fileName.size() - 5) == .done)
   return;
bit of code plays with the file /etc/postinstall/d.sh?  (Hint: fileName 
==
d.sh)

 The attached patch fixes the access violation that results from substr
indexing off the front of the string.  It builds and fixes the problem in
testing.
I am confused.
First, the quoted code should not cause any error, since this is a C++
string class, not direct pointer indexing.
Second, I just installed the 'd' package, and the postinstall script was
successfully executed.
Oh, clarification:
First, the quoted code will throw an exception, my assumption above was 
wrong.

Second, the bug is only present on trunk, not on the release branch.
Max.


RE: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Dave Korn
Original Message
From: Max Bowsher
Sent: 18 April 2005 11:45

 
 Second, the bug is only present on trunk, not on the release branch.
 

  Release branch?  Is that the setup-200205 branch?  You mean there's three
years-worth of development that isn't getting released?  Including all your
latest work?  Hey, then the documentation is a bit inaccurate:

http://sourceware.org/cygwin-apps/setup.html

To build setup in the same way that the net distribution's binaries are
built, configure setup on a Cygwin machine with the following command:


  Hey, it doesn't say anything about how you have to check out a branch!


cheers,
  DaveK
-- 
Can't think of a witty .sigline today



Re: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Max Bowsher
Dave Korn wrote:
Original Message
From: Max Bowsher
Sent: 18 April 2005 11:45

Second, the bug is only present on trunk, not on the release branch.
 Release branch?  Is that the setup-200205 branch?  You mean there's three
years-worth of development that isn't getting released?  Including all 
your
latest work?
No, try the _most recent_ release branch.
 Hey, then the documentation is a bit inaccurate:
http://sourceware.org/cygwin-apps/setup.html
To build setup in the same way that the net distribution's binaries are
built, configure setup on a Cygwin machine with the following command:
 Hey, it doesn't say anything about how you have to check out a branch!
The instructions accurately describe the way in which the build is done 
but not what is built! :-)

Hmm. Perhaps an extra paragraph is in order.
Max.


RE: [PATCH] High priority bugfix for setup.exe

2005-04-18 Thread Dave Korn
Original Message
From: Max Bowsher
Sent: 18 April 2005 12:07

 Dave Korn wrote:
 Original Message
 From: Max Bowsher
 Sent: 18 April 2005 11:45
 
 
 Second, the bug is only present on trunk, not on the release branch.
 
 
  Release branch?  Is that the setup-200205 branch?  You mean there's
 three years-worth of development that isn't getting released?  Including
 all your latest work?
 
 No, try the _most recent_ release branch.

  Heh, scuse me, I was looking for changes on a branch to postinstall.cc and
lead myself astray.


cheers,
  DaveK
-- 
Can't think of a witty .sigline today



Re: new packages: w3m-0.5.1-1 and libgc-6.4-1

2005-04-18 Thread Jason Tishler
On Fri, Apr 15, 2005 at 10:07:26PM -0400, Bob Heckel wrote:
 I have w3m 0.5.1 and libgc 6.4 packaged and available for initial
 release:
 
 http://bheckel.multics.org/cygwin/w3m/w3m-0.5.1-1.tar.bz2
 http://bheckel.multics.org/cygwin/w3m/w3m-0.5.1-1-src.tar.bz2
 http://bheckel.multics.org/cygwin/w3m/setup.hint
 
 http://bheckel.multics.org/cygwin/libgc/libgc-6.4-1.tar.bz2
 http://bheckel.multics.org/cygwin/libgc/libgc-6.4-1-src.tar.bz2
 http://bheckel.multics.org/cygwin/libgc/setup.hint
 
 [snip]
 
 FWIW, both the w3m and libgc packages exist as part of Debian:
 http://packages.debian.org/stable/libs/libgc6
 http://packages.debian.org/stable/web/w3m-ssl

AFAICT, the above packages are GTG.  Does anyone else want to give a GTG
too?  Or, can I just upload the packages?

Thanks,
Jason

-- 
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D  8784 1AFD E4CC ECF4 8EF6


Re: new packages: w3m-0.5.1-1 and libgc-6.4-1

2005-04-18 Thread Corinna Vinschen
On Apr 18 08:04, Jason Tishler wrote:
 On Fri, Apr 15, 2005 at 10:07:26PM -0400, Bob Heckel wrote:
  I have w3m 0.5.1 and libgc 6.4 packaged and available for initial
  release:
  
  http://bheckel.multics.org/cygwin/w3m/w3m-0.5.1-1.tar.bz2
  http://bheckel.multics.org/cygwin/w3m/w3m-0.5.1-1-src.tar.bz2
  http://bheckel.multics.org/cygwin/w3m/setup.hint
  
  http://bheckel.multics.org/cygwin/libgc/libgc-6.4-1.tar.bz2
  http://bheckel.multics.org/cygwin/libgc/libgc-6.4-1-src.tar.bz2
  http://bheckel.multics.org/cygwin/libgc/setup.hint
  
  [snip]
  
  FWIW, both the w3m and libgc packages exist as part of Debian:
  http://packages.debian.org/stable/libs/libgc6
  http://packages.debian.org/stable/web/w3m-ssl
 
 AFAICT, the above packages are GTG.  Does anyone else want to give a GTG
 too?  Or, can I just upload the packages?

Shoot.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.


Re: Vital information for anyone debugging setup.exe

2005-04-18 Thread Igor Pechtchanski
On Mon, 18 Apr 2005, Dave Korn wrote:

 FOR GOD'S SAKE WHATEVER YOU DO DON'T USE INSIGHT
  ONLY EVER USE COMMAND-LINE GDB

Most likely everyone gets burned by this once.  Until they do, advice of
the above sort would probably be rather useless.  But just in case there
*are* people who actually read the documentation, perhaps putting this in
the README or on the web page would be a good idea.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

The Sun will pass between the Earth and the Moon tonight for a total
Lunar eclipse... -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT


Re: new package: Joe's Own Editor

2005-04-18 Thread Joe Allen
OK, I've removed aspell as a requirement and have changed the directory 
from /etc/joe to /usr/share/joe.

Here are the new files:
http://world.std.com/~jhallen/joe-3.3-1.tar.bz2
http://world.std.com/~jhallen/joe-3.3-1-src.tar.bz2
http://world.std.com/~jhallen/setup.hint
category: Editors
requires: cygwin
sdesc: Joe's Own Editor - world-famous Wordstar-like text editor
ldesc: Joe's Own Editor - world-famous Wordstar-like text editor
Includes clones of several other editors:
 joe - Main user interface
 jmacs - Gnu-emacs clone
 jstar - Wordstar clone
 jpico - PICO clone
Editor has syntax highlighting, i18n support and works well
in Cygwin console.  Get 'aspell' for spell checking in JOE.
Max Bowsher wrote:
Corinna Vinschen wrote:
Hi Joe,
On Apr 17 16:12, Joe Allen wrote:
One thing I'm not sure about: I've listed aspell as a
requirement.  This is not really true- the editor will run
without it, but I find it annoying when the speller is not
there, so it's kind of a soft requirement.

It's kinda your choice as the maintainer of the package and the usual
result of including also optional dependencies is that you will get
less questions on the Cygwin list in the style of JOE work but speeling
work not, help how?

I don't think including that dependency is a good idea.
What if someone wants to use joe for editing source code? Or perhaps 
just wants a small install, and has faith in their own spelling? In 
such situations, the dependency would be very annoying.

Max.




Re: new package: Joe's Own Editor

2005-04-18 Thread Christopher Faylor
On Mon, Apr 18, 2005 at 10:19:26AM -0400, Joe Allen wrote:
OK, I've removed aspell as a requirement and have changed the directory 
from /etc/joe to /usr/share/joe.

Here are the new files:

http://world.std.com/~jhallen/joe-3.3-1.tar.bz2
http://world.std.com/~jhallen/joe-3.3-1-src.tar.bz2
http://world.std.com/~jhallen/setup.hint

category: Editors
requires: cygwin
sdesc: Joe's Own Editor - world-famous Wordstar-like text editor
ldesc: Joe's Own Editor - world-famous Wordstar-like text editor
Includes clones of several other editors:
 joe - Main user interface
 jmacs - Gnu-emacs clone
 jstar - Wordstar clone
 jpico - PICO clone
Editor has syntax highlighting, i18n support and works well
in Cygwin console.  Get 'aspell' for spell checking in JOE.

Rather than wasting descriptive text on the fact that joe is world-famous
could we use descriptions found in Fedora and other linuxes?

FC3 reports this:

  Summary : An easy to use, modeless text editor.
  Description :
  Joe is a powerful, easy to use, modeless text editor.
  It uses the same WordStar keybindings used in Borland's development
  environment.

Describing the contents of the package seems like overkill to me.

cgf


Re: new packages: w3m-0.5.1-1 and libgc-6.4-1

2005-04-18 Thread Jason Tishler
Corinna,

On Mon, Apr 18, 2005 at 02:12:28PM +0200, Corinna Vinschen wrote:
 On Apr 18 08:04, Jason Tishler wrote:
  On Fri, Apr 15, 2005 at 10:07:26PM -0400, Bob Heckel wrote:
   I have w3m 0.5.1 and libgc 6.4 packaged and available for initial
   release:
   
   [snip]
  
  AFAICT, the above packages are GTG.  Does anyone else want to give a
  GTG too?  Or, can I just upload the packages?
 
 Shoot.

Uploaded.

Bob,

Please send announcements (one for each package) using an existing one
as a model to cygwin-announce.

Thanks,
Jason

-- 
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D  8784 1AFD E4CC ECF4 8EF6


Re: new package: Joe's Own Editor

2005-04-18 Thread Joe Allen
Thomas Wolff wrote:
Hi, a short first glance review:
 

Editor has syntax highlighting, i18n support and works well
in Cygwin console.
   

* When I start joe in a console mode window (DOS box) and type a 
 non-ASCII letter, an 8-bit stripped character is displayed in 
 reverse mode instead.
 

The editor looks at LC_CTYPE to determine the locale of the terminal.
* When I start joe in a UTF-8 xterm, instead of non-ASCII characters 
 joe displays 8-bit stripped characters in reverse mode for each 
 single byte of the UTF-8 sequence.
 

This is still correct, because LC_CTYPE is still not set.
* When I try to enable Unicode with $HOME/.joerc containing the line:
-encoding utf-8
 , joe hangs after starting.
 

You need to copy the joerc file to $HOME/.joerc
It does not look at both file, so if you don't copy everything you don't 
have any key bindings.

* When I have an empty file $HOME/.joerc, joe hangs after starting.
 

Likewise.
This is not working i18n support.
 

Delete your $HOME/.joerc
Then in your utf-8 xterm, type:
 export LC_CTYPE=en_US.utf8(LC_ALL will also work).
 joe some_file_with_utf8_chars
(JOE will assume the terminal is UTF-8 and the default file type is 
UTF-8.  You can override the file type
by hitting ^T E in the editor (hit tab at the prompt for a list) or by 
using the -encoding option in the joerc file.
Then JOE will translate between the terminal's encoding and the file's 
encoding).

Kind regards,
Thomas Wolff
 




Please upload: Apache-1.3.33-1

2005-04-18 Thread Robert Richter
Hi all,

please upload a new Apache-1.3.33 package available here:

http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1-src.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/setup.hint

Release focus: Update from version 1.3.29

The Apache package contains the mod_ssl EAPI patch but no additional module
extensions. These are part of further releases.

Since this package is a replacement of an older version, I do not think this
release increases the risk of conflicts with an upcoming Apache2 package.

Thanks,
Robert




Re: Please upload: Apache-1.3.33-1

2005-04-18 Thread Christopher Faylor
On Mon, Apr 18, 2005 at 08:23:40PM +0200, Robert Richter wrote:
Hi all,

please upload a new Apache-1.3.33 package available here:

http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1-src.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/setup.hint

Release focus: Update from version 1.3.29

Uploaded.

The Apache package contains the mod_ssl EAPI patch but no additional module
extensions. These are part of further releases.

Since this package is a replacement of an older version, I do not think this
release increases the risk of conflicts with an upcoming Apache2 package.

I agree.

cgf


Re: new package: Joe's Own Editor

2005-04-18 Thread Corinna Vinschen
On Apr 18 11:27, Joe Allen wrote:
 Here are the new files:
 
 http://world.std.com/~jhallen/joe-3.3-1.tar.bz2
 http://world.std.com/~jhallen/joe-3.3-1-src.tar.bz2
 http://world.std.com/~jhallen/setup.hint

Uploaded.  Please send an announcment to cygwin-announce@cygwin.com
as described on http://cygwin.com/setup.html#submitting, section 9.


Thanks,
Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.


Re: Please upload: Apache-1.3.33-1

2005-04-18 Thread Christopher Faylor
On Mon, Apr 18, 2005 at 02:40:07PM -0400, Christopher Faylor wrote:
On Mon, Apr 18, 2005 at 08:23:40PM +0200, Robert Richter wrote:
Hi all,

please upload a new Apache-1.3.33 package available here:

http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1-src.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/apache-1.3.33-1.tar.bz2
http://www.fast4ward.de/cygwin/release/apache/setup.hint

Release focus: Update from version 1.3.29

Uploaded.

The Apache package contains the mod_ssl EAPI patch but no additional module
extensions. These are part of further releases.

Since this package is a replacement of an older version, I do not think this
release increases the risk of conflicts with an upcoming Apache2 package.

I agree.

Don't forget the announcement, btw.  It should go out ASAP.

cgf


Re: Vital information for anyone debugging setup.exe

2005-04-18 Thread Reini Urban
Dave Korn schrieb:
   NO!   NO!!!   NOOOo !!1!!!  
   
FOR GOD'S SAKE WHATEVER YOU DO DON'T USE INSIGHT
 ONLY EVER USE COMMAND-LINE GDB
AAARRRGRGH  MY EYES
HA!
Nevertheless I still prefer insight over gdb.
You just have to turn off those misdirected dialog popups, which should 
be logfile entries.
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
http://phpwiki.org/


Re: new package: Joe's Own Editor

2005-04-18 Thread Reini Urban
Corinna Vinschen schrieb:
I reviewed the packaging and it looks pretty good to me with just one
exception.  Is it really intended to put the joe specific stuff, namely
the joe subdirectory into /etc?  This looks weird.  I'd prefer if the
joe subdir would be located in /usr/share which seems to be the correct
location following the FHS.
I got used to /etc/joerc and the various other rc files there.
/etc/joe/*rc looks good to me.
Still my favorite editor, though it has persistent \t bugs.
But I'm stuck with 2.9.7pre1 on cygwin for the last years.
Good to have the original author back to support that!
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
http://phpwiki.org/


Re: Update: perl-Win32-GUI, perl-libwin32

2005-04-18 Thread Reini Urban
Corinna Vinschen schrieb:
On Apr 17 12:58, Reini Urban wrote:
http://tu.xarch.at/publ/cygwin/release/perl-libwin32/setup.hint
http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4.tar.bz2 

http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4-src.tar.bz2 

Uploaded.
Whow! Thanks a lot.
What about perl-Win32-GUI?
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
http://phpwiki.org/


Re: Update: perl-Win32-GUI, perl-libwin32

2005-04-18 Thread Corinna Vinschen
On Apr 18 21:36, Reini Urban wrote:
 Corinna Vinschen schrieb:
 On Apr 17 12:58, Reini Urban wrote:
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/setup.hint
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4.tar.bz2
  
 
 http://tu.xarch.at/publ/cygwin/release/perl-libwin32/perl-libwin32-0.191-4-src.tar.bz2
  
 
 
 Uploaded.
 
 Whow! Thanks a lot.
 
 What about perl-Win32-GUI?

I didn't realize that there was another package to upload due to your
unnecessary long email (g!).  Now, if you resend the links together
with a so far missing setup.hint file?


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  mailto:cygwin@cygwin.com
Red Hat, Inc.