Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-Passwd-Keyring-KDEWallet for
openSUSE:Factory checked in at 2024-05-06 17:55:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Passwd-Keyring-KDEWallet (Old)
and /work/SRC/openSUSE:Factory/.perl-Passwd-Keyring-KDEWallet.new.1880
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Passwd-Keyring-KDEWallet"
Mon May 6 17:55:27 2024 rev:2 rq:1172168 version:1.0001
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Passwd-Keyring-KDEWallet/perl-Passwd-Keyring-KDEWallet.changes
2020-12-05 20:37:22.306720304 +0100
+++
/work/SRC/openSUSE:Factory/.perl-Passwd-Keyring-KDEWallet.new.1880/perl-Passwd-Keyring-KDEWallet.changes
2024-05-06 17:56:40.738570948 +0200
@@ -1,0 +2,5 @@
+Fri May 3 15:40:17 UTC 2024 - Frank Schreiner <[email protected]>
+
+- added patch for kwalletd6 (0001-FIX-kwalletd6.patch)
+
+-------------------------------------------------------------------
New:
----
0001-FIX-kwalletd6.patch
BETA DEBUG BEGIN:
New:
- added patch for kwalletd6 (0001-FIX-kwalletd6.patch)
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Passwd-Keyring-KDEWallet.spec ++++++
--- /var/tmp/diff_new_pack.1amWVs/_old 2024-05-06 17:56:41.426595994 +0200
+++ /var/tmp/diff_new_pack.1amWVs/_new 2024-05-06 17:56:41.430596140 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Passwd-Keyring-KDEWallet
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,17 @@
#
+%define cpan_name Passwd-Keyring-KDEWallet
Name: perl-Passwd-Keyring-KDEWallet
Version: 1.0001
Release: 0
-%define cpan_name Passwd-Keyring-KDEWallet
-Summary: Password storage implementation based on KDE Wallet
License: Artistic-1.0 OR GPL-1.0-or-later
-Group: Development/Libraries/Perl
+Summary: Password storage implementation based on KDE Wallet
URL: https://metacpan.org/release/%{cpan_name}
Source0:
https://cpan.metacpan.org/authors/id/M/ME/MEKK/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
+Patch0: 0001-FIX-kwalletd6.patch
BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(File::ShareDir) >= 1.00
@@ -51,20 +50,19 @@
Password storage implementation based on KDE Wallet.
%prep
-%setup -q -n %{cpan_name}-%{version}
+%autosetup -n %{cpan_name}-%{version} -p1
%build
-perl Build.PL installdirs=vendor
-./Build build flags=%{?_smp_mflags}
+perl Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
%check
./Build test
%install
-./Build install destdir=%{buildroot} create_packlist=0
+./Build install --destdir=%{buildroot} --create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
-%defattr(-,root,root,755)
%doc Changes example README README.md
++++++ 0001-FIX-kwalletd6.patch ++++++
diff --git a/lib/Passwd/Keyring/KDEWallet.pm b/lib/Passwd/Keyring/KDEWallet.pm
index e959f6b..a293b1a 100644
--- a/lib/Passwd/Keyring/KDEWallet.pm
+++ b/lib/Passwd/Keyring/KDEWallet.pm
@@ -130,7 +130,7 @@ sub new {
sub _which_kwalletd {
my ($self) = @_;
- for my $kwalletd ('kwalletd','kwalletd5') {
+ for my $kwalletd ('kwalletd','kwalletd5', 'kwalletd6') {
my $which = which($kwalletd);
if ($which) {
$self->{service_name} = "org.kde.$kwalletd";
++++++ cpanspec.yml ++++++
--- /var/tmp/diff_new_pack.1amWVs/_old 2024-05-06 17:56:41.470597595 +0200
+++ /var/tmp/diff_new_pack.1amWVs/_new 2024-05-06 17:56:41.474597742 +0200
@@ -7,8 +7,14 @@
#sources:
# - source1
# - source2
-#patches:
-# foo.patch: -p1
+patches:
+ # UPSTREAM SEEMS TO BE INACTIVE
+ # All links to (source/issues/homepage) on
+ # https://metacpan.org/dist/Passwd-Keyring-KDEWallet
+ # end up at
+ # https://helixteamhub.cloud/login
+ #
+ 0001-FIX-kwalletd6.patch: -p1
# bar.patch:
preamble: |-
BuildRequires: perl(File::Which)