SHA256
1
0
forked from pool/graphene

Accepting request 476930 from GNOME:Factory

1

OBS-URL: https://build.opensuse.org/request/show/476930
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/graphene?expand=0&rev=3
This commit is contained in:
Dominique Leuenberger 2017-03-22 22:00:36 +00:00 committed by Git OBS Bridge
commit 060323d6f2
5 changed files with 51 additions and 9 deletions

1
baselibs.conf Normal file
View File

@ -0,0 +1 @@
libgraphene-1_0-0

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b2fe2c3aad43416bb520e2b3f0e1f4535b0fa722291a14904b01765afe9416f
size 123652

3
graphene-1.6.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:98970f859e452ce421b72726ca727fdf3ac27cb4804b62bfe520157fa46aa2fd
size 183951

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Sat Mar 4 08:47:33 UTC 2017 - zaitor@opensuse.org
- Update to version 1.6.0:
+ The Meson dependency has been bumped to 0.37.0.
+ Added graphene_frustum_equal() method.
+ Dropped the -Denable-debug option for the Meson build;
debugging levels are handled through the --buildtype Meson
option; you can use release to disable all debugging code paths
when building Graphene.
+ Graphene now automatically builds binaries for Windows (i686
and x86_64) using Appveyor; you can find the builds attached to
the release notes.
-------------------------------------------------------------------
Tue Feb 28 18:30:47 UTC 2017 - dimstar@opensuse.org
- Add baselibs.conf: produce libgraphene-1_0-0-32bit, required by
gtk4.
-------------------------------------------------------------------
Wed Jan 11 13:19:22 UTC 2017 - zaitor@opensuse.org
- Update to version 1.5.4:
+ For the time being and after requests from distributors, the
autotools build environment has been reinstated in Git, though
Meson is still the preferred build environment; I still expect
to drop the autotools build in the near future.
+ Graphene now correctly identifies whether the platform has an
aligned memory allocator.
+ Compatibility fixes for printing int64_t to terminal.
+ Fixed the cross-references to GLib types in the API reference
build.
+ Improve the builtin detection in the Meson build and the build
of Graphene under MingW.
- Switch to github url, gnome url is currently broken.
- Pass export LANG=C.UTF-8, workaround meson issue.
- Drop sed call to workaround Mesa issue.
-------------------------------------------------------------------
Tue Dec 6 14:13:57 UTC 2016 - dimstar@opensuse.org

View File

@ -1,7 +1,7 @@
#
# spec file for package graphene
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 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
@ -17,15 +17,16 @@
Name: graphene
Version: 1.5.2
Version: 1.6.0
Release: 0
Summary: Thin type layer for graphic libraries
License: MIT
Group: Development/Languages/C and C++
Url: http://ebassi.github.io/graphene/
Source: https://download.gnome.org/sources/graphene/1.5/%{name}-%{version}.tar.xz
Source: https://github.com/ebassi/graphene/archive/%{version}/%{name}-%{version}.tar.gz
Source99: baselibs.conf
BuildRequires: gobject-introspection-devel
BuildRequires: meson >= 0.36.0
BuildRequires: meson >= 0.37.0
BuildRequires: pkgconfig
BuildRequires: pkgconfig(gobject-2.0) >= 2.30.0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -75,10 +76,11 @@ This subpackage contains the development files for the Graphene library.
%prep
%setup -q
# Workaround for an apparent mesa issue
sed -i "s/©/(c)/" src/graphene-version.h.in
%build
# meson errors out without a utf8 LANG set
# https://github.com/mesonbuild/meson/issues/1085
export LANG=C.UTF-8
%ifarch i586
# on i586, the compiler drops 'libm' and then g-ir-scanner fails to resolve it
# See gh#ebassie/graphene#82