1
0

5 Commits

Author SHA256 Message Date
21e259f94e Accepting request 1284518 from X11:XOrg
- removed again empty %check section

- update to release 1.2.1
  * Override the installation directory of the pkg-config file to
    put it in the correct architecture-independent directory.

OBS-URL: https://build.opensuse.org/request/show/1284518
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/eglexternalplatform?expand=0&rev=5
2025-06-11 14:18:46 +00:00
457aff2e0c - removed again empty %check section
OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/eglexternalplatform?expand=0&rev=13
2025-06-10 15:00:45 +00:00
615123ba76 - update to release 1.2.1
* Override the installation directory of the pkg-config file to
    put it in the correct architecture-independent directory.

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/eglexternalplatform?expand=0&rev=12
2025-06-10 14:27:45 +00:00
3f8f17d582 Accepting request 1204273 from X11:XOrg
- update to release 1.2
  * Change the shutdown behavior so that 
    EGLExtPlatformExports::unloadEGLExternalPlatform is called
    while the internal EGLDisplays are still valid.
  * Added a meson.build file to generate the pkg-config file. It's
    also set up so that you can use eglexternalplatform as a Meson
    subproject.
  * Interface version 1.2 is supported on 560.* and later drivers.

OBS-URL: https://build.opensuse.org/request/show/1204273
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/eglexternalplatform?expand=0&rev=4
2024-09-29 16:09:28 +00:00
243cce3ae7 - update to release 1.2
* Change the shutdown behavior so that 
    EGLExtPlatformExports::unloadEGLExternalPlatform is called
    while the internal EGLDisplays are still valid.
  * Added a meson.build file to generate the pkg-config file. It's
    also set up so that you can use eglexternalplatform as a Meson
    subproject.
  * Interface version 1.2 is supported on 560.* and later drivers.

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/eglexternalplatform?expand=0&rev=10
2024-09-27 13:23:07 +00:00
4 changed files with 35 additions and 12 deletions

BIN
eglexternalplatform-1.1.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5089ceb054ca50c85837f015756a3d0f2f75cf2a98c9e5fbcbcfb8206137f76e
size 10610

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Tue Jun 10 14:59:57 UTC 2025 - Stefan Dirsch <sndirsch@suse.com>
- removed again empty %check section
-------------------------------------------------------------------
Tue Jun 10 14:23:05 UTC 2025 - Stefan Dirsch <sndirsch@suse.com>
- update to release 1.2.1
* Override the installation directory of the pkg-config file to
put it in the correct architecture-independent directory.
-------------------------------------------------------------------
Thu Sep 19 20:44:16 UTC 2024 - Stefan Dirsch <sndirsch@suse.com>
- update to release 1.2
* Change the shutdown behavior so that
EGLExtPlatformExports::unloadEGLExternalPlatform is called
while the internal EGLDisplays are still valid.
* Added a meson.build file to generate the pkg-config file. It's
also set up so that you can use eglexternalplatform as a Meson
subproject.
* Interface version 1.2 is supported on 560.* and later drivers.
-------------------------------------------------------------------
Mon Sep 27 13:47:11 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package eglexternalplatform
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,14 @@
Name: eglexternalplatform
Version: 1.1
Version: 1.2.1
Release: 0
Summary: The EGL External Platform interface
License: MIT
Group: Development/Libraries/C and C++
URL: https://github.com/NVIDIA/eglexternalplatform
Source0: https://github.com/NVIDIA/eglexternalplatform/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: pkgconfig
BuildArch: noarch
BuildRequires: meson
%description
A work-in-progress specification of the EGL External Platform interface.
@@ -33,6 +32,7 @@ A work-in-progress specification of the EGL External Platform interface.
%package devel
Summary: The EGL External Platform interface
Group: Development/Libraries/C and C++
BuildArch: noarch
%description devel
This is a work-in-progress specification of the EGL External Platform interface
@@ -43,19 +43,18 @@ EGL functions.
%prep
%autosetup
%meson
%build
%meson_build
%install
install -d -m0755 %{buildroot}%{_datadir}/pkgconfig
install -d -m0755 %{buildroot}%{_includedir}/EGL
install -m0644 eglexternalplatform.pc %{buildroot}%{_datadir}/pkgconfig
install -m0644 interface/*.h %{buildroot}%{_includedir}/EGL
%meson_install
%files devel
%license COPYING
%doc README.md
%{_datadir}/pkgconfig/eglexternalplatform.pc
%{_includedir}/EGL
%{_includedir}/*.h
%changelog