cleanup
This commit is contained in:
parent
bafc074a57
commit
1868f9543d
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,4 +19,5 @@ temp/*
|
|||||||
/b/*
|
/b/*
|
||||||
lxqt2/*
|
lxqt2/*
|
||||||
KF5/*
|
KF5/*
|
||||||
KF6/*
|
KF6/*
|
||||||
|
vkd3d-proton/*
|
@ -1,438 +0,0 @@
|
|||||||
%global realname wayland
|
|
||||||
%global _sys_libdir %_libdir
|
|
||||||
%global _prefix /opt/rx
|
|
||||||
|
|
||||||
|
|
||||||
Name: rx-wayland
|
|
||||||
Version: 1.22.0
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Wayland Compositor Infrastructure
|
|
||||||
|
|
||||||
License: MIT
|
|
||||||
URL: http://wayland.freedesktop.org/
|
|
||||||
Source0: https://gitlab.freedesktop.org/%{realname}/%{realname}/-/releases/%{version}/downloads/%{realname}-%{version}.tar.xz
|
|
||||||
Source1: https://gitlab.freedesktop.org/%{realname}/%{realname}/-/releases/%{version}/downloads/%{realname}-%{version}.tar.xz.sig
|
|
||||||
Source2: emersion-gpg-key.asc
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: docbook-style-xsl
|
|
||||||
BuildRequires: doxygen
|
|
||||||
BuildRequires: expat-devel
|
|
||||||
BuildRequires: graphviz
|
|
||||||
BuildRequires: libxml2-devel
|
|
||||||
BuildRequires: libxslt
|
|
||||||
BuildRequires: meson
|
|
||||||
BuildRequires: pkgconfig(libffi)
|
|
||||||
BuildRequires: xmlto
|
|
||||||
|
|
||||||
# For origin certification
|
|
||||||
BuildRequires: gnupg2
|
|
||||||
|
|
||||||
%description
|
|
||||||
Wayland is a protocol for a compositor to talk to its clients as well as a C
|
|
||||||
library implementation of that protocol. The compositor can be a standalone
|
|
||||||
display server running on Linux kernel modesetting and evdev input devices,
|
|
||||||
an X application, or a wayland client itself. The clients can be traditional
|
|
||||||
applications, X servers (rootless or fullscreen) or other display servers.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development files for %{name}
|
|
||||||
Requires: rx-libwayland-client%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: rx-libwayland-cursor%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: rx-libwayland-egl%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: rx-libwayland-server%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
The %{name}-devel package contains libraries and header files for
|
|
||||||
developing applications that use %{name}.
|
|
||||||
|
|
||||||
%package doc
|
|
||||||
Summary: Wayland development documentation
|
|
||||||
BuildArch: noarch
|
|
||||||
%description doc
|
|
||||||
Wayland development documentation
|
|
||||||
|
|
||||||
%package -n rx-libwayland-client
|
|
||||||
Summary: Wayland client library
|
|
||||||
%description -n rx-libwayland-client
|
|
||||||
Wayland client library
|
|
||||||
|
|
||||||
%package -n rx-libwayland-cursor
|
|
||||||
Summary: Wayland cursor library
|
|
||||||
Requires: rx-libwayland-client = %{version}-%{release}
|
|
||||||
%description -n rx-libwayland-cursor
|
|
||||||
Wayland cursor library
|
|
||||||
|
|
||||||
%package -n rx-libwayland-egl
|
|
||||||
Summary: Wayland egl library
|
|
||||||
%description -n rx-libwayland-egl
|
|
||||||
Wayland egl library
|
|
||||||
|
|
||||||
%package -n rx-libwayland-server
|
|
||||||
Summary: Wayland server library
|
|
||||||
%description -n rx-libwayland-server
|
|
||||||
Wayland server library
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
||||||
%autosetup -p1 -n %{realname}-%{version}
|
|
||||||
|
|
||||||
%build
|
|
||||||
%meson
|
|
||||||
%meson_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%meson_install
|
|
||||||
|
|
||||||
%check
|
|
||||||
%meson_test
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%{_bindir}/wayland-scanner
|
|
||||||
%{_includedir}/wayland-*.h
|
|
||||||
%{_libdir}/pkgconfig/wayland-*.pc
|
|
||||||
%{_libdir}/libwayland-*.so
|
|
||||||
%{_datadir}/aclocal/wayland-scanner.m4
|
|
||||||
%dir %{_datadir}/wayland
|
|
||||||
%{_datadir}/wayland/wayland-scanner.mk
|
|
||||||
%{_datadir}/wayland/wayland.xml
|
|
||||||
%{_datadir}/wayland/wayland.dtd
|
|
||||||
%{_mandir}/man3/*.3*
|
|
||||||
|
|
||||||
%files doc
|
|
||||||
%doc README.md
|
|
||||||
%{_datadir}/doc/wayland/
|
|
||||||
|
|
||||||
%files -n rx-libwayland-client
|
|
||||||
%license COPYING
|
|
||||||
%{_libdir}/libwayland-client.so.0*
|
|
||||||
|
|
||||||
%files -n rx-libwayland-cursor
|
|
||||||
%license COPYING
|
|
||||||
%{_libdir}/libwayland-cursor.so.0*
|
|
||||||
|
|
||||||
%files -n rx-libwayland-egl
|
|
||||||
%license COPYING
|
|
||||||
%{_libdir}/libwayland-egl.so.1*
|
|
||||||
|
|
||||||
%files -n rx-libwayland-server
|
|
||||||
%license COPYING
|
|
||||||
%{_libdir}/libwayland-server.so.0*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Tue Apr 04 2023 Kalev Lember <klember@redhat.com> - 1.22.0-1
|
|
||||||
- Update to 1.22.0
|
|
||||||
|
|
||||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.21.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 26 2022 Mike Rochefort <mroche@redhat.com> - 1.21.0-1
|
|
||||||
- Update to 1.21.0
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Mar 21 2022 Olivier Fourdan <ofourdan@redhat.com> - 1.20.0-4
|
|
||||||
- Close file descriptors not needed
|
|
||||||
rhbz#2062030
|
|
||||||
|
|
||||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 1.20.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
|
|
||||||
|
|
||||||
* Thu Dec 16 2021 Kalev Lember <klember@redhat.com> - 1.20.0-1
|
|
||||||
- Update to 1.20.0
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 28 2021 Kalev Lember <klember@redhat.com> - 1.19.0-1
|
|
||||||
- Update to 1.19.0
|
|
||||||
- Switch to meson build system
|
|
||||||
- Drop old provides
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 12 2020 Kalev Lember <klember@redhat.com> - 1.18.0-1
|
|
||||||
- Update to 1.18.0
|
|
||||||
- Drop no longer needed obsoletes/provides
|
|
||||||
|
|
||||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Mar 21 2019 Kalev Lember <klember@redhat.com> - 1.17.0-1
|
|
||||||
- Update to 1.17.0
|
|
||||||
|
|
||||||
* Thu Mar 07 2019 Kalev Lember <klember@redhat.com> - 1.16.92-1
|
|
||||||
- Update to 1.16.92
|
|
||||||
|
|
||||||
* Thu Feb 28 2019 Kalev Lember <klember@redhat.com> - 1.16.91-1
|
|
||||||
- Update to 1.16.91
|
|
||||||
|
|
||||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Sep 11 2018 Kalev Lember <klember@redhat.com> - 1.16.0-1
|
|
||||||
- Update to 1.16.0
|
|
||||||
|
|
||||||
* Mon Aug 13 2018 Kalev Lember <klember@redhat.com> - 1.15.93-1
|
|
||||||
- Update to 1.15.93
|
|
||||||
|
|
||||||
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.15.92-2
|
|
||||||
- Rebuild with fixed binutils
|
|
||||||
|
|
||||||
* Sun Jul 29 2018 Kalev Lember <klember@redhat.com> - 1.15.92-1
|
|
||||||
- Update to 1.15.92
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Apr 09 2018 Kalev Lember <klember@redhat.com> - 1.15.0-1
|
|
||||||
- Update to 1.15.0
|
|
||||||
|
|
||||||
* Wed Apr 04 2018 Kalev Lember <klember@redhat.com> - 1.14.93-2
|
|
||||||
- Make mesa-libwayland-egl obsoleting actually work
|
|
||||||
|
|
||||||
* Tue Apr 03 2018 Kalev Lember <klember@redhat.com> - 1.14.93-1
|
|
||||||
- Update to 1.14.93
|
|
||||||
|
|
||||||
* Tue Mar 20 2018 Kalev Lember <klember@redhat.com> - 1.14.92-1
|
|
||||||
- Update to 1.14.92
|
|
||||||
- Remove F22 upgrade path obsoletes
|
|
||||||
|
|
||||||
* Sat Mar 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.14.91-2
|
|
||||||
- Improve Obsoletes
|
|
||||||
|
|
||||||
* Tue Feb 27 2018 Kalev Lember <klember@redhat.com> - 1.14.91-1
|
|
||||||
- Update to 1.14.91
|
|
||||||
- Add new libwayland-egl subpackage and obsolete mesa-libwayland-egl
|
|
||||||
- Remove ldconfig scriptlets
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 12 2017 Kalev Lember <klember@redhat.com> - 1.14.0-2
|
|
||||||
- cursor: Fix heap overflows when parsing malicious files (#1522638)
|
|
||||||
|
|
||||||
* Wed Aug 09 2017 Kalev Lember <klember@redhat.com> - 1.14.0-1
|
|
||||||
- Update to 1.14.0
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Kalev Lember <klember@redhat.com> - 1.13.93-1
|
|
||||||
- Update to 1.13.93
|
|
||||||
|
|
||||||
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 1.13.92-2
|
|
||||||
- Rebuild with binutils fix for ppc64le (#1475636)
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Kalev Lember <klember@redhat.com> - 1.13.92-1
|
|
||||||
- Update to 1.13.92
|
|
||||||
|
|
||||||
* Wed Jul 19 2017 Kalev Lember <klember@redhat.com> - 1.13.91-1
|
|
||||||
- Update to 1.13.91
|
|
||||||
|
|
||||||
* Thu Jun 1 2017 Owen Taylor otaylor@redhat.com> - 1.13.0-2
|
|
||||||
- Add a patch fixing a build error with newer versions of graphviz
|
|
||||||
|
|
||||||
* Wed Feb 22 2017 Kalev Lember <klember@redhat.com> - 1.13.0-1
|
|
||||||
- Update to 1.13.0
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.91-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 25 2017 Kalev Lember <klember@redhat.com> - 1.12.91-1
|
|
||||||
- Update to 1.12.91
|
|
||||||
|
|
||||||
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 1.12.0-1
|
|
||||||
- Update to 1.12.0
|
|
||||||
|
|
||||||
* Wed Sep 14 2016 Kalev Lember <klember@redhat.com> - 1.11.94-1
|
|
||||||
- Update to 1.11.94
|
|
||||||
|
|
||||||
* Thu Sep 08 2016 Kalev Lember <klember@redhat.com> - 1.11.93-1
|
|
||||||
- Update to 1.11.93
|
|
||||||
|
|
||||||
* Wed Aug 31 2016 Kalev Lember <klember@redhat.com> - 1.11.92-1
|
|
||||||
- Update to 1.11.92
|
|
||||||
|
|
||||||
* Wed Aug 17 2016 Kalev Lember <klember@redhat.com> - 1.11.91-1
|
|
||||||
- Update to 1.11.91
|
|
||||||
- Simplify -devel subpackage packaging
|
|
||||||
- Include license files in packaging
|
|
||||||
|
|
||||||
* Wed Jun 01 2016 Kalev Lember <klember@redhat.com> - 1.11.0-1
|
|
||||||
- Update to 1.11.0
|
|
||||||
|
|
||||||
* Wed May 25 2016 Kalev Lember <klember@redhat.com> - 1.10.93-1
|
|
||||||
- Update to 1.10.93
|
|
||||||
|
|
||||||
* Wed May 18 2016 Kalev Lember <klember@redhat.com> - 1.10.92-1
|
|
||||||
- Update to 1.10.92
|
|
||||||
|
|
||||||
* Sun May 08 2016 Kalev Lember <klember@redhat.com> - 1.10.91-1
|
|
||||||
- Update to 1.10.91
|
|
||||||
|
|
||||||
* Thu Feb 18 2016 Kalev Lember <klember@redhat.com> - 1.10.0-1
|
|
||||||
- Update to 1.10.0
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Kalev Lember <klember@redhat.com> - 1.9.92-1
|
|
||||||
- Update to 1.9.92
|
|
||||||
|
|
||||||
* Wed Jan 20 2016 Kalev Lember <klember@redhat.com> - 1.9.91-1
|
|
||||||
- Update to 1.9.91
|
|
||||||
|
|
||||||
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 1.9.0-1
|
|
||||||
- Update to 1.9.0
|
|
||||||
- Use make_install macro
|
|
||||||
|
|
||||||
* Wed Sep 16 2015 Kalev Lember <klember@redhat.com> - 1.8.93-1
|
|
||||||
- Update to 1.8.93
|
|
||||||
|
|
||||||
* Wed Sep 02 2015 Kalev Lember <klember@redhat.com> - 1.8.92-1
|
|
||||||
- Update to 1.8.92
|
|
||||||
|
|
||||||
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.8.91-2
|
|
||||||
- Split out wayland-doc subpackage for documentation
|
|
||||||
|
|
||||||
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.8.91-1
|
|
||||||
- Update to 1.8.91
|
|
||||||
|
|
||||||
* Mon Jul 20 2015 Adam Jackson <ajax@redhat.com> 1.8.0-1
|
|
||||||
- wayland 1.8.0
|
|
||||||
|
|
||||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.92-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 26 2015 Adam Jackson <ajax@redhat.com> 1.7.92-1
|
|
||||||
- wayland 1.7.92
|
|
||||||
|
|
||||||
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.7.0-2
|
|
||||||
- Rebuilt for Fedora 23 Change
|
|
||||||
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
||||||
|
|
||||||
* Tue Feb 17 2015 Richard Hughes <rhughes@redhat.com> - 1.7.0-1
|
|
||||||
- Wayland 1.7.0
|
|
||||||
|
|
||||||
* Fri Sep 19 2014 Kalev Lember <kalevlember@gmail.com> - 1.6.0-1
|
|
||||||
- Update to 1.6.0
|
|
||||||
- Remove lib64 rpaths
|
|
||||||
|
|
||||||
* Fri Aug 22 2014 Kevin Fenzi <kevin@scrye.com> 1.5.91-1
|
|
||||||
- Update to 1.5.90
|
|
||||||
|
|
||||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 02 2014 Adam Jackson <ajax@redhat.com> 1.5.0-4
|
|
||||||
- Update protocol: new surface error enums
|
|
||||||
|
|
||||||
* Mon Jun 30 2014 Adam Jackson <ajax@redhat.com> 1.5.0-3
|
|
||||||
- Remove blocking flush patch as it actually introduces deadlocks now
|
|
||||||
|
|
||||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 21 2014 Richard Hughes <rhughes@redhat.com> - 1.5.0-1
|
|
||||||
- Wayland 1.5.0
|
|
||||||
|
|
||||||
* Tue May 13 2014 Richard Hughes <rhughes@redhat.com> - 1.4.93-1
|
|
||||||
- Wayland 1.4.93
|
|
||||||
|
|
||||||
* Fri Jan 24 2014 Richard Hughes <rhughes@redhat.com> - 1.4.0-1
|
|
||||||
- Wayland 1.4.0
|
|
||||||
|
|
||||||
* Mon Jan 20 2014 Richard Hughes <rhughes@redhat.com> - 1.3.93-1
|
|
||||||
- Wayland 1.3.93
|
|
||||||
|
|
||||||
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.3.91-2
|
|
||||||
- Call ldconfig in libwayland-cursor %%post* scripts.
|
|
||||||
- Run test suite during build.
|
|
||||||
- Compress snapshot tarballs with xz.
|
|
||||||
|
|
||||||
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 1.3.91-1
|
|
||||||
- Wayland 1.3.91
|
|
||||||
|
|
||||||
* Mon Nov 25 2013 Lubomir Rintel <lkundrak@v3.sk> - 1.3.0-1
|
|
||||||
- Wayland 1.3.0
|
|
||||||
|
|
||||||
* Mon Oct 07 2013 Adam Jackson <ajax@redhat.com> 1.2.0-3
|
|
||||||
- Don't use MSG_DONTWAIT in wl_connection_flush.
|
|
||||||
|
|
||||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 15 2013 Richard Hughes <rhughes@redhat.com> - 1.2.0-1
|
|
||||||
- wayland 1.2.0
|
|
||||||
|
|
||||||
* Wed May 15 2013 Richard Hughes <rhughes@redhat.com> - 1.1.90-0.1.20130515
|
|
||||||
- Update to a git snapshot based on what will become 1.1.90
|
|
||||||
|
|
||||||
* Tue Apr 16 2013 Richard Hughes <rhughes@redhat.com> - 1.1.0-1
|
|
||||||
- wayland 1.1.0
|
|
||||||
|
|
||||||
* Wed Mar 27 2013 Richard Hughes <rhughes@redhat.com> - 1.0.6-1
|
|
||||||
- wayland 1.0.6
|
|
||||||
|
|
||||||
* Thu Feb 21 2013 Adam Jackson <ajax@redhat.com> 1.0.5-1
|
|
||||||
- wayland 1.0.5
|
|
||||||
|
|
||||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 02 2013 Adam Jackson <ajax@redhat.com> 1.0.3-1
|
|
||||||
- wayland 1.0.3
|
|
||||||
|
|
||||||
* Tue Oct 23 2012 Adam Jackson <ajax@redhat.com> 1.0.0-1
|
|
||||||
- wayland 1.0
|
|
||||||
|
|
||||||
* Thu Oct 18 2012 Adam Jackson <ajax@redhat.com> 0.99.0-1
|
|
||||||
- wayland 0.99.0
|
|
||||||
|
|
||||||
* Tue Sep 04 2012 Adam Jackson <ajax@redhat.com> 0.95.0-1
|
|
||||||
- wayland 0.95.0 (#843738)
|
|
||||||
|
|
||||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.89.0-2.20120424
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Apr 24 2012 Richard Hughes <rhughes@redhat.com> - 0.89.0-1
|
|
||||||
- Update to a git snapshot based on 0.89.0
|
|
||||||
|
|
||||||
* Sat Feb 18 2012 Thorsten Leemhuis <fedora@leemhuis.info> - 0.85.0-1
|
|
||||||
- update to 0.85.0
|
|
||||||
- adjust license, as upstream changed it to MIT
|
|
||||||
- update make-git-snapshot.sh to current locations and scheme
|
|
||||||
- drop common package, not needed anymore
|
|
||||||
- compositor is now in a separate package, hence reduce BuildRequires to what
|
|
||||||
is actually needed (a lot less) and adjust summary
|
|
||||||
- make usage of a git checkout in spec file optional
|
|
||||||
- a %%{?_isa} to requires where it makes sense
|
|
||||||
|
|
||||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-0.6.20101221
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 0.1-0.5.20101221
|
|
||||||
- Rebuild for new libpng
|
|
||||||
|
|
||||||
* Wed Jun 15 2011 Lubomir Rintel <lkundrak@v3.sk> - 0.1-0.4.20101221
|
|
||||||
- Install real compositor binary instead of a libtool wrapper
|
|
||||||
|
|
||||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-0.3.20101221
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 21 2010 Adam Jackson <ajax@redhat.com> 0.1-0.2.20101221
|
|
||||||
- Today's git snap
|
|
||||||
|
|
||||||
* Tue Nov 23 2010 Adam Jackson <ajax@redhat.com> 0.1-0.2.20101123
|
|
||||||
- Today's git snap
|
|
||||||
- Fix udev rule install (#653353)
|
|
||||||
|
|
||||||
* Mon Nov 15 2010 Adam Jackson <ajax@redhat.com> 0.1-0.1.20101111
|
|
||||||
- Initial packaging
|
|
@ -1 +0,0 @@
|
|||||||
/usr/lib/wine/
|
|
@ -1 +0,0 @@
|
|||||||
/usr/lib64/wine/
|
|
@ -1,44 +0,0 @@
|
|||||||
Wine directory structure used in Fedora Linux:
|
|
||||||
==============================================
|
|
||||||
|
|
||||||
${HOME}/.wine/drive_c is the root directory (aka C: drive) wine looks for
|
|
||||||
by default. It is created with (empty) C:\windows and C:\windows\system
|
|
||||||
directories, needed to operate Wine without an existing Windows
|
|
||||||
installation, if it does not already exist.
|
|
||||||
|
|
||||||
If you want to use Wine with an existing Windows installation that is
|
|
||||||
mounted, for example, in /mnt/windows-c, change the symlink
|
|
||||||
${HOME}/.wine/dosdevices/c: to point to /mnt/windows-c instead of the
|
|
||||||
defaults set by installation.
|
|
||||||
|
|
||||||
If you do this, you can safely remove ${HOME}/.wine/drive_c.
|
|
||||||
(Alternatively, just mount your Windows partition to ${HOME}/.wine/drive_c.)
|
|
||||||
|
|
||||||
Wine bugs:
|
|
||||||
==========
|
|
||||||
If you find a bug, please take the time to move your ${HOME}/.wine directory
|
|
||||||
someplace and try with a fresh version (like mv ${HOME}/.wine{,-save}). If the
|
|
||||||
bug is still there look through https://bugzilla.redhat.com and see if the bug
|
|
||||||
has already been reported. In case it was not please report it.
|
|
||||||
|
|
||||||
CJK support:
|
|
||||||
============
|
|
||||||
Fedora carries a modified wine.inf file with support for cjk complying to the
|
|
||||||
fedora default fonts (see
|
|
||||||
http://tagoh.fedorapeople.org/fonts/fedora-current-defaultfonts.html)
|
|
||||||
|
|
||||||
wine does _not_ pull in the cjk font packages automatically. The following
|
|
||||||
font packages may need to be installed depending on your locale:
|
|
||||||
|
|
||||||
zh_CN:
|
|
||||||
wqy-microhei
|
|
||||||
|
|
||||||
jp:
|
|
||||||
vlgothic-fonts
|
|
||||||
vlgothic-p-fonts
|
|
||||||
ipa-mincho-fonts
|
|
||||||
ipa-pmincho-fonts
|
|
||||||
|
|
||||||
ko:
|
|
||||||
nhn-nanum-gothic-fonts
|
|
||||||
nhn-nanum-myeongjo-fonts.noarch
|
|
@ -1,19 +0,0 @@
|
|||||||
= wine-tahoma-fonts =
|
|
||||||
Wine provides the wine tahoma font family. In fedora embedded bitmaps are
|
|
||||||
turned off per default (/etc/fonts/conf.d/20-wine-tahoma-nobitmaps.conf) as
|
|
||||||
this will provide smoother letters for most users.
|
|
||||||
|
|
||||||
If you do not like the wine tahoma font experience but want to keep it
|
|
||||||
installed you can turn it of by adding the following to ~/.fonts.conf or by
|
|
||||||
adding a file containing the following to ~/.fonts.conf.d/:
|
|
||||||
|
|
||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
||||||
<fontconfig>
|
|
||||||
<!-- Reject wine-tahoma-fonts -->
|
|
||||||
<selectfont>
|
|
||||||
<rejectfont>
|
|
||||||
<glob>*/wine-tahoma-fonts/*</glob>
|
|
||||||
</rejectfont>
|
|
||||||
</selectfont>
|
|
||||||
</fontconfig>
|
|
@ -1,22 +0,0 @@
|
|||||||
Index: wine-1.7.22/loader/wine.inf.in
|
|
||||||
===================================================================
|
|
||||||
--- wine-1.7.22.orig/loader/wine.inf.in
|
|
||||||
+++ wine-1.7.22/loader/wine.inf.in
|
|
||||||
@@ -568,6 +568,17 @@ HKLM,%FontSubStr%,"Times New Roman CE,23
|
|
||||||
HKLM,%FontSubStr%,"Times New Roman CYR,204",,"Times New Roman,204"
|
|
||||||
HKLM,%FontSubStr%,"Times New Roman Greek,161",,"Times New Roman,161"
|
|
||||||
HKLM,%FontSubStr%,"Times New Roman TUR,162",,"Times New Roman,162"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"SimSun",,"WenQuanYi Zen Hei Sharp"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"PMingLiU",,"WenQuanYi Zen Hei Sharp"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"MS Gothic",,"VL Gothic"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"MS PGothic",,"VL PGothic"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"MS UI Gothic",,"VL Gothic"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"MS Mincho",,"IPAMincho"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"MS PMincho",,"IPAPMincho"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"Batang",,"NanumMyeongjo"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"Dotum",,"NanumGothic"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"Gulim",,"NanumGothic"
|
|
||||||
+HKCU,Software\Wine\Fonts\Replacements,"Arial Unicode MS",,"Droid Sans Fallback"
|
|
||||||
HKLM,System\CurrentControlSet\Hardware Profiles\Current\Software\Fonts,"LogPixels",0x10003,0x00000060
|
|
||||||
|
|
||||||
[MCI]
|
|
@ -1,9 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Windows Installer File
|
|
||||||
Name[ar]=مثبت حزم واين
|
|
||||||
Exec=wine %f
|
|
||||||
MimeType=application/x-ole-storage;text/mspg-legacyinfo;
|
|
||||||
Hidden=true
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=msiexec.exe
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Notepad
|
|
||||||
Comment=Text Editor
|
|
||||||
Name[ar]=مفكرة
|
|
||||||
Comment[ar]=محرر النّصوص مفكرة واين
|
|
||||||
Exec=notepad
|
|
||||||
Icon=notepad
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=notepad.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine OLE View
|
|
||||||
Comment=Windows OLE View
|
|
||||||
Name[ar]=عارض العناصر
|
|
||||||
Comment[ar]=لعرض العناصر البيئية في واين
|
|
||||||
Exec=wine oleview.exe
|
|
||||||
Icon=wine
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=oleview.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Regedit
|
|
||||||
Comment=Wine registry editor
|
|
||||||
Name[ar]=محرر السّجل
|
|
||||||
Comment[ar]=محرر لسجلات واين
|
|
||||||
Exec=regedit
|
|
||||||
Icon=regedit
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=regedit.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
||||||
<fontconfig>
|
|
||||||
|
|
||||||
<!-- Disable embedded bitmaps in the Tahoma font -->
|
|
||||||
|
|
||||||
<match target="font">
|
|
||||||
<test name="family"><string>Tahoma</string></test>
|
|
||||||
<edit name="embeddedbitmap"><bool>false</bool></edit>
|
|
||||||
</match>
|
|
||||||
</fontconfig>
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine Software Uninstaller
|
|
||||||
Comment=Interface to uninstall software
|
|
||||||
Name[ar]=مزيل التطبيقات من واين
|
|
||||||
Comment[ar]=واجهة إزالة التّطبيقات من واين
|
|
||||||
Exec=wine uninstaller.exe
|
|
||||||
Icon=msiexec
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=uninstaller.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,10 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine Boot
|
|
||||||
Comment=Simulate restart
|
|
||||||
Name[ar]=إقلاع واين
|
|
||||||
Comment[ar]=محاكاة إعادة التشغيل لواين
|
|
||||||
Exec=wineboot
|
|
||||||
Icon=wine
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Categories=X-Wine;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine Configuration
|
|
||||||
Comment=Interface to set wine parameters
|
|
||||||
Name[ar]=إعدادات واين
|
|
||||||
Comment[ar]=لوحة تحكم بمنظومة واين
|
|
||||||
Exec=winecfg
|
|
||||||
Icon=winecfg
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=winecfg.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,10 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine File
|
|
||||||
Comment=Wine File Browser
|
|
||||||
Name[ar]=مدير ملفات واين
|
|
||||||
Comment[ar]=إدارة الملفات بطريقة واين
|
|
||||||
Exec=winefile
|
|
||||||
Icon=winefile
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Categories=X-Wine;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=WineMine
|
|
||||||
Comment=Wine Minesweeper
|
|
||||||
Name[ar]=كانسة ألغام واين
|
|
||||||
Comment[ar]=لعبة كانسة ألغام واين
|
|
||||||
Exec=winemine
|
|
||||||
Icon=winemine
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=winemine.exe
|
|
||||||
Categories=Game;LogicGame;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine Help
|
|
||||||
Comment=Windows Help Browser
|
|
||||||
Name[ar]=أداة المساعدة في واين
|
|
||||||
Comment[ar]=استعراض ملفات المساعدة بتنسيقات وندوز
|
|
||||||
Exec=wine winhlp32.exe
|
|
||||||
Icon=winhelp
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=winhlp32.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Wine Wordpad
|
|
||||||
Comment=Text Editor
|
|
||||||
Name[ar]=دفتر واين
|
|
||||||
Comment[ar]=محرر النّصوص دفتر واين
|
|
||||||
Exec=wine wordpad.exe
|
|
||||||
Icon=wordpad
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
StartupNotify=true
|
|
||||||
StartupWMClass=wordpad.exe
|
|
||||||
Categories=X-Wine;
|
|
@ -1,25 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<component type="desktop">
|
|
||||||
<id>wine.desktop</id>
|
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
|
||||||
<project_license>LGPLv2+</project_license>
|
|
||||||
<name>Wine</name>
|
|
||||||
<summary>A compatibility layer for Windows applications</summary>
|
|
||||||
<description>
|
|
||||||
<p>
|
|
||||||
Wine (originally an acronym for "Wine Is Not an Emulator") is a compatibility
|
|
||||||
layer capable of running Windows applications on several POSIX-compliant operating
|
|
||||||
systems, such as Linux, macOS, & BSD. Instead of simulating internal Windows
|
|
||||||
logic like a virtual machine or emulator, Wine translates Windows API calls into
|
|
||||||
POSIX calls on-the-fly, eliminating the performance and memory penalties of other
|
|
||||||
methods and allowing you to cleanly integrate Windows applications into your desktop.
|
|
||||||
</p>
|
|
||||||
</description>
|
|
||||||
<url type="homepage">https://www.winehq.org/</url>
|
|
||||||
<url type="bugtracker">https://bugs.winehq.org/</url>
|
|
||||||
<url type="faq">https://wiki.winehq.org/FAQ</url>
|
|
||||||
<url type="help">https://wiki.winehq.org/</url>
|
|
||||||
<url type="donation">https://www.winehq.org/donate</url>
|
|
||||||
<url type="translate">https://wiki.winehq.org/Translating</url>
|
|
||||||
</component>
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Type=Directory
|
|
||||||
Name=Wine
|
|
||||||
Icon=wine
|
|
@ -1,89 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# wine Allow users to run Windows(tm) applications by just clicking on them
|
|
||||||
# (or typing ./file.exe)
|
|
||||||
#
|
|
||||||
# chkconfig: 35 98 10
|
|
||||||
# description: Allow users to run Windows(tm) applications by just clicking \
|
|
||||||
# on them (or typing ./file.exe)
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: wine-binfmt
|
|
||||||
# Required-Start:
|
|
||||||
# Required-Stop:
|
|
||||||
# Default-Start: 2 3 4 5
|
|
||||||
# Default-Stop: 0 1 6
|
|
||||||
# Short-Description: Add and remove wine binary handler
|
|
||||||
# Description: Allow users to run Windows(tm) applications by just clicking
|
|
||||||
# on them (or typing ./file.exe)
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
|
|
||||||
. /etc/rc.d/init.d/functions
|
|
||||||
RETVAL=0
|
|
||||||
|
|
||||||
start() {
|
|
||||||
# fix bug on changing runlevels #213230
|
|
||||||
if [ -e /proc/sys/fs/binfmt_misc/windows ]; then
|
|
||||||
echo -n $"Binary handler for Windows applications already registered"
|
|
||||||
else
|
|
||||||
echo -n $"Registering binary handler for Windows applications: "
|
|
||||||
/sbin/modprobe binfmt_misc &>/dev/null
|
|
||||||
echo ':windows:M::MZ::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
|
|
||||||
echo ':windowsPE:M::PE::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
|
|
||||||
RETVAL=$?
|
|
||||||
[ $RETVAL -eq 0 ] && success || failure
|
|
||||||
fi
|
|
||||||
echo
|
|
||||||
}
|
|
||||||
|
|
||||||
stop() {
|
|
||||||
echo -n $"Unregistering binary handler for Windows applications: "
|
|
||||||
echo "-1" >/proc/sys/fs/binfmt_misc/windows || :
|
|
||||||
echo "-1" >/proc/sys/fs/binfmt_misc/windowsPE || :
|
|
||||||
RETVAL=$?
|
|
||||||
[ $RETVAL -eq 0 ] && success || failure
|
|
||||||
echo
|
|
||||||
}
|
|
||||||
|
|
||||||
wine_status() {
|
|
||||||
if [ -e /proc/sys/fs/binfmt_misc/windows ]; then
|
|
||||||
echo $"Wine binary format handlers are registered."
|
|
||||||
return 0
|
|
||||||
else
|
|
||||||
echo $"Wine binary format handlers are not registered."
|
|
||||||
return 3
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
start
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
stop
|
|
||||||
;;
|
|
||||||
status)
|
|
||||||
wine_status
|
|
||||||
RETVAL=$?
|
|
||||||
;;
|
|
||||||
restart)
|
|
||||||
stop
|
|
||||||
start
|
|
||||||
;;
|
|
||||||
reload)
|
|
||||||
stop
|
|
||||||
start
|
|
||||||
;;
|
|
||||||
condrestart|try-restart)
|
|
||||||
|
|
||||||
if [ -e /proc/sys/fs/binfmt_misc/windows ]; then
|
|
||||||
stop
|
|
||||||
start
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo $"Usage: $prog {start|stop|status|restart|reload|try-restart}"
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
exit $RETVAL
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE Menu
|
|
||||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
|
||||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
|
||||||
<Menu>
|
|
||||||
<Name>Applications</Name>
|
|
||||||
<Menu>
|
|
||||||
<Name>wine-wine</Name>
|
|
||||||
<Directory>Wine.directory</Directory>
|
|
||||||
<Include>
|
|
||||||
<Category>X-Wine</Category>
|
|
||||||
</Include>
|
|
||||||
</Menu>
|
|
||||||
</Menu>
|
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
|||||||
# Pre-PE Windows Executables
|
|
||||||
:windows:M::MZ::/usr/bin/wine:
|
|
||||||
|
|
||||||
# PE Windows Executables
|
|
||||||
:windowsPE:M::PE::/usr/bin/wine:
|
|
Loading…
x
Reference in New Issue
Block a user