Your message dated Wed, 11 Oct 2023 12:48:59 +0000
with message-id <e1qqye3-00fiu5...@fasolo.debian.org>
and subject line Bug#1053041: fixed in junit5-system-exit 1.1.2-5
has caused the Debian Bug report #1053041,
regarding junit5-system-exit: FTBFS with OpenJDK 21 due to security manager 
removal
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 ow...@bugs.debian.org
immediately.)


-- 
1053041: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1053041
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: junit5-system-exit
Version: 1.1.2-4
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21
X-Debbugs-Cc: vladimir.pe...@canonical.com

Dear Maintainers,

The package junit5-system-exit ftbfs with default Java 21.
The relevant part of the build log:
---------------
java \
        -jar /usr/share/java/junit-platform-console-standalone.jar \
        -cp 
build/libs/junit5-system-exit.jar:build/libs/junit5-system-exit-tests.jar \
        --scan-classpath \
        --fail-if-no-tests

Thanks for using JUnit! Support its development at https://junit.org/sponsoring

â•·
├─ JUnit Platform Suite ✔
├─ JUnit Jupiter ✔
│  ├─ WithParameterizedTest ✔
│  │  └─ @ParameterizedTest on method should reset state between 
tests ✘ Test 0 should have succeeded, but didn't
│  ├─ ExpectSystemExitWithStatusTest ✔
│  │  ├─ Failure Cases ✔
│  │  │  ├─ System.exit(1234) is expected but another code was 
used, on method ✔
│  │  │  ├─ System.exit(1234) is expected but not called at all, 
on method ✔
│  │  │  ├─ System.exit(1234) is expected but another code was 
used, on class ✔
│  │  │  └─ System.exit(1234) is expected but not called at all, 
on method ✔
│  │  └─ Success Cases ✔
│  │     ├─ System.exit(1234) is caught and detected 
✘ The Security Manager is deprecated and will be removed in a 
future release
│  │     ├─ System.exit(1234) is caught and detected within a 
thread ✘ The Security Manager is deprecated and will be 
removed in a future release
│  │     └─ Class Success ✔
│  │        └─ Method in class annotated with 
ExpectSystemExitWithStatus(123456) succeeds ✘ The Security 
Manager is deprecated and will be removed in a future release
│  ├─ ExpectSystemExitTest ✔
│  │  ├─ Failure Cases ✔
│  │  │  ├─ System.exit() is expected for method but not 
called ✔
│  │  │  └─ System.exit() is expected for class but not 
called ✔
│  │  └─ Success Cases ✔
│  │     ├─ System.exit() is caught and detected ✘ 
The Security Manager is deprecated and will be removed in a future 
release
│  │     ├─ System.exit() is caught and detected within a 
thread ✘ The Security Manager is deprecated and will be 
removed in a future release
│  │     └─ Class Success ✔
│  │        └─ Method in class annotated with ExpectSystemExit 
succeeds ✘ The Security Manager is deprecated and will be 
removed in a future release
│  ├─ FailOnSystemExitTest ✔
│  │  ├─ @FailOnSystemExit on class - System.exit not called 
✘ Single test should have succeeded ==> expected: <1> but was: 
<0>
│  │  ├─ @FailOnSystemExit on class - exception caught and fails 
test ✔
│  │  ├─ @FailOnSystemExit on method - exception caught and fails 
test ✔
│  │  └─ @FailOnSystemExit on method - System.exit not called 
✘ Single test should have succeeded ==> expected: <1> but was: 
<0>
│  └─ DisallowExitSecurityManagerTest ✔
│     ├─ Captures first exit status code only ✔
│     └─ Counts number of exits prevented ✔
└─ JUnit Vintage ✔

Failures (9):
  JUnit Jupiter:WithParameterizedTest:@ParameterizedTest on method should reset 
state between tests
    MethodSource [className = 'com.ginsberg.junit.exit.WithParameterizedTest', 
methodName = 'failOnSystemExitOnClass', methodParameterTypes = '']
    => org.opentest4j.AssertionFailedError: Test 0 should have succeeded, but 
didn't
       org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:38)
       org.junit.jupiter.api.Assertions.fail(Assertions.java:135)
       
com.ginsberg.junit.exit.TestUtils.assertParameterizedTestFails(TestUtils.java:69)
       
com.ginsberg.junit.exit.WithParameterizedTest.failOnSystemExitOnClass(WithParameterizedTest.java:16)
       
java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
       java.base/java.lang.reflect.Method.invoke(Method.java:578)
       
org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
       
org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
       
org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
       
org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
       [...]
  JUnit Jupiter:ExpectSystemExitWithStatusTest:Success Cases:System.exit(1234) 
is caught and detected
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitWithStatusTest$HappyPath', methodName 
= 'detectSystemExit', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected 
System.exit(1234) to be called, but it was not. ==> expected: <1234> but was: 
<null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
         org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
         org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:587)
         [...]
  JUnit Jupiter:ExpectSystemExitWithStatusTest:Success Cases:System.exit(1234) 
