Accepting request 220467 from X11:Wayland
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/220467 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wayland?expand=0&rev=15
This commit is contained in:
commit
23a6a39afc
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78062e2b081731d96de6a514a91322ad6e7cf6cacfa9c32997bbb3ad6e7f166f
|
||||
size 407420
|
3
wayland-1.4.0.tar.xz
Normal file
3
wayland-1.4.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18f33b9f15b4c8b662fb1968e7636e7926b419dfc48de8a164b3a3d7095c5a58
|
||||
size 421564
|
@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 24 11:59:47 UTC 2014 - jengelh@inai.de
|
||||
|
||||
- Update to new upstream release 1.4.0
|
||||
* SHM Buffer SIBGUS protection
|
||||
* Subsurfaces protocol moved to wayland
|
||||
- Remove wayland-1.3.93-resourcestest.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 21 11:10:29 UTC 2014 - tchvatal@suse.com
|
||||
|
||||
- Version bump to 1.3.93:
|
||||
* Various bugfixes to another RC release
|
||||
- Add patch wayland-1.3.93-resourcestest.patch fixing tests from
|
||||
upstream git
|
||||
- Cleanup the spec with spec-cleaner
|
||||
- Always run tests do not conditionalize them. They wether fail or
|
||||
not
|
||||
- Add missing dep on xsltproc as per configure
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 24 21:15:33 UTC 2013 - jengelh@inai.de
|
||||
|
||||
- Update to new upstream release 1.3.91
|
||||
* protocol: add sub-surfaces to the core
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 17 22:10:02 UTC 2013 - tobias.johannes.klausmann@mni.thm.de
|
||||
|
||||
- Update to version 1.3.0:
|
||||
* More pixel formats for wl_shm, such as RGB565
|
||||
* Multi resource support.
|
||||
* Support for language bindings
|
||||
* Release requests for wl_pointer, wl_keyboard and wl_touch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 15 20:29:24 UTC 2013 - dmueller@suse.com
|
||||
|
||||
|
38
wayland.spec
38
wayland.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package wayland
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 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
|
||||
@ -16,28 +16,29 @@
|
||||
#
|
||||
|
||||
|
||||
Name: wayland
|
||||
%define lname libwayland0
|
||||
Version: 1.2.1
|
||||
Name: wayland
|
||||
Version: 1.4.0
|
||||
Release: 0
|
||||
Summary: Wayland Compositor Infrastructure
|
||||
License: HPND
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: http://wayland.freedesktop.org/
|
||||
|
||||
URL: http://wayland.freedesktop.org/
|
||||
#Git-Clone: git://anongit.freedesktop.org/wayland/wayland
|
||||
#Git-Web: http://cgit.freedesktop.org/wayland/wayland/
|
||||
Source: http://wayland.freedesktop.org/releases/%name-%version.tar.xz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
#git#BuildRequires: autoconf >= 2.64
|
||||
#git#BuildRequires: automake >= 1.11
|
||||
#git#BuildRequires: libtool >= 2.2
|
||||
#git#BuildRequires: libtool >= 2.2
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: libexpat-devel
|
||||
BuildRequires: libxml2-tools
|
||||
BuildRequires: libxslt-tools
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: xz
|
||||
BuildRequires: pkgconfig(expat)
|
||||
BuildRequires: pkgconfig(libffi)
|
||||
BuildRoot: %_tmppath/%name-%version-build
|
||||
|
||||
%description
|
||||
Wayland is a protocol for a compositor to talk to its clients as well
|
||||
@ -106,27 +107,32 @@ to develop applications that require these.
|
||||
if [ ! -e configure ]; then
|
||||
autoreconf -fi;
|
||||
fi;
|
||||
# Ensure people will use pkgconfig to locate headers
|
||||
%configure --disable-static --includedir="%_includedir/pkg/%name"
|
||||
make %{?_smp_mflags}
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
%install
|
||||
b="%buildroot";
|
||||
make install DESTDIR="$b";
|
||||
rm -f "$b/%_libdir"/*.la;
|
||||
make DESTDIR=%buildroot install %{?_smp_mflags}
|
||||
find %buildroot -type f -name "*.la" -delete -print
|
||||
%fdupes %buildroot/%_prefix
|
||||
|
||||
%check
|
||||
%if ! 0%{?qemu_user_space_build}
|
||||
mkdir -m go-rwx xdg;
|
||||
XDG_RUNTIME_DIR="$PWD/xdg" make check %{?_smp_mflags};
|
||||
%if !0%{?qemu_user_space_build}
|
||||
mkdir xdg
|
||||
chmod 700 xdg
|
||||
export XDG_RUNTIME_DIR="$PWD/xdg"
|
||||
make check %{?_smp_mflags} V=1
|
||||
%endif
|
||||
|
||||
%post -n libwayland-client0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libwayland-client0 -p /sbin/ldconfig
|
||||
|
||||
%post -n libwayland-cursor0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libwayland-cursor0 -p /sbin/ldconfig
|
||||
|
||||
%post -n libwayland-server0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libwayland-server0 -p /sbin/ldconfig
|
||||
|
||||
%files -n libwayland-client0
|
||||
|
Loading…
Reference in New Issue
Block a user