public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Emmanuel Seyman <emmanuel@seyman.fr>
To: git-commits@fedoraproject.org
Subject: [rpms/perl-BZ-Client] epel10: Update to 4.4001
Date: Wed, 05 Aug 2026 18:53:09 GMT [thread overview]
Message-ID: <178595598934.1.16347755829415676093.rpms-perl-BZ-Client-cfd8c14707c3@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/perl-BZ-Client
Branch : epel10
Commit : cfd8c14707c3def77e4a11784aa63a3b0b1b11f2
Author : Emmanuel Seyman <emmanuel@seyman.fr>
Date : 2017-02-06T18:21:03+01:00
Stats : +32/-99 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/perl-BZ-Client/c/cfd8c14707c3def77e4a11784aa63a3b0b1b11f2?branch=epel10
Log:
Update to 4.4001
---
diff --git a/.gitignore b/.gitignore
index ed35078..554c1d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ BZ-Client-1.03.tar.gz
/BZ-Client-1.07.tar.gz
/BZ-Client-1.071.tar.gz
/BZ-Client-1.072.tar.gz
+/BZ-Client-4.4001.tar.gz
diff --git a/BZ-Client-1.04-Expect-perturbed-structure-members-on-t-11writer.t.patch b/BZ-Client-1.04-Expect-perturbed-structure-members-on-t-11writer.t.patch
deleted file mode 100644
index 7986e8f..0000000
--- a/BZ-Client-1.04-Expect-perturbed-structure-members-on-t-11writer.t.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From e3f477126292acf944b39b755e6212ed3ffc3212 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
-Date: Fri, 18 Apr 2014 14:31:32 +0200
-Subject: [PATCH] Expect perturbed structure members on t/11writer.t
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-According to the XML-RPC specification, key order in structure is not
-significant.
-
-CPAN RT#94402
-
-Signed-off-by: Petr Písař <ppisar@redhat.com>
----
- t/11writer.t | 41 +++++++++++++++++++++++++----------------
- 1 file changed, 25 insertions(+), 16 deletions(-)
-
-diff --git a/t/11writer.t b/t/11writer.t
-index a0f79e7..a04bb27 100755
---- a/t/11writer.t
-+++ b/t/11writer.t
-@@ -28,7 +28,17 @@ sub TestBasic() {
- scalar($now),
- { 'a' => BZ::Client::XMLRPC::int->new(0), 'b' => 'xyz' } ];
- my $contents = $xmlrpc->create_request('someMethod', $input);
-- my $expect =
-+ my $membera =
-+ "<member>"
-+ . "<name>a</name>"
-+ . "<value><i4>0</i4></value>"
-+ . "</member>";
-+ my $memberb =
-+ "<member>"
-+ . "<name>b</name>"
-+ . "<value>xyz</value>"
-+ . "</member>";
-+ my $prefix =
- "<methodCall>"
- . "<methodName>someMethod</methodName>"
- . "<params>"
-@@ -49,26 +59,25 @@ sub TestBasic() {
- . "<param><value><dateTime.iso8601>2011-09-19T17:09:03Z</dateTime.iso8601></value></param>"
- . "<param>"
- . "<value>"
-- . "<struct>"
-- . "<member>"
-- . "<name>a</name>"
-- . "<value><i4>0</i4></value>"
-- . "</member>"
-- . "<member>"
-- . "<name>b</name>"
-- . "<value>xyz</value>"
-- . "</member>"
-- . "</struct>"
-+ . "<struct>";
-+ my $suffix =
-+ "</struct>"
- . "</value>"
- . "</param>"
- . "</params>"
- ."</methodCall>\n";
-- if ($contents ne $expect) {
-- print STDERR "Expect: $expect\n";
-- print STDERR "Got: $contents\n";
-- return 0;
-+ my $expect;
-+ $expect = $prefix . $membera . $memberb . $suffix;
-+ if ($contents eq $expect) {
-+ return 1;
-+ }
-+ $expect = $prefix . $memberb . $membera . $suffix;
-+ if ($contents eq $expect) {
-+ return 1;
- }
-- return 1;
-+ print STDERR "Expect: $expect\n";
-+ print STDERR "Got: $contents\n";
-+ return 0;
- }
-
- sub TestGetProducts() {
---
-1.9.0
-
diff --git a/perl-BZ-Client.spec b/perl-BZ-Client.spec
index e129c84..c3e909b 100644
--- a/perl-BZ-Client.spec
+++ b/perl-BZ-Client.spec
@@ -1,30 +1,45 @@
Name: perl-BZ-Client
-Version: 1.072
-Release: 3%{?dist}
+Version: 4.4001
+Release: 1%{?dist}
Summary: A client for the Bugzilla web services API
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/BZ-Client/
Source0: http://www.cpan.org/authors/id/D/DJ/DJZORT/BZ-Client-%{version}.tar.gz
-# Fix test to expect random hash keys, bug #1084032, CPAN RT#94402
-Patch1: BZ-Client-1.04-Expect-perturbed-structure-members-on-t-11writer.t.patch
BuildArch: noarch
BuildRequires: perl-generators
-BuildRequires: perl(Data::Dumper)
-BuildRequires: perl(DateTime)
BuildRequires: perl(DateTime::Format::ISO8601)
BuildRequires: perl(DateTime::Format::Strptime)
-BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires: perl(DateTime::TimeZone)
+BuildRequires: perl(Encode)
+BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(File::Spec)
-BuildRequires: perl(Getopt::Long)
-BuildRequires: perl(HTTP::Cookies)
-BuildRequires: perl(LWP)
+BuildRequires: perl(HTTP::CookieJar)
+BuildRequires: perl(HTTP::Tiny)
BuildRequires: perl(Module::Build)
BuildRequires: perl(URI)
BuildRequires: perl(XML::Parser)
BuildRequires: perl(XML::Writer)
-BuildRequires: perl(Test)
+BuildRequires: perl(parent)
+BuildRequires: perl(strict)
+BuildRequires: perl(warnings)
+# testing requirements
+BuildRequires: perl(Clone)
+BuildRequires: perl(Data::Dumper)
+BuildRequires: perl(DateTime)
+BuildRequires: perl(English)
+BuildRequires: perl(Getopt::Long)
+BuildRequires: perl(IO::Socket::SSL)
+BuildRequires: perl(Test::CPAN::Meta)
+BuildRequires: perl(Test::EOL)
+BuildRequires: perl(Test::Kwalitee)
BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::Pod)
+BuildRequires: perl(Test::RequiresInternet)
+BuildRequires: perl(Test::Vars)
+BuildRequires: perl(Text::Password::Pronounceable)
+BuildRequires: perl(lib)
+BuildRequires: perl(utf8)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%{?perl_default_filter}
@@ -36,8 +51,6 @@ This module provides an interface to the Bugzilla web services API.
%setup -q -n BZ-Client-%{version}
chmod 644 Changes README LICENSE
-%patch1 -p1
-
%build
%{__perl} Build.PL installdirs=vendor
./Build
@@ -57,6 +70,10 @@ chmod 644 Changes README LICENSE
%{_mandir}/man3/BZ*
%changelog
+* Mon Feb 06 2017 Emmanuel Seyman <emmanuel@seyman.fr> - 4.4001-1
+- Update to 4.4001
+- Drop upstreamed patch
+
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.072-3
- Perl 5.24 rebuild
diff --git a/sources b/sources
index bef9d01..120afe3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d62d6cbf7502ca4ddcbff25effe1b3af BZ-Client-1.072.tar.gz
+SHA512 (BZ-Client-4.4001.tar.gz) = 36eb0f50e0d3a88a4ef49c3fe277bf12dc86dfbd5ad0cfe869ca68962c4c8bc1601a7ac16c817488c9700f92932a8e900a3ae9641b21042a08dcf939f4e367aa
reply other threads:[~2026-08-05 18:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178595598934.1.16347755829415676093.rpms-perl-BZ-Client-cfd8c14707c3@fedoraproject.org \
--to=emmanuel@seyman.fr \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox