From e2b54f0d6dcb4c8230782b62858c936d20eb2c7e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 4 Mar 2021 08:48:01 +1000 Subject: [PATCH] Initial import (#1934386) --- .gitignore | 1 + sources | 1 + xhost.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 .gitignore create mode 100644 sources create mode 100644 xhost.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57152cc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/xhost-*.tar.bz2 diff --git a/sources b/sources new file mode 100644 index 0000000..ed2f654 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (xhost-1.0.7.tar.bz2) = 670a8c97291565f6c36c94e135f7bd60a572bb42b4fca9d2460823db0d0576187c64f9b876ed60d348029d3f74a732862eea4ce889a6b6b9c97665746a38b1d7 diff --git a/xhost.spec b/xhost.spec new file mode 100644 index 0000000..5843132 --- /dev/null +++ b/xhost.spec @@ -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 1.0.7-1 +- Split xhost out from xorg-x11-server-utils into a separate package + (#1934386) +