From 05081c49d23e65b6625bde05de9784d3ce96b1e4c893aadbd1ee05aafcf6b767 Mon Sep 17 00:00:00 2001 From: Zoltan Balogh Date: Sun, 31 May 2020 13:40:40 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + zypper-changelog-plugin-0.1.tar.gz | 3 +++ zypper-changelog-plugin.spec | 43 ++++++++++++++++++++++++++++++ 4 files changed, 70 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 zypper-changelog-plugin-0.1.tar.gz create mode 100644 zypper-changelog-plugin.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/zypper-changelog-plugin-0.1.tar.gz b/zypper-changelog-plugin-0.1.tar.gz new file mode 100644 index 0000000..9d5d68d --- /dev/null +++ b/zypper-changelog-plugin-0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3ed1dfdff1505a63ae29db78224498641d123e4af55e13ca3fb9aeffe39e71 +size 11706 diff --git a/zypper-changelog-plugin.spec b/zypper-changelog-plugin.spec new file mode 100644 index 0000000..15a44a4 --- /dev/null +++ b/zypper-changelog-plugin.spec @@ -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