Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] flowblade: fix launch process
@ 2019-07-07  2:00 voidlinux-github
  2019-07-07 17:04 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: voidlinux-github @ 2019-07-07  2:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jorgenatz/void-packages flowblade_fix
https://github.com/void-linux/void-packages/pull/12854

flowblade: fix launch process
Fix module path-checking to ensure that flowblade launches.

On systems where the flowblade executable is placed in /bin or /usr/local/bin, flowblade improperly detects module inclusion directories and fails to launch. This patch remedies that.

I did not submit this change upstream because development is temporarily suspended.

Thank you for any reply.

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

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

From 5a4236baf5cf24db3bb670e09e87e3a99eaca63a Mon Sep 17 00:00:00 2001
From: Jorge <jorgenatzdev@gmail.com>
Date: Sat, 6 Jul 2019 19:38:52 -0600
Subject: [PATCH] flowblade: fix launch process

Fix module path-checking to ensure that flowblade launches.
---
 .../flowblade/patches/00-add-bin-directories.patch    | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 srcpkgs/flowblade/patches/00-add-bin-directories.patch

diff --git a/srcpkgs/flowblade/patches/00-add-bin-directories.patch b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
new file mode 100644
index 00000000000..b73fe73df61
--- /dev/null
+++ b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
@@ -0,0 +1,11 @@
+--- flowblade-trunk/flowblade	2019-02-04 02:29:07.000000000 -0700
++++ flowblade-trunk/flowblade	2019-07-06 17:48:47.295155396 -0600
+@@ -34,7 +34,7 @@ print "Launch script dir:", launch_dir
+ 
+ # Update sys.path to include modules
+ # When running on distro
+-if launch_dir == "/usr/bin":
++if launch_dir in {"/usr/bin", "/bin", "/usr/local/bin"}:
+     print "Running from installation..."
+     modules_path = "/usr/share/flowblade/Flowblade"
+     if not os.path.isdir(modules_path):

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

