Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] valabind: update to 1.7.2.
@ 2020-12-01 20:45 ndowens
  2020-12-01 20:50 ` [PR PATCH] [Updated] " ndowens
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ndowens @ 2020-12-01 20:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ndowens/void-packages valabind
https://github.com/void-linux/void-packages/pull/26874

valabind: update to 1.7.2.
0.48 vala patch was implemented in this version.
Re-write 0.50 vala patch so it applies cleanly

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

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

From 3bd527c417467194f43938ab1c8e322e43053397 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 1 Dec 2020 14:34:23 -0600
Subject: [PATCH] valabind: update to 1.7.2.

---
 ...cross.patch => 0001-Fix-cross-build.patch} | 14 ++++++
 .../valabind/patches/0002-vala-0.50-fix.patch | 25 +++++++++++
 srcpkgs/valabind/patches/vala-048.patch       | 44 -------------------
 srcpkgs/valabind/patches/vala-050.patch       | 25 -----------
 srcpkgs/valabind/template                     |  6 +--
 5 files changed, 42 insertions(+), 72 deletions(-)
 rename srcpkgs/valabind/patches/{cross.patch => 0001-Fix-cross-build.patch} (61%)
 create mode 100644 srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-048.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-050.patch

diff --git a/srcpkgs/valabind/patches/cross.patch b/srcpkgs/valabind/patches/0001-Fix-cross-build.patch
similarity index 61%
rename from srcpkgs/valabind/patches/cross.patch
rename to srcpkgs/valabind/patches/0001-Fix-cross-build.patch
index 021c1b556bd..5378e252d93 100644
--- a/srcpkgs/valabind/patches/cross.patch
+++ b/srcpkgs/valabind/patches/0001-Fix-cross-build.patch
@@ -1,3 +1,14 @@
+From 4c4bb3d48e88b52e3d86b0df5d54a4bdb4aeb5d4 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Tue, 1 Dec 2020 14:38:46 -0600
+Subject: [PATCH 1/2] Fix cross build
+
+---
+ meson.build | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git meson.build meson.build
+index 45944a3..f255700 100644
 --- meson.build
 +++ meson.build
 @@ -26,7 +26,8 @@ libvala_dep = dependency('libvala-@0@'.format(libvala_version))
@@ -10,3 +21,6 @@
  
  executable(
    'valabind',
+-- 
+2.29.2
+
diff --git a/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
new file mode 100644
index 00000000000..210bf71e455
--- /dev/null
+++ b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
@@ -0,0 +1,25 @@
+From 70e8b9f2bc718eeb5642a6680fd0525baaadc6c1 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Tue, 1 Dec 2020 14:40:31 -0600
+Subject: [PATCH 2/2] vala-0.50 fix
+
+---
+ valabindwriter.vala | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git valabindwriter.vala valabindwriter.vala
+index 5b71abd..d9e36fd 100644
+--- valabindwriter.vala
++++ valabindwriter.vala
+@@ -36,7 +36,7 @@ public class ValabindWriter : CodeVisitor {
+ #if VALA_0_50
+ 		// required to avoid ugly runtime errors
+ #else
+-		context.profile = Profile.GOBJECT;
++	context.set_target_profile(Profile.GOBJECT);
+ #endif
+ 	}
+ 
+-- 
+2.29.2
+
diff --git a/srcpkgs/valabind/patches/vala-048.patch b/srcpkgs/valabind/patches/vala-048.patch
deleted file mode 100644
index ffe2e087007..00000000000
--- a/srcpkgs/valabind/patches/vala-048.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 9d4fb181e24346a8c5d570290fa9892ce10c8c3b Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Thu, 6 Feb 2020 09:45:17 +0100
-Subject: [PATCH] Fix build with Vala 0.48
-
----
- gowriter.vala      | 4 ++++
- nodeffiwriter.vala | 5 +++++
- 2 files changed, 9 insertions(+)
-
-diff --git a/gowriter.vala b/gowriter.vala
-index 56d9fbe..0fb09a6 100644
---- gowriter.vala
-+++ gowriter.vala
-@@ -214,7 +214,11 @@ public class GoNamer {
- 	}
- 
- 	private string mangle_datatype(DataType d) {
-+#if VALA_0_48
-+		string ret = d.type_symbol.name;  // i think should unify with get_type_declaration?
-+#else
- 		string ret = d.data_type.name;  // i think should unify with get_type_declaration?
-+#endif
- 		if (d.get_type_arguments().size > 0) {
- 			foreach(var dd in d.get_type_arguments()) {
- 				ret += "_";
-diff --git a/nodeffiwriter.vala b/nodeffiwriter.vala
-index 84fede0..eba6329 100644
---- nodeffiwriter.vala
-+++ nodeffiwriter.vala
-@@ -85,8 +85,13 @@ public class NodeFFIWriter : ValabindWriter {
- 
- 		string _type = type.to_string ();
- 		string local_ns_pfx = ns_pfx;
-+#if VALA_0_48
-+		if (type.type_symbol != null && type.type_symbol.parent_symbol is Namespace) {
-+			Namespace local_ns = (Namespace)type.type_symbol.parent_symbol;
-+#else
- 		if (type.data_type != null && type.data_type.parent_symbol is Namespace) {
- 			Namespace local_ns = (Namespace)type.data_type.parent_symbol;
-+#endif
- 			if (use_namespace(local_ns))
- 				local_ns_pfx = local_ns.get_full_name()+".";
- 		}
diff --git a/srcpkgs/valabind/patches/vala-050.patch b/srcpkgs/valabind/patches/vala-050.patch
deleted file mode 100644
index bd7c6a74345..00000000000
--- a/srcpkgs/valabind/patches/vala-050.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f942315402e3fc38def14a974dd5b210e5d2c38d Mon Sep 17 00:00:00 2001
-From: Daniel Kolesa <daniel@octaforge.org>
-Date: Wed, 16 Sep 2020 20:39:29 +0200
-Subject: [PATCH] fix with vala-0.50
-
----
- valabindwriter.vala | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git valabindwriter.vala valabindwriter.vala
-index 165cdf5..c793c9f 100644
---- valabindwriter.vala
-+++ valabindwriter.vala
-@@ -33,7 +33,7 @@ public class ValabindWriter : CodeVisitor {
- 		if (glibmode)
- 			context.add_define ("GOBJECT");
- 		// required to avoid ugly runtime errors
--		context.profile = Profile.GOBJECT;
-+		context.set_target_profile(Profile.GOBJECT);
- 	}
- 
- 	public void parse () {
--- 
-2.28.0
-
diff --git a/srcpkgs/valabind/template b/srcpkgs/valabind/template
index 2bf0df336e3..d2af2f9be15 100644
--- a/srcpkgs/valabind/template
+++ b/srcpkgs/valabind/template
@@ -1,7 +1,7 @@
 # Template file for 'valabind'
 pkgname=valabind
-version=1.7.1
-revision=6
+version=1.7.2
+revision=1
 build_style=meson
 hostmakedepends="pkg-config vala-devel git"
 makedepends="vala-devel glib-devel"
@@ -11,4 +11,4 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://radare.org/r/"
 distfiles="https://github.com/radare/valabind/archive/${version}.tar.gz"
-checksum=b463b18419de656e218855a2f30a71051f03a9c4540254b4ceaea475fb79102e
+checksum=643c1ddc85e31de975df361a20e3f39d385f5ced0e50483c6e96b33bb3d32261

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

* Re: [PR PATCH] [Updated] valabind: update to 1.7.2.
  2020-12-01 20:45 [PR PATCH] valabind: update to 1.7.2 ndowens
@ 2020-12-01 20:50 ` ndowens
  2020-12-01 20:53 ` ndowens
  2020-12-20  3:52 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ndowens @ 2020-12-01 20:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ndowens/void-packages valabind
https://github.com/void-linux/void-packages/pull/26874

valabind: update to 1.7.2.
0.48 vala patch was implemented in this version.
Re-write 0.50 vala patch so it applies cleanly

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

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

From ca69f823b56d89ba36213888172dc1768606d2ca Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 1 Dec 2020 14:34:23 -0600
Subject: [PATCH] valabind: update to 1.7.2.

---
 ...cross.patch => 0001-Fix-cross-build.patch} | 14 ++++++
 .../valabind/patches/0002-vala-0.50-fix.patch | 25 +++++++++++
 srcpkgs/valabind/patches/vala-048.patch       | 44 -------------------
 srcpkgs/valabind/patches/vala-050.patch       | 25 -----------
 srcpkgs/valabind/template                     |  6 +--
 5 files changed, 42 insertions(+), 72 deletions(-)
 rename srcpkgs/valabind/patches/{cross.patch => 0001-Fix-cross-build.patch} (61%)
 create mode 100644 srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-048.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-050.patch

diff --git a/srcpkgs/valabind/patches/cross.patch b/srcpkgs/valabind/patches/0001-Fix-cross-build.patch
similarity index 61%
rename from srcpkgs/valabind/patches/cross.patch
rename to srcpkgs/valabind/patches/0001-Fix-cross-build.patch
index 021c1b556bd..1a35dd0b97d 100644
--- a/srcpkgs/valabind/patches/cross.patch
+++ b/srcpkgs/valabind/patches/0001-Fix-cross-build.patch
@@ -1,3 +1,14 @@
+From 27945a63ebc5b8d19f710744dd7b40383341ec44 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Tue, 1 Dec 2020 14:50:00 -0600
+Subject: [PATCH] Fix cross build
+
+---
+ meson.build | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git meson.build meson.build
+index 45944a3..f255700 100644
 --- meson.build
 +++ meson.build
 @@ -26,7 +26,8 @@ libvala_dep = dependency('libvala-@0@'.format(libvala_version))
@@ -10,3 +21,6 @@
  
  executable(
    'valabind',
+-- 
+2.29.2
+
diff --git a/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
new file mode 100644
index 00000000000..fa99e397319
--- /dev/null
+++ b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
@@ -0,0 +1,25 @@
+From 70e8b9f2bc718eeb5642a6680fd0525baaadc6c1 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Tue, 1 Dec 2020 14:40:31 -0600
+Subject: vala-0.50 fix
+
+---
+ valabindwriter.vala | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git valabindwriter.vala valabindwriter.vala
+index 5b71abd..d9e36fd 100644
+--- valabindwriter.vala
++++ valabindwriter.vala
+@@ -36,7 +36,7 @@ public class ValabindWriter : CodeVisitor {
+ #if VALA_0_50
+ 		// required to avoid ugly runtime errors
+ #else
+-		context.profile = Profile.GOBJECT;
++	context.set_target_profile(Profile.GOBJECT);
+ #endif
+ 	}
+ 
+-- 
+2.29.2
+
diff --git a/srcpkgs/valabind/patches/vala-048.patch b/srcpkgs/valabind/patches/vala-048.patch
deleted file mode 100644
index ffe2e087007..00000000000
--- a/srcpkgs/valabind/patches/vala-048.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 9d4fb181e24346a8c5d570290fa9892ce10c8c3b Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Thu, 6 Feb 2020 09:45:17 +0100
-Subject: [PATCH] Fix build with Vala 0.48
-
----
- gowriter.vala      | 4 ++++
- nodeffiwriter.vala | 5 +++++
- 2 files changed, 9 insertions(+)
-
-diff --git a/gowriter.vala b/gowriter.vala
-index 56d9fbe..0fb09a6 100644
---- gowriter.vala
-+++ gowriter.vala
-@@ -214,7 +214,11 @@ public class GoNamer {
- 	}
- 
- 	private string mangle_datatype(DataType d) {
-+#if VALA_0_48
-+		string ret = d.type_symbol.name;  // i think should unify with get_type_declaration?
-+#else
- 		string ret = d.data_type.name;  // i think should unify with get_type_declaration?
-+#endif
- 		if (d.get_type_arguments().size > 0) {
- 			foreach(var dd in d.get_type_arguments()) {
- 				ret += "_";
-diff --git a/nodeffiwriter.vala b/nodeffiwriter.vala
-index 84fede0..eba6329 100644
---- nodeffiwriter.vala
-+++ nodeffiwriter.vala
-@@ -85,8 +85,13 @@ public class NodeFFIWriter : ValabindWriter {
- 
- 		string _type = type.to_string ();
- 		string local_ns_pfx = ns_pfx;
-+#if VALA_0_48
-+		if (type.type_symbol != null && type.type_symbol.parent_symbol is Namespace) {
-+			Namespace local_ns = (Namespace)type.type_symbol.parent_symbol;
-+#else
- 		if (type.data_type != null && type.data_type.parent_symbol is Namespace) {
- 			Namespace local_ns = (Namespace)type.data_type.parent_symbol;
-+#endif
- 			if (use_namespace(local_ns))
- 				local_ns_pfx = local_ns.get_full_name()+".";
- 		}
diff --git a/srcpkgs/valabind/patches/vala-050.patch b/srcpkgs/valabind/patches/vala-050.patch
deleted file mode 100644
index bd7c6a74345..00000000000
--- a/srcpkgs/valabind/patches/vala-050.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f942315402e3fc38def14a974dd5b210e5d2c38d Mon Sep 17 00:00:00 2001
-From: Daniel Kolesa <daniel@octaforge.org>
-Date: Wed, 16 Sep 2020 20:39:29 +0200
-Subject: [PATCH] fix with vala-0.50
-
----
- valabindwriter.vala | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git valabindwriter.vala valabindwriter.vala
-index 165cdf5..c793c9f 100644
---- valabindwriter.vala
-+++ valabindwriter.vala
-@@ -33,7 +33,7 @@ public class ValabindWriter : CodeVisitor {
- 		if (glibmode)
- 			context.add_define ("GOBJECT");
- 		// required to avoid ugly runtime errors
--		context.profile = Profile.GOBJECT;
-+		context.set_target_profile(Profile.GOBJECT);
- 	}
- 
- 	public void parse () {
--- 
-2.28.0
-
diff --git a/srcpkgs/valabind/template b/srcpkgs/valabind/template
index 2bf0df336e3..d2af2f9be15 100644
--- a/srcpkgs/valabind/template
+++ b/srcpkgs/valabind/template
@@ -1,7 +1,7 @@
 # Template file for 'valabind'
 pkgname=valabind
-version=1.7.1
-revision=6
+version=1.7.2
+revision=1
 build_style=meson
 hostmakedepends="pkg-config vala-devel git"
 makedepends="vala-devel glib-devel"
@@ -11,4 +11,4 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://radare.org/r/"
 distfiles="https://github.com/radare/valabind/archive/${version}.tar.gz"
-checksum=b463b18419de656e218855a2f30a71051f03a9c4540254b4ceaea475fb79102e
+checksum=643c1ddc85e31de975df361a20e3f39d385f5ced0e50483c6e96b33bb3d32261

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

* Re: [PR PATCH] [Updated] valabind: update to 1.7.2.
  2020-12-01 20:45 [PR PATCH] valabind: update to 1.7.2 ndowens
  2020-12-01 20:50 ` [PR PATCH] [Updated] " ndowens
