From f7441480454edb6d6728a60237617ef4a148903b Mon Sep 17 00:00:00 2001 From: Sofia Boldyreva Date: Tue, 28 Jan 2025 17:44:35 +0100 Subject: [PATCH] Initial commit --- config.yaml | 16 ++++++++++++++++ files/AnyEvent-7.14-fix_ssltest.patch | 12 ++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 config.yaml create mode 100644 files/AnyEvent-7.14-fix_ssltest.patch diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..24b53b3 --- /dev/null +++ b/config.yaml @@ -0,0 +1,16 @@ +actions: + + - modify_release: + - suffix: ".alma.1" + enabled: true + + - changelog_entry: + - name: "Eduard Abdullin" + email: "eabdullin@redhat.com" + line: + - "Patch for tests" + + - add_files: + - type: "patch" + name: "AnyEvent-7.14-fix_ssltest.patch" + number: "Latest" diff --git a/files/AnyEvent-7.14-fix_ssltest.patch b/files/AnyEvent-7.14-fix_ssltest.patch new file mode 100644 index 0000000..f638b95 --- /dev/null +++ b/files/AnyEvent-7.14-fix_ssltest.patch @@ -0,0 +1,12 @@ +diff -Naur AnyEvent-7.14/t/80_ssltest.t AnyEvent-7.14.dh/t/80_ssltest.t +--- AnyEvent-7.14/t/80_ssltest.t 2012-05-12 23:06:34.000000000 +0000 ++++ AnyEvent-7.14.dh/t/80_ssltest.t 2021-05-14 11:19:54.342751254 +0000 +@@ -11,7 +11,7 @@ + use AnyEvent::Handle; + use AnyEvent::TLS; + +-my $ctx = new AnyEvent::TLS cert_file => $0; ++my $ctx = new AnyEvent::TLS cert_file => $0, dh => "schmorp2048"; + + for my $mode (1..5) { + ok (1, "mode $mode");