Codebase list libgpg-error / d10b429
Merge tag 'debian/1.32-3' into debian/stretch-backports libgpg-error Debian release 1.32-3 Roger Shimizu 5 years ago
6 changed file(s) with 108 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 libgpg-error (1.32-3) unstable; urgency=medium
1
2 * indicate that libgpg-error-l10n Enhances: libgpg-error0
3 * ship l10n files from arch-indep build (Closes: #911377)
4
5 -- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 19 Oct 2018 19:33:46 +0200
6
7 libgpg-error (1.32-2) unstable; urgency=medium
8
9 [ Sven Joachim ]
10 * Move the translation files to a new libgpg-error-l10n package
11 (Closes: #872806)
12
13 [ Wookey ]
14 * Add support for arm64ilp32 (Closes: #869605)
15
16 [ Daniel Kahn Gillmor ]
17 * Standards-Version: bumped to 4.2.1 (no changes needed)
18
19 -- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 12 Oct 2018 10:04:28 -0400
20
021 libgpg-error (1.32-1~bpo9+1) stretch-backports; urgency=medium
122
223 * Rebuild for stretch-backports.
1010 texinfo,
1111 Build-Depends-Indep:
1212 mingw-w64,
13 Standards-Version: 4.1.5
13 Standards-Version: 4.2.1
1414 Homepage: https://www.gnupg.org/related_software/libgpg-error/
1515 Vcs-Git: https://salsa.debian.org/debian/libgpg-error.git
1616 Vcs-Browser: https://salsa.debian.org/debian/libgpg-error
4242 ${shlibs:Depends},
4343 Pre-Depends:
4444 ${misc:Pre-Depends},
45 Recommends:
46 libgpg-error-l10n,
4547 Description: GnuPG development runtime library
4648 Library that defines common error values, messages, and common
4749 runtime functionality for all GnuPG components. Among these are GPG,
101103 This is a Windows version of libgpg-error. It's meant to be used
102104 when cross-building software that targets the Windows platform,
103105 e.g. the win32-loader component of Debian-Installer.
106
107 Package: libgpg-error-l10n
108 Architecture: all
109 Section: localization
110 Multi-Arch: foreign
111 Depends:
112 ${misc:Depends},
113 Enhances:
114 libgpg-error0,
115 Replaces:
116 libgpg-error0 (<< 1.32-1.1~),
117 Breaks:
118 libgpg-error0 (<< 1.32-1.1~),
119 Description: library of error values and messages in GnuPG (localization files)
120 Library that defines common error values, messages, and common
121 runtime functionality for all GnuPG components. Among these are GPG,
122 GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon and
123 possibly more in the future.
124 .
125 It will likely be renamed "gpgrt" in the future.
126 .
127 This package contains the translation files for the use in non-English locales.
0 usr/x86_64-w64-mingw32/share/locale usr/share
00 usr/lib/@DEB_HOST_MULTIARCH@/libgpg-error.so.* lib/@DEB_HOST_MULTIARCH@/
1 usr/share/locale
0 From: Wookey <wookey@debian.org>
1 Date: Fri, 12 Oct 2018 09:57:23 -0400
2 Subject: syscfg: Add support for arm64ilp32
3
4 * src/syscfg/lock-obj-pub.riscv64-unknown-linux-gnu.h: New.
5 * src/Makefile.am (lock_obj_pub): Add it.
6
7 --
8
9 Debian-bug-id: 869605
10 Co-authored-by: Wookey <wookey@debian.org>
11 Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
12 ---
13 src/Makefile.am | 1 +
14 .../lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h | 24 ++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16 create mode 100644 src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h
17
18 diff --git a/src/Makefile.am b/src/Makefile.am
19 index 42998e4..2104b78 100644
20 --- a/src/Makefile.am
21 +++ b/src/Makefile.am
22 @@ -45,6 +45,7 @@ endif
23 # Distributed lock object definitions for cross compilation.
24 lock_obj_pub = \
25 syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h \
26 + syscfg/lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h \
27 syscfg/lock-obj-pub.aarch64-apple-darwin.h \
28 syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h \
29 syscfg/lock-obj-pub.arm-unknown-linux-androideabi.h \
30 diff --git a/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h b/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h
31 new file mode 100644
32 index 0000000..61239c3
33 --- /dev/null
34 +++ b/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h
35 @@ -0,0 +1,24 @@
36 +## lock-obj-pub.aarch64-unknown-linux-gnu_ilp32.h
37 +## File created by gen-posix-lock-obj - DO NOT EDIT
38 +## To be included by mkheader into gpg-error.h
39 +
40 +typedef struct
41 +{
42 + long _vers;
43 + union {
44 + volatile char _priv[32];
45 + long _x_align;
46 + long *_xp_align;
47 + } u;
48 +} gpgrt_lock_t;
49 +
50 +#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
51 + 0,0,0,0,0,0,0,0, \
52 + 0,0,0,0,0,0,0,0, \
53 + 0,0,0,0,0,0,0,0}}}
54 +##
55 +## Local Variables:
56 +## mode: c
57 +## buffer-read-only: t
58 +## End:
59 +##
00 0001-Remove-upstream-git-fanciness.patch
1 0002-syscfg-Add-support-for-arm64ilp32.patch