Page MenuHome GnuPG
Feed Advanced Search

Mar 1 2017

werner removed a project from T2976: Cannot add an existing Curve 25519 subkey: Unreleased.
Mar 1 2017, 9:05 PM · gnupg, Bug Report
ballapete added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

This happens on at least PPC Mac OS X 10.4.11, Tiger. Compiler is by default Apple's
version of GCC 4.2. The error is reported as this:

libtool: compile: /opt/local/bin/gcc-apple-4.2 -DHAVE_CONFIG_H -I. -I..
-I.. -I/opt/local/include -I/opt/local/include -pipe -Os -arch ppc -Wall
-Wcast-align -Wshadow -Wstrict-prototypes -Wpointer-arith -MT
libassuan_la-assuan-socket.lo -MD -MP -MF .deps/libassuan_la-assuan-
socket.Tpo -c assuan-socket.c -fno-common -DPIC -o .libs/libassuan_la-
assuan-socket.o
assuan-socket.c: In function 'socks5_connect':
assuan-socket.c:732: error: 'INADDR_LOOPBACK' undeclared (first use in
this function)
assuan-socket.c:732: error: (Each undeclared identifier is reported only
once
assuan-socket.c:732: error: for each function it appears in.)
make[3]: * [libassuan_la-assuan-socket.lo] Error 1
make[3]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3/src'
make[2]:
* [all] Error 2
make[2]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3/src'
make[1]: * [all-recursive] Error 1
make[1]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3'
make:
* [all] Error 2
make: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3'
Command failed: cd
"/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3"
&& /usr/bin/make -w all

Cause is that the declaration of 'INADDR_LOOPBACK' is hidden behind some guards. The
two external links document the situation, they also offer patches, either the attached
one or this addition for src/assuan-socket.c:

//fix missing define in MacOSX 10.4 Tiger
#ifndef INADDR_LOOPBACK

#define INADDR_LOOPBACK (u_int32_t)0x7f000001

#endif

In ten days I'll be at home again with my Apple PowerBook G4 and might have time to
check the situation in Mac OS X 10.5, Leopard.

Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete changed External Link from https://trac.macports.org/ticket/51708 to https://trac.macports.org/ticket/51708, https://trac.macports.org/ticket/53602 on T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.
Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete changed Version from 2.4.3 to 2.4.3, 2.4.2 on T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.
Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

D380: 963_src_assuan-socket_INADDR_LOOPBACK.patch

Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
dkg added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

Justus, thanks for this work, it's great!. If we can solve the problem by doing
more clever socket(7) manipulation, that would be a big win.

How do you propose dealing with the getsockname() variations? or should we just
forbid the use of getsockname() entirely in the gnupg codebase?

Mar 1 2017, 7:24 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
justus claimed T2387: GNUPGHOME with newlines breaks standard parsing of gpgconf --list-dirs.
Mar 1 2017, 5:47 PM · gnupg (gpg22), Bug Report, gnupg
justus added a project to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE: MacOS.
Mar 1 2017, 4:54 PM · MacOS, Bug Report, libassuan
justus added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

See T2910.

Mar 1 2017, 4:54 PM · MacOS, Bug Report, libassuan
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

I addressed this for GPGME in 60273e8b2c11d42215a5707bc55e3e0d8f350e07 but
apparently forgot to mention that here.

I'll keep the bug open until I fixed this in all packages.

Mar 1 2017, 4:53 PM · MacOS, gpgme, Bug Report
justus added a project to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra: In Progress.
Mar 1 2017, 4:53 PM · MacOS, gpgme, Bug Report
justus closed T2956: http://jenkins.gnupg.org/ 403s, should redirect to https instead as Resolved.
Mar 1 2017, 3:32 PM · Bug Report, gpgweb
justus added a comment to T2956: http://jenkins.gnupg.org/ 403s, should redirect to https instead.

I added the following snippet to our pound configuration in the ListenHTTP
section for IPv4:

  1. Justus: Redirect all jenkins request to https. Service HeadRequire "Host:.*jenkins.gnupg.org" Redirect 301 "https://jenkins.gnupg.org" End

I hope I didn't break anything. Jenkins is much nicer to use now :)

Mar 1 2017, 3:32 PM · Bug Report, gpgweb
Mechtilde added a comment to T2971: Installing Gpg4win as another user.

