Re: [ITA/P] a2ps, libpaper

2011-11-05 Thread Corinna Vinschen
On Nov  4 13:46, Yaakov (Cygwin/X) wrote:
> The Cygwin a2ps package is currently out of date and depends on the
> ancient libintl2, and furthermore the maintainer hasn't been heard from
> in years[1].  I think it's fair to call this orphaned at this point.
> 
> While I have no particular attachment to this package, as I do have a
> working copy in Ports, I might as well ITA it:
> 
> ftp://ftp.cygwinports.org/pub/cygwinports/release-2/a2ps/
> 
> Since this a2ps package uses libpaper, which is not yet in the distro,
> I'll ITP that now:
> 
> ftp://ftp.cygwinports.org/pub/cygwinports/release-2/libpaper/
> 
> libpaper, while maintained by Debian, is found in all major distros.

Thanks for taking over a2ps.  Consequently libpaper is a no-brainer
again.  Feel free to upload.


Thanks again,
Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  cygwin AT cygwin DOT com
Red Hat


RFU: libsigc2.0-2.2.10-2

2011-11-05 Thread Chris Sutcliffe
Please upload:

wget -x -nH --cut-dirs=1 \
http://emergedesktop.org/cygwin/libsigc2.0/libsigc2.0-2.2.10-2.tar.bz2 \
http://emergedesktop.org/cygwin/libsigc2.0/libsigc2.0-2.2.10-2-src.tar.bz2 \
http://emergedesktop.org/cygwin/libsigc2.0/libsigc2.0_0/libsigc2.0_0-2.2.10-2.tar.bz2
\
http://emergedesktop.org/cygwin/libsigc2.0/libsigc2.0-devel/libsigc2.0-devel-2.2.10-2.tar.bz2
\
http://emergedesktop.org/cygwin/libsigc2.0/libsigc2.0-doc/libsigc2.0-doc-2.2.10-2.tar.bz2

Thank you,

Chris

-- 
Chris Sutcliffe
http://emergedesktop.org
http://www.google.com/profiles/ir0nh34d


RFU: libtorrent-0.12.9-2 / rtorrent-0.8.9-2

2011-11-05 Thread Chris Sutcliffe
Please upload:

wget -x -nH --cut-dirs=1 \
http://emergedesktop.org/cygwin/libtorrent/libtorrent-0.12.9-2.tar.bz2 \
http://emergedesktop.org/cygwin/libtorrent/libtorrent-0.12.9-2-src.tar.bz2 \
http://emergedesktop.org/cygwin/libtorrent/libtorrent14/libtorrent14-0.12.9-2.tar.bz2
\
http://emergedesktop.org/cygwin/libtorrent/libtorrent-devel/libtorrent-devel-0.12.9-2.tar.bz2
\
http://emergedesktop.org/cygwin/rtorrent/rtorrent-0.8.9-2.tar.bz2 \
http://emergedesktop.org/cygwin/rtorrent/rtorrent-0.8.9-2-src.tar.bz2

Thank you,

Chris

-- 
Chris Sutcliffe
http://emergedesktop.org
http://www.google.com/profiles/ir0nh34d


RE: [ITP] win-ssh-agent 1.07

2011-11-05 Thread Karl M

> Date: Thu, 3 Nov 2011 23:03:39 -0400
> From: cgf
> To: cygwin-apps
> Subject: Re: [ITP] win-ssh-agent 1.07
> 
> I don't agree. I don't see why this couldn't be accomplished using
> standard UNIX tools and it seems like it might even be a potential
> security hole. I don't see the need to have this package in the
> distribution.
> 
I have been using ssh-agent with the -a option to explicitly specify the
socket instead of the randomly chosen socket name. This avoids the
slow execution of keychain and simplifys the location of the socket.
 
The below is from my .bash_profile to launch the agent as needed.
The initial test of SSH_AUTH_SOCK is to support a forwarded agent.
 
if [ -z "$SSH_AUTH_SOCK" ]; then
 export SSH_AUTH_SOCK="$HOME/.ssh/ssh-auth-sock"
fi
ssh-add -l &>/dev/null
ec=$?
if [ $ec -eq 2 ]; then
 rm $SSH_AUTH_SOCK &>/dev/null
 ssh-agent -a $SSH_AUTH_SOCK &>/dev/null
 ssh-add
elif [ $ec -eq 1 ]; then
 ssh-add
fi
 
You can also define SSH_AUTH_SOCK in the registry if you wish for non-Cygwin 
uses.
 
So I don't see a need for win-ssh-agent, unless the OP can identify any use 
cases not
satisfied by existing options?
 
Thanks,
 
...Karl   


Re: [ITP] win-ssh-agent 1.07

2011-11-05 Thread Christopher Faylor
On Sat, Nov 05, 2011 at 10:21:28PM -0800, Karl M wrote:
>So I don't see a need for win-ssh-agent, unless the OP can identify any use 
>cases not
>satisfied by existing options?

This is a dead subject.  The OP has withdrawn the package.