Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: reflex-20210808
@ 2021-11-01  0:13 bugcrazy
  2021-11-01  1:23 ` bugcrazy
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-01  0:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/bugcrazy/void-packages patch-8
https://github.com/void-linux/void-packages/pull/33852

New package: reflex-20210808
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 9213aec3b41d1186b857ee53d8791ec48aadfbc5 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sun, 31 Oct 2021 20:40:24 -0300
Subject: [PATCH] New package: reflex-20210808

Adding symbolic link
---
 srcpkgs/librefl-devel   |  1 +
 srcpkgs/reflex/template | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/librefl-devel
 create mode 100644 srcpkgs/reflex/template

diff --git a/srcpkgs/librefl-devel b/srcpkgs/librefl-devel
new file mode 120000
index 000000000000..fe47ecfdd35e
--- /dev/null
+++ b/srcpkgs/librefl-devel
@@ -0,0 +1 @@
+reflex
\ No newline at end of file
diff --git a/srcpkgs/reflex/template b/srcpkgs/reflex/template
new file mode 100644
index 000000000000..4e3a1602c8fc
--- /dev/null
+++ b/srcpkgs/reflex/template
@@ -0,0 +1,29 @@
+# Template file for 'reflex'
+pkgname=reflex
+version=20210808
+revision=1
+_date=${version##*.}
+wrksrc="${pkgname}-${_date}"
+build_style=gnu-configure
+makedepends="byacc"
+depends="byacc librefl-devel-${version}_${revision}"
+short_desc="Relocalizable fast lexical scanner"
+maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://invisible-island.net/reflex/"
+changelog="https://invisible-island.net/reflex/NEWS"
+distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_date}.tgz"
+checksum=6b30a09557776cbc7435d974e5cfc50cb6c63da804f3ae2b4065466da0581c21
+
+post_install() {
+	vlicense COPYING
+}
+
+librefl-devel_package() {
+	replaces="libfl>=0"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+	}
+}

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

* Re: New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
@ 2021-11-01  1:23 ` bugcrazy
  2021-11-01  2:54 ` [PR REVIEW] " ericonr
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-01  1:23 UTC (permalink / raw)
  To: ml

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

New comment by bugcrazy on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#issuecomment-955846418

Comment:
I have compiled with musl, with no problem. Faults are "Operation timed out" errors, have the exception is armv6l-musl, presents this failure "make: yacc: No such file or directory", but should not occur, the byacc package is installed. 

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

* Re: [PR REVIEW] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
  2021-11-01  1:23 ` bugcrazy
@ 2021-11-01  2:54 ` ericonr
  2021-11-01  4:36 ` [PR PATCH] [Updated] " bugcrazy
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2021-11-01  2:54 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#discussion_r739928697

Comment:
Shouldn't this be in hostmakedepends?

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

* Re: [PR PATCH] [Updated] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
  2021-11-01  1:23 ` bugcrazy
  2021-11-01  2:54 ` [PR REVIEW] " ericonr
@ 2021-11-01  4:36 ` bugcrazy
  2021-11-01  9:26 ` [PR REVIEW] " bugcrazy
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-01  4:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/bugcrazy/void-packages patch-8
https://github.com/void-linux/void-packages/pull/33852

New package: reflex-20210808
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From fa0fdd653f51bfbe6014b46610843652cb7ad1c4 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sun, 31 Oct 2021 20:40:24 -0300
Subject: [PATCH] New package: reflex-20210808

Adding symbolic link

Changed makedpends for hostmakedpends
---
 srcpkgs/librefl-devel   |  1 +
 srcpkgs/reflex/template | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/librefl-devel
 create mode 100644 srcpkgs/reflex/template

diff --git a/srcpkgs/librefl-devel b/srcpkgs/librefl-devel
new file mode 120000
index 000000000000..fe47ecfdd35e
--- /dev/null
+++ b/srcpkgs/librefl-devel
@@ -0,0 +1 @@
+reflex
\ No newline at end of file
diff --git a/srcpkgs/reflex/template b/srcpkgs/reflex/template
new file mode 100644
index 000000000000..208b2a51db47
--- /dev/null
+++ b/srcpkgs/reflex/template
@@ -0,0 +1,29 @@
+# Template file for 'reflex'
+pkgname=reflex
+version=20210808
+revision=1
+_date=${version##*.}
+wrksrc="${pkgname}-${_date}"
+build_style=gnu-configure
+hostmakedepends="byacc"
+depends="byacc librefl-devel-${version}_${revision}"
+short_desc="Relocalizable fast lexical scanner"
+maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://invisible-island.net/reflex/"
+changelog="https://invisible-island.net/reflex/NEWS"
+distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_date}.tgz"
+checksum=6b30a09557776cbc7435d974e5cfc50cb6c63da804f3ae2b4065466da0581c21
+
+post_install() {
+	vlicense COPYING
+}
+
+librefl-devel_package() {
+	replaces="libfl>=0"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+	}
+}

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

