Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: vivid-0.6.0
@ 2020-11-08 22:19 FollieHiyuki
  2020-11-08 22:29 ` FollieHiyuki
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: FollieHiyuki @ 2020-11-08 22:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FollieHiyuki/void-packages vivid
https://github.com/void-linux/void-packages/pull/26229

New package: vivid-0.6.0
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

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

From f1909201b7a28d73350cfb92f408e357c5d66f53 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Mon, 9 Nov 2020 01:10:56 +0300
Subject: [PATCH] New package: vivid-0.6.0

---
 srcpkgs/vivid/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/vivid/template

diff --git a/srcpkgs/vivid/template b/srcpkgs/vivid/template
new file mode 100644
index 00000000000..30f9457fd09
--- /dev/null
+++ b/srcpkgs/vivid/template
@@ -0,0 +1,15 @@
+# Template file for 'vivid'
+pkgname=vivid
+version=0.6.0
+revision=1
+build_style=cargo
+short_desc="LS_COLORS with support for multiple color themes"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/sharkdp/vivid"
+distfiles="https://github.com/sharkdp/vivid/archive/v${version}.tar.gz"
+checksum=c8640f524aef1cd4dc15286bdc6189894ad067ea79bf8c40b9ca8d9d752d161f
+
+post_install() {
+	vlicense LICENSE-MIT
+}

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

* Re: New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
@ 2020-11-08 22:29 ` FollieHiyuki
  2020-11-10 20:49 ` abenson
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2020-11-08 22:29 UTC (permalink / raw)
  To: ml

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

New comment by FollieHiyuki on void-packages repository

https://github.com/void-linux/void-packages/pull/26229#issuecomment-723675319

Comment:
There are .yml files in the repo I wanted to add to **/usr/share/vivid** as sample config. I tried to do
```
vmkdir usr/share/vivid 755
vinstall config/filetypes.yml 644 usr/share/vivid filetypes.yml
```
but it doesn't work and I can't find a concrete sample of how to do this.

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

* Re: New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
  2020-11-08 22:29 ` FollieHiyuki
@ 2020-11-10 20:49 ` abenson
  2020-11-11  0:37 ` [PR PATCH] [Updated] " FollieHiyuki
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: abenson @ 2020-11-10 20:49 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/26229#issuecomment-724958041

Comment:
If you use `vsconf`, it'll place them in `/usr/share/examples/vivid` 

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

* Re: [PR PATCH] [Updated] New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
  2020-11-08 22:29 ` FollieHiyuki
  2020-11-10 20:49 ` abenson
@ 2020-11-11  0:37 ` FollieHiyuki
  2020-11-17 17:06 ` abenson
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2020-11-11  0:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FollieHiyuki/void-packages vivid
https://github.com/void-linux/void-packages/pull/26229

New package: vivid-0.6.0
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

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

From 60a27133b2d265dd13699b4681969fdd3f1fcf5f Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Mon, 9 Nov 2020 01:10:56 +0300
Subject: [PATCH] Add sample configuration files

---
 srcpkgs/vivid/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/vivid/template

diff --git a/srcpkgs/vivid/template b/srcpkgs/vivid/template
new file mode 100644
index 00000000000..8dcb31aedfd
--- /dev/null
+++ b/srcpkgs/vivid/template
@@ -0,0 +1,19 @@
+# Template file for 'vivid'
+pkgname=vivid
+version=0.6.0
+revision=1
+build_style=cargo
+short_desc="LS_COLORS with support for multiple color themes"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/sharkdp/vivid"
+distfiles="https://github.com/sharkdp/vivid/archive/v${version}.tar.gz"
+checksum=c8640f524aef1cd4dc15286bdc6189894ad067ea79bf8c40b9ca8d9d752d161f
+
+post_install() {
+	vlicense LICENSE-MIT
+
+	# Sample configuration file + sample theme
+	vsconf ${wrksrc}/config/filetypes.yml
+	vinstall ${wrksrc}/themes/snazzy.yml 644 usr/share/examples/vivid/themes
+}

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

