import xorg-x11-apps-7.7-21.el8
This commit is contained in:
commit
0edff065dc
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
SOURCES/luit-1.1.1.tar.bz2
|
||||
SOURCES/oclock-1.0.4.tar.bz2
|
||||
SOURCES/x11perf-1.6.0.tar.bz2
|
||||
SOURCES/xbiff-1.0.3.tar.bz2
|
||||
SOURCES/xclipboard-1.1.3.tar.bz2
|
||||
SOURCES/xclock-1.0.7.tar.bz2
|
||||
SOURCES/xconsole-1.0.6.tar.bz2
|
||||
SOURCES/xcursorgen-1.0.6.tar.bz2
|
||||
SOURCES/xeyes-1.1.2.tar.bz2
|
||||
SOURCES/xfd-1.1.2.tar.bz2
|
||||
SOURCES/xfontsel-1.0.6.tar.bz2
|
||||
SOURCES/xload-1.1.3.tar.bz2
|
||||
SOURCES/xlogo-1.0.4.tar.bz2
|
||||
SOURCES/xmag-1.0.6.tar.bz2
|
||||
SOURCES/xmessage-1.0.5.tar.bz2
|
||||
SOURCES/xpr-1.0.5.tar.bz2
|
||||
SOURCES/xvidtune-1.0.3.tar.bz2
|
||||
SOURCES/xwd-1.0.7.tar.bz2
|
||||
SOURCES/xwud-1.0.5.tar.bz2
|
19
.xorg-x11-apps.metadata
Normal file
19
.xorg-x11-apps.metadata
Normal file
@ -0,0 +1,19 @@
|
||||
3130c14d7267cecce0ba2280643844b48cca49b0 SOURCES/luit-1.1.1.tar.bz2
|
||||
0bc8f3f44290950f60af894e20e0ceb0c5e8e862 SOURCES/oclock-1.0.4.tar.bz2
|
||||
de4960357e077fddd3d3a33f72f579981efc7fa4 SOURCES/x11perf-1.6.0.tar.bz2
|
||||
17337a951264f0f96f6d03893f9dfd9cf8f12a5a SOURCES/xbiff-1.0.3.tar.bz2
|
||||
971ac3900b4eb5ad54f3c3d9527e96ccdcb9e504 SOURCES/xclipboard-1.1.3.tar.bz2
|
||||
1b54b96e057469f90a00a9f1ca79ed056cbde271 SOURCES/xclock-1.0.7.tar.bz2
|
||||
1b3b3a2342bb94fecc70d7401da10ef7bbcc98a0 SOURCES/xconsole-1.0.6.tar.bz2
|
||||
e6d5cc03ce1829cc7eea39526ca7b8688aac468b SOURCES/xcursorgen-1.0.6.tar.bz2
|
||||
458987f8accdbd8abf993ee51030391cf584d2e8 SOURCES/xeyes-1.1.2.tar.bz2
|
||||
cac5ca0f5fb6044840b15cf6fb9c541bd4fbce4a SOURCES/xfd-1.1.2.tar.bz2
|
||||
3fd8d78cc270030b41298170c3e5222065dd1cfd SOURCES/xfontsel-1.0.6.tar.bz2
|
||||
fd5053d38551883309863c2a43de2ceffa908a50 SOURCES/xload-1.1.3.tar.bz2
|
||||
8087ca621c48506b26bb2cf3219a957b31537267 SOURCES/xlogo-1.0.4.tar.bz2
|
||||
77c4b23765a1a30afde46a6e57afd77f20d58185 SOURCES/xmag-1.0.6.tar.bz2
|
||||
d3eca72c7173d0d9547c676a16bcec51ca1213a2 SOURCES/xmessage-1.0.5.tar.bz2
|
||||
0632c7d8632ac9d23f285811aaea805a2956e155 SOURCES/xpr-1.0.5.tar.bz2
|
||||
5ed9967f61cb7f6698fc6da6a2ca7afc5305468d SOURCES/xvidtune-1.0.3.tar.bz2
|
||||
65ce0617be29687cf6082c3a0e85d15a0dcccda9 SOURCES/xwd-1.0.7.tar.bz2
|
||||
a85d84a1b81f8e667ea6ac126d447590c93eb079 SOURCES/xwud-1.0.5.tar.bz2
|
@ -0,0 +1,37 @@
|
||||
From c0b9f12ebb0a640e931e54c1f049016bdfdb9a07 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Hutterer <peter.hutterer@who-t.net>
|
||||
Date: Mon, 14 Jan 2013 09:42:00 +1000
|
||||
Subject: [PATCH] configure: define XOPEN_SOURCE to 600 on linux
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
posix_openpt() is only defined for 600 and higher.
|
||||
|
||||
sys.c: In function ‘allocatePty’:
|
||||
sys.c:339:5: error: implicit declaration of function ‘posix_openpt’
|
||||
[-Werror=implicit-function-declaration]
|
||||
sys.c:339:5: warning: nested extern declaration of ‘posix_openpt’
|
||||
[-Wnested-externs]
|
||||
|
||||
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git luit-1.1.1/configure.ac b/configure.ac
|
||||
index c214d85..67ef2c4 100644
|
||||
--- luit-1.1.1/configure.ac
|
||||
+++ luit-1.1.1/configure.ac
|
||||
@@ -62,7 +62,7 @@ case $host_os in
|
||||
linux*)
|
||||
AC_CHECK_HEADERS([poll.h])
|
||||
AC_CHECK_FUNCS([poll])
|
||||
- OS_CFLAGS="-D_XOPEN_SOURCE=500"
|
||||
+ OS_CFLAGS="-D_XOPEN_SOURCE=600"
|
||||
;;
|
||||
*)
|
||||
AC_CHECK_HEADERS([poll.h])
|
||||
--
|
||||
1.8.1
|
||||
|
12
SOURCES/x11perf-1.6.0-x11perf-datadir-cleanups.patch
Normal file
12
SOURCES/x11perf-1.6.0-x11perf-datadir-cleanups.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -Naur x11perf-1.6.0.old/configure.ac x11perf-1.6.0/configure.ac
|
||||
--- x11perf-1.6.0.old/configure.ac 2015-04-30 15:03:46.668372759 +0200
|
||||
+++ x11perf-1.6.0/configure.ac 2015-04-30 15:03:56.617354502 +0200
|
||||
@@ -39,7 +39,7 @@
|
||||
XORG_DEFAULT_OPTIONS
|
||||
|
||||
# Define the installation directory for the x11 performance compare scripts
|
||||
-AC_SUBST([x11perfcompdir], [$libdir/X11/x11perfcomp])
|
||||
+AC_SUBST([x11perfcompdir], [$datadir/X11/x11perfcomp])
|
||||
|
||||
# Checks for programs run by the scripts we install
|
||||
AC_PATH_PROG(MKTEMP, mktemp)
|
306
SPECS/xorg-x11-apps.spec
Normal file
306
SPECS/xorg-x11-apps.spec
Normal file
@ -0,0 +1,306 @@
|
||||
# Component versions
|
||||
%global luit 1.1.1
|
||||
%global oclock 1.0.4
|
||||
%global x11perf 1.6.0
|
||||
%global xbiff 1.0.3
|
||||
%global xclipboard 1.1.3
|
||||
%global xclock 1.0.7
|
||||
%global xconsole 1.0.6
|
||||
%global xcursorgen 1.0.6
|
||||
%global xeyes 1.1.2
|
||||
%global xfd 1.1.2
|
||||
%global xfontsel 1.0.6
|
||||
%global xload 1.1.3
|
||||
%global xlogo 1.0.4
|
||||
%global xmag 1.0.6
|
||||
%global xmessage 1.0.5
|
||||
%global xpr 1.0.5
|
||||
%global xvidtune 1.0.3
|
||||
%global xwd 1.0.7
|
||||
%global xwud 1.0.5
|
||||
|
||||
Summary: X.Org X11 applications
|
||||
Name: xorg-x11-apps
|
||||
Version: 7.7
|
||||
Release: 21%{?dist}
|
||||
License: MIT
|
||||
URL: https://www.x.org
|
||||
|
||||
Source0: https://www.x.org/pub/individual/app/luit-%{luit}.tar.bz2
|
||||
Source1: https://www.x.org/pub/individual/app/oclock-%{oclock}.tar.bz2
|
||||
Source2: https://www.x.org/pub/individual/app/x11perf-%{x11perf}.tar.bz2
|
||||
Source3: https://www.x.org/pub/individual/app/xbiff-%{xbiff}.tar.bz2
|
||||
Source4: https://www.x.org/pub/individual/app/xclipboard-%{xclipboard}.tar.bz2
|
||||
Source5: https://www.x.org/pub/individual/app/xclock-%{xclock}.tar.bz2
|
||||
Source6: https://www.x.org/pub/individual/app/xconsole-%{xconsole}.tar.bz2
|
||||
Source7: https://www.x.org/pub/individual/app/xcursorgen-%{xcursorgen}.tar.bz2
|
||||
Source8: https://www.x.org/pub/individual/app/xeyes-%{xeyes}.tar.bz2
|
||||
Source9: https://www.x.org/pub/individual/app/xfd-%{xfd}.tar.bz2
|
||||
Source10: https://www.x.org/pub/individual/app/xfontsel-%{xfontsel}.tar.bz2
|
||||
Source11: https://www.x.org/pub/individual/app/xload-%{xload}.tar.bz2
|
||||
Source12: https://www.x.org/pub/individual/app/xlogo-%{xlogo}.tar.bz2
|
||||
Source13: https://www.x.org/pub/individual/app/xmag-%{xmag}.tar.bz2
|
||||
Source14: https://www.x.org/pub/individual/app/xmessage-%{xmessage}.tar.bz2
|
||||
Source15: https://www.x.org/pub/individual/app/xpr-%{xpr}.tar.bz2
|
||||
Source16: https://www.x.org/pub/individual/app/xvidtune-%{xvidtune}.tar.bz2
|
||||
Source17: https://www.x.org/pub/individual/app/xwd-%{xwd}.tar.bz2
|
||||
Source18: https://www.x.org/pub/individual/app/xwud-%{xwud}.tar.bz2
|
||||
|
||||
Patch0: x11perf-1.6.0-x11perf-datadir-cleanups.patch
|
||||
Patch1: luit-1.1.1-configure-define-XOPEN_SOURCE-to-600-on-linux.patch
|
||||
|
||||
BuildRequires: gettext-devel
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig(fontenc)
|
||||
BuildRequires: pkgconfig(libpng) >= 1.2
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xaw7)
|
||||
BuildRequires: pkgconfig(xbitmaps)
|
||||
BuildRequires: pkgconfig(xcursor)
|
||||
BuildRequires: pkgconfig(xext)
|
||||
BuildRequires: pkgconfig(xft)
|
||||
BuildRequires: pkgconfig(xkbfile)
|
||||
BuildRequires: pkgconfig(xmu)
|
||||
BuildRequires: pkgconfig(xrender) >= 0.4
|
||||
BuildRequires: pkgconfig(xt) >= 1.1
|
||||
BuildRequires: pkgconfig(xxf86vm)
|
||||
BuildRequires: pkgconfig(xorg-macros) >= 1.8
|
||||
|
||||
# xbiff requires xbitmaps (#474258)
|
||||
Requires: xorg-x11-xbitmaps
|
||||
|
||||
# luit requires the encodings from xorg-x11-fonts-misc (rhbz#1046341)
|
||||
Requires: xorg-x11-fonts-misc
|
||||
|
||||
Provides: luit = %{luit}
|
||||
Provides: oclock = %{oclock}
|
||||
Provides: x11perf = %{x11perf}
|
||||
Provides: xbiff = %{xbiff}
|
||||
Provides: xclipboard = %{xclipboard}
|
||||
Provides: xclock = %{xclock}
|
||||
Provides: xconsole = %{xconsole}
|
||||
Provides: xcursorgen = %{xcursorgen}
|
||||
Provides: xeyes = %{xeyes}
|
||||
Provides: xfd = %{xfd}
|
||||
Provides: xfontsel = %{xfontsel}
|
||||
Provides: xload = %{xload}
|
||||
Provides: xlogo = %{xlogo}
|
||||
Provides: xmag = %{xmag}
|
||||
Provides: xmessage = %{xmessage}
|
||||
Provides: xpr = %{xpr}
|
||||
Provides: xvidtune = %{xvidtune}
|
||||
Provides: xwd = %{xwd}
|
||||
Provides: xwud = %{xwud}
|
||||
|
||||
%description
|
||||
A collection of common X Window System applications.
|
||||
|
||||
%prep
|
||||
%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18
|
||||
%patch0 -p0 -b .x11perf-datadir-cleanup
|
||||
%patch1 -p0 -b .luit-xopen_source
|
||||
|
||||
%build
|
||||
# Build all apps
|
||||
{
|
||||
for app in * ; do
|
||||
pushd $app
|
||||
autoreconf -v --install
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
popd
|
||||
done
|
||||
}
|
||||
|
||||
%install
|
||||
# Install all apps
|
||||
{
|
||||
for app in * ; do
|
||||
pushd $app
|
||||
%make_install
|
||||
popd
|
||||
done
|
||||
}
|
||||
|
||||
%files
|
||||
%{_bindir}/luit
|
||||
%{_bindir}/oclock
|
||||
%{_bindir}/x11perf
|
||||
%{_bindir}/x11perfcomp
|
||||
%{_bindir}/xbiff
|
||||
%{_bindir}/xclipboard
|
||||
%{_bindir}/xclock
|
||||
%{_bindir}/xconsole
|
||||
%{_bindir}/xcursorgen
|
||||
%{_bindir}/xcutsel
|
||||
%{_bindir}/xdpr
|
||||
%{_bindir}/xeyes
|
||||
%{_bindir}/xfd
|
||||
%{_bindir}/xfontsel
|
||||
%{_bindir}/xload
|
||||
%{_bindir}/xlogo
|
||||
%{_bindir}/xmag
|
||||
%{_bindir}/xmessage
|
||||
%{_bindir}/xpr
|
||||
%{_bindir}/xvidtune
|
||||
%{_bindir}/xwd
|
||||
%{_bindir}/xwud
|
||||
%{_datadir}/X11/app-defaults/Clock-color
|
||||
%{_datadir}/X11/app-defaults/XClipboard
|
||||
%{_datadir}/X11/app-defaults/XClock
|
||||
%{_datadir}/X11/app-defaults/XClock-color
|
||||
%{_datadir}/X11/app-defaults/XConsole
|
||||
%{_datadir}/X11/app-defaults/Xfd
|
||||
%{_datadir}/X11/app-defaults/XFontSel
|
||||
%{_datadir}/X11/app-defaults/XLoad
|
||||
%{_datadir}/X11/app-defaults/XLogo
|
||||
%{_datadir}/X11/app-defaults/XLogo-color
|
||||
%{_datadir}/X11/app-defaults/Xmag
|
||||
%{_datadir}/X11/app-defaults/Xmessage
|
||||
%{_datadir}/X11/app-defaults/Xmessage-color
|
||||
%{_datadir}/X11/app-defaults/Xvidtune
|
||||
%{_datadir}/X11/x11perfcomp
|
||||
%{_mandir}/man1/luit.1*
|
||||
%{_mandir}/man1/oclock.1*
|
||||
%{_mandir}/man1/x11perf.1*
|
||||
%{_mandir}/man1/x11perfcomp.1*
|
||||
%{_mandir}/man1/xbiff.1*
|
||||
%{_mandir}/man1/xclipboard.1*
|
||||
%{_mandir}/man1/xclock.1*
|
||||
%{_mandir}/man1/xconsole.1*
|
||||
%{_mandir}/man1/xcursorgen.1*
|
||||
%{_mandir}/man1/xcutsel.1*
|
||||
%{_mandir}/man1/xdpr.1*
|
||||
%{_mandir}/man1/xeyes.1*
|
||||
%{_mandir}/man1/xfd.1*
|
||||
%{_mandir}/man1/xfontsel.1*
|
||||
%{_mandir}/man1/xload.1*
|
||||
%{_mandir}/man1/xlogo.1*
|
||||
%{_mandir}/man1/xmag.1*
|
||||
%{_mandir}/man1/Xmark.1*
|
||||
%{_mandir}/man1/xmessage.1*
|
||||
%{_mandir}/man1/xpr.1*
|
||||
%{_mandir}/man1/xvidtune.1*
|
||||
%{_mandir}/man1/xwd.1*
|
||||
%{_mandir}/man1/xwud.1*
|
||||
|
||||
%changelog
|
||||
* Mon Mar 12 2018 Adam Jackson <ajax@redhat.com> - 7.7-21
|
||||
- oclock 1.0.4
|
||||
- xeyes 1.1.2
|
||||
- xfontsel 1.0.6
|
||||
- xload 1.1.3
|
||||
- xmessage 1.0.5
|
||||
- xpr 1.0.5
|
||||
- xwd 1.0.7
|
||||
- xwud 1.0.5
|
||||
|
||||
* Thu Mar 01 2018 Adam Jackson <ajax@redhat.com> - 7.7-20
|
||||
- Change URLs to https
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.7-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.7-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.7-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.7-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.7-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Jan 20 2016 Peter Hutterer <peter.hutterer@redhat.com>
|
||||
- s/define/global/
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.7-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Apr 30 2015 Simone Caronni <negativo17@gmail.com> - 7.7-13
|
||||
- x11perf 1.6.0
|
||||
- xmag 1.0.6
|
||||
|
||||
* Tue Nov 04 2014 Simone Caronni <negativo17@gmail.com> - 7.7-12
|
||||
- Clean up SPEC file, fix rpmlint warnings.
|
||||
- Simplify build requirements.
|
||||
- Xprint has been removed everywhere.
|
||||
- xclipboard 1.1.3
|
||||
- xclock 1.0.7
|
||||
- xconsole 1.0.6
|
||||
- xfd 1.1.2
|
||||
- xfontsel 1.0.5
|
||||
- xload 1.1.2
|
||||
- xwd 1.0.6
|
||||
- xwud 1.0.4
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.7-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jul 19 2014 Hans de Goede <hdegoede@redhat.com> - 7.7-10
|
||||
- Add Requires: xorg-x11-fonts-misc (rhbz#1046341)
|
||||
|
||||
* Wed Jul 9 2014 Hans de Goede <hdegoede@redhat.com> - 7.7-9
|
||||
- xcursorgen 1.0.6
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.7-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.7-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Jul 19 2013 Peter Hutterer <peter.hutterer@redhat.com> 7.7-6
|
||||
- Require xorg-x11-xbitmaps for xbiff (#474258)
|
||||
- fix rpmlint complaints
|
||||
- update sources to http sources, ftp fails too often
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Jan 15 2013 Peter Hutterer <peter.hutterer@redhat.com> 7.7-4
|
||||
- upload xfontsel tarball, drop duplicate xlogo sources
|
||||
|
||||
* Mon Jan 14 2013 Peter Hutterer <peter.hutterer@redhat.com> 7.7-3
|
||||
- luit 1.1.1
|
||||
- oclock 1.0.3
|
||||
- xclock 1.0.6
|
||||
- xbiff 1.0.3
|
||||
- xpr 1.0.4
|
||||
- xcursorgen 1.0.5
|
||||
- xclipboard 1.1.2
|
||||
- xfontsel 1.0.4
|
||||
- xfd 1.1.1
|
||||
- xlogo 1.0.4
|
||||
- xvidtune 1.0.3
|
||||
|
||||
* Mon Jan 14 2013 Peter Hutterer <peter.hutterer@redhat.com> 7.7-2
|
||||
- xconsole 1.0.5
|
||||
- xmessage 1.0.4
|
||||
- xmag 1.0.5
|
||||
|
||||
* Thu Jan 03 2013 Adam Jackson <ajax@redhat.com> 7.7-1
|
||||
- Superstition bump to 7.7
|
||||
- Drop old streams patch
|
||||
|
||||
* Wed Sep 12 2012 Dave Airlie <airlied@redhat.com> 7.6-7
|
||||
- x11perf 1.5.4 - fixes CVE-2011-2504
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.6-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Nov 10 2011 Adam Jackson <ajax@redhat.com> 7.6-4
|
||||
- Move xinput and xkill to xorg-x11-server-utils
|
||||
|
||||
* Mon Nov 07 2011 Adam Jackson <ajax@redhat.com> 7.6-3
|
||||
- Rebuild for libpng 1.5
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Jan 06 2011 Adam Jackson <ajax@redhat.com> 7.6-1
|
||||
- x11perf 1.5.3
|
Loading…
Reference in New Issue
Block a user