Your message dated Mon, 25 Jul 2016 18:19:08 +0000
with message-id <[email protected]>
and subject line Bug#819767: fixed in libtool 2.4.6-1
has caused the Debian Bug report #819767,
regarding libtool: please make the build reproducible (timestamps, 
fileordering, hostname, umask)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
819767: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819767
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: libtool
Version: 2.4.6
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: timestamps fileordering hostname umask
X-Debbugs-Cc: [email protected]

Hi!

While working on the “reproducible builds” effort [1], we have noticed
that libtool could not be built reproducibly.

The attached patch removes extra timestamps from the build system and
ensure a stable file order when creating the source archive as well as replacing uses of the `hostname` command with the fixed string "localhost". Once applied, libtool can be built reproducibly in our current experimental framework.

I also added to rules: dh_strip_nondeterminism -i/-a to the makefile before the compress stage.

 [1]: https://wiki.debian.org/ReproducibleBuilds
   * deterministic tar archives by sorting by name.

Author: rain1 <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- libtool-2.4.6.orig/aclocal.m4
+++ libtool-2.4.6/aclocal.m4
@@ -1104,8 +1104,8 @@ m4_if([$1], [v7],
       # Must skip GNU tar: if it does not support --format= it doesn't create
       # ustar tarball either.
       (tar --version) >/dev/null 2>&1 && continue
-      am__tar='tar chf - "$$tardir"'
-      am__tar_='tar chf - "$tardir"'
+      am__tar='tar --sort=name chf - "$$tardir"'
+      am__tar_='tar --sort=name chf - "$tardir"'
       am__untar='tar xf -'
       ;;
     pax)
@@ -1114,8 +1114,8 @@ m4_if([$1], [v7],
       am__untar='pax -r'
       ;;
     cpio)
-      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
-      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+      am__tar='find "$$tardir" -print | LC_ALL=C sort -z | cpio -o -H $1 -L'
+      am__tar_='find "$tardir" -print | LC_ALL=C sort -z | cpio -o -H $1 -L'
       am__untar='cpio -i -H $1 -d'
       ;;
     none)
--- libtool-2.4.6.orig/libltdl/aclocal.m4
+++ libtool-2.4.6/libltdl/aclocal.m4
@@ -1104,8 +1104,8 @@ m4_if([$1], [v7],
       # Must skip GNU tar: if it does not support --format= it doesn't create
       # ustar tarball either.
       (tar --version) >/dev/null 2>&1 && continue
-      am__tar='tar chf - "$$tardir"'
-      am__tar_='tar chf - "$tardir"'
+      am__tar='tar --sort=name chf - "$$tardir"'
+      am__tar_='tar --sort=name chf - "$tardir"'
       am__untar='tar xf -'
       ;;
     pax)
@@ -1114,8 +1114,8 @@ m4_if([$1], [v7],
       am__untar='pax -r'
       ;;
     cpio)
-      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
-      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+      am__tar='find "$$tardir" -print | LC_ALL=C sort -z | cpio -o -H $1 -L'
+      am__tar_='find "$tardir" -print | LC_ALL=C sort -z | cpio -o -H $1 -L'
       am__untar='cpio -i -H $1 -d'
       ;;
     none)
   * set the hostname to a reproducible dummy value.