Wichtiger Hinweis:
Diese E-Mail enthält vertrauliche oder rechtlich geschützte Informationen.
Wenn Sie nicht der beabsichtigte Empfänger sind, informieren Sie bitte sofort den Absender und löschen Sie diese E-Mail. Das unbefugte Kopieren dieser E-Mail oder die unbefugte Weitergabe der enthaltenen Informationen ist nicht gestattet.

Mar 1 2017, 3:32 PM · Bug Report, gpg4win
Mechtilde added a comment to T2971: Installing Gpg4win as another user.

Mar 1 2017, 3:32 PM · Bug Report, gpg4win
aheinecke added a comment to T2971: Installing Gpg4win as another user.

Thanks for your report. Indeed it should work as you described and we have code
in the installer to print a non admin warning. If this is not shown then it is a
bug.

On a related note: I have on my TODO list to enable "Single User" installation
in case a user tries to install Gpg4win without admin rights, because with the
modern gnupg versions we don't need admin rights anymore. Would this also have
solved your problem but or do you specifically want to have Gpg4win installed
systemwide?

Mar 1 2017, 3:15 PM · Bug Report, gpg4win
cpm added a comment to T2970: libgcrypt fails to build without NEON instruction set on arm64.

Yes, it's the same issue.

Mar 1 2017, 3:14 PM · Bug Report, Won't Fix, libgcrypt
justus added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

dkg, I understand that GnuPG does not work with such a homedir, however, it is
not the act of creating the socket that is problematic. In fact, both
bind(2)ing and connect(2)ing is ok if one uses relative paths, as demonstrated
by the test program I have attached here.

Here is the program binding and connecting to a socket with an absolute path
length of ~10 * sizeof sockaddr_un.sun_path:

System: OpenBSD:6.0:GENERIC.MP#1992
sizeof addr.sun_path: 104
Running test with strlen (cwd): 22, name: '/tmp/test-unix-sockets/socket'

getsockname returned '/tmp/test-unix-sockets/socket', addrlen: 106

Running test with strlen (cwd): 22, name: 'socket'

getsockname returned 'socket', addrlen: 106

Running test with strlen (cwd): 126, name: 'socket'

getsockname returned 'socket', addrlen: 106

Running test with strlen (cwd): 1062, name: 'socket'

  getsockname returned 'socket', addrlen: 106

This works on all Unices that I have access to. I've asked on gnupg-devel@ for
people to run it elsewhere.

I understand that '--create-socketdir' solves problems besides this one. But I
disagree with the statement that our handling of socket paths is unproblematic
because --create-socketdir solves this problem.

Mar 1 2017, 3:10 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
justus added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

Mar 1 2017, 3:10 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
werner updated subscribers of T2971: Installing Gpg4win as another user.
Mar 1 2017, 3:05 PM · Bug Report, gpg4win
werner assigned T2971: Installing Gpg4win as another user to aheinecke.
Mar 1 2017, 3:05 PM · Bug Report, gpg4win
werner added a comment to T2970: libgcrypt fails to build without NEON instruction set on arm64.

Isn't this the same as T2975 ?

Mar 1 2017, 3:04 PM · Bug Report, Won't Fix, libgcrypt
werner added a comment to T2928: stop fetching PTR records entirely.

The --hostable option is a debugging aid and only used manually.

Mar 1 2017, 3:02 PM · Debian, Bug Report, gnupg, dirmngr
werner added a comment to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.

The nsswitch items "mymachine", "resolve", and "myhostname" are not known to
libdns but should have been skipped. "files" is the first entry and should have
delivered the result.

Mar 1 2017, 3:00 PM · dirmngr, gnupg, Bug Report
justus assigned T2965: WKD lookup fails due to overly specific Host: header to werner.
Mar 1 2017, 2:54 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
justus closed T2965: WKD lookup fails due to overly specific Host: header as Resolved.
Mar 1 2017, 2:54 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
justus added a comment to T2965: WKD lookup fails due to overly specific Host: header.

Fixed in cd32ebd152a522e362469ab969d91f8d49f28a60.

Mar 1 2017, 2:54 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
werner added a comment to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.

Seems that libdns does not pick it up /etc/hosts

