Installable file HP-Unix

2009-03-06 Thread Pulipaka, Satyanarayana {PEP}
Hi,
I want to deploy GPG on HP-UX Itanium platform. Am little confused where 
can I found the installable version of this.
Could any one of you please let me know?

Best regards,

Satya


___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Re: GnuPG 2.0.11 released

2009-03-06 Thread Charly Avital
Werner Koch wrote the following on 3/3/09 6:45 AM:
 Hello!
 
 We are pleased to announce the availability of a new stable GnuPG-2
 release: Version 2.0.11.
[...]

 Thanks
 ==
 
 We have to thank all the people who helped with this release, be it
 testing, coding, translating, suggesting, auditing, administering the
 servers, spreading the word or answering questions on the mailing
 lists.  
 
 
 Happy Hacking,
 
   The GnuPG Team

Compiled from source under System Version: Mac OS X 10.5.6 (9G55)
Kernel Version: Darwin 9.6.0, with Benjamin Donnachie's native pinentry-mac.

Thank you GnuPG Team.

Charly
MacOS 10.5.6 - MacBook Intel C2Duo Aluminum Late 2008- GnuPG 1.4.9 -
GPG2 2.0.11 - Thunderbird 2.0.0.19 +Enigmail 0.95.7 - Apple's
Mail+GPGMail 1.2.0 (v56), PGP key: 0xA57A8EFA

___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Re: Installable file HP-Unix

2009-03-06 Thread Joseph Oreste Bruni


On Mar 4, 2009, at 9:35 AM, Pulipaka, Satyanarayana {PEP} wrote:


Hi,
   I want to deploy GPG on HP-UX Itanium platform. Am little  
confused where can I found the installable version of this.

   Could any one of you please let me know?

Best regards,

Satya



I've checked the various HP-UX porting sites and I can't seem to find  
a pre-built depot file for you to install. There might be some  
lingering crypto export issues that HP doesn't want to deal with.


You could trying building GnuPG from the source code, which is what I  
did.




___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Re: GnuPG 2.0.11 released - redux.

2009-03-06 Thread Charly Avital
Werner Koch wrote the following on 3/3/09 6:45 AM:
 Hello!
 
 We are pleased to announce the availability of a new stable GnuPG-2
 release: Version 2.0.11.
[...]

 Thanks
 ==
 
 We have to thank all the people who helped with this release, be it
 testing, coding, translating, suggesting, auditing, administering the
 servers, spreading the word or answering questions on the mailing
 lists.  
 
 
 Happy Hacking,
 
   The GnuPG Team

Compiled from source under System Version: Mac OS X 10.5.6 (9G55)
Kernel Version: Darwin 9.6.0, with Benjamin Donnachie's native pinentry-mac.

Thank you GnuPG Team.

Thank you, Benjamin Donnachie!

Charly
MacOS 10.5.6 - MacBook Intel C2Duo Aluminum Late 2008- GnuPG 1.4.9 -
GPG2 2.0.11 - Thunderbird 2.0.0.19 +Enigmail 0.95.7 - Apple's
Mail+GPGMail 1.2.0 (v56), PGP key: 0xA57A8EFA



___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Just one gpg-agent

2009-03-06 Thread Thomas Bohn
I currently try to get the gpg-agent to start just one time and not to 
get one more gpg-agent session each time I log in, but it doesn't work.


Even the hint in the gpg-agent man page won't work, I still get more 
than one gpg-agent process and more than one gpg-agent directory.


Thomas

___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Re: Just one gpg-agent

2009-03-06 Thread Ingo Klöcker
On Friday 06 March 2009, Thomas Bohn wrote:
 I currently try to get the gpg-agent to start just one time and not
 to get one more gpg-agent session each time I log in, but it doesn't
 work.

 Even the hint in the gpg-agent man page won't work, I still get more
 than one gpg-agent process and more than one gpg-agent directory.

I suppose we are talking about Linux or some Unix derivative.

I run the following two commands on session start:
=
killall gpg-agent 2/dev/null
eval $(gpg-agent --daemon --default-cache-ttl 36000)
=

Since I'm using KDE they are in a file called start-gpg-agent.sh that 
I've put into ~/.kde/env. Before that I used a custom ~/.xsession 
script.


Regards,
Ingo


signature.asc
Description: This is a digitally signed message part.
___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users


Re: Just one gpg-agent

2009-03-06 Thread Doug Barton
I have a slightly more sophisticated gpg-agent script that has worked
well for me with a variety of window managers:


#!/bin/sh

PATH=/bin:/usr/bin:/usr/local/bin

test -e ${HOME}/.gpg-agent-info  unlink ${HOME}/.gpg-agent-info

killall -0 gpg-agent 2/dev/null
running=$?
if [ $running -eq 0 ]; then
killall gpg-agent
sleep 1
killall -0 gpg-agent 2/dev/null  killall -9 gpg-agent
fi

[ $1 = stop ]  exit 0

eval `gpg-agent --enable-ssh-support --daemon --write-env-file`

exit 0


I then have the following in my .xsession file so that all of my
windows inherit the necessary stuff:

unset GPG_AGENT_INFO SSH_AUTH_SOCK SSH_AGENT_PID
${HOME}/.bin/gpg-agent.sh
if [ -r ${HOME}/.gpg-agent-info ]; then
. ${HOME}/.gpg-agent-info
export GPG_AGENT_INFO SSH_AUTH_SOCK SSH_AGENT_PID
fi


hope this helps,

Doug

___
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users