is caught and detected within a thread
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitWithStatusTest$HappyPath', methodName 
= 'detectSystemExitInThread', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected 
System.exit(1234) to be called, but it was not. ==> expected: <1234> but was: 
<null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
         org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
         org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:587)
         [...]
  JUnit Jupiter:ExpectSystemExitWithStatusTest:Success Cases:Class 
Success:Method in class annotated with ExpectSystemExitWithStatus(123456) 
succeeds
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitWithStatusTest$HappyPath$ExpectedSuccessClassLevel',
 methodName = 'classLevelExpect', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected 
System.exit(123456) to be called, but it was not. ==> expected: <123456> but 
was: <null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
         org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
         org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:587)
         [...]
  JUnit Jupiter:ExpectSystemExitTest:Success Cases:System.exit() is caught and 
detected
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitTest$HappyPath', methodName = 
'detectSystemExit', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected System.exit() 
to be called, but it was not ==> expected: not <null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:152)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertNotNull.failNull(AssertNotNull.java:49)
         
org.junit.jupiter.api.AssertNotNull.assertNotNull(AssertNotNull.java:35)
         org.junit.jupiter.api.Assertions.assertNotNull(Assertions.java:309)
         [...]
  JUnit Jupiter:ExpectSystemExitTest:Success Cases:System.exit() is caught and 
detected within a thread
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitTest$HappyPath', methodName = 
'detectSystemExitInThread', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected System.exit() 
to be called, but it was not ==> expected: not <null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:152)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertNotNull.failNull(AssertNotNull.java:49)
         
org.junit.jupiter.api.AssertNotNull.assertNotNull(AssertNotNull.java:35)
         org.junit.jupiter.api.Assertions.assertNotNull(Assertions.java:309)
         [...]
  JUnit Jupiter:ExpectSystemExitTest:Success Cases:Class Success:Method in 
class annotated with ExpectSystemExit succeeds
    MethodSource [className = 
'com.ginsberg.junit.exit.ExpectSystemExitTest$HappyPath$ExpectedSuccessClassLevel',
 methodName = 'classLevelExpect', methodParameterTypes = '']
    => java.lang.UnsupportedOperationException: The Security Manager is 
deprecated and will be removed in a future release
       java.base/java.lang.System.setSecurityManager(System.java:429)
       
com.ginsberg.junit.exit.SystemExitExtension.beforeEach(SystemExitExtension.java:95)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeEachCallbacks$2(TestMethodTestDescriptor.java:166)
       
org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeBeforeMethodsOrCallbacksUntilExceptionOccurs$6(TestMethodTestDescriptor.java:202)
       
org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
       [...]
       Suppressed: org.opentest4j.AssertionFailedError: Expected System.exit() 
to be called, but it was not ==> expected: not <null>
         
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:152)
         
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
         org.junit.jupiter.api.AssertNotNull.failNull(AssertNotNull.java:49)
         
org.junit.jupiter.api.AssertNotNull.assertNotNull(AssertNotNull.java:35)
         org.junit.jupiter.api.Assertions.assertNotNull(Assertions.java:309)
         [...]
  JUnit Jupiter:FailOnSystemExitTest:@FailOnSystemExit on class - System.exit 
not called
    MethodSource [className = 'com.ginsberg.junit.exit.FailOnSystemExitTest', 
methodName = 'succeedWhenNotCallingSystemExitOnClass', methodParameterTypes = 
'']
    => org.opentest4j.AssertionFailedError: Single test should have succeeded 
==> expected: <1> but was: <0>
       
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
       
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
       org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
       org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:166)
       org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:661)
       com.ginsberg.junit.exit.TestUtils.assertTestSucceeds(TestUtils.java:88)
       
com.ginsberg.junit.exit.FailOnSystemExitTest.succeedWhenNotCallingSystemExitOnClass(FailOnSystemExitTest.java:57)
       
java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
       java.base/java.lang.reflect.Method.invoke(Method.java:578)
       
org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
       [...]
  JUnit Jupiter:FailOnSystemExitTest:@FailOnSystemExit on method - System.exit 
not called
    MethodSource [className = 'com.ginsberg.junit.exit.FailOnSystemExitTest', 
methodName = 'succeedWhenNotCallingSystemExitInMethod', methodParameterTypes = 
'']
    => org.opentest4j.AssertionFailedError: Single test should have succeeded 
==> expected: <1> but was: <0>
       
org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
       
org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
       org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
       org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:166)
       org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:661)
       com.ginsberg.junit.exit.TestUtils.assertTestSucceeds(TestUtils.java:81)
       
com.ginsberg.junit.exit.FailOnSystemExitTest.succeedWhenNotCallingSystemExitInMethod(FailOnSystemExitTest.java:45)
       
java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
       java.base/java.lang.reflect.Method.invoke(Method.java:578)
       
org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
       [...]

