Sync from SUSE:SLFO:Main eglexternalplatform revision 35940f6b85eeef3a9312cf1837d1cde9
This commit is contained in:
commit
0826c571dd
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
eglexternalplatform-1.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
eglexternalplatform-1.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
41
eglexternalplatform.changes
Normal file
41
eglexternalplatform.changes
Normal file
@ -0,0 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 27 13:47:11 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- needed for jira#SLE/SLE-19965, jira#SLE/SLE-19964, jira#SLE/SLE-18653
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 4 17:10:01 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
||||
|
||||
- Use better tarball URL
|
||||
- Run spec-cleaner
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 22:31:22 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Move headers into -devel subpackage to soothe the corresponding
|
||||
rpmlint warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 22:24:58 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- added webpage for source tarballs to specfile
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 19:09:58 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- specfile cleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 12:54:48 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- added missing copyright to specfile
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 12:26:03 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- tried to address checkin policy issues for factory
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 1 09:35:35 UTC 2021 - Alexander Evseev <aevseev@gmail.com> - 1.1
|
||||
|
||||
- First build. Version 1.1 + git
|
61
eglexternalplatform.spec
Normal file
61
eglexternalplatform.spec
Normal file
@ -0,0 +1,61 @@
|
||||
#
|
||||
# spec file for package eglexternalplatform
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: eglexternalplatform
|
||||
Version: 1.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
|
||||
|
||||
%description
|
||||
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++
|
||||
|
||||
%description devel
|
||||
This is a work-in-progress specification of the EGL External Platform interface
|
||||
for writing EGL platforms and their interactions with window systems on
|
||||
top of existing low-level EGL platform implementations. This keeps window system
|
||||
implementation specifics out of EGL drivers by using application-facing
|
||||
EGL functions.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%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
|
||||
|
||||
%files devel
|
||||
%license COPYING
|
||||
%doc README.md
|
||||
%{_datadir}/pkgconfig/eglexternalplatform.pc
|
||||
%{_includedir}/EGL
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user