* Re: [PR REVIEW] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (2 preceding siblings ...)
  2021-11-01  4:36 ` [PR PATCH] [Updated] " bugcrazy
@ 2021-11-01  9:26 ` bugcrazy
  2021-11-02 19:28 ` bugcrazy
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-01  9:26 UTC (permalink / raw)
  To: ml

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

New review comment by bugcrazy on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#discussion_r740065752

Comment:
I changed makedpends for hostMakeedpends, but the failure problems are "Connection timed out" and "Operation timed out" occurs when you try to download the tgz package, aarch64-linux-musl compiled normally without fail. 

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

* Re: [PR REVIEW] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (3 preceding siblings ...)
  2021-11-01  9:26 ` [PR REVIEW] " bugcrazy
@ 2021-11-02 19:28 ` bugcrazy
  2021-11-17  4:20 ` [PR PATCH] [Updated] " bugcrazy
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-02 19:28 UTC (permalink / raw)
  To: ml

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

New review comment by bugcrazy on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#discussion_r741401731

Comment:
Looking at all compilation checks, you do not have errors when compiling for no architecture, failures are only when you try to download the tgz package, sometimes normal download and compile, others can not download. 

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

* Re: [PR PATCH] [Updated] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (4 preceding siblings ...)
  2021-11-02 19:28 ` bugcrazy
@ 2021-11-17  4:20 ` bugcrazy
  2021-11-17  4:31 ` bugcrazy
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-17  4:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/bugcrazy/void-packages patch-8
https://github.com/void-linux/void-packages/pull/33852

New package: reflex-20210808
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 5da4807ca63a614ab2a50e05f7dc800bffb7fd1b Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sun, 31 Oct 2021 20:40:24 -0300
Subject: [PATCH] New package: reflex-20210808

Adding symbolic link

Changed makedpends for hostmakedpends

Removing line unnecessful
---
 srcpkgs/librefl-devel   |  1 +
 srcpkgs/reflex/template | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/librefl-devel
 create mode 100644 srcpkgs/reflex/template

diff --git a/srcpkgs/librefl-devel b/srcpkgs/librefl-devel
new file mode 120000
index 000000000000..fe47ecfdd35e
--- /dev/null
+++ b/srcpkgs/librefl-devel
@@ -0,0 +1 @@
+reflex
\ No newline at end of file
diff --git a/srcpkgs/reflex/template b/srcpkgs/reflex/template
new file mode 100644
index 000000000000..4404921035e0
--- /dev/null
+++ b/srcpkgs/reflex/template
@@ -0,0 +1,28 @@
+# Template file for 'reflex'
+pkgname=reflex
+version=20210808
+revision=1
+_date=${version##*.}
+wrksrc="${pkgname}-${_date}"
+build_style=gnu-configure
+hostmakedepends="byacc"
+depends="byacc librefl-devel-${version}_${revision}"
+short_desc="Relocalizable fast lexical scanner"
+maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://invisible-island.net/reflex/"
+changelog="https://invisible-island.net/reflex/NEWS"
+distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_date}.tgz"
+checksum=6b30a09557776cbc7435d974e5cfc50cb6c63da804f3ae2b4065466da0581c21
+
+post_install() {
+	vlicense COPYING
+}
+
+librefl-devel_package() {
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (5 preceding siblings ...)
  2021-11-17  4:20 ` [PR PATCH] [Updated] " bugcrazy
@ 2021-11-17  4:31 ` bugcrazy
  2021-11-17  4:36 ` [PR REVIEW] " bugcrazy
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-17  4:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/bugcrazy/void-packages patch-8
https://github.com/void-linux/void-packages/pull/33852

New package: reflex-20210808
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From a299e0d8103d6eeb7dd411e37e4910216a96e8b0 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sun, 31 Oct 2021 20:40:24 -0300
Subject: [PATCH] New package: reflex-20210808

Adding symbolic link

Changed makedpends for hostmakedpends