Mar 1 2017, 2:50 PM · dirmngr, gnupg, Bug Report
werner added a project to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts: dirmngr.
Mar 1 2017, 2:49 PM · dirmngr, gnupg, Bug Report
werner set Version to 2.1.18 on T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.
Mar 1 2017, 2:49 PM · dirmngr, gnupg, Bug Report
werner added a comment to T2973: --export-options export-minimal does not work with --export-secret-keys.

Fix pushed. Thanks.

Mar 1 2017, 2:45 PM · Bug Report, gnupg
werner removed a project from T2973: --export-options export-minimal does not work with --export-secret-keys: In Progress.
Mar 1 2017, 2:45 PM · Bug Report, gnupg
werner closed T2973: --export-options export-minimal does not work with --export-secret-keys as Resolved.
Mar 1 2017, 2:45 PM · Bug Report, gnupg
werner added a project to T2973: --export-options export-minimal does not work with --export-secret-keys: In Progress.
Mar 1 2017, 2:30 PM · Bug Report, gnupg
werner added a comment to T2973: --export-options export-minimal does not work with --export-secret-keys.

Simply not implemented. Will be in 2.1.19

Mar 1 2017, 2:30 PM · Bug Report, gnupg
werner closed T2976: Cannot add an existing Curve 25519 subkey as Resolved.
Mar 1 2017, 1:40 PM · gnupg, Bug Report
werner added a comment to T2976: Cannot add an existing Curve 25519 subkey.

Thanks for reporting. Fixed in master for 2.1.19.

Mar 1 2017, 1:40 PM · gnupg, Bug Report
werner added a project to T2976: Cannot add an existing Curve 25519 subkey: Unreleased.
Mar 1 2017, 1:40 PM · gnupg, Bug Report
werner closed T2978: test issue 1 as Invalid.
Mar 1 2017, 11:55 AM · Trash
werner reopened T2978: test issue 1 as "Open".
Mar 1 2017, 9:38 AM · Trash
werner closed T2978: test issue 1 as Resolved.
Mar 1 2017, 9:38 AM · Trash
werner added a comment to T2978: test issue 1.

And a second message

Mar 1 2017, 9:36 AM · Trash
werner added projects to T2978: test issue 1: Trash, Bug Report.
Mar 1 2017, 9:36 AM · Trash
werner added a comment to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.

(sorry, I accidentally removed the attached while while editing the mime type)

Mar 1 2017, 7:40 AM · dirmngr, gnupg, Bug Report
werner added a project to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts: gnupg.
Mar 1 2017, 7:38 AM · dirmngr, gnupg, Bug Report
werner added a comment to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.

Mar 1 2017, 7:38 AM · dirmngr, gnupg, Bug Report
werner added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

Can we test whether /run is mounted on a tmpfs ?
should we assume that /run is always on a tmpfs but /var/run is a classical Unix
w/o a tmpfs? Or is it better to have a configure option.

I can imagine to agree to auto-create the directory on a tmpfs.

Mar 1 2017, 7:31 AM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
werner added a project to T2976: Cannot add an existing Curve 25519 subkey: gnupg.
Mar 1 2017, 7:26 AM · gnupg, Bug Report
werner set Version to 2.1.18 on T2976: Cannot add an existing Curve 25519 subkey.
Mar 1 2017, 7:26 AM · gnupg, Bug Report
dkg added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

Yes, notmuch decided that they needed to workaround the situation anyway,
because they're in an environment that doesn't create the standard per-user
rundir. That doesn't seem like a great argument that gpg should also fail in
environments where the standard per-user rundir is available. I can demonstrate
a number of environments where gpg or its daemons will fail, but i don't think
any of them justify forcing gpg or its daemons to *also* fail when those
environments aren't present.

In answer to your nitpick, here is evidence that gpg's daemons cannot create
their sockets when the GNUPGHOME is too long:

1 dkg@alice:~$ mkdir -m 0700
/home/dkg/tmp/very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-long
0 dkg@alice:~$
GNUPGHOME=/home/dkg/tmp/very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-very-long
gpgconf --launch dirmngr
gpgconf: error running '/usr/bin/gpg-connect-agent': exit status 1
gpgconf: error running '/usr/bin/gpg-connect-agent --dirmngr NOP': General error
1 dkg@alice:~$

Mar 1 2017, 2:02 AM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
gniibe added a comment to T2939: Should not be required to manually `killagent` on card removal.

