Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] babl: update to 0.1.82
@ 2020-11-30 16:45 ndowens
  2020-12-10 21:18 ` [PR PATCH] [Updated] " ndowens
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: ndowens @ 2020-11-30 16:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 421 bytes --]

There is a new pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages babl
https://github.com/void-linux/void-packages/pull/26833

babl: update to 0.1.82
Add patch to allow gir during cross-build
@Gottox I tested this update against build of gegl-devel and it built fine

A patch file from https://github.com/void-linux/void-packages/pull/26833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-babl-26833.patch --]
[-- Type: text/x-diff, Size: 2768 bytes --]

From 9f09ac4da87519b4d776b85296da15bdba06a21f Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Mon, 30 Nov 2020 10:45:48 -0600
Subject: [PATCH] babl: update to 0.1.82

Add patch to allow gir during cross-build
---
 .../0001-Allow-gir-if-cross-building.patch    | 33 +++++++++++++++++++
 srcpkgs/babl/template                         |  8 ++---
 2 files changed, 37 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch

diff --git a/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
new file mode 100644
index 00000000000..8be1100c4c8
--- /dev/null
+++ b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
@@ -0,0 +1,33 @@
+From b3611a5ecadba929724708517044fe59cfa397d0 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Mon, 30 Nov 2020 10:32:44 -0600
+Subject: [PATCH] Allow gir if cross-building
+
+---
+ meson.build | 9 +++------
+ 1 file changed, 3 insertions(+), 6 deletions(-)
+
+diff --git meson.build meson.build
+index e4bdc38..156b494 100644
+--- meson.build
++++ meson.build
+@@ -390,13 +390,10 @@ elif get_option('with-docs') == 'false'
+ endif
+ 
+ # Introspection - don't build  by default on cross-build environments
+-if get_option('enable-gir') == 'auto'
+-  build_gir = meson.is_cross_build() ? false : true
++if get_option('enable-gir') == 'true' and g_ir.found()
++  build_gir = true
+ else
+-  build_gir = get_option('enable-gir') == 'true' ? true : false
+-endif
+-if not g_ir.found()
+-  build_gir = false
++	build_gir = false
+ endif
+ 
+ # Vapi - only build if building introspection
+-- 
+2.29.2
+
diff --git a/srcpkgs/babl/template b/srcpkgs/babl/template
index 747bad3e40c..49bc269c9a3 100644
--- a/srcpkgs/babl/template
+++ b/srcpkgs/babl/template
@@ -1,11 +1,11 @@
 # Template file for 'babl'
 pkgname=babl
-version=0.1.78
+version=0.1.82
 revision=1
 build_style=meson
 build_helper=gir
-configure_args="-Dwith-docs=false"
-hostmakedepends="pkg-config vala-devel gobject-introspection"
+configure_args="-Dwith-docs=false -Denable-gir=true"
+hostmakedepends="pkg-config vala-devel"
 makedepends="lcms2-devel"
 short_desc="Dynamic pixel format translation library"
 maintainer="Enno Boland <gottox@voidlinux.org>"
@@ -13,7 +13,7 @@ license="LGPL-3.0-only"
 homepage="http://gegl.org/babl/"
 changelog="https://raw.githubusercontent.com/GNOME/babl/master/NEWS"
 distfiles="https://download.gimp.org/pub/babl/${version%.*}/babl-${version}.tar.xz"
-checksum=17d5493633bff5585d9f375bc4df5925157cd1c70ccd7c22a635be75c172523a
+checksum=c62d93d4ad6774cb8e3231bbbc7f2e61e551e7242d78640d757505ee1a9fadc5
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*|i686*) ;;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
@ 2020-12-10 21:18 ` ndowens
  2020-12-10 21:46 ` ndowens
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ndowens @ 2020-12-10 21:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 451 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages babl
https://github.com/void-linux/void-packages/pull/26833

babl: update to 0.1.82
Add patch to allow gir during cross-build
@Gottox I tested this update against build of gegl-devel and it built fine even during cross-build.

A patch file from https://github.com/void-linux/void-packages/pull/26833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-babl-26833.patch --]
[-- Type: text/x-diff, Size: 2803 bytes --]

From 121533024964ec357e66a7b22c65a0c9b0c40655 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Mon, 30 Nov 2020 10:45:48 -0600
Subject: [PATCH] babl: update to 0.1.82

Add patch to allow gir during cross-build
---
 .../0001-Allow-gir-if-cross-building.patch    | 34 +++++++++++++++++++
 srcpkgs/babl/template                         |  8 ++---
 2 files changed, 38 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch

diff --git a/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
new file mode 100644
index 00000000000..8cf2b52e760
--- /dev/null
+++ b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
@@ -0,0 +1,34 @@
+From 1094a0b738df972bbfabb498c3036c47a8165b5b Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Thu, 10 Dec 2020 15:06:24 -0600
+Subject: [PATCH] Allow cross-building gir
+
+Cross-building with gir built fine on VoidLinux
+should be ok to cross in general
+---
+ meson.build | 8 ++------
+ 1 file changed, 2 insertions(+), 6 deletions(-)
+
+diff --git meson.build meson.build
+index bf0b3eb1d..1ea0e2045 100644
+--- meson.build
++++ meson.build
+@@ -389,13 +389,9 @@ elif get_option('with-docs') == 'false'
+   build_docs = false
+ endif
+ 
+-# Introspection - don't build  by default on cross-build environments
+-if get_option('enable-gir') == 'auto'
+-  build_gir = meson.is_cross_build() ? false : true
++if get_option('enable-gir') == 'true' and g_ir.found()
++	build_gir = true
+ else
+-  build_gir = get_option('enable-gir') == 'true' ? true : false
+-endif
+-if not g_ir.found()
+   build_gir = false
+ endif
+ 
+-- 
+GitLab
+
diff --git a/srcpkgs/babl/template b/srcpkgs/babl/template
index 747bad3e40c..49bc269c9a3 100644
--- a/srcpkgs/babl/template
+++ b/srcpkgs/babl/template
@@ -1,11 +1,11 @@
 # Template file for 'babl'
 pkgname=babl
-version=0.1.78
+version=0.1.82
 revision=1
 build_style=meson
 build_helper=gir
-configure_args="-Dwith-docs=false"
-hostmakedepends="pkg-config vala-devel gobject-introspection"
+configure_args="-Dwith-docs=false -Denable-gir=true"
+hostmakedepends="pkg-config vala-devel"
 makedepends="lcms2-devel"
 short_desc="Dynamic pixel format translation library"
 maintainer="Enno Boland <gottox@voidlinux.org>"
@@ -13,7 +13,7 @@ license="LGPL-3.0-only"
 homepage="http://gegl.org/babl/"
 changelog="https://raw.githubusercontent.com/GNOME/babl/master/NEWS"
 distfiles="https://download.gimp.org/pub/babl/${version%.*}/babl-${version}.tar.xz"
-checksum=17d5493633bff5585d9f375bc4df5925157cd1c70ccd7c22a635be75c172523a
+checksum=c62d93d4ad6774cb8e3231bbbc7f2e61e551e7242d78640d757505ee1a9fadc5
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*|i686*) ;;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
  2020-12-10 21:18 ` [PR PATCH] [Updated] " ndowens