* Re: New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (2 preceding siblings ...)
  2020-11-11  0:37 ` [PR PATCH] [Updated] " FollieHiyuki
@ 2020-11-17 17:06 ` abenson
  2020-11-18  7:37 ` [PR PATCH] [Updated] " FollieHiyuki
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: abenson @ 2020-11-17 17:06 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/26229#issuecomment-729067266

Comment:
Use 'New package: vivid-0.6.0' for the commit message

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

* Re: [PR PATCH] [Updated] New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (3 preceding siblings ...)
  2020-11-17 17:06 ` abenson
@ 2020-11-18  7:37 ` FollieHiyuki
  2021-01-17 23:42 ` FollieHiyuki
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2020-11-18  7:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FollieHiyuki/void-packages vivid
https://github.com/void-linux/void-packages/pull/26229

New package: vivid-0.6.0
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

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

From 2e8239998d1445c71f87d4ac9aed0ed5003a52e2 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Mon, 9 Nov 2020 01:10:56 +0300
Subject: [PATCH] New package: vivid-0.6.0

---
 srcpkgs/vivid/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/vivid/template

diff --git a/srcpkgs/vivid/template b/srcpkgs/vivid/template
new file mode 100644
index 00000000000..8dcb31aedfd
--- /dev/null
+++ b/srcpkgs/vivid/template
@@ -0,0 +1,19 @@
+# Template file for 'vivid'
+pkgname=vivid
+version=0.6.0
+revision=1
+build_style=cargo
+short_desc="LS_COLORS with support for multiple color themes"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/sharkdp/vivid"
+distfiles="https://github.com/sharkdp/vivid/archive/v${version}.tar.gz"
+checksum=c8640f524aef1cd4dc15286bdc6189894ad067ea79bf8c40b9ca8d9d752d161f
+
+post_install() {
+	vlicense LICENSE-MIT
+
+	# Sample configuration file + sample theme
+	vsconf ${wrksrc}/config/filetypes.yml
+	vinstall ${wrksrc}/themes/snazzy.yml 644 usr/share/examples/vivid/themes
+}

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

* Re: [PR PATCH] [Updated] New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (4 preceding siblings ...)
  2020-11-18  7:37 ` [PR PATCH] [Updated] " FollieHiyuki
@ 2021-01-17 23:42 ` FollieHiyuki
  2021-02-21 13:11 ` FollieHiyuki
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2021-01-17 23:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FollieHiyuki/void-packages vivid
https://github.com/void-linux/void-packages/pull/26229

New package: vivid-0.6.0
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

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

From 362a87a1797cf6ba59a66f1f630168043a9310c8 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Mon, 9 Nov 2020 01:10:56 +0300
Subject: [PATCH] New package: vivid-0.6.0

---
 srcpkgs/vivid/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/vivid/template

diff --git a/srcpkgs/vivid/template b/srcpkgs/vivid/template
new file mode 100644
index 00000000000..8dcb31aedfd
--- /dev/null
+++ b/srcpkgs/vivid/template
@@ -0,0 +1,19 @@
+# Template file for 'vivid'
+pkgname=vivid
+version=0.6.0
+revision=1
+build_style=cargo
+short_desc="LS_COLORS with support for multiple color themes"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/sharkdp/vivid"
+distfiles="https://github.com/sharkdp/vivid/archive/v${version}.tar.gz"
+checksum=c8640f524aef1cd4dc15286bdc6189894ad067ea79bf8c40b9ca8d9d752d161f
+
+post_install() {
+	vlicense LICENSE-MIT
+
+	# Sample configuration file + sample theme
+	vsconf ${wrksrc}/config/filetypes.yml
+	vinstall ${wrksrc}/themes/snazzy.yml 644 usr/share/examples/vivid/themes
+}

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

* Re: [PR PATCH] [Updated] New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (5 preceding siblings ...)
  2021-01-17 23:42 ` FollieHiyuki