FYI: It is fixed in 2.1.
Backporting the change to 2.0 will be a bit large, and I hesitate to do that.

Mar 1 2017, 1:10 AM · gnupg (gpg20), Bug Report, gnupg
gniibe claimed T2953: scdaemon fails to decrypt if unusual key-size is chosen.
Mar 1 2017, 1:05 AM · Bug Report, gnupg, scd

Feb 28 2017

justus added a comment to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path.

Notmuch deemed --create-socketdir to be insufficient for their test suite:

https://notmuchmail.org/pipermail/notmuch/2017/024148.html

Now they create GNUPGHOMEs in /tmp. That is exactly what our test suite does.

(We also use --create-socketdir, but we don't rely on it, and indeed, on my
system it fails b/c the per-user directory is not created. Likewise on the
OpenBSD build server, and the macOS one.)

Nitpick: You wrote:

when GNUPGHOME points to a directory whose path is larger than
sockaddr_un.sun_path, daemons like gpg-agent and dirmngr cannot create their
sockets.

I don't think this is correct. I have not seen any evidence that creating the
socket is problematic.

Feb 28 2017, 4:39 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr
justus added projects to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path: gnupg (gpg22), gpgagent, scd.
Feb 28 2017, 4:39 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr

Feb 27 2017

ph1l renamed T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts from dirmngr 2.1.18 fails if keyserver is only defined in /etc/hosts to dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts.
Feb 27 2017, 5:06 PM · dirmngr, gnupg, Bug Report
ph1l added a project to T2977: dirmngr 2.1.18 fails if keyserver's IP is defined in /etc/hosts: Bug Report.
Feb 27 2017, 11:44 AM · dirmngr, gnupg, Bug Report
ephemient added a project to T2976: Cannot add an existing Curve 25519 subkey: Bug Report.
Feb 27 2017, 7:13 AM · gnupg, Bug Report

Feb 26 2017

krion added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

Yes, .cpu generic+simd+crypto that what I thought after first patch from the beginning
but didn't test it first, blame me for it. Now it compiles as expected, please include
it into next release.

Feb 26 2017, 7:42 PM · Bug Report, libgcrypt
jukivili added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

D410: 957_03-fix-clang-arm64.patch

Feb 26 2017, 6:54 PM · Bug Report, libgcrypt
jukivili added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

How about this patch?

Feb 26 2017, 6:54 PM · Bug Report, libgcrypt
krion added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

No, it still fails, here is fresh log:
http://pkg.krion.cc/data/110arm64-default/2017-02-26_16h58m38s/logs/errors/libgcrypt-
1.7.6.log

Feb 26 2017, 5:03 PM · Bug Report, libgcrypt
jukivili added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

Does the attached patch fix the problem?

Feb 26 2017, 2:21 PM · Bug Report, libgcrypt
jukivili added a comment to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.

D411: 956_02-fix-clang-arm64.patch

Feb 26 2017, 2:21 PM · Bug Report, libgcrypt
jukivili claimed T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE.
Feb 26 2017, 2:08 PM · Bug Report, libgcrypt

Feb 24 2017

krion added projects to T2975: building libgcrypt fails on ARM64/FreeBSD 11x STABLE: libgcrypt, Bug Report.
Feb 24 2017, 12:16 PM · Bug Report, libgcrypt

Feb 23 2017

cpm added a comment to T2970: libgcrypt fails to build without NEON instruction set on arm64.

Ok, thanks!

Feb 23 2017, 9:17 PM · Bug Report, Won't Fix, libgcrypt
werner closed T1804: HKPS scheme support for Windows Installer as Resolved.
Feb 23 2017, 8:39 PM · Bug Report, gnupg, dirmngr
werner added a comment to T1804: HKPS scheme support for Windows Installer.

ntbtls support is now available in master and we will release a TLS enabled
2.1.19 installer for Windows.

Right now it is somewhat limited and does not work with some sites, notably
those which allow only ECC ciphersuites. An example for such a site is
posteo.de. Note that posteo.net sends a a bogus certifcate with rediretion to
posteo.de.

Most other sites work.

Feb 23 2017, 8:39 PM · Bug Report, gnupg, dirmngr
werner added a project to T1804: HKPS scheme support for Windows Installer: Unreleased.
Feb 23 2017, 8:39 PM · Bug Report, gnupg, dirmngr
werner added a project to T2970: libgcrypt fails to build without NEON instruction set on arm64: Won't Fix.
Feb 23 2017, 8:31 PM · Bug Report, Won't Fix, libgcrypt
werner added a comment to T2970: libgcrypt fails to build without NEON instruction set on arm64.