Removing line unnecessful
---
 srcpkgs/librefl-devel   |  1 +
 srcpkgs/reflex/template | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/librefl-devel
 create mode 100644 srcpkgs/reflex/template

diff --git a/srcpkgs/librefl-devel b/srcpkgs/librefl-devel
new file mode 120000
index 000000000000..fe47ecfdd35e
--- /dev/null
+++ b/srcpkgs/librefl-devel
@@ -0,0 +1 @@
+reflex
\ No newline at end of file
diff --git a/srcpkgs/reflex/template b/srcpkgs/reflex/template
new file mode 100644
index 000000000000..4404921035e0
--- /dev/null
+++ b/srcpkgs/reflex/template
@@ -0,0 +1,28 @@
+# Template file for 'reflex'
+pkgname=reflex
+version=20210808
+revision=1
+_date=${version##*.}
+wrksrc="${pkgname}-${_date}"
+build_style=gnu-configure
+hostmakedepends="byacc"
+depends="byacc librefl-devel-${version}_${revision}"
+short_desc="Relocalizable fast lexical scanner"
+maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://invisible-island.net/reflex/"
+changelog="https://invisible-island.net/reflex/NEWS"
+distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_date}.tgz"
+checksum=6b30a09557776cbc7435d974e5cfc50cb6c63da804f3ae2b4065466da0581c21
+
+post_install() {
+	vlicense COPYING
+}
+
+librefl-devel_package() {
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+	}
+}

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

* Re: [PR REVIEW] New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (6 preceding siblings ...)
  2021-11-17  4:31 ` bugcrazy
@ 2021-11-17  4:36 ` bugcrazy
  2022-06-10  2:14 ` github-actions
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2021-11-17  4:36 UTC (permalink / raw)
  To: ml

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

New review comment by bugcrazy on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#discussion_r750875445

Comment:
Resolved, removed a line, now passed on all architectures! 

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

* Re: New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (7 preceding siblings ...)
  2021-11-17  4:36 ` [PR REVIEW] " bugcrazy
@ 2022-06-10  2:14 ` github-actions
  2022-06-20  0:54 ` bugcrazy
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: github-actions @ 2022-06-10  2:14 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#issuecomment-1151841533

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (8 preceding siblings ...)
  2022-06-10  2:14 ` github-actions
@ 2022-06-20  0:54 ` bugcrazy
  2022-09-18  2:14 ` github-actions
  2022-09-20 15:22 ` [PR PATCH] [Merged]: " leahneukirchen
  11 siblings, 0 replies; 13+ messages in thread
From: bugcrazy @ 2022-06-20  0:54 UTC (permalink / raw)
  To: ml

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

New comment by bugcrazy on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#issuecomment-1159852280

Comment:
PR is waiting for approval or not!?



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

* Re: New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (9 preceding siblings ...)
  2022-06-20  0:54 ` bugcrazy
@ 2022-09-18  2:14 ` github-actions
  2022-09-20 15:22 ` [PR PATCH] [Merged]: " leahneukirchen
  11 siblings, 0 replies; 13+ messages in thread
From: github-actions @ 2022-09-18  2:14 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/33852#issuecomment-1250175449

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Merged]: New package: reflex-20210808
  2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
                   ` (10 preceding siblings ...)
  2022-09-18  2:14 ` github-actions
@ 2022-09-20 15:22 ` leahneukirchen
  11 siblings, 0 replies; 13+ messages in thread
From: leahneukirchen @ 2022-09-20 15:22 UTC (permalink / raw)
  To: ml

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

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

New package: reflex-20210808
https://github.com/void-linux/void-packages/pull/33852

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2022-09-20 15:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-01  0:13 [PR PATCH] New package: reflex-20210808 bugcrazy
2021-11-01  1:23 ` bugcrazy
2021-11-01  2:54 ` [PR REVIEW] " ericonr
2021-11-01  4:36 ` [PR PATCH] [Updated] " bugcrazy
2021-11-01  9:26 ` [PR REVIEW] " bugcrazy
2021-11-02 19:28 ` bugcrazy
2021-11-17  4:20 ` [PR PATCH] [Updated] " bugcrazy
2021-11-17  4:31 ` bugcrazy
2021-11-17  4:36 ` [PR REVIEW] " bugcrazy
2022-06-10  2:14 ` github-actions
2022-06-20  0:54 ` bugcrazy
2022-09-18  2:14 ` github-actions
2022-09-20 15:22 ` [PR PATCH] [Merged]: " leahneukirchen

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