Skip to content

Commit

Permalink
graphene: update to 1.10.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox authored and adbrown101 committed Apr 12, 2021
1 parent e7403fd commit fb0437f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git src/graphene-ray.c src/graphene-ray.c
index 66c3393..9151300 100644
--- src/graphene-ray.c
+++ src/graphene-ray.c
@@ -563,7 +563,7 @@ graphene_ray_intersect_box (const graphene_ray_t *r,
#else
if (ty_min > tx_min || fpclassify (tx_min) == FP_NAN)
tx_min = ty_min;
- if (ty_max > tx_max || fpclassify (tx_max) == FP_NAN)
+ if (ty_max < tx_max || fpclassify (tx_max) == FP_NAN)
tx_max = ty_max;
#endif
8 changes: 4 additions & 4 deletions srcpkgs/graphene/template
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Template file for 'graphene'
pkgname=graphene
version=1.10.2
version=1.10.6
revision=1
build_style=meson
build_helper="gir"
configure_args="-Dtests=false -Dbenchmarks=false
-Dintrospection=$(vopt_if gir true false)"
configure_args="-Dbenchmarks=false -Dinstalled_tests=false
-Dintrospection=$(vopt_if gir enabled disabled) -Dsse2=true"
hostmakedepends="pkg-config"
makedepends="libglib-devel"
short_desc="Thin layer of types for graphic libraries"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="MIT"
homepage="https://github.com/ebassi/graphene"
distfiles="${GNOME_SITE}/graphene/${version%.*}/graphene-${version}.tar.xz"
checksum=e97de8208f1aac4f913d4fa71ab73a7034e807186feb2abe55876e51c425a7f6
checksum=80ae57723e4608e6875626a88aaa6f56dd25df75024bd16e9d77e718c3560b25

case "$XBPS_TARGET_MACHINE" in
arm*) configure_args+=" -Darm_neon=false" ;;
Expand Down

0 comments on commit fb0437f

Please sign in to comment.