You need to wait for 1.8 - in a few weeks.
I looked at the required changes but decided not to backport that for 1.7.6.

Feb 23 2017, 8:31 PM · Bug Report, Won't Fix, libgcrypt
werner closed T2974: Problems with cv25519 pub subkeys and elder GnuPG 2 versions as Invalid.
Feb 23 2017, 8:26 PM · Documentation, gnupg
bernhard added projects to T2974: Problems with cv25519 pub subkeys and elder GnuPG 2 versions: gnupg, Bug Report.
Feb 23 2017, 2:22 PM · Documentation, gnupg

Feb 22 2017

dkg added projects to T2973: --export-options export-minimal does not work with --export-secret-keys: gnupg, Bug Report.
Feb 22 2017, 11:47 PM · Bug Report, gnupg
dkg set Version to 2.1.18 on T2973: --export-options export-minimal does not work with --export-secret-keys.
Feb 22 2017, 11:47 PM · Bug Report, gnupg
werner added a project to T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation: Restricted Project.
Feb 22 2017, 4:36 PM · Restricted Project, Debian, Bug Report, gnupg
werner added a comment to T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation.

Should be fixed with commit 6d50eeb for 2.1.19.

My idea on how to do a general fix turned out to be too complicated and thus I
fixed just the Polish translation

Feb 22 2017, 4:36 PM · Restricted Project, Debian, Bug Report, gnupg
aheinecke set Version to master on T2972: GPGSM: Chain too long on cross signed certificate.
Feb 22 2017, 3:06 PM · Bug Report, gnupg, KDE, S/MIME
aheinecke added a comment to T2972: GPGSM: Chain too long on cross signed certificate.

Feb 22 2017, 3:06 PM · Bug Report, gnupg, KDE, S/MIME
aheinecke set External Link to https://bugs.kde.org/show_bug.cgi?id=376563 on T2972: GPGSM: Chain too long on cross signed certificate.
Feb 22 2017, 3:06 PM · Bug Report, gnupg, KDE, S/MIME
aheinecke added projects to T2972: GPGSM: Chain too long on cross signed certificate: S/MIME, KDE, gnupg, Bug Report.
Feb 22 2017, 3:06 PM · Bug Report, gnupg, KDE, S/MIME
Mechtilde added projects to T2971: Installing Gpg4win as another user: gpg4win, Bug Report.
Feb 22 2017, 10:57 AM · Bug Report, gpg4win
Mechtilde set Version to 2.3.3 on T2971: Installing Gpg4win as another user.
Feb 22 2017, 10:57 AM · Bug Report, gpg4win
cpm added projects to T2970: libgcrypt fails to build without NEON instruction set on arm64: libgcrypt, Bug Report.
Feb 22 2017, 1:18 AM · Bug Report, Won't Fix, libgcrypt

Feb 21 2017

dkg added a comment to T2968: gpg --search: Connection closed in DNS.

Are you using tor? if so, is your tor daemon up and running, and actively
connecting to the outside world?

Feb 21 2017, 4:43 PM · Info Needed, gnupg (gpg22), Bug Report, Debian, Keyserver, dirmngr

Feb 20 2017

azul closed T2969: speedo install fails due to cert issue for swdb.lst as Resolved.
Feb 20 2017, 7:19 PM · Bug Report, gnupg (gpg21)
azul added a comment to T2969: speedo install fails due to cert issue for swdb.lst.

Okay... using a later distribution with a newer wget fixed this:
https://travis-ci.org/azul/gpg-build/builds/203543109

closing. Sorry for the noise.

Feb 20 2017, 7:18 PM · Bug Report, gnupg (gpg21)
azul added a comment to T2969: speedo install fails due to cert issue for swdb.lst.

The same build works locally for me with wget 1.17.1.
travis has 1.13.4

$ wget --version

GNU Wget 1.13.4 built on linux-gnu.

+digest +https +ipv6 +iri +large-file +nls +ntlm +opie +ssl/openssl

Wgetrc:

    /etc/wgetrc (system)

Locale: /usr/share/locale

