Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: deno-1.0.0
@ 2020-05-17 14:49 toluschr
  2020-05-17 14:51 ` [PR PATCH] [Updated] " toluschr
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 14:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/toluschr/void-packages new-deno
https://github.com/void-linux/void-packages/pull/22043

New package: deno-1.0.0
#21937

I think the `do_install` function would need to be changed a little.

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

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

From 35f4a670fe59815150a6b889635393eabf032963 Mon Sep 17 00:00:00 2001
From: toluschr <toluschr@protonmail.com>
Date: Sun, 17 May 2020 16:45:05 +0200
Subject: [PATCH] New package: deno-1.0.0

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

diff --git a/srcpkgs/deno/template b/srcpkgs/deno/template
new file mode 100644
index 00000000000..8a90e0491c3
--- /dev/null
+++ b/srcpkgs/deno/template
@@ -0,0 +1,17 @@
+# Template file for 'deno'
+pkgname=deno
+version=1.0.0
+revision=1
+build_style=cargo
+wrksrc="${pkgname}"
+hostmakedepends="python3"
+short_desc="Secure JavaScript and TypeScript runtime"
+maintainer="toluschr <toluschr@protonmail.com>"
+license="MIT"
+homepage="https://github.com/denoland/deno/"
+distfiles="https://github.com/denoland/deno/releases/download/v${version}/deno_src.tar.gz"
+checksum=89709f489e4cbbcfd6913d14e903fcb47c92f329d077477190b0dbd8bd23acc7
+
+do_install() {
+	vbin "$(find target -name deno -print -quit)"
+}

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

* Re: [PR PATCH] [Updated] New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
@ 2020-05-17 14:51 ` toluschr
  2020-05-17 15:57 ` q66
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 14:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/toluschr/void-packages new-deno
https://github.com/void-linux/void-packages/pull/22043

New package: deno-1.0.0
#21937

I think the `do_install` function would need to be changed a little.

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

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

From 01872207f5b4f23c3fc320ddd3302b3c4e8ad6cb Mon Sep 17 00:00:00 2001
From: toluschr <toluschr@protonmail.com>
Date: Sun, 17 May 2020 16:45:05 +0200
Subject: [PATCH] New package: deno-1.0.0

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

diff --git a/srcpkgs/deno/template b/srcpkgs/deno/template
new file mode 100644
index 00000000000..96f1021a526
--- /dev/null
+++ b/srcpkgs/deno/template
@@ -0,0 +1,18 @@
+# Template file for 'deno'
+pkgname=deno
+version=1.0.0
+revision=1
+wrksrc="${pkgname}"
+build_style=cargo
+hostmakedepends="python3"
+short_desc="Secure JavaScript and TypeScript runtime"
+maintainer="toluschr <toluschr@protonmail.com>"
+license="MIT"
+homepage="https://github.com/denoland/deno/"
+distfiles="https://github.com/denoland/deno/releases/download/v${version}/deno_src.tar.gz"
+checksum=89709f489e4cbbcfd6913d14e903fcb47c92f329d077477190b0dbd8bd23acc7
+
+do_install() {
+	vbin "$(find target -name deno -print -quit)"
+	vlicense LICENSE
+}

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
  2020-05-17 14:51 ` [PR PATCH] [Updated] " toluschr
@ 2020-05-17 15:57 ` q66
  2020-05-17 16:06 ` toluschr
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: q66 @ 2020-05-17 15:57 UTC (permalink / raw)
  To: ml

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

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629819836

Comment:
unless you figure out how to make it not fetch binaries during build, this cannot be accepted

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
  2020-05-17 14:51 ` [PR PATCH] [Updated] " toluschr
  2020-05-17 15:57 ` q66
@ 2020-05-17 16:06 ` toluschr
  2020-05-17 16:08 ` Johnnynator
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 16:06 UTC (permalink / raw)
  To: ml

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

New comment by toluschr on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629820905

Comment:
At which step does it fetch binaries? The terminal log mentioned compiling the dependencies

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (2 preceding siblings ...)
  2020-05-17 16:06 ` toluschr
@ 2020-05-17 16:08 ` Johnnynator
  2020-05-17 16:10 ` Johnnynator
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Johnnynator @ 2020-05-17 16:08 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629821304

Comment:
The musl log makes it clear: https://travis-ci.org/github/void-linux/void-packages/jobs/688065967#L4665 Also 30min on travis is not close to the time v8 would need to compile.

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (3 preceding siblings ...)
  2020-05-17 16:08 ` Johnnynator
@ 2020-05-17 16:10 ` Johnnynator
  2020-05-17 16:20 ` toluschr
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Johnnynator @ 2020-05-17 16:10 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629821589

