Accepting request 809662 from home:bzoltan1:branches:zypp:plugins

Added the initial content

OBS-URL: https://build.opensuse.org/request/show/809662
OBS-URL: https://build.opensuse.org/package/show/zypp:plugins/zypper-changelog-plugin?expand=0&rev=1
This commit is contained in:
Zoltan Balogh 2020-05-31 13:40:40 +00:00 committed by Git OBS Bridge
commit 05081c49d2
4 changed files with 70 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:4b3ed1dfdff1505a63ae29db78224498641d123e4af55e13ca3fb9aeffe39e71
size 11706

View File

@ -0,0 +1,43 @@
#
# spec file for package zypper-changelog
#
# Copyright (c) 2020 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.1
Release: 1%{?dist}
Summary: Changelog listing tool
License: GPL-2.0-or-later
URL: https://github.com/bzoltan1/zypper-changelog-plugin.git
Source: zypper-changelog-plugin-0.1.tar.gz
Requires: python3
BuildArch: noarch
%description
This tool is to show the changelog of packages in the repository
%prep
%setup -q
%install
mkdir -p %{buildroot}%{_bindir}/
install -m 755 zypper-changelog %{buildroot}%{_bindir}/zypper-changelog
%files
%doc README.md
#%license LICENSE
%{_bindir}/zypper-changelog
%changelog