Compile: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc"

    -DLOCALEDIR="/usr/share/locale" -I. -I../../src -I../lib 

    -I../../lib -D_FORTIFY_SOURCE=2 -Iyes/include -g -O2 

    -fstack-protector --param=ssp-buffer-size=4 -Wformat 

    -Wformat-security -Werror=format-security -DNO_SSLv2 

    -D_FILE_OFFSET_BITS=64 -g -Wall

Link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat

    -Wformat-security -Werror=format-security -DNO_SSLv2 

    -D_FILE_OFFSET_BITS=64 -g -Wall -Wl,-Bsymbolic-functions 

    -Wl,-z,relro -Lyes/lib -lssl -lcrypto -lz -ldl -lz -lidn -lrt 

    ftp-opie.o openssl.o http-ntlm.o ../lib/libgnu.a

Copyright (C) 2009 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later

http://www.gnu.org/licenses/gpl.html.

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.

Originally written by Hrvoje Niksic <hniksic@xemacs.org>.

Please send bug reports and questions to <bug-wget@gnu.org>.

Feb 20 2017, 7:13 PM · Bug Report, gnupg (gpg21)
azul added projects to T2969: speedo install fails due to cert issue for swdb.lst: gnupg (gpg21), Bug Report.
Feb 20 2017, 6:50 PM · Bug Report, gnupg (gpg21)

Feb 19 2017

kardan added projects to T2968: gpg --search: Connection closed in DNS: dirmngr, Keyserver, gnupg, gnupg (gpg21), Debian, Bug Report.
Feb 19 2017, 8:51 PM · Info Needed, gnupg (gpg22), Bug Report, Debian, Keyserver, dirmngr

Feb 17 2017

dkg added a comment to T2942: gpg needs to offer a way to list OpenPGP packets without consuming them.

Thanks, i've pushed this back to python-gnupg folks, and they've accepted it:

https://bitbucket.org/vinay.sajip/python-gnupg/commits/d0375e034da3efa6fbda713cb4bde0fbb6d3b158

so i think we can consider this issue resolved, at least from 2.1.14 and onward,
where import-show was introduced.

Feb 17 2017, 10:13 PM · Bug Report, gnupg
dkg closed T2942: gpg needs to offer a way to list OpenPGP packets without consuming them as Resolved.
Feb 17 2017, 10:13 PM · Bug Report, gnupg
werner raised the priority of T2965: WKD lookup fails due to overly specific Host: header from Low to Normal.
Feb 17 2017, 9:48 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
werner added projects to T2965: WKD lookup fails due to overly specific Host: header: dirmngr, RC.
Feb 17 2017, 9:48 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
werner added a comment to T2965: WKD lookup fails due to overly specific Host: header.

That is definitely a bug.

Feb 17 2017, 9:48 PM · Bug Report, RC, gnupg, dirmngr, gnupg (gpg22)
werner added a comment to T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation.

I guess that is because the prompt has not been translated but the answer string
is translated.

msgid "NnCcEeOoQq"
msgstr "IiKkEeDdWw"

Thus using 'i' should give you the prompt for name.

A fix for this would be to use a different answer string for --gen-key - the one
we use if from --full-gen-key (i.e. with "(C)omment". This would the also work
for other incomplete translations, which will have the same problem.

Feb 17 2017, 9:47 PM · Restricted Project, Debian, Bug Report, gnupg
dkg set External Link to https://bugs.debian.org/855419 on T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation.
Feb 17 2017, 9:01 PM · Restricted Project, Debian, Bug Report, gnupg
dkg set Version to 2.1.18 on T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation.
Feb 17 2017, 9:01 PM · Restricted Project, Debian, Bug Report, gnupg
dkg added projects to T2966: "LC_ALL=pl_PL.UTF-8 gpg --gen-key" fails during confirmation: gnupg, Bug Report, Debian.
Feb 17 2017, 9:01 PM · Restricted Project, Debian, Bug Report, gnupg
ilovezfs added a comment to T2933: gnupg-2.1.18 fails to read a Yubikey Neo that gnupg-2.1.17 reads fine.

dkg thank you. One of the user reporting the issue has confirmed that fixes it:
https://github.com/Homebrew/homebrew-versions/pull/1527#issuecomment-280667350

Feb 17 2017, 4:18 PM · gnupg, Bug Report