Comment:
rusty_v8 doc:
> Use V8_FROM_SOURCE=1 cargo build -vv to build the crate completely from source.
https://github.com/denoland/rusty_v8

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (4 preceding siblings ...)
  2020-05-17 16:10 ` Johnnynator
@ 2020-05-17 16:20 ` toluschr
  2020-05-17 17:58 ` [PR PATCH] [Updated] " toluschr
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 16:20 UTC (permalink / raw)
  To: ml

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

New comment by toluschr on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629823205

Comment:
> rusty_v8 doc:
> 
> > Use V8_FROM_SOURCE=1 cargo build -vv to build the crate completely from source.
> > https://github.com/denoland/rusty_v8

Thanks for the help! I will change the template accordingly.

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

* Re: [PR PATCH] [Updated] New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (5 preceding siblings ...)
  2020-05-17 16:20 ` toluschr
@ 2020-05-17 17:58 ` toluschr
  2020-05-17 18:00 ` toluschr
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 17:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/toluschr/void-packages new-deno
https://github.com/void-linux/void-packages/pull/22043

New package: deno-1.0.0
#21937

I think the `do_install` function would need to be changed a little, however the cargo build helper throws an error.

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

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

From e0de491bfb3014a30ae74811cacee08a9bc09d9e Mon Sep 17 00:00:00 2001
From: toluschr <toluschr@protonmail.com>
Date: Sun, 17 May 2020 16:45:05 +0200
Subject: [PATCH] New package: deno-1.0.0

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

diff --git a/srcpkgs/deno/template b/srcpkgs/deno/template
new file mode 100644
index 00000000000..041600ba359
--- /dev/null
+++ b/srcpkgs/deno/template
@@ -0,0 +1,21 @@
+# Template file for 'deno'
+pkgname=deno
+version=1.0.0
+revision=1
+wrksrc="${pkgname}"
+build_style=cargo
+hostmakedepends="python3 pkg-config"
+makedepends="libglib-devel"
+short_desc="Secure JavaScript and TypeScript runtime"
+maintainer="toluschr <toluschr@protonmail.com>"
+license="MIT"
+homepage="https://github.com/denoland/deno/"
+distfiles="https://github.com/denoland/deno/releases/download/v${version}/deno_src.tar.gz"
+checksum=89709f489e4cbbcfd6913d14e903fcb47c92f329d077477190b0dbd8bd23acc7
+
+export V8_FROM_SOURCE=1
+
+do_install() {
+	vbin "$(find target -name deno -print -quit)"
+	vlicense LICENSE
+}

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

* Re: New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (6 preceding siblings ...)
  2020-05-17 17:58 ` [PR PATCH] [Updated] " toluschr
@ 2020-05-17 18:00 ` toluschr
  2020-12-20  1:33 ` [WIP] " ericonr
  2020-12-20  1:33 ` [PR PATCH] [Closed]: " ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: toluschr @ 2020-05-17 18:00 UTC (permalink / raw)
  To: ml

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

New comment by toluschr on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-629836915

Comment:
The musl build is still failing for some reason. I did a little research and found this:
https://github.com/rust-lang/rust/issues/61328
https://github.com/rust-lang/rust/issues/59302
but neither of those two tips fixed the issue. Maybe someone with a little more knowledge can help?

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

* Re: [WIP] New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (7 preceding siblings ...)
  2020-05-17 18:00 ` toluschr
@ 2020-12-20  1:33 ` ericonr
  2020-12-20  1:33 ` [PR PATCH] [Closed]: " ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2020-12-20  1:33 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22043#issuecomment-748549904

Comment:
Superseded by #25436

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

* Re: [PR PATCH] [Closed]: [WIP] New package: deno-1.0.0
  2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
                   ` (8 preceding siblings ...)
  2020-12-20  1:33 ` [WIP] " ericonr
@ 2020-12-20  1:33 ` ericonr
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2020-12-20  1:33 UTC (permalink / raw)
  To: ml

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

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

[WIP] New package: deno-1.0.0
https://github.com/void-linux/void-packages/pull/22043

Description:
#21937

I think the `do_install` function would need to be changed a little, however the cargo build helper throws an error.

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

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

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-17 14:49 [PR PATCH] New package: deno-1.0.0 toluschr
2020-05-17 14:51 ` [PR PATCH] [Updated] " toluschr
2020-05-17 15:57 ` q66
2020-05-17 16:06 ` toluschr
2020-05-17 16:08 ` Johnnynator
2020-05-17 16:10 ` Johnnynator
2020-05-17 16:20 ` toluschr
2020-05-17 17:58 ` [PR PATCH] [Updated] " toluschr
2020-05-17 18:00 ` toluschr
2020-12-20  1:33 ` [WIP] " ericonr
2020-12-20  1:33 ` [PR PATCH] [Closed]: " 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).