SHA256
1
0
forked from pool/xkill

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
This commit is contained in:
Stefan Dirsch 2012-04-14 09:34:53 +00:00 committed by Git OBS Bridge
commit 1c4a017925
6 changed files with 100 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

3
xkill-1.0.3.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd8307272a648ca76a266e5c1111384c8ed9367c6a8f1a5be844a5b5300881a9
size 107790

5
xkill.changes Normal file
View File

@ -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.

8
xkill.desktop Normal file
View File

@ -0,0 +1,8 @@
[Desktop Entry]
Encoding=UTF-8
Name=X Kill
GenericName=Window Termination Tool
Exec=xkill
Terminal=false
Icon=xkill
Type=Application

60
xkill.spec Normal file
View File

@ -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