[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#881610: marked as done (gcc-6: don't build generate mips r6 packages info in control on old releases)



Your message dated Wed, 06 Dec 2017 12:03:57 +0000
with message-id <E1eMYQf-000CCQ-7R@fasolo.debian.org>
and subject line Bug#881610: fixed in gcc-6 6.4.0-11
has caused the Debian Bug report #881610,
regarding gcc-6: don't build generate mips r6 packages info in control on old releases
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 owner@bugs.debian.org
immediately.)


-- 
881610: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=881610
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:gcc-6
Version: 6.4.0-10

As dpkg may not recognize mips r6 architectures on old releases,
we disable them in debian/control file.

-- 
YunQiang Su
diff --git a/rules.conf b/rules.conf
index 57e949a..a3620c8 100644
--- a/rules.conf
+++ b/rules.conf
@@ -189,6 +189,11 @@ ifeq (,$(filter $(distrelease),lenny etch squeeze wheezy dapper hardy jaunty kar
 endif
 DPKG_BUILD_DEP = dpkg-dev (>= $(DPKGV)),
 
+MIPS_R6_ENABLED = no
+ifeq (,$(filter $(distrelease),lenny etch squeeze wheezy jessie dapper hardy jaunty karmic lucid maverick natty oneiric precise quantal raring saucy trusty utopic vivid wily xenial yakkety zesty artful))
+  MIPS_R6_ENABLED = yes
+endif
+
 ifeq ($(DEB_HOST_ARCH),$(DEB_TARGET_ARCH))
   TARGET_QUAL = :$(DEB_TARGET_ARCH)
 endif
@@ -287,15 +292,17 @@ biarch_deb_map := \
 	mips=mips64 mipsel=mips64el \
 	mipsn32=mips mipsn32el=mipsel \
 	mips64=mips mips64el=mipsel \
-	mipsr6=mips64r6 mipsr6el=mips64r6el \
-	mipsn32r6=mipsr6 mipsn32r6el=mipsr6el \
-	mips64r6=mipsr6 mips64r6el=mipsr6el \
 	powerpc=ppc64 ppc64=powerpc \
 	sparc=sparc64 sparc64=sparc\
 	s390=s390x s390x=s390 \
 	kfreebsd-amd64=i386 \
 	armel=armhf \
 	armhf=armel
+ifeq (yes,$(MIPS_R6_ENABLED))
+  biarch_deb_map += mipsr6=mips64r6 mipsr6el=mips64r6el \
+	mipsn32r6=mipsr6 mipsn32r6el=mipsr6el \
+	mips64r6=mipsr6 mips64r6el=mipsr6el
+endif
 biarch_deb_arch := $(patsubst $(DEB_TARGET_ARCH)=%,%, \
 	$(filter $(DEB_TARGET_ARCH)=%,$(biarch_deb_map)))
 
@@ -357,8 +364,11 @@ ifneq ($(DEB_CROSS),yes)
   ifeq (,$(filter $(distrelease),lenny etch squeeze dapper hardy jaunty karmic lucid maverick natty oneiric))
     LIBC_BUILD_DEP += , libc6-dev (>= 2.13-31) [armel armhf]
   endif
-  LIBC_BIARCH_BUILD_DEP = libc6-dev-amd64 [i386 x32], libc6-dev-sparc64 [sparc], libc6-dev-sparc [sparc64], libc6-dev-s390 [s390x], libc6-dev-s390x [s390], libc6-dev-i386 [amd64 x32], libc6-dev-powerpc [ppc64], libc6-dev-ppc64 [powerpc], libc0.1-dev-i386 [kfreebsd-amd64], lib32gcc1 [amd64 ppc64 kfreebsd-amd64 mipsn32 mipsn32el mips64 mips64el mipsn32r6 mipsn32r6el mips64r6 mips64r6el s390x sparc64 x32], libn32gcc1 [mips mipsel mips64 mips64el mipsr6 mipsr6el mips64r6 mips64r6el], lib64gcc1 [i386 mips mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el powerpc sparc s390 x32], libc6-dev-mips64 [mips mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el], libc6-dev-mipsn32 [mips mipsel mips64 mips64el mipsr6 mipsr6el mips64r6 mips64r6el], libc6-dev-mips32 [mipsn32 mipsn32el mips64 mips64el mipsn32r6 mipsn32r6el mips64r6 mips64r6el],
-  ifneq (,$(findstring amd64,$(biarchx32archs)))
+  LIBC_BIARCH_BUILD_DEP = libc6-dev-amd64 [i386 x32], libc6-dev-sparc64 [sparc], libc6-dev-sparc [sparc64], libc6-dev-s390 [s390x], libc6-dev-s390x [s390], libc6-dev-i386 [amd64 x32], libc6-dev-powerpc [ppc64], libc6-dev-ppc64 [powerpc], libc0.1-dev-i386 [kfreebsd-amd64], lib32gcc1 [amd64 ppc64 kfreebsd-amd64 mipsn32 mipsn32el mips64 mips64el s390x sparc64 x32], libn32gcc1 [mips mipsel mips64 mips64el], lib64gcc1 [i386 mips mipsel mipsn32 mipsn32el powerpc sparc s390 x32], libc6-dev-mips64 [mips mipsel mipsn32 mipsn32el], libc6-dev-mipsn32 [mips mipsel mips64 mips64el], libc6-dev-mips32 [mipsn32 mipsn32el mips64 mips64el],
+  ifeq (yes,$(MIPS_R6_ENABLED))
+    LIBC_BIARCH_BUILD_DEP = libc6-dev-amd64 [i386 x32], libc6-dev-sparc64 [sparc], libc6-dev-sparc [sparc64], libc6-dev-s390 [s390x], libc6-dev-s390x [s390], libc6-dev-i386 [amd64 x32], libc6-dev-powerpc [ppc64], libc6-dev-ppc64 [powerpc], libc0.1-dev-i386 [kfreebsd-amd64], lib32gcc1 [amd64 ppc64 kfreebsd-amd64 mipsn32 mipsn32el mips64 mips64el mipsn32r6 mipsn32r6el mips64r6 mips64r6el s390x sparc64 x32], libn32gcc1 [mips mipsel mips64 mips64el mipsr6 mipsr6el mips64r6 mips64r6el], lib64gcc1 [i386 mips mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el powerpc sparc s390 x32], libc6-dev-mips64 [mips mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el], libc6-dev-mipsn32 [mips mipsel mips64 mips64el mipsr6 mipsr6el mips64r6 mips64r6el], libc6-dev-mips32 [mipsn32 mipsn32el mips64 mips64el mipsn32r6 mipsn32r6el mips64r6 mips64r6el],
+  endif
+ifneq (,$(findstring amd64,$(biarchx32archs)))
   LIBC_BIARCH_BUILD_DEP += libc6-dev-x32 [amd64 i386], libx32gcc1 [amd64 i386],
 endif
 ifneq (,$(findstring armel,$(biarchhfarchs)))
@@ -439,7 +447,10 @@ endif
 
 ifneq ($(DEB_CROSS),yes)
 # all archs for which to create b-d's
-any_archs = alpha amd64 armel armhf arm64 i386 mips mipsel mips64 mips64el mipsn32 mipsn32el mipsr6 mipsr6el mips64r6 mips64r6el mipsn32r6 mipsn32r6el powerpc ppc64 ppc64el m68k sh4 sparc64 s390x x32
+any_archs = alpha amd64 armel armhf arm64 i386 mips mipsel mips64 mips64el mipsn32 powerpc ppc64 ppc64el m68k sh4 sparc64 s390x x32
+ifeq (yes,$(MIPS_R6_ENABLED))
+  any_archs +=  mipsn32el mipsr6 mipsr6el mips64r6 mips64r6el mipsn32r6 mipsn32r6el
+endif
 arch_gnutype_map = \
 	alpha=alpha-linux-gnu \
 	amd64=x86-64-linux-gnu \
@@ -453,12 +464,6 @@ arch_gnutype_map = \
 	mipsn32el=mips64el-linux-gnuabin32 \
 	mips64=mips64-linux-gnuabi64 \
 	mips64el=mips64el-linux-gnuabi64 \
-	mipsr6=mipsisa32r6-linux-gnu \
-	mipsr6el=mipsisa32r6el-linux-gnu \
-	mipsn32r6=mipsisa64r6-linux-gnuabin32 \
-	mipsn32r6el=mipsisa64r6el-linux-gnuabin32 \
-	mips64r6=mipsisa64r6-linux-gnuabi64 \
-	mips64r6el=mipsisa64r6el-linux-gnuabi64 \
 	powerpc=powerpc-linux-gnu \
 	ppc64=powerpc64-linux-gnu \
 	ppc64el=powerpc64le-linux-gnu \
@@ -468,6 +473,15 @@ arch_gnutype_map = \
 	s390x=s390x-linux-gnu \
 	x32=x86-64-linux-gnux32
 
+ifeq (yes,$(MIPS_R6_ENABLED))
+  arch_gnutype_map +=  mipsr6=mipsisa32r6-linux-gnu \
+	mipsr6el=mipsisa32r6el-linux-gnu \
+	mipsn32r6=mipsisa64r6-linux-gnuabin32 \
+	mipsn32r6el=mipsisa64r6el-linux-gnuabin32 \
+	mips64r6=mipsisa64r6-linux-gnuabi64 \
+	mips64r6el=mipsisa64r6el-linux-gnuabi64
+endif
+
 _element = $(filter $1=%,$(arch_gnutype_map))
 _gnu_type = $(subst $1=,,$(filter $1=%,$(arch_gnutype_map)))
 

--- End Message ---
--- Begin Message ---
Source: gcc-6
Source-Version: 6.4.0-11

We believe that the bug you reported is fixed in the latest version of
gcc-6, 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 881610@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <doko@debian.org> (supplier of updated gcc-6 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 06 Dec 2017 10:23:53 +0100
Source: gcc-6
Binary: gcc-6-base libgcc-6-dev libgcc4 libgcc4-dbg lib64gcc-6-dev lib32gcc-6-dev libn32gcc-6-dev libx32gcc-6-dev gcc-6 gcc-6-multilib gcc-6-test-results gcc-6-plugin-dev gcc-6-hppa64-linux-gnu cpp-6 gcc-6-locales g++-6 g++-6-multilib libasan3 libasan3-dbg lib32asan3 lib32asan3-dbg lib64asan3 lib64asan3-dbg libx32asan3 libx32asan3-dbg libmpx2 libmpx2-dbg lib32mpx2 lib32mpx2-dbg lib64mpx2 lib64mpx2-dbg libgccjit-6-doc libgccjit-6-dev gobjc++-6 gobjc++-6-multilib gobjc-6 gobjc-6-multilib libobjc-6-dev lib64objc-6-dev lib32objc-6-dev libn32objc-6-dev libx32objc-6-dev gfortran-6 gfortran-6-multilib libgfortran-6-dev lib64gfortran-6-dev lib32gfortran-6-dev libn32gfortran-6-dev libx32gfortran-6-dev libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libx32gfortran3 libx32gfortran3-dbg gccgo-6 gccgo-6-multilib libgo9 libgo9-dbg lib64go9 lib64go9-dbg lib32go9 lib32go9-dbg libn32go9 libn32go9-dbg
 libx32go9 libx32go9-dbg gcj-6 gcj-6-jdk gcj-6-jre-headless gcj-6-jre libgcj17 gcj-6-jre-lib libgcj17-awt libgcj17-dev libgcj17-dbg gcj-6-source libgcj-doc libstdc++-6-dev libstdc++-6-pic libstdc++6-6-dbg lib32stdc++-6-dev lib32stdc++6-6-dbg lib64stdc++-6-dev lib64stdc++6-6-dbg libn32stdc++-6-dev libn32stdc++6-6-dbg libx32stdc++-6-dev libx32stdc++6-6-dbg libstdc++-6-doc gnat-6 gnat-6-sjlj libgnat-6 libgnat-6-dbg libgnatvsn6-dev libgnatvsn6 libgnatvsn6-dbg libgnatprj6-dev libgnatprj6 libgnatprj6-dbg gdc-6 gdc-6-multilib libgphobos-6-dev libgphobos68 libgphobos68-dbg lib64gphobos-6-dev lib64gphobos68 lib64gphobos68-dbg lib32gphobos-6-dev lib32gphobos68 lib32gphobos68-dbg libx32gphobos-6-dev libx32gphobos68 libx32gphobos68-dbg
 gcc-6-source
Architecture: source
Version: 6.4.0-11
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description:
 cpp-6      - GNU C preprocessor
 g++-6      - GNU C++ compiler
 g++-6-multilib - GNU C++ compiler (multilib support)
 gcc-6      - GNU C compiler
 gcc-6-base - GCC, the GNU Compiler Collection (base package)
 gcc-6-hppa64-linux-gnu - GNU C compiler (cross compiler for hppa64)
 gcc-6-locales - GCC, the GNU compiler collection (native language support files)
 gcc-6-multilib - GNU C compiler (multilib support)
 gcc-6-plugin-dev - Files for GNU GCC plugin development.
 gcc-6-source - Source of the GNU Compiler Collection
 gcc-6-test-results - Test results for the GCC test suite
 gccgo-6    - GNU Go compiler
 gccgo-6-multilib - GNU Go compiler (multilib support)
 gcj-6      - GCJ byte code and native compiler for Java(TM)
 gcj-6-jdk  - GCJ and Classpath development tools for Java(TM)
 gcj-6-jre  - Java runtime environment using GIJ/Classpath
 gcj-6-jre-headless - Java runtime environment using GIJ/Classpath (headless version)
 gcj-6-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-6-source - GCJ java sources for use in IDEs like eclipse and netbeans
 gdc-6      - GNU D compiler (version 2)
 gdc-6-multilib - GNU D compiler (version 2, multilib support)
 gfortran-6 - GNU Fortran compiler
 gfortran-6-multilib - GNU Fortran compiler (multilib support)
 gnat-6     - GNU Ada compiler
 gnat-6-sjlj - GNU Ada compiler (setjump/longjump runtime library)
 gobjc++-6  - GNU Objective-C++ compiler
 gobjc++-6-multilib - GNU Objective-C++ compiler (multilib support)
 gobjc-6    - GNU Objective-C compiler
 gobjc-6-multilib - GNU Objective-C compiler (multilib support)
 lib32asan3 - AddressSanitizer -- a fast memory error detector (32bit)
 lib32asan3-dbg - AddressSanitizer -- a fast memory error detector (32 bit debug sy
 lib32gcc-6-dev - GCC support library (32 bit development files)
 lib32gfortran-6-dev - Runtime library for GNU Fortran applications (32bit development f
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit debug symbol
 lib32go9   - Runtime library for GNU Go applications (32bit)
 lib32go9-dbg - Runtime library for GNU Go applications (32 bit debug symbols)
 lib32gphobos-6-dev - Phobos D standard library (32bit development files)
 lib32gphobos68 - Phobos D standard library (runtime library)
 lib32gphobos68-dbg - Phobos D standard library (debug symbols)
 lib32mpx2  - Intel memory protection extensions (32bit)
 lib32mpx2-dbg - Intel memory protection extensions (32 bit debug symbols)
 lib32objc-6-dev - Runtime library for GNU Objective-C applications (32bit developme
 lib32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 lib32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 lib64asan3 - AddressSanitizer -- a fast memory error detector (64bit)
 lib64asan3-dbg - AddressSanitizer -- a fast memory error detector (64bit debug sym
 lib64gcc-6-dev - GCC support library (64bit development files)
 lib64gfortran-6-dev - Runtime library for GNU Fortran applications (64bit development f
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols
 lib64go9   - Runtime library for GNU Go applications (64bit)
 lib64go9-dbg - Runtime library for GNU Go applications (64bit debug symbols)
 lib64gphobos-6-dev - Phobos D standard library (64bit development files)
 lib64gphobos68 - Phobos D standard library (runtime library)
 lib64gphobos68-dbg - Phobos D standard library (debug symbols)
 lib64mpx2  - Intel memory protection extensions (64bit)
 lib64mpx2-dbg - Intel memory protection extensions (64bit debug symbols)
 lib64objc-6-dev - Runtime library for GNU Objective-C applications (64bit developme
 lib64stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 lib64stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libasan3   - AddressSanitizer -- a fast memory error detector
 libasan3-dbg - AddressSanitizer -- a fast memory error detector (debug symbols)
 libgcc-6-dev - GCC support library (development files)
 libgcc4    - GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgccjit-6-dev - GCC just-in-time compilation (development files)
 libgccjit-6-doc - GCC just-in-time compilation (documentation)
 libgcj-doc - libgcj API documentation and example programs
 libgcj17   - Java runtime library for use with gcj
 libgcj17-awt - AWT peer runtime libraries for use with gcj
 libgcj17-dbg - Debugging symbols for libraries provided in libgcj17-dev
 libgcj17-dev - Java development headers for use with gcj
 libgfortran-6-dev - Runtime library for GNU Fortran applications (development files)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgnat-6  - runtime for applications compiled with GNAT (shared library)
 libgnat-6-dbg - runtime for applications compiled with GNAT (debugging symbols)
 libgnatprj6 - GNU Ada compiler Project Manager (shared library)
 libgnatprj6-dbg - GNU Ada compiler Project Manager (debugging symbols)
 libgnatprj6-dev - GNU Ada compiler Project Manager (development files)
 libgnatvsn6 - GNU Ada compiler selected components (shared library)
 libgnatvsn6-dbg - GNU Ada compiler selected components (debugging symbols)
 libgnatvsn6-dev - GNU Ada compiler selected components (development files)
 libgo9     - Runtime library for GNU Go applications
 libgo9-dbg - Runtime library for GNU Go applications (debug symbols)
 libgphobos-6-dev - Phobos D standard library
 libgphobos68 - Phobos D standard library (runtime library)
 libgphobos68-dbg - Phobos D standard library (debug symbols)
 libmpx2    - Intel memory protection extensions (runtime)
 libmpx2-dbg - Intel memory protection extensions (debug symbols)
 libn32gcc-6-dev - GCC support library (n32 development files)
 libn32gfortran-6-dev - Runtime library for GNU Fortran applications (n32 development fil
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols)
 libn32go9  - Runtime library for GNU Go applications (n32)
 libn32go9-dbg - Runtime library for GNU Go applications (n32 debug symbols)
 libn32objc-6-dev - Runtime library for GNU Objective-C applications (n32 development
 libn32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libn32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc-6-dev - Runtime library for GNU Objective-C applications (development fil
 libstdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libstdc++-6-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++-6-pic - GNU Standard C++ Library v3 (shared library subset kit)
 libstdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libx32asan3 - AddressSanitizer -- a fast memory error detector (x32)
 libx32asan3-dbg - AddressSanitizer -- a fast memory error detector (x32 debug symbo
 libx32gcc-6-dev - GCC support library (x32 development files)
 libx32gfortran-6-dev - Runtime library for GNU Fortran applications (x32 development fil
 libx32gfortran3 - Runtime library for GNU Fortran applications (x32)
 libx32gfortran3-dbg - Runtime library for GNU Fortran applications (x32 debug symbols)
 libx32go9  - Runtime library for GNU Go applications (x32)
 libx32go9-dbg - Runtime library for GNU Go applications (x32 debug symbols)
 libx32gphobos-6-dev - Phobos D standard library (x32 development files)
 libx32gphobos68 - Phobos D standard library (runtime library)
 libx32gphobos68-dbg - Phobos D standard library (debug symbols)
 libx32objc-6-dev - Runtime library for GNU Objective-C applications (x32 development
 libx32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libx32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
Closes: 881610 881621
Changes:
 gcc-6 (6.4.0-11) unstable; urgency=medium
 .
   * Update to SVN 20171206 (r255440) from the gcc-6-branch.
     - Fix PR target/82941 (x86), PR target/82942 (x86), PR target/82990 (x86),
       PR 81288/target (PPC), PR rtl-optimization/82621, PR fortran/82934,
       PR fortran/78619.
   * Update the Linaro support to the 6.4-2017.11 snapshot.
   * Fix mipsr6 typos. Closes: #881621.
   * Don't build mips r6 packages on old releases (YunQiang Su). Closes: #881610.
Checksums-Sha1:
 5d51d0de4e305d25cf4e7b991eeb54adf336a6a1 24919 gcc-6_6.4.0-11.dsc
 c6ed04dd0c5332846639d4d2c116f6eee5016525 1776760 gcc-6_6.4.0-11.diff.gz
 1273ebf96d87abfe761c47f9a0c0452f811cbb92 13706 gcc-6_6.4.0-11_source.buildinfo
Checksums-Sha256:
 a2c02831860d24fc6a2633743579d7d685bf5abc58ce9849c0af9901aa936a72 24919 gcc-6_6.4.0-11.dsc
 783228233bafe64f29746d602dcc5e7da3c89258dc70018d47b1212f0b38a820 1776760 gcc-6_6.4.0-11.diff.gz
 3d59d46c36c89cc48463448b4255132f0b0a1ecdd4f4af6362b26f46cc4a2422 13706 gcc-6_6.4.0-11_source.buildinfo
Files:
 123d3753b53f3ddac4ccfb651a4c2d96 24919 devel optional gcc-6_6.4.0-11.dsc
 507d042ff96f35b2cd7d2f6c49129d2d 1776760 devel optional gcc-6_6.4.0-11.diff.gz
 669a80c1c8e24afd4210732f5bbb9060 13706 devel optional gcc-6_6.4.0-11_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJEBAEBCAAuFiEE1WVxuIqLuvFAv2PWvX6qYHePpvUFAlonvDwQHGRva29AZGVi
aWFuLm9yZwAKCRC9fqpgd4+m9WX2EADUzvh9g1x/40WZjZFJyNKtdAGh5tbhNucx
REZy6njGVgIORhf8Tj9oBCYgmGVRph97EDyqPuvt1IeCHSi/tCKTsyr58+gnQ3Zb
Ykhsv307CwHQkaxretA9QAgNH92LGaUyc2hZdxtRT3rXMJgl25KvSH9wbbNHQi6G
wykWtdh0M1o43R7y+rCsg7xshngP0Dy6LIYCkssVMU3dK5cjAxv4GREsVWWL0Oyy
+xXT2i6P6iT650/lL/zno2NzcwbhYmd0n3HUdId2XWYDlmSuCjLv06cGdt5AsJGm
M4vPOr1dP2GdXdlW83gBYFFn9saAv3/gTKWwtkSw0z9HK9eEnkCwhsXBEsyw2vr8
pbzxsoFOP2wI93ajiaJyklOnUAJ8lmz8T/x6IMLi3tJI3/hOsvx8BKv3q0xpZPUl
tJPlR8rYj/B/kVkS0eXhErivrEw0KQStQ4vejMdiJWCEd7bS6AJbLQLmsJYMzyBm
zu94UNGlE1DvC1fvQVGOorDULppUU3Wh6xiLRMM3PlSuBkslLq9mvBCUQUpE6EnS
wVBiWM7J+lQ8eiaV+YloKo1BFy9ciwIyh6HRjgMM+ADWxiaWh3Gv3h/jQ7G4blJI
ukJkPcKE1vXyNJ4KyL6d2ITpssRyO07ulVtLJbBXKUc1vTpvG8TIaYvkxTaiKwGT
53Va69eiQw==
=GkN6
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: