Initial import (#1934386)

This commit is contained in:
Peter Hutterer 2021-03-04 08:48:01 +10:00
parent d76ea560ba
commit e2b54f0d6d
3 changed files with 46 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/xhost-*.tar.bz2

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (xhost-1.0.7.tar.bz2) = 670a8c97291565f6c36c94e135f7bd60a572bb42b4fca9d2460823db0d0576187c64f9b876ed60d348029d3f74a732862eea4ce889a6b6b9c97665746a38b1d7

44
xhost.spec Normal file
View File

@ -0,0 +1,44 @@
Name: xhost
Version: 1.0.7
Release: 1%{?dist}
Summary: Manage hosts or users allowed to connect to the X server
License: MIT
URL: https://www.x.org
Source0: https://www.x.org/pub/individual/app/%{name}-%{version}.tar.bz2
BuildRequires: automake libtool
BuildRequires: gcc make
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xmu)
BuildRequires: pkgconfig(xau)
BuildRequires: pkgconfig(xtrans)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
Obsoletes: xorg-x11-server-utils <= 7.7-39
%description
xhost is used to manage the list of host names or user names
allowed to make connections to the X server.
%prep
%autosetup
%build
autoreconf -v --install
%configure --disable-silent-rules
%make_build
%install
%make_install
%files
%license COPYING
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1*
%changelog
* Wed Mar 03 2021 Peter Hutterer <peter.hutterer@redhat.com> 1.0.7-1
- Split xhost out from xorg-x11-server-utils into a separate package
(#1934386)