@ 2020-12-01 20:53 ` ndowens
  2020-12-20  3:52 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ndowens @ 2020-12-01 20:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ndowens/void-packages valabind
https://github.com/void-linux/void-packages/pull/26874

valabind: update to 1.7.2.
0.48 vala patch was implemented in this version.
Re-write 0.50 vala patch so it applies cleanly

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

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

From 4f09c3a0ad05ee928201fc5166192e63a96c2351 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 1 Dec 2020 14:34:23 -0600
Subject: [PATCH] valabind: update to 1.7.2.

---
 .../valabind/patches/0002-vala-0.50-fix.patch | 25 +++++++++++
 srcpkgs/valabind/patches/vala-048.patch       | 44 -------------------
 srcpkgs/valabind/patches/vala-050.patch       | 25 -----------
 srcpkgs/valabind/template                     |  6 +--
 4 files changed, 28 insertions(+), 72 deletions(-)
 create mode 100644 srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-048.patch
 delete mode 100644 srcpkgs/valabind/patches/vala-050.patch

diff --git a/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
new file mode 100644
index 00000000000..fa99e397319
--- /dev/null
+++ b/srcpkgs/valabind/patches/0002-vala-0.50-fix.patch
@@ -0,0 +1,25 @@
+From 70e8b9f2bc718eeb5642a6680fd0525baaadc6c1 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens@artixlinux.org>
+Date: Tue, 1 Dec 2020 14:40:31 -0600
+Subject: vala-0.50 fix
+
+---
+ valabindwriter.vala | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git valabindwriter.vala valabindwriter.vala
+index 5b71abd..d9e36fd 100644
+--- valabindwriter.vala
++++ valabindwriter.vala
+@@ -36,7 +36,7 @@ public class ValabindWriter : CodeVisitor {
+ #if VALA_0_50
+ 		// required to avoid ugly runtime errors
+ #else
+-		context.profile = Profile.GOBJECT;
++	context.set_target_profile(Profile.GOBJECT);
+ #endif
+ 	}
+ 
+-- 
+2.29.2
+
diff --git a/srcpkgs/valabind/patches/vala-048.patch b/srcpkgs/valabind/patches/vala-048.patch
deleted file mode 100644
index ffe2e087007..00000000000
--- a/srcpkgs/valabind/patches/vala-048.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 9d4fb181e24346a8c5d570290fa9892ce10c8c3b Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Thu, 6 Feb 2020 09:45:17 +0100
-Subject: [PATCH] Fix build with Vala 0.48
-
----
- gowriter.vala      | 4 ++++
- nodeffiwriter.vala | 5 +++++
- 2 files changed, 9 insertions(+)
-
-diff --git a/gowriter.vala b/gowriter.vala
-index 56d9fbe..0fb09a6 100644
---- gowriter.vala
-+++ gowriter.vala
-@@ -214,7 +214,11 @@ public class GoNamer {
- 	}
- 
- 	private string mangle_datatype(DataType d) {
-+#if VALA_0_48
-+		string ret = d.type_symbol.name;  // i think should unify with get_type_declaration?
-+#else
- 		string ret = d.data_type.name;  // i think should unify with get_type_declaration?
-+#endif
- 		if (d.get_type_arguments().size > 0) {
- 			foreach(var dd in d.get_type_arguments()) {
- 				ret += "_";
-diff --git a/nodeffiwriter.vala b/nodeffiwriter.vala
-index 84fede0..eba6329 100644
---- nodeffiwriter.vala
-+++ nodeffiwriter.vala
-@@ -85,8 +85,13 @@ public class NodeFFIWriter : ValabindWriter {
- 
- 		string _type = type.to_string ();
- 		string local_ns_pfx = ns_pfx;
-+#if VALA_0_48
-+		if (type.type_symbol != null && type.type_symbol.parent_symbol is Namespace) {
-+			Namespace local_ns = (Namespace)type.type_symbol.parent_symbol;
-+#else
- 		if (type.data_type != null && type.data_type.parent_symbol is Namespace) {
- 			Namespace local_ns = (Namespace)type.data_type.parent_symbol;
-+#endif
- 			if (use_namespace(local_ns))
- 				local_ns_pfx = local_ns.get_full_name()+".";
- 		}
diff --git a/srcpkgs/valabind/patches/vala-050.patch b/srcpkgs/valabind/patches/vala-050.patch
deleted file mode 100644
index bd7c6a74345..00000000000
--- a/srcpkgs/valabind/patches/vala-050.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f942315402e3fc38def14a974dd5b210e5d2c38d Mon Sep 17 00:00:00 2001
-From: Daniel Kolesa <daniel@octaforge.org>
-Date: Wed, 16 Sep 2020 20:39:29 +0200
-Subject: [PATCH] fix with vala-0.50
-
----
- valabindwriter.vala | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git valabindwriter.vala valabindwriter.vala
-index 165cdf5..c793c9f 100644
---- valabindwriter.vala
-+++ valabindwriter.vala
-@@ -33,7 +33,7 @@ public class ValabindWriter : CodeVisitor {
- 		if (glibmode)
- 			context.add_define ("GOBJECT");
- 		// required to avoid ugly runtime errors
--		context.profile = Profile.GOBJECT;
-+		context.set_target_profile(Profile.GOBJECT);
- 	}
- 
- 	public void parse () {
--- 
-2.28.0
-
diff --git a/srcpkgs/valabind/template b/srcpkgs/valabind/template
index 2bf0df336e3..d2af2f9be15 100644
--- a/srcpkgs/valabind/template
+++ b/srcpkgs/valabind/template
@@ -1,7 +1,7 @@
 # Template file for 'valabind'
 pkgname=valabind
-version=1.7.1
-revision=6
+version=1.7.2
+revision=1
 build_style=meson
 hostmakedepends="pkg-config vala-devel git"
 makedepends="vala-devel glib-devel"
@@ -11,4 +11,4 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://radare.org/r/"
 distfiles="https://github.com/radare/valabind/archive/${version}.tar.gz"
-checksum=b463b18419de656e218855a2f30a71051f03a9c4540254b4ceaea475fb79102e
+checksum=643c1ddc85e31de975df361a20e3f39d385f5ced0e50483c6e96b33bb3d32261

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

* Re: [PR PATCH] [Merged]: valabind: update to 1.7.2.
  2020-12-01 20:45 [PR PATCH] valabind: update to 1.7.2 ndowens
  2020-12-01 20:50 ` [PR PATCH] [Updated] " ndowens
  2020-12-01 20:53 ` ndowens
@ 2020-12-20  3:52 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2020-12-20  3:52 UTC (permalink / raw)
  To: ml

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

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

valabind: update to 1.7.2.
https://github.com/void-linux/void-packages/pull/26874

Description:
0.48 vala patch was implemented in this version.
Re-write 0.50 vala patch so it applies cleanly

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

end of thread, other threads:[~2020-12-20  3:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-01 20:45 [PR PATCH] valabind: update to 1.7.2 ndowens
2020-12-01 20:50 ` [PR PATCH] [Updated] " ndowens
2020-12-01 20:53 ` ndowens
2020-12-20  3:52 ` [PR PATCH] [Merged]: " 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).