* Re: [PR PATCH] [Updated] flowblade: fix launch process
  2019-07-07  2:00 [PR PATCH] flowblade: fix launch process voidlinux-github
  2019-07-07 17:04 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-07-07 17:04 ` voidlinux-github
  2019-07-07 17:05 ` voidlinux-github
  2019-07-08 18:55 ` [PR PATCH] [Merged]: " voidlinux-github
  3 siblings, 0 replies; 5+ messages in thread
From: voidlinux-github @ 2019-07-07 17:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jorgenatz/void-packages flowblade_fix
https://github.com/void-linux/void-packages/pull/12854

flowblade: fix launch process
Fix module path-checking to ensure that flowblade launches.

On systems where the flowblade executable is placed in /bin or /usr/local/bin, flowblade improperly detects module inclusion directories and fails to launch. This patch remedies that.

I did not submit this change upstream because development is temporarily suspended.

Thank you for any reply.

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

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

From 1a86235aa22462670a8f2d514b641c6ce9cb82b8 Mon Sep 17 00:00:00 2001
From: Jorge <jorgenatzdev@gmail.com>
Date: Sat, 6 Jul 2019 19:38:52 -0600
Subject: [PATCH] flowblade: fix launch process

Fix module path-checking to ensure that flowblade launches.
---
 .../flowblade/patches/00-add-bin-directories.patch    | 11 +++++++++++
 srcpkgs/flowblade/template                            |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/flowblade/patches/00-add-bin-directories.patch

diff --git a/srcpkgs/flowblade/patches/00-add-bin-directories.patch b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
new file mode 100644
index 00000000000..b73fe73df61
--- /dev/null
+++ b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
@@ -0,0 +1,11 @@
+--- flowblade-trunk/flowblade	2019-02-04 02:29:07.000000000 -0700
++++ flowblade-trunk/flowblade	2019-07-06 17:48:47.295155396 -0600
+@@ -34,7 +34,7 @@ print "Launch script dir:", launch_dir
+ 
+ # Update sys.path to include modules
+ # When running on distro
+-if launch_dir == "/usr/bin":
++if launch_dir in {"/usr/bin", "/bin", "/usr/local/bin"}:
+     print "Running from installation..."
+     modules_path = "/usr/share/flowblade/Flowblade"
+     if not os.path.isdir(modules_path):
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index 814e241ffb0..4e8e509f9f9 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -1,7 +1,7 @@
 # Template file for 'flowblade'
 pkgname=flowblade
 version=2.0
-revision=1
+revision=2
 archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python2-module

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

* Re: [PR PATCH] [Updated] flowblade: fix launch process
  2019-07-07  2:00 [PR PATCH] flowblade: fix launch process voidlinux-github
@ 2019-07-07 17:04 ` voidlinux-github
  2019-07-07 17:04 ` voidlinux-github
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: voidlinux-github @ 2019-07-07 17:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jorgenatz/void-packages flowblade_fix
https://github.com/void-linux/void-packages/pull/12854

flowblade: fix launch process
Fix module path-checking to ensure that flowblade launches.

On systems where the flowblade executable is placed in /bin or /usr/local/bin, flowblade improperly detects module inclusion directories and fails to launch. This patch remedies that.

I did not submit this change upstream because development is temporarily suspended.

Thank you for any reply.

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

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

From 1a86235aa22462670a8f2d514b641c6ce9cb82b8 Mon Sep 17 00:00:00 2001
From: Jorge <jorgenatzdev@gmail.com>
Date: Sat, 6 Jul 2019 19:38:52 -0600
Subject: [PATCH] flowblade: fix launch process

Fix module path-checking to ensure that flowblade launches.
---
 .../flowblade/patches/00-add-bin-directories.patch    | 11 +++++++++++
 srcpkgs/flowblade/template                            |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/flowblade/patches/00-add-bin-directories.patch

diff --git a/srcpkgs/flowblade/patches/00-add-bin-directories.patch b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
new file mode 100644
index 00000000000..b73fe73df61
--- /dev/null
+++ b/srcpkgs/flowblade/patches/00-add-bin-directories.patch
@@ -0,0 +1,11 @@
+--- flowblade-trunk/flowblade	2019-02-04 02:29:07.000000000 -0700
++++ flowblade-trunk/flowblade	2019-07-06 17:48:47.295155396 -0600
+@@ -34,7 +34,7 @@ print "Launch script dir:", launch_dir
+ 
+ # Update sys.path to include modules
+ # When running on distro
+-if launch_dir == "/usr/bin":
++if launch_dir in {"/usr/bin", "/bin", "/usr/local/bin"}:
+     print "Running from installation..."
+     modules_path = "/usr/share/flowblade/Flowblade"
+     if not os.path.isdir(modules_path):
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index 814e241ffb0..4e8e509f9f9 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -1,7 +1,7 @@
 # Template file for 'flowblade'
 pkgname=flowblade
 version=2.0
-revision=1
+revision=2
 archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python2-module

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

* Re: flowblade: fix launch process
  2019-07-07  2:00 [PR PATCH] flowblade: fix launch process voidlinux-github
  2019-07-07 17:04 ` [PR PATCH] [Updated] " voidlinux-github
  2019-07-07 17:04 ` voidlinux-github
@ 2019-07-07 17:05 ` voidlinux-github
  2019-07-08 18:55 ` [PR PATCH] [Merged]: " voidlinux-github
  3 siblings, 0 replies; 5+ messages in thread
From: voidlinux-github @ 2019-07-07 17:05 UTC (permalink / raw)
  To: ml

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

New comment by jorgenatz on void-packages repository

https://github.com/void-linux/void-packages/pull/12854#issuecomment-509015530
Comment:
Sorry about that. Is there anything else I missed?

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

* Re: [PR PATCH] [Merged]: flowblade: fix launch process
  2019-07-07  2:00 [PR PATCH] flowblade: fix launch process voidlinux-github
                   ` (2 preceding siblings ...)
  2019-07-07 17:05 ` voidlinux-github
@ 2019-07-08 18:55 ` voidlinux-github
  3 siblings, 0 replies; 5+ messages in thread
From: voidlinux-github @ 2019-07-08 18:55 UTC (permalink / raw)
  To: ml

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

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

flowblade: fix launch process
https://github.com/void-linux/void-packages/pull/12854
Description: Fix module path-checking to ensure that flowblade launches.

On systems where the flowblade executable is placed in /bin or /usr/local/bin, flowblade improperly detects module inclusion directories and fails to launch. This patch remedies that.

I did not submit this change upstream because development is temporarily suspended.

Thank you for any reply.

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

end of thread, other threads:[~2019-07-08 18:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-07  2:00 [PR PATCH] flowblade: fix launch process voidlinux-github
2019-07-07 17:04 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-07 17:04 ` voidlinux-github
2019-07-07 17:05 ` voidlinux-github
2019-07-08 18:55 ` [PR PATCH] [Merged]: " voidlinux-github

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).