Author: rain1 <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- libtool-2.4.6.orig/m4/autobuild.m4
+++ libtool-2.4.6/m4/autobuild.m4
@@ -22,7 +22,7 @@ AC_DEFUN([AB_INIT],
   fi
   AC_MSG_NOTICE([autobuild revision... $AB_VERSION])
 
-  hostname=`hostname`
+  hostname="debian"
   if test "$hostname"; then
     AC_MSG_NOTICE([autobuild hostname... $hostname])
   fi
   * change all instances of executing `hostname` with constant string "localhost"

Author: rain1 <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- libtool-2.4.6.orig/configure
+++ libtool-2.4.6/configure
@@ -577,7 +577,7 @@ exec 6>&1
 # Name of the host.
 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 # so uname gets run too.
-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+ac_hostname="localhost"
 
 #
 # Initializations.
@@ -2259,7 +2259,7 @@ cat <<_ASUNAME
 ## Platform. ##
 ## --------- ##
 
-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+hostname = "localhost"
 uname -m = `(uname -m) 2>/dev/null || echo unknown`
 uname -r = `(uname -r) 2>/dev/null || echo unknown`
 uname -s = `(uname -s) 2>/dev/null || echo unknown`
@@ -3499,7 +3499,7 @@ $as_echo "$as_me: autobuild project... $
   { $as_echo "$as_me:${as_lineno-$LINENO}: autobuild revision... $AB_VERSION" >&5
 $as_echo "$as_me: autobuild revision... $AB_VERSION" >&6;}
 
-  hostname=`hostname`
+  hostname="localhost"
   if test "$hostname"; then
     { $as_echo "$as_me:${as_lineno-$LINENO}: autobuild hostname... $hostname" >&5
 $as_echo "$as_me: autobuild hostname... $hostname" >&6;}
@@ -29655,7 +29655,7 @@ generated by GNU Autoconf 2.69.  Invocat
   CONFIG_COMMANDS = $CONFIG_COMMANDS
   $ $0 $@
 
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
+on localhost
 "
 
 _ACEOF
@@ -31426,7 +31426,7 @@ $as_echo X"$file" |
     cat <<_LT_EOF >> "$cfgfile"
 #! $SHELL
 # Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# Libtool was configured on host localhost:
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
 # Provide generalized library-building support services.
--- libtool-2.4.6.orig/libltdl/configure
+++ libtool-2.4.6/libltdl/configure
@@ -573,7 +573,7 @@ exec 6>&1
 # Name of the host.
 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 # so uname gets run too.
-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+ac_hostname="localhost"
 
 #
 # Initializations.
@@ -1901,7 +1901,7 @@ cat <<_ASUNAME
 ## Platform. ##
 ## --------- ##
 
-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+hostname = "localhost"
 uname -m = `(uname -m) 2>/dev/null || echo unknown`
 uname -r = `(uname -r) 2>/dev/null || echo unknown`
 uname -s = `(uname -s) 2>/dev/null || echo unknown`
@@ -13769,7 +13769,7 @@ generated by GNU Autoconf 2.69.  Invocat
   CONFIG_COMMANDS = $CONFIG_COMMANDS
   $ $0 $@
 
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
+on localhost
 "
 
 _ACEOF
@@ -14947,7 +14947,7 @@ $as_echo X"$file" |
     cat <<_LT_EOF >> "$cfgfile"
 #! $SHELL
 # Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# Libtool was configured on host localhost:
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
 # Provide generalized library-building support services.
--- libtool-2.4.6.orig/m4/autobuild.m4
+++ libtool-2.4.6/m4/autobuild.m4
@@ -22,7 +22,7 @@ AC_DEFUN([AB_INIT],
   fi
   AC_MSG_NOTICE([autobuild revision... $AB_VERSION])
 
-  hostname="debian"
+  hostname="localhost"
   if test "$hostname"; then
     AC_MSG_NOTICE([autobuild hostname... $hostname])
   fi
   * `hostname` tool changed to "localhost" in m4/libtool.m4.

Author: rain1 <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- libtool-2.4.6.orig/m4/libtool.m4
+++ libtool-2.4.6/m4/libtool.m4
@@ -728,7 +728,7 @@ _LT_CONFIG_SAVE_COMMANDS([
     cat <<_LT_EOF >> "$cfgfile"
 #! $SHELL
 # Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# Libtool was configured on host localhost:
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
 # Provide generalized library-building support services.
#!/usr/bin/make -f
# debian/rules for the Debian GNU Libtool package.
# Copyright © 2003, 2004 Scott James Remnant <[email protected]>

# Uncomment this to turn on verbose mode. 
#export DH_VERBOSE=1

DEBIAN_REVISION=$(strip $(shell dpkg-parsechangelog | awk -F: '/^Version:/ 
{print $$NF}'))

# if doing a binary-arch build, the Makefiles still want to update the
# info files; force them not to
ifneq (,$(wildcard /usr/bin/makeinfo))
  MAKEINFO = makeinfo
else
  export MAKEINFO=true
endif

# libltdl needs to conform to policy
export DEB_CFLAGS_MAINT_PREPEND = -Wall
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
        INSTALL_PROGRAM += -s
endif

# Build libltdl the right way (tm)
DEB_HOST_ARCH      ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
        confflags += --build=$(DEB_HOST_GNU_TYPE)
        make_check = yes
else
        confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
        make_check = no
endif

ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
        make_check = no
endif

# Takes too long
#ifeq (m68k, $(DEB_HOST_ARCH))
#       make_check = no
#endif

clean: 
        dh_testdir
        dh_testroot
        rm -f build-stamp build-indep-stamp config-stamp
        dh_clean

        [ ! -f Makefile ] || $(MAKE) -k distclean
#       -rm config.log
#       find . -name 'stamp-*' | xargs rm -f
#       find . -name 'configure' | xargs rm -f
#       rm -f *.in */*.in
#       rm -f *.m4 */*.m4
#       find tests -name '*.in' -o -name '*.m4' | xargs rm -f
#       find libltdl/config -type f -a ! -name '*.m4sh' -a ! -name 'mkstamp' | 
xargs rm -f
#       rm -f libltdl/Makefile.am
#       rm -f libltdl/m4/ltversion.m4
#       rm -f COPYING INSTALL commit tests-failed
#       rm -f doc/libtool.info-1 doc/libtool.info-2
#       rm -f tests/testsuite
#       rm -f doc/version.texi doc/notes.txt doc/stamp-vti doc/libtool.info
# Undo the version change if there is any.
#       sed -i -e 's/@VERSION@.*/@VERSION@/' libtoolize.in
#       sed -i -e 's/^\(#.*@VERSION@\).*/\1/' build-aux/ltmain.in
#       sed -i -e 's/^VERSION.*/VERSION=@VERSION@/' build-aux/ltmain.in

config: config-stamp
Makefile: config-stamp
config-stamp:
        dh_testdir

        sed -i -e 's/^#.*progname.*@VERSION@$$/& Debian-$(DEBIAN_REVISION)/' 
libtoolize.in
        sed -i -e 's/^#.*progname.*@VERSION@$$/& Debian-$(DEBIAN_REVISION)/' 
build-aux/ltmain.in
        sed -i -e 's/^VERSION.*/VERSION="@VERSION@ Debian-$(DEBIAN_REVISION)"/' 
build-aux/ltmain.in

        touch README-release

        ./bootstrap --force --no-git
        CONFIG_SHELL=/bin/bash /bin/bash ./configure \
                --prefix=/usr \
                --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
                $(confflags) \
                $(shell dpkg-buildflags --export=cmdline)
        touch config-stamp


build: build-arch build-indep

build-arch: build-stamp
build-stamp: config-stamp
        dh_testdir

        $(MAKE)

#       The system libtool script in Debian must be able to support
#       invoking gcc as cc
        echo '# ### BEGIN LIBTOOL TAG CONFIG: BINCC' >> libtool
        sed -n -e '/^# ### BEGIN LIBTOOL CONFIG/,/^# ### END LIBTOOL CONFIG/p' 
< libtool \
                | grep -B 2 -A 1 -e '^LTCC=' -e '^CC=' \
                | sed '/^--/d;s/gcc/cc/g' >> libtool
        echo '# ### END LIBTOOL TAG CONFIG: BINCC' >> libtool
        echo >> libtool

#       The system libtool script in Debian must be able to support
#       invoking g++ both by the g++ and c++ names.
        sed -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: CXX$$/,/^# ### END LIBTOOL 
TAG CONFIG: CXX$$/p' < libtool \
                | sed -e 's/CONFIG: CXX/CONFIG: BINCXX/g' \
                      -e 's/g++/c++/g' >> libtool
        echo >> libtool

#       Add our BINCC and BINCXX tags
        sed -e 's/^\(available_tags\)=\"\(.*\)\"/\1=\"\2 BINCC BINCXX\"/' \
                < libtool > libtool.tags
        mv libtool.tags libtool

#       Don't hardcode gcc path information, and don't use nostdlib
        sed -e 's/^\(predep_objects\)=.*/\1=""/' \
            -e 's/^\(postdep_objects\)=.*/\1=""/' \
            -e 's/^\(compiler_lib_search_path\)=.*/\1=""/' \
            -e 's:^\(sys_lib_search_path_spec\)=.*:\1="/lib/ /usr/lib/ 
/usr/X11R6/lib/ /usr/local/lib/":' \
            -e 's/^\(archive_cmds=\".*\) -nostdlib /\1 /' \
            -e 's/^\(archive_expsym_cmds=\".*\) -nostdlib /\1 /' \
            < libtool > libtool.gcc-indep
        mv libtool.gcc-indep libtool

#       Make libtool executable again
        chmod 755 libtool

ifeq ($(make_check), yes)
#       Now make sure it works
        -$(MAKE) check || touch tests-failed
        -cat test-suite.log
        -cat tests/testsuite.log
        @test ! -f tests-failed
endif

        touch build-stamp

build-indep: build-indep-stamp
build-indep-stamp:
#       This generated HTML page goes into libtool-doc.
        cd doc && $(MAKEINFO) libtool.texi
        cd doc && $(MAKEINFO) --html --no-split libtool.texi

        touch build-indep-stamp

install: build
        dh_testdir
        dh_testroot
        dh_prep
        dh_installdirs

        $(MAKE) prefix=$(CURDIR)/debian/tmp/usr install
        rm -f debian/tmp/usr/share/info/dir

        dh_install $(if $(filter true,$(MAKEINFO)),-Nlibtool-doc) \
                --fail-missing --sourcedir=debian/tmp

# Build architecture-independent files here.
binary-indep: build-indep install
        dh_testdir -i
        dh_testroot -i

        # Create symlinks to the one in autotools-dev
        rm -f debian/libtool/usr/share/libtool/build-aux/config.guess
        ln -s ../../misc/config.guess debian/libtool/usr/share/libtool/build-aux
        rm -f debian/libtool/usr/share/libtool/build-aux/config.sub
        ln -s ../../misc/config.sub debian/libtool/usr/share/libtool/build-aux

        dh_installdocs -i
        dh_installinfo -plibtool-doc
        dh_installexamples -i
        dh_installchangelogs -i ChangeLog
        dh_link -i
        dh_lintian -i
        dh_strip_nondeterminism -i
        dh_compress -i
        dh_fixperms -i
        dh_installdeb -i
        dh_gencontrol -i
        dh_md5sums -i
        dh_builddeb -i

# Build architecture-dependent files here.
binary-arch: build-arch install
        dh_testdir -a
        dh_testroot -a

        dh_installdocs -plibtool-bin
        dh_installdocs -plibltdl7
        mkdir -p debian/libltdl-dev/usr/share/doc
        cd debian/libltdl-dev/usr/share/doc && ln -sf libltdl7 libltdl-dev
        dh_installchangelogs -plibtool-bin
        dh_installchangelogs -plibltdl7 ChangeLog
        dh_strip -a
        dh_lintian -a
        dh_link -a
        dh_strip_nondeterminism -a
        dh_compress -a
        dh_fixperms -a
        dh_makeshlibs -a -V
        dh_installdeb -a
        dh_shlibdeps -a
        dh_gencontrol -a
        dh_md5sums -a
        dh_builddeb -a

binary: binary-indep binary-arch
.PHONY: build build-arch build-indep clean config patch unpatch binary-indep 
binary-arch binary install

--- End Message ---
--- Begin Message ---
Source: libtool
Source-Version: 2.4.6-1

We believe that the bug you reported is fixed in the latest version of
libtool, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kurt Roeckx <[email protected]> (supplier of updated libtool package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 25 Jul 2016 19:42:23 +0200
Source: libtool
Binary: libtool libtool-bin libtool-doc libltdl7 libltdl-dev
Architecture: source
Version: 2.4.6-1
Distribution: unstable
Urgency: medium
Maintainer: Kurt Roeckx <[email protected]>
Changed-By: Kurt Roeckx <[email protected]>
Description:
 libltdl-dev - System independent dlopen wrapper for GNU libtool
 libltdl7   - System independent dlopen wrapper for GNU libtool
 libtool    - Generic library support script
 libtool-bin - Generic library support script (libtool binary)
 libtool-doc - Generic library support script
Closes: 760328 819767
Changes:
 libtool (2.4.6-1) unstable; urgency=medium
 .
   * Add sparc64 to the nopic.patch (Closes: #760328)
   * Don't have a "Libtool was configured on host" line anymore
     (Closes: #819767)
   * Make the build-arch and build-indep target do the same thing.
     The libtool package is now arch all, so it makes little sense
     to just build the documentation in the build-indep target.  The
     binary-indep depends on install which depends on build anyway.
   * Add upstream signing key
   * Change clean target to remove all generated files.
   * Add --skip-po to bootstrap call
   * Remove git-version-gen and gitlog-to-changelog from bootstrap.conf
   * Update way of adding the Debian version to the files.
   * Build-Depend on gnulib and tell bootstrap where to found it.
   * Use --copy for bootstrap.  It defaults to creating symlinks.
Checksums-Sha1:
 b741170cf2390fdf88dcd57350df54b2a74893c0 2324 libtool_2.4.6-1.dsc
 3e7504b832eb2dd23170c91b6af72e15b56eb94e 973080 libtool_2.4.6.orig.tar.xz
 aed0e74f6c7510b6e09c138b68a09e8fe1643f5f 380 libtool_2.4.6.orig.tar.xz.asc
 aa73de2f2ce2dda72d6706cb1e80920093010898 36004 libtool_2.4.6-1.debian.tar.xz
Checksums-Sha256:
 af075d21261a06bd161e350657b61936e143236e1945a4aafa1c555e9bada4a6 2324 
libtool_2.4.6-1.dsc
 7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f 973080 
libtool_2.4.6.orig.tar.xz
 ab68ebc45d60128a71fc36167cd29dcf3c3d6d639fd28663905ebaf3e2f43d6a 380 
libtool_2.4.6.orig.tar.xz.asc
 bac1b3a8798eb1a6e8e2e6b775b0d171cd24a235824379e32de6277ccc5c1a1f 36004 
libtool_2.4.6-1.debian.tar.xz
Files:
 ebcc24ec1011108a1cef5d1dd9db75dd 2324 devel optional libtool_2.4.6-1.dsc
 1bfb9b923f2c1339b4d2ce1807064aa5 973080 devel optional 
libtool_2.4.6.orig.tar.xz
 15b20e5c8f54a2f9847e714fed1e108a 380 devel optional 
libtool_2.4.6.orig.tar.xz.asc
 326a370c2da067899e6f2a1c9fa344eb 36004 devel optional 
libtool_2.4.6-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJXllZAAAoJEOPE3c0eTBJEKtIP/2V5xaIa9DCYE6h9PlvMdMcu
J6lcSVa3GOXdORI2Kv6IoS3jJrGz5ppw+vU7UhT7Xs+JRrhSgoVxmtMR+Q9DUrax
8nSEftZR4L0kqeVQpbqNyXRqhK+KiuHcBX3i1VdbOqJ4x467i+TRvgYpHqDSlHNQ
3JQX54QiIR5LX8WZK8TYQEwYNW7Ef+WNNEsZhgMJaBa+1QTqIRxYxbZbWGi851oO
Ll0sqQMxXUjTrO5nJD+Ydnd0tF5iVG6U2MKmV6gzJMTWk7SAy+NO7Rs3aGHAMEfA
keJhRB6Goe1xB3cAglbTzlQ9h47Vp4JxW1x3e2/Hpb9zwEKf1xGBKC9foFu7/gKd
n0dk4OVqWUYNy1sx38gW/OeZjBsRMb3Cjdxyn/QYtW4j+3n/ykRdPWsDAEig/948
loVSWNg8fP6jmhNBW+J9oWvN0V/izE/d+V/i7TiEmY2Ncs+bCSQXgnjqEEKcsoBK
9OlkuBBjlIvQsBWK7iS7wkXuLx1eXqMiPVPCWxY/UX/WnGyX1U3iS7OChmPH9bx/
Iz92RxN6XEizDH8ESrYSxwGrHtoG9pH5FLcxfql0Iias/fTQDHf+Y8J3sl8gsNUv
4QrfEfHGH9VAIIX4Xgf49dAb7doZWJV1ur9S9DUpOVtWWcq55ZvKLejuvYOIov7I
3ATmaqj6nWYhjm0B7epn
=Cecv
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to