Test run finished after 145 ms
[        14 containers found      ]
[         0 containers skipped    ]
[        14 containers started    ]
[         0 containers aborted    ]
[        14 containers successful ]
[         0 containers failed     ]
[        19 tests found           ]
[         0 tests skipped         ]
[        19 tests started         ]
[         0 tests aborted         ]
[        10 tests successful      ]
[         9 tests failed          ]

make[1]: *** [debian/rules:21: override_dh_auto_test] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:9: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
---------------


-- System Information:
Debian Release: bookworm/sid
  APT prefers lunar-updates
  APT policy: (500, 'lunar-updates'), (500, 'lunar-security'), (500, 'lunar'), 
(100, 'lunar-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.0-33-generic (SMP w/32 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

--- End Message ---
--- Begin Message ---
Source: junit5-system-exit
Source-Version: 1.1.2-5
Done: Emmanuel Bourg <ebo...@apache.org>

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

Debian distribution maintenance software
pp.
Emmanuel Bourg <ebo...@apache.org> (supplier of updated junit5-system-exit 
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 ftpmas...@ftp-master.debian.org)


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

Format: 1.8
Date: Wed, 11 Oct 2023 14:00:45 +0200
Source: junit5-system-exit
Architecture: source
Version: 1.1.2-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
<pkg-java-maintain...@lists.alioth.debian.org>
Changed-By: Emmanuel Bourg <ebo...@apache.org>
Closes: 1053041
Changes:
 junit5-system-exit (1.1.2-5) unstable; urgency=medium
 .
   * Team upload.
   * Fixed the build failure with Java 21 (Closes: #1053041)
Checksums-Sha1:
 14027d21a9e5f2a9e26f09049a5204c0a4fa7304 2150 junit5-system-exit_1.1.2-5.dsc
 5a2daa4242d62144e7ee461fb5a9f820b9b028eb 4664 
junit5-system-exit_1.1.2-5.debian.tar.xz
 1898bd16ead7de469b448d793df864a979dbe08e 17818 
junit5-system-exit_1.1.2-5_source.buildinfo
Checksums-Sha256:
 269463b3f7e0d1c57b381bc45009b813f83593c3ee78675c39f69cf7c8104403 2150 
junit5-system-exit_1.1.2-5.dsc
 eb7025bf31a93cd15be4b3f6542600577b0e5bfc2cbf87564b81fc98677518a7 4664 
junit5-system-exit_1.1.2-5.debian.tar.xz
 db737081cc270f41b34c95ed84c8e67ba9fdd028ce794589872707e621fdbd84 17818 
junit5-system-exit_1.1.2-5_source.buildinfo
Files:
 a59a3a9727b9cb888ab41d3f1d2de04d 2150 java optional 
junit5-system-exit_1.1.2-5.dsc
 47c4c7969a64387e482d0424ade52be7 4664 java optional 
junit5-system-exit_1.1.2-5.debian.tar.xz
 13ea07e7cc00a1273e582a125352a0ac 17818 java optional 
junit5-system-exit_1.1.2-5_source.buildinfo

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

iQJGBAEBCgAwFiEEuM5N4hCA3PkD4WxA9RPEGeS50KwFAmUmlMMSHGVib3VyZ0Bh
cGFjaGUub3JnAAoJEPUTxBnkudCsH7wP/jrqqLNI7zgLCM9TO859a7esFz9pe5Dw
FwXFBi9VCRqqkrc1w5KOZ4RyBez4zatc8ASYgwyPA8IhhkxiFlF2ET7hFeGgsz/Z
ePoa5F4GbCTFnbSrBctbZvefGLpHVHIKjXRv+UAsuaYaNg0OH5En50dIWEPeMzYo
Z6iGKCE8wGM4e665ehGkWvLsr3jEiER0UEDBBV3klYtL9nY1ohjD83N5KIEzeN/3
VcwAuCWkBsVL2LoJpAQABdlqyE/+obKE1qGstvx0a2WYCSTubBVyKk+Uj4DjWedo
wETZKHp6XezvdmzlD6TrDcn+KH+Xpq/bIXlO8F9WW0dLj/sQFYnLAIYO9tC/AgqE
aYYMl+Wihzqxhp46jWbeFDpwUUI/YXmEJ+ZiUvuZ/reldxOszlvWChkn4E//ouwL
jB6Nr13D6vIb8cd+5CGeSYRUShLFOZiA5w0rrEGCXskcUB7Ar+8Gk5V85fRW5wrI
6g0uy1VnBs3LjndlmXtpDK7fyzgnS6uUmnToi1zJXhEwRzy+OtOldZTT5d7s1Pgh
WELoah2sfUgUXm63JoYfKqVq6nsjq+66o7cGjyPu0rN1U4h7cDXsT8DRJQkXUcCp
lVRwmY9ah8+ZNzwQphpMZud5NonGkfvyccQOTYDXnfl52yTw5jU+xWGQhmhzL8uo
y8lBEXv14IVa
=vMDZ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to