From 4446d4ed9a410fc57212987c9487d5c0ecbcc6d10f607b5621ca0198ac7ad1b5 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 22 Aug 2019 08:50:46 +0000 Subject: [PATCH] Accepting request 724530 from devel:kubic conmon required by podman 1.5.0+ OBS-URL: https://build.opensuse.org/request/show/724530 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/conmon?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++++++++ .gitignore | 1 + _service | 15 +++++++++++++++ conmon-2.0.0.tar.xz | 3 +++ conmon.changes | 13 +++++++++++++ conmon.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 100 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _service create mode 100644 conmon-2.0.0.tar.xz create mode 100644 conmon.changes create mode 100644 conmon.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/_service b/_service new file mode 100644 index 0000000..a1ce625 --- /dev/null +++ b/_service @@ -0,0 +1,15 @@ + + +https://github.com/containers/conmon +git +2.0.0 +v2.0.0 + + +conmon-*.tar +xz + + +conmon + + diff --git a/conmon-2.0.0.tar.xz b/conmon-2.0.0.tar.xz new file mode 100644 index 0000000..a9740e9 --- /dev/null +++ b/conmon-2.0.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab3379481dd8c7c6ba845d600ed26b2fd80c83e1442d5ade40b7be469743bb5 +size 45684 diff --git a/conmon.changes b/conmon.changes new file mode 100644 index 0000000..f4e9a29 --- /dev/null +++ b/conmon.changes @@ -0,0 +1,13 @@ +------------------------------------------------------------------- +Fri Aug 16 11:48:30 UTC 2019 - Sascha Grunert + +- Use `%make_build` macro instead of `%{__make}` +- Use `%make_install` macro instead of `%{__make} install` +- Use `%{_bindir}` macro instead of `%{_usr}/bin` +- Change `PREFIX` to not contain `%{buildroot}` and use the + `$DESTDIR` variable + +------------------------------------------------------------------- +Mon Aug 12 06:41:41 UTC 2019 - Sascha Grunert + +- Initial release v2.0.0 diff --git a/conmon.spec b/conmon.spec new file mode 100644 index 0000000..577ca84 --- /dev/null +++ b/conmon.spec @@ -0,0 +1,45 @@ +# +# spec file for package conmon +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + +Name: conmon +Version: 2.0.0 +Release: 0 +Summary: An OCI container runtime monitor +License: Apache-2.0 +Group: System/Management +Url: https://github.com/containers/conmon +Source0: %{name}-%{version}.tar.xz +BuildRequires: glib2-devel + +%description +%{summary} + +%prep +%setup -q + +%build +%make_build + +%install +%make_install PREFIX=%{_prefix} + +%files +%license LICENSE +%doc README.md +%{_bindir}/%{name} + +%changelog