Fixing bsc#1229242 - zypper-changelog-plugin lacks package names

OBS-URL: https://build.opensuse.org/package/show/zypp:plugins/zypper-changelog-plugin?expand=0&rev=24
This commit is contained in:
Zoltan Balogh 2024-08-30 18:12:03 +00:00 committed by Git OBS Bridge
commit d98f945df3
6 changed files with 126 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad3d76a3abac951848468372219f4f8243b844f2e3e5561b91346881a3377a50
size 13019

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:230443bf21afcfc681ef8c514f21d796f0befc338604e608acfcd78a9a9a5886
size 13355

View File

@ -0,0 +1,43 @@
-------------------------------------------------------------------
Fri Aug 30 18:00:33 UTC 2024 - Zoltan Balogh <zbalogh@suse.com>
- Fixing bsc#1229242 - zypper-changelog-plugin lacks package names
-------------------------------------------------------------------
Tue Jun 4 17:16:49 UTC 2024 - Zoltan Balogh <zbalogh@suse.com>
- Fixing bsc#1213929 - zypper-changelog-plugin lacks dependencies (No module named 'rpm')
-------------------------------------------------------------------
Fri May 24 12:26:41 UTC 2024 - Zoltan Balogh <zbalogh@suse.com>
- Fixing bsc#1223985 - zypper-changelog-plugin exhausts all memory
- Fixing bsc#1217299 - zypp:plugins/zypper-changelog-plugin: Bug repodata is now using zstd compression
- Optimized memory usage, more error handling, better structure and
improved comments
-------------------------------------------------------------------
Thu Dec 8 06:20:17 UTC 2022 - Zoltan Balogh <zbalogh@suse.com>
- Fixing bsc#1206081 - The zypper changelog plugin fails for packages not installed
-------------------------------------------------------------------
Wed Nov 16 06:35:11 UTC 2022 - Zoltan Balogh <zbalogh@suse.com>
- Update with few fixes after testing on Leap and SLES
-------------------------------------------------------------------
Sun Jan 17 16:46:17 UTC 2021 - Zoltan Balogh <zbalogh@suse.com>
- Change the default repository to oss instead of repo-oss
-------------------------------------------------------------------
Mon Jan 4 15:59:59 UTC 2021 - Zoltan Balogh <zbalogh@suse.com>
- Added python3-requests to the dependencies
-------------------------------------------------------------------
Sun May 31 16:43:10 UTC 2020 - Zoltan Balogh <zbalogh@suse.com>
- 0.1
- Initial commit with packaging improvements

View File

@ -0,0 +1,53 @@
#
# spec file for package zypper-changelog-plugin
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: zypper-changelog-plugin
Version: 0.6
Release: 0
Summary: Changelog listing tool
License: GPL-2.0-only
Group: System/Packages
URL: https://github.com/bzoltan1/zypper-changelog-plugin.git
Source: zypper-changelog-plugin-0.6.tar.gz
Requires: /usr/bin/python3
Requires: python3-requests
Requires: python3-rpm
Requires: zstd
BuildArch: noarch
%description
This tool is to show the changelog of packages in the repository
%prep
%setup -q
%build
%install
mkdir -p %{buildroot}%{_bindir}/
install -m 755 zypper-changelog %{buildroot}%{_bindir}/zypper-changelog
mkdir -p %{buildroot}/usr/lib/zypper/commands %{buildroot}/%{_mandir}/man8
install -m 644 zypper-changelog.8 %{buildroot}/%{_mandir}/man8/
%files
%license LICENSE
%doc README.md
%{_bindir}/zypper-changelog
%{_mandir}/man8/*
%changelog