Accepting request 317672 from home:sumski:hazard:to:your:stereo
- Update to 1.3.1 * brown-paper-bag fix to unexport another private symbol that we'd leaked, noticed when I went diffing the exported symbols between v1.2 and v1.3 for the debian build. - Changes since 1.3.0: * MSVC 2013 support. * OSX drops GLX support. * Updates to the registry * Fixes for a nonconformant GL implementation * Library size reductions * Reproducible builds - Drop u_sort-the-providers-by-their-enum-not-by-their-functi.patch, merged upstream OBS-URL: https://build.opensuse.org/request/show/317672 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libepoxy?expand=0&rev=5
This commit is contained in:
parent
d31c3708f2
commit
789c63398a
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 20 18:20:19 UTC 2015 - hrvoje.senjan@gmail.com
|
||||
|
||||
- Update to 1.3.1
|
||||
* brown-paper-bag fix to unexport another private symbol that we'd
|
||||
leaked, noticed when I went diffing the exported symbols between
|
||||
v1.2 and v1.3 for the debian build.
|
||||
- Changes since 1.3.0:
|
||||
* MSVC 2013 support.
|
||||
* OSX drops GLX support.
|
||||
* Updates to the registry
|
||||
* Fixes for a nonconformant GL implementation
|
||||
* Library size reductions
|
||||
* Reproducible builds
|
||||
- Drop u_sort-the-providers-by-their-enum-not-by-their-functi.patch,
|
||||
merged upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 26 11:42:39 UTC 2015 - zaitor@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libepoxy
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
Name: libepoxy
|
||||
%define sonum 0
|
||||
Version: 1.2
|
||||
Version: 1.3.1
|
||||
Release: 0
|
||||
Summary: OpenGL function pointer management library
|
||||
License: MIT
|
||||
@ -26,7 +26,6 @@ Group: Development/Libraries/C and C++
|
||||
Url: https://github.com/anholt/libepoxy
|
||||
Source: https://github.com/anholt/%{name}/archive/v%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
Patch0: u_sort-the-providers-by-their-enum-not-by-their-functi.patch
|
||||
BuildRequires: autoconf >= 2.60
|
||||
BuildRequires: automake
|
||||
BuildRequires: libtool
|
||||
@ -75,7 +74,6 @@ Development files.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
if [ ! -e configure ]; then
|
||||
|
@ -1,28 +0,0 @@
|
||||
From 05c11521105a00d3644fbc7e92dd97e3ab6531fe Mon Sep 17 00:00:00 2001
|
||||
From: Stefan Dirsch <sndirsch@suse.de>
|
||||
Date: Thu, 12 Feb 2015 10:47:28 +0100
|
||||
Subject: [PATCH] sort the providers by their enum not by their function name
|
||||
|
||||
Patch by Stephan Kulow <coolo@kde.org>
|
||||
---
|
||||
src/gen_dispatch.py | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/gen_dispatch.py b/src/gen_dispatch.py
|
||||
index ab526ef..f8b7492 100755
|
||||
--- a/src/gen_dispatch.py
|
||||
+++ b/src/gen_dispatch.py
|
||||
@@ -566,8 +566,8 @@ class Generator(object):
|
||||
providers.append(provider)
|
||||
|
||||
def provider_sort(provider):
|
||||
- return (provider.name != func.name, provider.name)
|
||||
- providers.sort(key=provider_sort);
|
||||
+ return (provider.name != func.name, provider.enum)
|
||||
+ providers.sort(key=provider_sort)
|
||||
|
||||
if len(providers) != 1:
|
||||
self.outln(' static const enum {0}_provider providers[] = {{'.format(self.target))
|
||||
--
|
||||
1.8.4.5
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6
|
||||
size 267110
|
3
v1.3.1.tar.gz
Normal file
3
v1.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4
|
||||
size 284227
|
Loading…
Reference in New Issue
Block a user