diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 072db9d..0000000 --- a/.gitignore +++ /dev/null @@ -1,16 +0,0 @@ -neon-0.29.2.tar.gz -/neon-0.29.4.tar.gz -/neon-0.29.5.tar.gz -/neon-0.29.6.tar.gz -/neon-0.30.1.tar.gz -/neon-0.30.2.tar.gz -/neon-0.31.0.tar.gz -/neon-0.31.1.tar.gz -/results_neon -/neon-0.31.2.tar.gz -/neon-0.32.0.tar.gz -/neon-0.32.1.tar.gz -/neon-0.32.2.tar.gz -/neon-0.32.3.tar.gz -/neon-0.32.5.tar.gz -/neon-0.33.0.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..3486bb6 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +neon package is retired on branch c10s for BAKERY-412 \ No newline at end of file diff --git a/mirrors b/mirrors deleted file mode 100644 index 7b748fe..0000000 --- a/mirrors +++ /dev/null @@ -1 +0,0 @@ -http://www.webdav.org/neon/ diff --git a/neon-0.32.2-multilib.patch b/neon-0.32.2-multilib.patch deleted file mode 100644 index a219792..0000000 --- a/neon-0.32.2-multilib.patch +++ /dev/null @@ -1,62 +0,0 @@ ---- neon-0.32.2/neon-config.in.multilib -+++ neon-0.32.2/neon-config.in -@@ -5,7 +5,11 @@ - prefix=@prefix@ - exec_prefix=@exec_prefix@ - includedir=@includedir@ --libdir=@libdir@ -+ -+libdir=`pkg-config --variable=libdir neon` -+CFLAGS=`pkg-config --cflags neon` -+LIBS=`pkg-config --libs neon` -+has_lfs=`pkg-config --variable=has_lfs neon` - - usage() - { -@@ -23,7 +27,7 @@ - --support FEATURE exit with success if feature is supported - - Known features: -- dav [@NE_FLAG_DAV@], ssl [@NE_FLAG_SSL@], zlib [@NE_FLAG_ZLIB@], ipv6 [@NE_FLAG_IPV6@], lfs [@NE_FLAG_LFS@], -+ dav [@NE_FLAG_DAV@], ssl [@NE_FLAG_SSL@], zlib [@NE_FLAG_ZLIB@], ipv6 [@NE_FLAG_IPV6@], lfs [${has_lfs}], - i18n [@NE_FLAG_I18N@], ts_ssl [@NE_FLAG_TS_SSL@] - - EOF -@@ -69,16 +73,11 @@ - ;; - - --cflags) -- echo -I${includedir}/neon @NEON_CFLAGS@ -+ echo ${CFLAGS} - ;; - - --libs) -- LIBS="-lneon @NEON_LIBS@" -- # Don't add standard library paths -- if test "$prefix" != "/usr"; then -- LIBS="-L${libdir} ${LIBS}" -- fi -- echo @user_LDFLAGS@ ${LIBS} -+ echo ${LIBS} - ;; - - --la-file) -@@ -93,7 +92,7 @@ - zlib|ZLIB) support @NE_FLAG_ZLIB@ ;; - ipv6|IPV6) support @NE_FLAG_IPV6@ ;; - dav|DAV) support @NE_FLAG_DAV@ ;; -- lfs|LFS) support @NE_FLAG_LFS@ ;; -+ lfs|LFS) support ${has_lfs} ;; - i18n|I18N) support @NE_FLAG_I18N@ ;; - ts_ssl|TS_SSL) support @NE_FLAG_TS_SSL@ ;; - *) support no ;; ---- neon-0.32.2/neon.pc.in.multilib -+++ neon-0.32.2/neon.pc.in -@@ -2,6 +2,7 @@ - exec_prefix=@exec_prefix@ - libdir=@libdir@ - includedir=@includedir@ -+has_lfs=@NE_FLAG_LFS@ - - Name: neon - Description: HTTP/WebDAV client library diff --git a/neon.spec b/neon.spec deleted file mode 100644 index 0d9c874..0000000 --- a/neon.spec +++ /dev/null @@ -1,483 +0,0 @@ -%bcond_without tests -%if 0%{?fedora} -%bcond_without pkcs11 -%else -%bcond_with pkcs11 -%endif -%if 0%{?fedora} -%bcond_without libproxy -%else -%bcond_with libproxy -%endif - -# Disable automatic .la file removal -%global __brp_remove_la_files %nil - -Summary: An HTTP and WebDAV client library -Name: neon -Version: 0.33.0 -Release: 1%{?dist} -License: LGPL-2.0-or-later -URL: https://notroj.github.io/neon/ -Source0: https://notroj.github.io/neon/neon-%{version}.tar.gz -Patch0: neon-0.32.2-multilib.patch -BuildRequires: expat-devel, openssl-devel, zlib-devel, krb5-devel -BuildRequires: pkgconfig, make, gcc, xmlto -%if %{with pkcs11} -BuildRequires: pakchois-devel -%endif -%if %{with libproxy} -BuildRequires: libproxy-devel -%endif -%if %{with tests} -# SSL tests require openssl binary, PKCS#11 testing need certutil -BuildRequires: /usr/bin/perl, /usr/bin/openssl, /usr/bin/certutil -%endif - -%description -neon is an HTTP and WebDAV client library, with a C interface; -providing a high-level interface to HTTP and WebDAV methods along -with a low-level interface for HTTP request handling. neon -supports persistent connections, proxy servers, basic, digest and -Kerberos authentication, and has complete SSL support. - -%package devel -Summary: Development libraries and C header files for the neon library -Requires: neon = %{version}-%{release}, openssl-devel, zlib-devel, expat-devel -Requires: pkgconfig -# Documentation is GPLv2+ -License: LGPL-2.0-or-later AND GPL-2.0-or-later - -%description devel -The development library for the C language HTTP and WebDAV client library. - -%prep -%autosetup -p1 - -# prevent installation of HTML docs -sed -i '/^install-docs/s/install-html//' Makefile.in - -%build -%configure --with-expat --enable-shared --disable-static \ - --enable-warnings \ - --with-ssl=openssl --enable-threadsafe-ssl=posix \ -%if %{with libproxy} - --with-libproxy -%else - --without-libproxy -%endif -%make_build - -%install -rm -rf $RPM_BUILD_ROOT -%make_install - -sed -ri "/^dependency_libs/{s,-l[^ ']*,,g}" \ - $RPM_BUILD_ROOT%{_libdir}/libneon.la - -%find_lang %{name} - -%if %{with tests} -%check -export TEST_QUIET=0 -make %{?_smp_mflags} check -%endif - -%ldconfig_scriptlets - -%files -f %{name}.lang -%doc AUTHORS BUGS TODO src/COPYING.LIB NEWS README* THANKS -%{_libdir}/*.so.* - -%files devel -%{_bindir}/* -%{_includedir}/* -%{_libdir}/pkgconfig/neon.pc -%{_mandir}/man1/* -%{_mandir}/man3/* -%{_libdir}/*.*a -%{_libdir}/*.so - -%changelog -* Tue Jan 30 2024 Joe Orton - 0.33.0-1 -- update to 0.33.0 - -* Thu Jan 25 2024 Fedora Release Engineering - 0.32.5-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sun Jan 21 2024 Fedora Release Engineering - 0.32.5-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Sep 29 2023 Joe Orton - 0.32.5-3 -- migrated to SPDX license - -* Thu Jul 20 2023 Fedora Release Engineering - 0.32.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Mon Jan 23 2023 Joe Orton - 0.32.5-1 -- update to 0.32.5 - -* Thu Jan 19 2023 Fedora Release Engineering - 0.32.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Mon Sep 5 2022 Joe Orton - 0.32.3-1 -- update to 0.32.3 - -* Fri Jul 22 2022 Fedora Release Engineering - 0.32.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Thu Jan 27 2022 Timm Bäder - 0.32.2-4 -- Disable automatic .la file removal -- https://fedoraproject.org/wiki/Changes/RemoveLaFiles - -* Thu Jan 27 2022 Joe Orton - 0.32.2-3 -- strip LIBS exported by neon-config to the minimum - -* Thu Jan 20 2022 Fedora Release Engineering - 0.32.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Thu Jan 13 2022 Joe Orton - 0.32.2-1 -- update to 0.32.2 - -* Tue Sep 21 2021 Joe Orton - 0.32.1-1 -- update to 0.32.1 -- add bcond for libproxy support - -* Mon Sep 20 2021 Joe Orton - 0.32.0-1 -- update to 0.32.0 - -* Tue Sep 14 2021 Sahana Prasad - 0.31.2-8 -- Rebuilt with OpenSSL 3.0.0 - -* Thu Jul 22 2021 Fedora Release Engineering - 0.31.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Thu Feb 4 2021 Joe Orton - 0.31.2-6 -- add bcond for PKCS#11 support -- use make macros - -* Tue Jan 26 2021 Fedora Release Engineering - 0.31.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Aug 26 2020 Joe Orton - 0.31.2-4 -- fix tests with current OpenSSL (#1863681) - -* Sat Aug 01 2020 Fedora Release Engineering - 0.31.2-3 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 0.31.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jun 24 2020 Joe Orton - 0.31.2-1 -- update to 0.31.2 - -* Fri Apr 17 2020 Joe Orton - 0.31.1-1 -- update to 0.31.1 - -* Tue Mar 24 2020 Joe Orton - 0.31.0-1 -- update to 0.31.0 - -* Mon Feb 10 2020 Joe Orton - 0.30.2-14 -- fix FTBFS (#1799679) - -* Mon Feb 03 2020 Kalev Lember - 0.30.2-13 -- Avoid using bindir macro in buildrequires - -* Wed Jan 29 2020 Fedora Release Engineering - 0.30.2-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 0.30.2-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Apr 5 2019 Joe Orton - 0.30.2-10 -- updates for OpenSSL 1.1 (#1675444) - -* Fri Feb 01 2019 Fedora Release Engineering - 0.30.2-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 0.30.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Jun 28 2018 Joe Orton - 0.30.2-7 -- fix gcc warnings in test suite build - -* Thu Jun 28 2018 Joe Orton - 0.30.2-6 -- fix implicit writev declaration (Mattias Ellert, #1572180) -- add build conditional for tests -- use ldconfig_scriptlets macro - -* Thu Feb 08 2018 Fedora Release Engineering - 0.30.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 0.30.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0.30.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 0.30.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Sep 30 2016 Joe Orton - 0.30.2-1 -- update to 0.30.2 - -* Thu Feb 04 2016 Fedora Release Engineering - 0.30.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Jun 17 2015 Fedora Release Engineering - 0.30.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Sep 23 2014 Joe Orton - 0.30.1-2 -- switch to OpenSSL - -* Tue Sep 23 2014 Joe Orton - 0.30.1-1 -- update to 0.30.1 - -* Sun Aug 17 2014 Fedora Release Engineering - 0.30.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.30.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed Jul 31 2013 Joe Orton - 0.30.0-2 -- prevent installation of HTML docs - -* Wed Jul 31 2013 Joe Orton - 0.30.0-1 -- update to 0.30.0 (#983563, #926212) - -* Mon Mar 18 2013 Joe Orton - 0.29.6-6 -- fix strict-aliasing warning (upstream r1896) - -* Mon Feb 25 2013 Tomáš Mráz - 0.29.6-5 -- fix build with gnutls3 - patch by Bartosz Brachaczek - -* Thu Feb 14 2013 Fedora Release Engineering - 0.29.6-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Jul 20 2012 Fedora Release Engineering - 0.29.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Jan 13 2012 Fedora Release Engineering - 0.29.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue May 3 2011 Joe Orton - 0.29.6-1 -- update to 0.29.6 -- correct -devel License; drop old Conflicts - -* Tue Feb 08 2011 Fedora Release Engineering - 0.29.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Thu Oct 14 2010 Joe Orton - 0.29.5-1 -- update to 0.29.5 - -* Fri Oct 1 2010 Joe Orton - 0.29.4-1 -- update to 0.29.4 - -* Thu Mar 25 2010 Joe Orton - 0.29.3-1 -- update to 0.29.3 - -* Fri Jan 8 2010 Joe Orton - 0.29.2-1 -- update to 0.29.2 - -* Tue Dec 15 2009 Joe Orton - 0.29.1-1 -- update to 0.29.1 - -* Sun Sep 13 2009 Joe Orton 0.29.0-3 -- enable libproxy support - -* Sun Sep 13 2009 Joe Orton 0.29.0-1 -- update to 0.29.0 - -* Wed Aug 19 2009 Joe Orton 0.28.6-1 -- update to 0.28.6 - -* Sat Jul 25 2009 Fedora Release Engineering - 0.28.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Jul 9 2009 Joe Orton 0.28.5-1 -- update to 0.28.5 - -* Fri Mar 6 2009 Joe Orton 0.28.4-1 -- update to 0.28.4 - -* Wed Feb 25 2009 Fedora Release Engineering - 0.28.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Jan 19 2009 Joe Orton 0.28.3-3 -- use install-p in "make install" (Robert Scheck, #226189) - -* Thu Aug 28 2008 Joe Orton 0.28.3-2 -- update to 0.28.3 - -* Wed Jun 25 2008 Joe Orton 0.28.2-4 -- rebuild for new GnuTLS - -* Mon Jun 2 2008 Joe Orton 0.28.2-3 -- require ca-certificates package - -* Thu Apr 3 2008 Joe Orton 0.28.2-2 -- update to 0.28.2 - -* Wed Apr 2 2008 Joe Orton 0.28.1-3 -- use the OpenSSL CA bundle - -* Mon Mar 10 2008 Joe Orton 0.28.1-2 -- update to 0.28.1 - -* Tue Feb 26 2008 Joe Orton 0.28.0-3 -- rebuild against pakchois - -* Wed Dec 5 2007 Joe Orton 0.27.2-4 -- trim dependency_libs in .la file - -* Tue Dec 4 2007 Joe Orton 0.27.2-3 -- rebuild against GnuTLS -- drop static library - -* Tue Sep 25 2007 Joe Orton 0.27.2-2 -- update to 0.27.2 - -* Thu Sep 20 2007 Joe Orton 0.27.0-3 -- fix Negotiate response verification - -* Thu Aug 30 2007 Joe Orton 0.27.0-2 -- enable OpenSSL thread-safety hooks - -* Wed Aug 22 2007 Joe Orton 0.27.0-1 -- update to 0.27.0 (#243638) - -* Mon Aug 20 2007 Joe Orton 0.25.5-7 -- fix License - -* Mon Feb 5 2007 Joe Orton 0.25.5-6 -- remove trailing dot in -devel Summary -- use standard BuildRoot -- change Group to System Environment/Libraries -- drop Prefix - -* Wed Jul 12 2006 Jesse Keating - 0.25.5-5.1 -- rebuild - -* Thu Jun 1 2006 Joe Orton 0.25.5-5 -- have -devel require pkgconfig (#193355) - -* Wed May 24 2006 Joe Orton 0.25.5-4 -- add multilib fixes for neon-config (#192734) - -* Wed May 17 2006 Joe Orton 0.25.5-3 -- rebuild - -* Mon Feb 27 2006 Joe Orton 0.25.5-2 -- don't trim exported libraries (#182997) - -* Fri Feb 10 2006 Jesse Keating - 0.25.5-1.2 -- bump again for double-long bug on ppc(64) - -* Tue Feb 07 2006 Jesse Keating - 0.25.5-1.1 -- rebuilt for new gcc4.1 snapshot and glibc changes - -* Tue Jan 31 2006 Joe Orton 0.25.5-1 -- update to 0.25.5 - -* Fri Dec 09 2005 Jesse Keating -- rebuilt - -* Wed Dec 7 2005 Joe Orton 0.24.7-10 -- strip unnecessary exports from .la file/neon-config - -* Tue Nov 8 2005 Tomas Mraz 0.24.7-9 -- rebuilt with new openssl - -* Fri Sep 23 2005 Joe Orton 0.24.7-8 -- restore static libs for rpm - -* Mon Sep 19 2005 Joe Orton 0.24.7-7 -- drop static libs, doc/html from devel docdir - -* Wed Mar 2 2005 Joe Orton 0.24.7-6 -- rebuild - -* Thu Feb 10 2005 Joe Orton 0.24.7-5 -- don't define min() in ne_utils.h (Caolan McNamara, #147228) - -* Tue Oct 12 2004 Joe Orton 0.24.7-4 -- update to GSSAPI code from trunk - -* Fri Jul 23 2004 Joe Orton 0.24.7-3 -- rebuild - -* Tue Jul 20 2004 Joe Orton 0.24.7-2.1 -- rebuild - -* Tue Jul 6 2004 Joe Orton 0.24.7-2 -- devel requires neon of same release, expat-devel (#127330) - -* Mon Jul 5 2004 Joe Orton 0.24.7-1 -- update to 0.24.7 - -* Tue Jun 15 2004 Elliot Lee -- rebuilt - -* Wed May 19 2004 Joe Orton 0.24.6-1 -- update to 0.24.6 - -* Wed Apr 14 2004 Joe Orton 0.24.5-2 -- rebuild - -* Wed Apr 14 2004 Joe Orton 0.24.5-1 -- update to 0.24.5 for CVE CAN-2004-0179 fix - -* Thu Mar 25 2004 Joe Orton 0.24.4-4 -- implement the Negotate auth scheme, and only over SSL - -* Tue Mar 02 2004 Elliot Lee -- rebuilt - -* Wed Feb 25 2004 Joe Orton 0.24.4-3 -- use BuildRequires not BuildPrereq, drop autoconf, libtool; - -devel requires {openssl,zlib}-devel (#116744) - -* Fri Feb 13 2004 Elliot Lee 0.24.4-2 -- rebuilt - -* Mon Feb 9 2004 Joe Orton 0.24.4-1 -- update to 0.24.4 - -* Thu Oct 9 2003 Joe Orton 0.24.3-1 -- update to 0.24.3 - -* Wed Sep 24 2003 Joe Orton 0.24.2-1 -- update to 0.24.2 - -* Tue Jul 22 2003 Nalin Dahyabhai 0.23.9-7 -- rebuild - -* Tue Jun 24 2003 Joe Orton 0.23.9-6 -- never print libdir in --libs output - -* Wed Jun 04 2003 Elliot Lee -- rebuilt - -* Tue Jun 3 2003 Joe Orton 0.23.9-4 -- don't regenerate docs; limit conflict with subversion - -* Wed May 28 2003 Jeff Johnson 0.23.9-3 -- build. - -* Sat May 24 2003 Florian La Roche -- add ldconfig to post/postun - -* Tue May 20 2003 Jeff Johnson 0.23.9-2 -- force expat, include neon-config, for subversion build. -- do "make check" (but ignore failure for now) - -* Mon May 19 2003 Jeff Johnson 0.23.9-1 -- upgrade to 0.23.9. -- avoid xmlto breakage generating man pages for now. - -* Mon Nov 11 2002 Jeff Johnson 0.23.5-2 -- avoid subversion-devel until libxml2 vs. expat is resolved. - -* Sat Nov 9 2002 Jeff Johnson 0.23.5-1 -- Create. diff --git a/sources b/sources deleted file mode 100644 index 8ce8e82..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (neon-0.33.0.tar.gz) = b214ed34cd832dfaf3af08d4bdbe459c3e791f691548a6d44ee0cdc9811856185522bcbd6c2aca9a536fc021a2ed6329bd093cb3435cc40e3cfd9f5af8b92644 diff --git a/upstream b/upstream deleted file mode 100644 index 63d22b7..0000000 --- a/upstream +++ /dev/null @@ -1 +0,0 @@ -neon-0.29.2.tar.gz diff --git a/upstream-key.gpg b/upstream-key.gpg deleted file mode 100644 index 2268cd0..0000000 --- a/upstream-key.gpg +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.1 (GNU/Linux) - -mQGiBDsvsLgRBACsHi7eM94mA9jlBxxwLC4ntK0Mj9WWm85V0C1y0Ei1MGz7q6Vu -WdxKgkNMauWrqKCBDQxOI3q5InZd/tZcOXQzGMtA6DxdAa50ZthfCbo0+8bfm00a -wCa5s/1x2tu7zuqcA7/3nOscZgss2k1RrZIALFimfXvq6hkchQyj9mnfKwCg1aOA -Wk7psAeH7UZgBqGHLcEKLjsD/11APufZVhmQtwKP8+yVe4d6UI7e2r4lURoT942g -tLlye1Rvh+FggkWjxKrwmyUaTW4jNDWEO1Sy1KCy/zb17lDQJReBNb4Q6wQwuySL -QqpFYUy3LtCJHnWsriC2d/iuLbBuQJxxQQQ0B0gichI+pqyZN2fmtiyucA3EzXv2 -8WQQA/9eSsUHv1nq+t0mbOBg1wpo0qlofJ96kM6kh8tzD6SxsHx6WDqE2TkZ+6Kf -Lr6yFo4XLY+5DOZ5XgR5LBTyH4PH8M5gZkqfzDTCJfk4qc2XzVW91zSbzQ0fMGWq -CU937R2LwnIWyVXjBgT8QLO58ZW8/X17YIGcgqHW1i4VD7XwR7QdSm9lIE9ydG9u -IDxqb3J0b25AcmVkaGF0LmNvbT6IVwQTEQIAFwUCOy+wuAULBwoDBAMVAwIDFgIB -AheAAAoJEEf2lp0ORM8M6boAnAz/+oVQGgGcHIpF9ugtJumGRApTAJ4liHEQvna0 -FOuzpUZ6kMT3sgIaBIhGBBIRAgAGBQJAbHSUAAoJEDebzld4aIv1rb8An333fo64 -a38vUnnO6rRdVquUpYC4AJ9x3lLonu/WI5WmDHjTy1Ar2kDt/7kBDQQ7L7C6EAQA -3lBouLYzyMT83ZtRUNgYmDZqNai1crElkuctL678IwQoEr4zGWTfwIb+vXkqf1VL -2HJRXMTamrDfWo/Vy6ZiyB9IRpXNcNXTdYmf6wXqPZqOCK9Q1mp/sWJGafHVbjDs -WzGYTl9XiJUrMBPwPIlLj9SEvNwG7QrhjbrsBKkTWwcAAwUD/RWNLmA2OGhkkau6 -2AHi2i20+zmPGLH0AnyaIPJAB6HaZCxUuOSNBIRsaZoOoizzvaF6Qtaa7KJw3SUv -iWTfyAv4Lob+bo0e9MdI2olIvjg7VOi5wNPldVa4Cs4desqeXecJowP71gFV/NBd -BPr2DLMXG3aOhtRZkG7aueoUkuk+iEYEGBECAAYFAjsvsLoACgkQR/aWnQ5EzwyK -gACcD+v7ABREHJd0RglLfFoAuCcZ7FoAoNQYheE5UpBrTY6qK063clE3Gt2J -=Zlpn ------END PGP PUBLIC KEY BLOCK-----