Accepting request 459790 from GNOME:Next

Scripted push of project GNOME:Next

OBS-URL: https://build.opensuse.org/request/show/459790
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/graphene?expand=0&rev=6
This commit is contained in:
Dominique Leuenberger 2017-02-22 20:39:52 +00:00 committed by Git OBS Bridge
parent 07ce2f9af2
commit 3fbbd75365
4 changed files with 28 additions and 8 deletions

View File

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

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58bea84eb3cf771f268f287a9c21617a242e3604a813ac395c3e521b58b68398
size 183400

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
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,13 +17,13 @@
Name: graphene
Version: 1.5.2
Version: 1.5.4
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
BuildRequires: gobject-introspection-devel
BuildRequires: meson >= 0.36.0
BuildRequires: pkgconfig
@ -75,10 +75,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