From f7473fcbe0de11189789ae722952ee4fab8e0fe61519a70a838ae9350792ba59 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Wed, 18 Jan 2023 08:34:02 +0000 Subject: [PATCH] Accepting request 1057638 from home:jubalh Please add me as maintainer OBS-URL: https://build.opensuse.org/request/show/1057638 OBS-URL: https://build.opensuse.org/package/show/shells/grml-zsh-config?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + grml-etc-core_0.19.5.tar.gz | 3 ++ grml-zsh-config.changes | 4 +++ grml-zsh-config.spec | 58 +++++++++++++++++++++++++++++++++++++ 5 files changed, 89 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 grml-etc-core_0.19.5.tar.gz create mode 100644 grml-zsh-config.changes create mode 100644 grml-zsh-config.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/grml-etc-core_0.19.5.tar.gz b/grml-etc-core_0.19.5.tar.gz new file mode 100644 index 0000000..030135e --- /dev/null +++ b/grml-etc-core_0.19.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8435e741b234292071f7eac98a7a6d42ba347e5304d4ba189334edf14122dc45 +size 170762 diff --git a/grml-zsh-config.changes b/grml-zsh-config.changes new file mode 100644 index 0000000..bc5fad3 --- /dev/null +++ b/grml-zsh-config.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Jan 10 14:33:28 UTC 2023 - Michael Vetter + +- Initial package of grml-zsh-config 0.19.5 for openSUSE diff --git a/grml-zsh-config.spec b/grml-zsh-config.spec new file mode 100644 index 0000000..dc88247 --- /dev/null +++ b/grml-zsh-config.spec @@ -0,0 +1,58 @@ +# +# spec file for package grml-zsh-config +# +# Copyright (c) 2023 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: grml-zsh-config +Version: 0.19.5 +Release: 0 +Summary: Zsh config used by grml +License: GPL-2.0-only +URL: https://grml.org/zsh/ +Source: https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_%{version}.tar.gz +BuildRequires: python38-txt2tags +Requires: grep +Requires: procps +Requires: sed +Requires: zsh +BuildArch: noarch + +%description +Zsh configuration files used by grml. + +%prep +ls +%setup -q -n grml-etc-core-%{version} + +%build +cd doc +%make_build + +%install +install -D -m644 etc/skel/.zshrc "%{buildroot}%{_sysconfdir}/skel/.zshrc" +install -D -m644 etc/zsh/keephack "%{buildroot}%{_sysconfdir}/zsh/keephack" +install -D -m644 etc/zsh/zshrc "%{buildroot}%{_sysconfdir}/zsh/zshrc" +install -D -m644 doc/grmlzshrc.5 "%{buildroot}%{_mandir}/man5/grmlzshrc.5" + +%files +%doc README.md +%doc %{_sysconfdir}/zsh +%config %{_sysconfdir}/skel/.zshrc +%config %{_sysconfdir}/zsh/keephack +%config %{_sysconfdir}/zsh/zshrc +%{_mandir}/man5/grmlzshrc.5%{?ext_man} + +%changelog