@ 2020-12-10 21:46 ` ndowens
  2020-12-10 22:07 ` ndowens
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ndowens @ 2020-12-10 21:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 451 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages babl
https://github.com/void-linux/void-packages/pull/26833

babl: update to 0.1.82
Add patch to allow gir during cross-build
@Gottox I tested this update against build of gegl-devel and it built fine even during cross-build.

A patch file from https://github.com/void-linux/void-packages/pull/26833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-babl-26833.patch --]
[-- Type: text/x-diff, Size: 2769 bytes --]

From ed65fd5d7b7e0c18dd9e0cda202b094d18428df3 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Mon, 30 Nov 2020 10:45:48 -0600
Subject: [PATCH] babl: update to 0.1.82

Add patch to allow gir during cross-build
---
 .../0001-Allow-gir-if-cross-building.patch    | 33 +++++++++++++++++++
 srcpkgs/babl/template                         |  8 ++---
 2 files changed, 37 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch

diff --git a/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
new file mode 100644
index 00000000000..6bfd4609806
--- /dev/null
+++ b/srcpkgs/babl/patches/0001-Allow-gir-if-cross-building.patch
@@ -0,0 +1,33 @@
+From 1094a0b738df972bbfabb498c3036c47a8165b5b Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Thu, 10 Dec 2020 15:06:24 -0600
+Subject: [PATCH] Allow cross-building gir
+
+Cross-building with gir built fine on VoidLinux
+---
+ meson.build | 8 ++------
+ 1 file changed, 2 insertions(+), 6 deletions(-)
+
+diff --git meson.build meson.build
+index bf0b3eb1d..1ea0e2045 100644
+--- meson.build
++++ meson.build
+@@ -389,13 +389,9 @@ elif get_option('with-docs') == 'false'
+   build_docs = false
+ endif
+ 
+-# Introspection - don't build  by default on cross-build environments
+-if get_option('enable-gir') == 'auto'
+-  build_gir = meson.is_cross_build() ? false : true
++if get_option('enable-gir') == 'true' and g_ir.found()
++	build_gir = true
+ else
+-  build_gir = get_option('enable-gir') == 'true' ? true : false
+-endif
+-if not g_ir.found()
+   build_gir = false
+ endif
+ 
+-- 
+GitLab
+
diff --git a/srcpkgs/babl/template b/srcpkgs/babl/template
index 747bad3e40c..49bc269c9a3 100644
--- a/srcpkgs/babl/template
+++ b/srcpkgs/babl/template
@@ -1,11 +1,11 @@
 # Template file for 'babl'
 pkgname=babl
