Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add Write from Stylus Labs
@ 2020-08-30 19:58 cat-marin
  2020-08-30 21:01 ` [PR PATCH] [Updated] " cat-marin
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: cat-marin @ 2020-08-30 19:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

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

* Re: [PR PATCH] [Updated] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
@ 2020-08-30 21:01 ` cat-marin
  2020-08-31  1:34 ` fosslinux
                   ` (30 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-30 21:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 1/2] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From f3c71f67a8765971cab2b3a58718df1afdfccb9d Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 17:01:12 -0400
Subject: [PATCH 2/2] Update Write.desktop to reflect proper binary location

---
 srcpkgs/write-styluslabs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index b4192b94016..a40a30f85b6 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -19,6 +19,7 @@ do_install() {
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
+    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
  2020-08-30 21:01 ` [PR PATCH] [Updated] " cat-marin
@ 2020-08-31  1:34 ` fosslinux
  2020-08-31  2:05 ` cat-marin
                   ` (29 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  1:34 UTC (permalink / raw)
  To: ml

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

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683507052

Comment:
Should install to `/usr`.

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
  2020-08-30 21:01 ` [PR PATCH] [Updated] " cat-marin
  2020-08-31  1:34 ` fosslinux
@ 2020-08-31  2:05 ` cat-marin
  2020-08-31  2:50 ` fosslinux
                   ` (28 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  2:05 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683513284

Comment:
> Should install to `/usr`.

It does install to /usr. Or are you talking about $package_location?

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (2 preceding siblings ...)
  2020-08-31  2:05 ` cat-marin
@ 2020-08-31  2:50 ` fosslinux
  2020-08-31  3:28 ` [PR PATCH] [Updated] " cat-marin
                   ` (27 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  2:50 UTC (permalink / raw)
  To: ml

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

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683522459

Comment:
Yeah `$package_location`, everything is being copied to `/opt`, packages should not touch `/opt`; everything should be installed directly to `/usr` only.

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

* Re: [PR PATCH] [Updated] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (3 preceding siblings ...)
  2020-08-31  2:50 ` fosslinux
@ 2020-08-31  3:28 ` cat-marin
  2020-08-31  3:29 ` cat-marin
                   ` (26 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  3:28 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 1/3] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From f3c71f67a8765971cab2b3a58718df1afdfccb9d Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 17:01:12 -0400
Subject: [PATCH 2/3] Update Write.desktop to reflect proper binary location

---
 srcpkgs/write-styluslabs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index b4192b94016..a40a30f85b6 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -19,6 +19,7 @@ do_install() {
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
+    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 747351106d77d2b5176d4ae36d95eaf6db779449 Mon Sep 17 00:00:00 2001
From: cat <cat@wally.lan>
Date: Sun, 30 Aug 2020 23:27:52 -0400
Subject: [PATCH 3/3] Install to /usr instead of /opt

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index a40a30f85b6..078faee6e11 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -15,11 +15,11 @@ repository=nonfree
 restricted=yes
 
 do_install() {
-    local package_location="opt/$pkgname" item
+    local package_location="usr/lib/$pkgname" item
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
-    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (4 preceding siblings ...)
  2020-08-31  3:28 ` [PR PATCH] [Updated] " cat-marin
@ 2020-08-31  3:29 ` cat-marin
  2020-08-31  3:58 ` [PR REVIEW] " fosslinux
                   ` (25 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  3:29 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683530776

Comment:
> Yeah `$package_location`, everything is being copied to `/opt`, packages should not touch `/opt`; everything should be installed directly to `/usr` only.

I've moved it to `/usr/lib/$pkgname`. I can't imagine this would be an issue as the discord package does the same thing, am I correct in assuming this?

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (5 preceding siblings ...)
  2020-08-31  3:29 ` cat-marin
@ 2020-08-31  3:58 ` fosslinux
  2020-08-31  3:58 ` fosslinux
                   ` (24 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  3:58 UTC (permalink / raw)
  To: ml

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

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r479875036

Comment:
Should be identical to the pkgname.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (6 preceding siblings ...)
  2020-08-31  3:58 ` [PR REVIEW] " fosslinux
@ 2020-08-31  3:58 ` fosslinux
  2020-08-31  4:23 ` [PR PATCH] [Updated] " cat-marin
                   ` (23 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  3:58 UTC (permalink / raw)
  To: ml

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

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r479875234

Comment:
Remove `A`, see xlint error

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

* Re: [PR PATCH] [Updated] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (7 preceding siblings ...)
  2020-08-31  3:58 ` fosslinux
@ 2020-08-31  4:23 ` cat-marin
  2020-08-31  4:26 ` cat-marin
                   ` (22 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  4:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 1/4] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From f3c71f67a8765971cab2b3a58718df1afdfccb9d Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 17:01:12 -0400
Subject: [PATCH 2/4] Update Write.desktop to reflect proper binary location

---
 srcpkgs/write-styluslabs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index b4192b94016..a40a30f85b6 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -19,6 +19,7 @@ do_install() {
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
+    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 747351106d77d2b5176d4ae36d95eaf6db779449 Mon Sep 17 00:00:00 2001
From: cat <cat@wally.lan>
Date: Sun, 30 Aug 2020 23:27:52 -0400
Subject: [PATCH 3/4] Install to /usr instead of /opt

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index a40a30f85b6..078faee6e11 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -15,11 +15,11 @@ repository=nonfree
 restricted=yes
 
 do_install() {
-    local package_location="opt/$pkgname" item
+    local package_location="usr/lib/$pkgname" item
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
-    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 9f49c00cce504f7b93931e461485d9321506e885 Mon Sep 17 00:00:00 2001
From: cat-marin <25059103+cat-marin@users.noreply.github.com>
Date: Mon, 31 Aug 2020 00:22:53 -0400
Subject: [PATCH 4/4] Remove A, change template comment

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index 078faee6e11..4399584145a 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -1,11 +1,11 @@
-# Template file for 'Write'
+# Template file for 'write-styluslabs'
 pkgname=write-styluslabs
 version=3.0.0
 revision=1
 archs="x86_64"
 wrksrc="Write"
 depends="SDL2"
-short_desc="A word processor for handwriting"
+short_desc="Word processor for handwriting"
 maintainer="Cat Marin <me@jmarin.xyz>"
 license="custom:Proprietary"
 homepage="http://www.styluslabs.com/"

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

* Re: [PR PATCH] [Updated] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (8 preceding siblings ...)
  2020-08-31  4:23 ` [PR PATCH] [Updated] " cat-marin
@ 2020-08-31  4:26 ` cat-marin
  2020-08-31  4:27 ` cat-marin
                   ` (21 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  4:26 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 1/5] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From f3c71f67a8765971cab2b3a58718df1afdfccb9d Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 17:01:12 -0400
Subject: [PATCH 2/5] Update Write.desktop to reflect proper binary location

---
 srcpkgs/write-styluslabs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index b4192b94016..a40a30f85b6 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -19,6 +19,7 @@ do_install() {
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
+    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 747351106d77d2b5176d4ae36d95eaf6db779449 Mon Sep 17 00:00:00 2001
From: cat <cat@wally.lan>
Date: Sun, 30 Aug 2020 23:27:52 -0400
Subject: [PATCH 3/5] Install to /usr instead of /opt

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index a40a30f85b6..078faee6e11 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -15,11 +15,11 @@ repository=nonfree
 restricted=yes
 
 do_install() {
-    local package_location="opt/$pkgname" item
+    local package_location="usr/lib/$pkgname" item
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
-    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 9f49c00cce504f7b93931e461485d9321506e885 Mon Sep 17 00:00:00 2001
From: cat-marin <25059103+cat-marin@users.noreply.github.com>
Date: Mon, 31 Aug 2020 00:22:53 -0400
Subject: [PATCH 4/5] Remove A, change template comment

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index 078faee6e11..4399584145a 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -1,11 +1,11 @@
-# Template file for 'Write'
+# Template file for 'write-styluslabs'
 pkgname=write-styluslabs
 version=3.0.0
 revision=1
 archs="x86_64"
 wrksrc="Write"
 depends="SDL2"
-short_desc="A word processor for handwriting"
+short_desc="Word processor for handwriting"
 maintainer="Cat Marin <me@jmarin.xyz>"
 license="custom:Proprietary"
 homepage="http://www.styluslabs.com/"

From 826836a7310ae5e8d458d2ea9bd1470005393ba4 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 5/5] Add Write from Stylus Labs

Update Write.desktop to reflect proper binary location

Install to /usr instead of /opt

Remove A, change template comment
---
 srcpkgs/write-styluslabs/template | 32 +++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..4399584145a
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,32 @@
+# Template file for 'write-styluslabs'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="Word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="usr/lib/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (9 preceding siblings ...)
  2020-08-31  4:26 ` cat-marin
@ 2020-08-31  4:27 ` cat-marin
  2020-08-31  4:29 ` [PR PATCH] [Updated] " cat-marin
                   ` (20 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  4:27 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683542141

Comment:
My bad on the last one, I'm not well versed in git. Working on the squash, heh. Also, I cannot find any kind of license on their site. They have a github for other libraries used in the program but there is no kind of EULA that I can find on the project website.

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

* Re: [PR PATCH] [Updated] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (10 preceding siblings ...)
  2020-08-31  4:27 ` cat-marin
@ 2020-08-31  4:29 ` cat-marin
  2020-08-31  6:15 ` fosslinux
                   ` (19 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  4:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cat-marin/void-packages master
https://github.com/void-linux/void-packages/pull/24555

Add Write from Stylus Labs
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

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

From ea84bca1814152542af21904c7e14a36be751d08 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 1/6] Add Write from Stylus Labs

---
 srcpkgs/write-styluslabs/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..b4192b94016
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,31 @@
+# Template file for 'Write'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="A word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="opt/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From f3c71f67a8765971cab2b3a58718df1afdfccb9d Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 17:01:12 -0400
Subject: [PATCH 2/6] Update Write.desktop to reflect proper binary location

---
 srcpkgs/write-styluslabs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index b4192b94016..a40a30f85b6 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -19,6 +19,7 @@ do_install() {
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
+    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 747351106d77d2b5176d4ae36d95eaf6db779449 Mon Sep 17 00:00:00 2001
From: cat <cat@wally.lan>
Date: Sun, 30 Aug 2020 23:27:52 -0400
Subject: [PATCH 3/6] Install to /usr instead of /opt

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index a40a30f85b6..078faee6e11 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -15,11 +15,11 @@ repository=nonfree
 restricted=yes
 
 do_install() {
-    local package_location="opt/$pkgname" item
+    local package_location="usr/lib/$pkgname" item
     vmkdir usr/share/pixmaps
     vcopy Write144x144.png /usr/share/pixmaps
     vmkdir usr/share/applications
-    sed -i 's|/opt/Write/Write|/opt/write-stylus/Write|g' Write.desktop
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
     vcopy Write.desktop /usr/share/applications
     vmkdir ${package_location}
     chmod +x Write

From 9f49c00cce504f7b93931e461485d9321506e885 Mon Sep 17 00:00:00 2001
From: cat-marin <25059103+cat-marin@users.noreply.github.com>
Date: Mon, 31 Aug 2020 00:22:53 -0400
Subject: [PATCH 4/6] Remove A, change template comment

---
 srcpkgs/write-styluslabs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
index 078faee6e11..4399584145a 100644
--- a/srcpkgs/write-styluslabs/template
+++ b/srcpkgs/write-styluslabs/template
@@ -1,11 +1,11 @@
-# Template file for 'Write'
+# Template file for 'write-styluslabs'
 pkgname=write-styluslabs
 version=3.0.0
 revision=1
 archs="x86_64"
 wrksrc="Write"
 depends="SDL2"
-short_desc="A word processor for handwriting"
+short_desc="Word processor for handwriting"
 maintainer="Cat Marin <me@jmarin.xyz>"
 license="custom:Proprietary"
 homepage="http://www.styluslabs.com/"

From 826836a7310ae5e8d458d2ea9bd1470005393ba4 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 5/6] Add Write from Stylus Labs

Update Write.desktop to reflect proper binary location

Install to /usr instead of /opt

Remove A, change template comment
---
 srcpkgs/write-styluslabs/template | 32 +++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..4399584145a
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,32 @@
+# Template file for 'write-styluslabs'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="Word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="usr/lib/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

From 38ff90268614a4416be020d1b23b97be9680f261 Mon Sep 17 00:00:00 2001
From: cat <25059103+cat-marin@users.noreply.github.com>
Date: Sun, 30 Aug 2020 15:56:35 -0400
Subject: [PATCH 6/6] New package: write-styluslabs-3.0.0.

Update Write.desktop to reflect proper binary location

Install to /usr instead of /opt

Remove A, change template comment
---
 srcpkgs/write-styluslabs/template | 32 +++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/write-styluslabs/template

diff --git a/srcpkgs/write-styluslabs/template b/srcpkgs/write-styluslabs/template
new file mode 100644
index 00000000000..4399584145a
--- /dev/null
+++ b/srcpkgs/write-styluslabs/template
@@ -0,0 +1,32 @@
+# Template file for 'write-styluslabs'
+pkgname=write-styluslabs
+version=3.0.0
+revision=1
+archs="x86_64"
+wrksrc="Write"
+depends="SDL2"
+short_desc="Word processor for handwriting"
+maintainer="Cat Marin <me@jmarin.xyz>"
+license="custom:Proprietary"
+homepage="http://www.styluslabs.com/"
+distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
+checksum="ec7c8a59f453574aa272d859e4c926eab48122d4965644871bf7cbe3d4703c40"
+repository=nonfree
+restricted=yes
+
+do_install() {
+    local package_location="usr/lib/$pkgname" item
+    vmkdir usr/share/pixmaps
+    vcopy Write144x144.png /usr/share/pixmaps
+    vmkdir usr/share/applications
+    sed -i "s|/opt/Write/Write|/usr/lib/$pkgname/Write|g" Write.desktop
+    vcopy Write.desktop /usr/share/applications
+    vmkdir ${package_location}
+    chmod +x Write
+    for item in Write DroidSansFallback.ttf Intro.svg Roboto-Regular.ttf; do
+        vcopy "Write" "${package_location}"
+        vcopy "${item}" "${package_location}"
+    done
+    vmkdir usr/bin
+    ln -sfr $DESTDIR/${package_location}/Write $DESTDIR/usr/bin/write-styluslabs
+}

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (11 preceding siblings ...)
  2020-08-31  4:29 ` [PR PATCH] [Updated] " cat-marin
@ 2020-08-31  6:15 ` fosslinux
  2020-08-31  6:23 ` cat-marin
                   ` (18 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  6:15 UTC (permalink / raw)
  To: ml

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

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683581527

Comment:
Hm, seems to be the case... not 100% sure what to do here. `git rebase -i HEAD~20` (or ~however-many-commits-back) should help you.

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (12 preceding siblings ...)
  2020-08-31  6:15 ` fosslinux
@ 2020-08-31  6:23 ` cat-marin
  2020-08-31  6:24 ` fosslinux
                   ` (17 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-08-31  6:23 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683584712

Comment:
Have I not done it already? I did git rebase. Or should it also change the PR name?

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (13 preceding siblings ...)
  2020-08-31  6:23 ` cat-marin
@ 2020-08-31  6:24 ` fosslinux
  2020-09-02 17:00 ` ahesford
                   ` (16 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-08-31  6:24 UTC (permalink / raw)
  To: ml

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

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-683585172

Comment:
No, it has nothing to do with the PR name. `git rebase` on its own will do nothing. Look here, https://github.com/void-linux/void-packages/pull/24555/commits there are still 8 commits in this PR.

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (14 preceding siblings ...)
  2020-08-31  6:24 ` fosslinux
@ 2020-09-02 17:00 ` ahesford
  2020-09-02 23:37 ` ahesford
                   ` (15 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ahesford @ 2020-09-02 17:00 UTC (permalink / raw)
  To: ml

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

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-685868759

Comment:
What you need to do is, assuming the `void-linux/void-packages` remote is called `upstream` in your repo,
```
git pull --rebase upstream master
git rebase -i upstream/master
```
If you are working from your fork alone, you should first do
```
git remote add upstream https://github.com/void-linux/void-packages
```
Then, in the editor that `git rebase -i` opens up, change the `pick` on the first line to `r` for `reword`, and change the `pick` on every subsequent line to `f` for `fixup. When you save and quit your editor, it will open a new editor and allow you to set a message for the first commit; give this the expected "new package" message. Every other commit in your branch will be folded into the first one, so you will reduce this PR to a single commit with the correct message.

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (15 preceding siblings ...)
  2020-09-02 17:00 ` ahesford
@ 2020-09-02 23:37 ` ahesford
  2020-09-02 23:56 ` [PR REVIEW] " ahesford
                   ` (14 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ahesford @ 2020-09-02 23:37 UTC (permalink / raw)
  To: ml

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

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-685868759

Comment:
What you need to do is, assuming the `void-linux/void-packages` remote is called `upstream` in your repo,
```
git pull --rebase upstream master
git rebase -i upstream/master
```
If you are working from your fork alone, you should first do
```
git remote add upstream https://github.com/void-linux/void-packages
```
Then, in the editor that `git rebase -i` opens up, change the `pick` on the first line to `r` for `reword`, and change the `pick` on every subsequent line to `f` for `fixup`. When you save and quit your editor, it will open a new editor and allow you to set a message for the first commit; give this the expected "new package" message. Every other commit in your branch will be folded into the first one, so you will reduce this PR to a single commit with the correct message.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (16 preceding siblings ...)
  2020-09-02 23:37 ` ahesford
@ 2020-09-02 23:56 ` ahesford
  2020-09-02 23:56 ` ahesford
                   ` (13 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ahesford @ 2020-09-02 23:56 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r482604399

Comment:
As the `xlint` CI test shows, a proprietary license declaration requires use of `vlicense` in `do_install` or `post_install` to copy the license text into the package. As it stands, I see no license terms attached to this software. You should identify the license terms and be able to fetch the license text from somewhere so we know what terms govern the software.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (17 preceding siblings ...)
  2020-09-02 23:56 ` [PR REVIEW] " ahesford
@ 2020-09-02 23:56 ` ahesford
  2020-09-03 19:49 ` cat-marin
                   ` (12 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ahesford @ 2020-09-02 23:56 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r482603014

Comment:
The `distfiles` URL is problematic because there is no fixed versioning. Whenever Stylus Labs releases a new version, that link will break the package, so things like package revbumps or local building become impossible. I suggest you try to find a versioned download, or else reach out to Stylus Labs about providing versioned downloads.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (18 preceding siblings ...)
  2020-09-02 23:56 ` ahesford
@ 2020-09-03 19:49 ` cat-marin
  2020-09-03 19:52 ` cat-marin
                   ` (11 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-03 19:49 UTC (permalink / raw)
  To: ml

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

New review comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483216785

Comment:
As far as I can tell that's how they release packages. I actually tried doing it with a variable and xbps-src doesn't accept `version=latest`. Until they provide versioned downloads, I'm not sure how else to proceed.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (19 preceding siblings ...)
  2020-09-03 19:49 ` cat-marin
@ 2020-09-03 19:52 ` cat-marin
  2020-09-03 20:01 ` ericonr
                   ` (10 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-03 19:52 UTC (permalink / raw)
  To: ml

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

New review comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483218137

Comment:
I'm currently in the process of contacting Stylus Labs on how they'd like me to proceed here, I'll update my PR when I know.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (20 preceding siblings ...)
  2020-09-03 19:52 ` cat-marin
@ 2020-09-03 20:01 ` ericonr
  2020-09-03 20:01 ` ericonr
                   ` (9 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2020-09-03 20:01 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483221951

Comment:
If they don't make versioned releases. it's unlikely to be accepted as a package here.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (21 preceding siblings ...)
  2020-09-03 20:01 ` ericonr
@ 2020-09-03 20:01 ` ericonr
  2020-09-03 20:11 ` cat-marin
                   ` (8 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2020-09-03 20:01 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483222261

Comment:
I'm not sure how well it fits under quality requirements either.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (22 preceding siblings ...)
  2020-09-03 20:01 ` ericonr
@ 2020-09-03 20:11 ` cat-marin
  2020-09-03 20:12 ` cat-marin
                   ` (7 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-03 20:11 UTC (permalink / raw)
  To: ml

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

New review comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483227169

Comment:
> If they don't make versioned releases. it's unlikely to be accepted as a package here.

I've sent them an email regarding the issues on their end (including the license), I'll be closing my pull request until they respond/provide versioned downloads and a license.

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (23 preceding siblings ...)
  2020-09-03 20:11 ` cat-marin
@ 2020-09-03 20:12 ` cat-marin
  2020-09-03 20:12 ` [PR PATCH] [Closed]: " cat-marin
                   ` (6 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-03 20:12 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-686729628

Comment:
Closing

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

* Re: [PR PATCH] [Closed]: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (24 preceding siblings ...)
  2020-09-03 20:12 ` cat-marin
@ 2020-09-03 20:12 ` cat-marin
  2020-09-04  0:23 ` [PR REVIEW] " sgn
                   ` (5 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-03 20:12 UTC (permalink / raw)
  To: ml

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

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

Add Write from Stylus Labs
https://github.com/void-linux/void-packages/pull/24555

Description:
Starting college and thought it might be easier to set up new systems with Write in void-packages.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (25 preceding siblings ...)
  2020-09-03 20:12 ` [PR PATCH] [Closed]: " cat-marin
@ 2020-09-04  0:23 ` sgn
  2020-09-04  0:25 ` sgn
                   ` (4 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: sgn @ 2020-09-04  0:23 UTC (permalink / raw)
  To: ml

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

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483320218

Comment:
http://www.styluslabs.com/write/write300.tar.gz


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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (26 preceding siblings ...)
  2020-09-04  0:23 ` [PR REVIEW] " sgn
@ 2020-09-04  0:25 ` sgn
  2020-09-04 20:39 ` cat-marin
                   ` (3 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: sgn @ 2020-09-04  0:25 UTC (permalink / raw)
  To: ml

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

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483320524

Comment:
They provides versioned tarball, they just don't show you, here is the link for 3.0.0 http://www.styluslabs.com/write/write300.tar.gz

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (27 preceding siblings ...)
  2020-09-04  0:25 ` sgn
@ 2020-09-04 20:39 ` cat-marin
  2020-09-05  0:18 ` fosslinux
                   ` (2 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-04 20:39 UTC (permalink / raw)
  To: ml

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

New review comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483834967

Comment:
> They provides versioned tarball, they just don't show you, here is the link for 3.0.0 http://www.styluslabs.com/write/write300.tar.gz

Yep! Saw that in their response to me email. However they still don't have a license available, which as I understand is necessary in order to proceed. In any case, judging by how many changes I needed to make (and quality concerns of my template) I'm in no way ready to take on maintaining a package. I'll look more into the documentation and other package templates before I do anything else.

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

* Re: [PR REVIEW] Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (28 preceding siblings ...)
  2020-09-04 20:39 ` cat-marin
@ 2020-09-05  0:18 ` fosslinux
  2020-09-05  0:59 ` sgn
  2020-09-05  4:36 ` cat-marin
  31 siblings, 0 replies; 33+ messages in thread
From: fosslinux @ 2020-09-05  0:18 UTC (permalink / raw)
  To: ml

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

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#discussion_r483887187

Comment:
Nah, packages in void aren't that hard. TBH, it's really just that you chose a slightly problematic package to start on :)

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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (29 preceding siblings ...)
  2020-09-05  0:18 ` fosslinux
@ 2020-09-05  0:59 ` sgn
  2020-09-05  4:36 ` cat-marin
  31 siblings, 0 replies; 33+ messages in thread
From: sgn @ 2020-09-05  0:59 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-687500607

Comment:
On 2020-09-04 13:39:43-0700, cat-marin <notifications@github.com> wrote:
> @cat-marin commented on this pull request.
> 
> 
> 
> > @@ -0,0 +1,32 @@
> +# Template file for 'write-styluslabs'
> +pkgname=write-styluslabs
> +version=3.0.0
> +revision=1
> +archs="x86_64"
> +wrksrc="Write"
> +depends="SDL2"
> +short_desc="Word processor for handwriting"
> +maintainer="Cat Marin <me@jmarin.xyz>"
> +license="custom:Proprietary"
> +homepage="http://www.styluslabs.com/"
> +distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
> 
> > They provides versioned tarball, they just don't show you, here is
> > the link for 3.0.0 http://www.styluslabs.com/write/write300.tar.gz
> 
> Yep! Saw that in their response to me email. However they still
> don't have a license available, which as I understand is necessary
> in order to proceed.

The EULA is available at http://www.styluslabs.com/write/eula.docx
Either ship the docx file, or use docx2txt to convert to plain text
file


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

* Re: Add Write from Stylus Labs
  2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
                   ` (30 preceding siblings ...)
  2020-09-05  0:59 ` sgn
@ 2020-09-05  4:36 ` cat-marin
  31 siblings, 0 replies; 33+ messages in thread
From: cat-marin @ 2020-09-05  4:36 UTC (permalink / raw)
  To: ml

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

New comment by cat-marin on void-packages repository

https://github.com/void-linux/void-packages/pull/24555#issuecomment-687547481

Comment:
> On 2020-09-04 13:39:43-0700, cat-marin <notifications@github.com> wrote:
> > @cat-marin commented on this pull request.
> > 
> > 
> > 
> > > @@ -0,0 +1,32 @@
> > +# Template file for 'write-styluslabs'
> > +pkgname=write-styluslabs
> > +version=3.0.0
> > +revision=1
> > +archs="x86_64"
> > +wrksrc="Write"
> > +depends="SDL2"
> > +short_desc="Word processor for handwriting"
> > +maintainer="Cat Marin <me@jmarin.xyz>"
> > +license="custom:Proprietary"
> > +homepage="http://www.styluslabs.com/"
> > +distfiles="http://www.styluslabs.com/write/write-latest.tar.gz"
> > 
> > > They provides versioned tarball, they just don't show you, here is
> > > the link for 3.0.0 http://www.styluslabs.com/write/write300.tar.gz
> > 
> > Yep! Saw that in their response to me email. However they still
> > don't have a license available, which as I understand is necessary
> > in order to proceed.
> 
> The EULA is available at http://www.styluslabs.com/write/eula.docx
> Either ship the docx file, or use docx2txt to convert to plain text
> file
> 

Interesting, was this added after I just emailed asking them to add it? Because when they responded they just said there wasn't really a license.

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

end of thread, other threads:[~2020-09-05  4:36 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-30 19:58 [PR PATCH] Add Write from Stylus Labs cat-marin
2020-08-30 21:01 ` [PR PATCH] [Updated] " cat-marin
2020-08-31  1:34 ` fosslinux
2020-08-31  2:05 ` cat-marin
2020-08-31  2:50 ` fosslinux
2020-08-31  3:28 ` [PR PATCH] [Updated] " cat-marin
2020-08-31  3:29 ` cat-marin
2020-08-31  3:58 ` [PR REVIEW] " fosslinux
2020-08-31  3:58 ` fosslinux
2020-08-31  4:23 ` [PR PATCH] [Updated] " cat-marin
2020-08-31  4:26 ` cat-marin
2020-08-31  4:27 ` cat-marin
2020-08-31  4:29 ` [PR PATCH] [Updated] " cat-marin
2020-08-31  6:15 ` fosslinux
2020-08-31  6:23 ` cat-marin
2020-08-31  6:24 ` fosslinux
2020-09-02 17:00 ` ahesford
2020-09-02 23:37 ` ahesford
2020-09-02 23:56 ` [PR REVIEW] " ahesford
2020-09-02 23:56 ` ahesford
2020-09-03 19:49 ` cat-marin
2020-09-03 19:52 ` cat-marin
2020-09-03 20:01 ` ericonr
2020-09-03 20:01 ` ericonr
2020-09-03 20:11 ` cat-marin
2020-09-03 20:12 ` cat-marin
2020-09-03 20:12 ` [PR PATCH] [Closed]: " cat-marin
2020-09-04  0:23 ` [PR REVIEW] " sgn
2020-09-04  0:25 ` sgn
2020-09-04 20:39 ` cat-marin
2020-09-05  0:18 ` fosslinux
2020-09-05  0:59 ` sgn
2020-09-05  4:36 ` cat-marin

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