@ 2021-02-21 13:11 ` FollieHiyuki
  2021-02-25  0:17 ` FollieHiyuki
  2021-02-27  7:37 ` [PR PATCH] [Merged]: " abenson
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2021-02-21 13:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FollieHiyuki/void-packages vivid
https://github.com/void-linux/void-packages/pull/26229

New package: vivid-0.6.0
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

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

From 8bd99d1c21590f975234920517ab5a2d4a2b9c3f Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Mon, 9 Nov 2020 01:10:56 +0300
Subject: [PATCH] New package: vivid-0.6.0

---
 srcpkgs/vivid/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/vivid/template

diff --git a/srcpkgs/vivid/template b/srcpkgs/vivid/template
new file mode 100644
index 00000000000..39124a35dc7
--- /dev/null
+++ b/srcpkgs/vivid/template
@@ -0,0 +1,20 @@
+# Template file for 'vivid'
+pkgname=vivid
+version=0.6.0
+revision=1
+build_style=cargo
+short_desc="LS_COLORS with support for multiple color themes"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/sharkdp/vivid"
+distfiles="https://github.com/sharkdp/vivid/archive/v${version}.tar.gz"
+checksum=c8640f524aef1cd4dc15286bdc6189894ad067ea79bf8c40b9ca8d9d752d161f
+
+post_install() {
+	vlicense LICENSE-MIT
+
+	# Sample configuration file + sample themes
+	vsconf config/filetypes.yml
+	vmkdir usr/share/examples/${pkgname}/themes
+	vcopy themes/*.yml usr/share/examples/${pkgname}/themes
+}

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

* Re: New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (6 preceding siblings ...)
  2021-02-21 13:11 ` FollieHiyuki
@ 2021-02-25  0:17 ` FollieHiyuki
  2021-02-27  7:37 ` [PR PATCH] [Merged]: " abenson
  8 siblings, 0 replies; 10+ messages in thread
From: FollieHiyuki @ 2021-02-25  0:17 UTC (permalink / raw)
  To: ml

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

New comment by FollieHiyuki on void-packages repository

https://github.com/void-linux/void-packages/pull/26229#issuecomment-785480858

Comment:
@abenson can you do a review again? Sorry for the ping.
This is a simple Rust program, so I think it is good to merge as it is now.
I recently made a small change, so that the `examples` directory contains all the themes samples as well.

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

* Re: [PR PATCH] [Merged]: New package: vivid-0.6.0
  2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
                   ` (7 preceding siblings ...)
  2021-02-25  0:17 ` FollieHiyuki
@ 2021-02-27  7:37 ` abenson
  8 siblings, 0 replies; 10+ messages in thread
From: abenson @ 2021-02-27  7:37 UTC (permalink / raw)
  To: ml

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

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

New package: vivid-0.6.0
https://github.com/void-linux/void-packages/pull/26229

Description:
A Rust tool to simply generate LS_COLORS from a defined theme.
[https://github.com/sharkdp/vivid](https://github.com/sharkdp/vivid)

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

end of thread, other threads:[~2021-02-27  7:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-08 22:19 [PR PATCH] New package: vivid-0.6.0 FollieHiyuki
2020-11-08 22:29 ` FollieHiyuki
2020-11-10 20:49 ` abenson
2020-11-11  0:37 ` [PR PATCH] [Updated] " FollieHiyuki
2020-11-17 17:06 ` abenson
2020-11-18  7:37 ` [PR PATCH] [Updated] " FollieHiyuki
2021-01-17 23:42 ` FollieHiyuki
2021-02-21 13:11 ` FollieHiyuki
2021-02-25  0:17 ` FollieHiyuki
2021-02-27  7:37 ` [PR PATCH] [Merged]: " abenson

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