-version=0.1.78
+version=0.1.82
 revision=1
 build_style=meson
 build_helper=gir
-configure_args="-Dwith-docs=false"
-hostmakedepends="pkg-config vala-devel gobject-introspection"
+configure_args="-Dwith-docs=false -Denable-gir=true"
+hostmakedepends="pkg-config vala-devel"
 makedepends="lcms2-devel"
 short_desc="Dynamic pixel format translation library"
 maintainer="Enno Boland <gottox@voidlinux.org>"
@@ -13,7 +13,7 @@ license="LGPL-3.0-only"
 homepage="http://gegl.org/babl/"
 changelog="https://raw.githubusercontent.com/GNOME/babl/master/NEWS"
 distfiles="https://download.gimp.org/pub/babl/${version%.*}/babl-${version}.tar.xz"
-checksum=17d5493633bff5585d9f375bc4df5925157cd1c70ccd7c22a635be75c172523a
+checksum=c62d93d4ad6774cb8e3231bbbc7f2e61e551e7242d78640d757505ee1a9fadc5
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*|i686*) ;;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
  2020-12-10 21:18 ` [PR PATCH] [Updated] " ndowens
  2020-12-10 21:46 ` ndowens
@ 2020-12-10 22:07 ` ndowens
  2020-12-12  7:08 ` ericonr
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ndowens @ 2020-12-10 22:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 451 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages babl
https://github.com/void-linux/void-packages/pull/26833

babl: update to 0.1.82
Add patch to allow gir during cross-build
@Gottox I tested this update against build of gegl-devel and it built fine even during cross-build.

A patch file from https://github.com/void-linux/void-packages/pull/26833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-babl-26833.patch --]
[-- Type: text/x-diff, Size: 1338 bytes --]

From 8f6285b9d3c296f97011af204b148fac5a6395ca Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Mon, 30 Nov 2020 10:45:48 -0600
Subject: [PATCH] babl: update to 0.1.82

---
 srcpkgs/babl/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/babl/template b/srcpkgs/babl/template
index 747bad3e40c..49bc269c9a3 100644
--- a/srcpkgs/babl/template
+++ b/srcpkgs/babl/template
@@ -1,11 +1,11 @@
 # Template file for 'babl'
 pkgname=babl
-version=0.1.78
+version=0.1.82
 revision=1
 build_style=meson
 build_helper=gir
-configure_args="-Dwith-docs=false"
-hostmakedepends="pkg-config vala-devel gobject-introspection"
+configure_args="-Dwith-docs=false -Denable-gir=true"
+hostmakedepends="pkg-config vala-devel"
 makedepends="lcms2-devel"
 short_desc="Dynamic pixel format translation library"
 maintainer="Enno Boland <gottox@voidlinux.org>"
