From 1c4a0179252568f8c76a266a432c2435de9bf7efbb183ec067edd8a6b3bed142 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch Date: Sat, 14 Apr 2012 09:34:53 +0000 Subject: [PATCH] Accepting request 113518 from home:vuntz:branches:X11:XOrg Split xkill out of xorg-x11; no change to the content OBS-URL: https://build.opensuse.org/request/show/113518 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xkill?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++ .gitignore | 1 + xkill-1.0.3.tar.bz2 | 3 +++ xkill.changes | 5 ++++ xkill.desktop | 8 ++++++ xkill.spec | 60 +++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 100 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 xkill-1.0.3.tar.bz2 create mode 100644 xkill.changes create mode 100644 xkill.desktop create mode 100644 xkill.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/xkill-1.0.3.tar.bz2 b/xkill-1.0.3.tar.bz2 new file mode 100644 index 0000000..d81286b --- /dev/null +++ b/xkill-1.0.3.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8307272a648ca76a266e5c1111384c8ed9367c6a8f1a5be844a5b5300881a9 +size 107790 diff --git a/xkill.changes b/xkill.changes new file mode 100644 index 0000000..9f10bba --- /dev/null +++ b/xkill.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri Apr 13 16:17:24 UTC 2012 - mgorse@suse.com + +- Split xkill from xorg-x11. Initial version: 1.0.3. + diff --git a/xkill.desktop b/xkill.desktop new file mode 100644 index 0000000..1a1c643 --- /dev/null +++ b/xkill.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=X Kill +GenericName=Window Termination Tool +Exec=xkill +Terminal=false +Icon=xkill +Type=Application diff --git a/xkill.spec b/xkill.spec new file mode 100644 index 0000000..534c477 --- /dev/null +++ b/xkill.spec @@ -0,0 +1,60 @@ +# +# spec file for package xkill +# +# Copyright (c) 2012 SUSE LINUX Products 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: xkill +Version: 1.0.3 +Release: 0 +License: MIT +Summary: Utility to kill a client by its X resource +Url: http://xorg.freedesktop.org/ +Group: System/X11/Utilities +Source0: http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2 +Source1: xkill.desktop +BuildRequires: pkg-config +BuildRequires: update-desktop-files +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xorg-macros) >= 1.8 +BuildRequires: pkgconfig(xmuu) +# This was part of the xorg-x11 package up to version 7.6 +Conflicts: xorg-x11 <= 7.6 +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +xkill is a utility for forcing the X server to close connections to +clients. This program is very dangerous, but is useful for aborting +programs that have displayed undesired windows on a user's screen. + +%prep +%setup -q +cp %{SOURCE1} . + +%build +%configure +make %{?_smp_mflags} + +%install +%make_install +%suse_update_desktop_file -i -u xkill Utility DesktopUtility + +%files +%defattr(-,root,root) +%doc ChangeLog COPYING README +%{_bindir}/xkill +%{_datadir}/applications/xkill.desktop +%{_mandir}/man1/xkill.1%{?ext_man} + +%changelog