@@ -13,7 +13,7 @@ license="LGPL-3.0-only"
 homepage="http://gegl.org/babl/"
 changelog="https://raw.githubusercontent.com/GNOME/babl/master/NEWS"
 distfiles="https://download.gimp.org/pub/babl/${version%.*}/babl-${version}.tar.xz"
-checksum=17d5493633bff5585d9f375bc4df5925157cd1c70ccd7c22a635be75c172523a
+checksum=c62d93d4ad6774cb8e3231bbbc7f2e61e551e7242d78640d757505ee1a9fadc5
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*|i686*) ;;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (2 preceding siblings ...)
  2020-12-10 22:07 ` ndowens
@ 2020-12-12  7:08 ` ericonr
  2020-12-12  9:33 ` ndowens
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2020-12-12  7:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 285 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-743715808

Comment:
On native it can find vapigen, but that fails for cross. Do you know if that can be solved?

> Run-time dependency vapigen found: YES 0.50.0


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (3 preceding siblings ...)
  2020-12-12  7:08 ` ericonr
@ 2020-12-12  9:33 ` ndowens
  2020-12-21 21:26 ` biopsin
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ndowens @ 2020-12-12  9:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

New comment by ndowens on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-743730119

Comment:
> On native it can find vapigen, but that fails for cross. Do you know if that can be solved?
> 
> > Run-time dependency vapigen found: YES 0.50.0

Unsure but will try 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (4 preceding siblings ...)
  2020-12-12  9:33 ` ndowens
@ 2020-12-21 21:26 ` biopsin
  2020-12-21 21:27 ` biopsin
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: biopsin @ 2020-12-21 21:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-749203873

Comment:
Only way to satisfy "Run-time dependency vapigen found: YES 0.50.0" when cross build 
is adding vala-devel to makedepends too

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (5 preceding siblings ...)
  2020-12-21 21:26 ` biopsin
@ 2020-12-21 21:27 ` biopsin
  2020-12-21 21:51 ` biopsin
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: biopsin @ 2020-12-21 21:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-749203873

Comment:
Only way to satisfy "Run-time dependency vapigen found: YES 0.50.0" when cross build 
is adding vala-devel to makedepends too

Edit : bump babl to 0.1.84

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (6 preceding siblings ...)
  2020-12-21 21:27 ` biopsin
@ 2020-12-21 21:51 ` biopsin
  2021-02-01  3:54 ` [PR PATCH] [Closed]: " ericonr
  2021-02-01  3:54 ` ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: biopsin @ 2020-12-21 21:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 372 bytes --]

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-749203873

Comment:
Only way to satisfy "Run-time dependency vapigen found: YES 0.50.0" when cross build 
is adding vala-devel to makedepends too
```

if [ "$CROSS_BUILD" ]; then
	makedepends+=" vala-devel" 
fi
```

Edit : bump babl to 0.1.84

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (8 preceding siblings ...)
  2021-02-01  3:54 ` [PR PATCH] [Closed]: " ericonr
@ 2021-02-01  3:54 ` ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-02-01  3:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 175 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26833#issuecomment-770546100

Comment:
Ok, I'm taking this over in #27511

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Closed]: babl: update to 0.1.82
  2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
                   ` (7 preceding siblings ...)
  2020-12-21 21:51 ` biopsin
@ 2021-02-01  3:54 ` ericonr
  2021-02-01  3:54 ` ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-02-01  3:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 255 bytes --]

There's a closed pull request on the void-packages repository

babl: update to 0.1.82
https://github.com/void-linux/void-packages/pull/26833

Description:
@Gottox I tested this update against build of gegl-devel and it built fine even during cross-build.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-02-01  3:54 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-30 16:45 [PR PATCH] babl: update to 0.1.82 ndowens
2020-12-10 21:18 ` [PR PATCH] [Updated] " ndowens
2020-12-10 21:46 ` ndowens
2020-12-10 22:07 ` ndowens
2020-12-12  7:08 ` ericonr
2020-12-12  9:33 ` ndowens
2020-12-21 21:26 ` biopsin
2020-12-21 21:27 ` biopsin
2020-12-21 21:51 ` biopsin
2021-02-01  3:54 ` [PR PATCH] [Closed]: " ericonr
2021-02-01  3:54 ` ericonr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).