Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] new package: insomnia-2021.7.2_1
@ 2021-12-21 16:10 selfisekai
  2022-01-01 14:37 ` [PR PATCH] [Updated] " selfisekai
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: selfisekai @ 2021-12-21 16:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/selfisekai/void-packages insomnia-2021-7-2
https://github.com/void-linux/void-packages/pull/34646

new package: insomnia-2021.7.2_1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** (I think)
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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
-->

Closes #11311, #23948, #26647


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

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

From 059a8e7102ee928099adb3bb4b73b1efc719d293 Mon Sep 17 00:00:00 2001
From: Lauren Liberda <laura@selfisekai.rocks>
Date: Tue, 21 Dec 2021 14:25:39 +0100
Subject: [PATCH] new package: insomnia-2021.7.2_1

---
 srcpkgs/insomnia/files/insomnia.desktop       | 11 +++++
 .../patches/remove-preinstall-step.patch      | 21 +++++++++
 srcpkgs/insomnia/template                     | 46 +++++++++++++++++++
 3 files changed, 78 insertions(+)
 create mode 100644 srcpkgs/insomnia/files/insomnia.desktop
 create mode 100644 srcpkgs/insomnia/patches/remove-preinstall-step.patch
 create mode 100644 srcpkgs/insomnia/template

diff --git a/srcpkgs/insomnia/files/insomnia.desktop b/srcpkgs/insomnia/files/insomnia.desktop
new file mode 100644
index 000000000000..5bcb7f317f90
--- /dev/null
+++ b/srcpkgs/insomnia/files/insomnia.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Insomnia
+Comment=Design and debug APIs like a human, not a robot.
+GenericName=The Open Source API Client and Design Platform for GraphQL, REST and gRPC
+Exec=insomnia
+Icon=insomnia
+Type=Application
+StartupNotify=false
+StartupWMClass=Insomnia
+Categories=Utility;Development;
+Keywords=rest;graphql;request;
diff --git a/srcpkgs/insomnia/patches/remove-preinstall-step.patch b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
new file mode 100644
index 000000000000..093eba6cadd2
--- /dev/null
+++ b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
@@ -0,0 +1,21 @@
+From b889667bfd86698fbd7ec3c3d2efb7b7112a303c Mon Sep 17 00:00:00 2001
+From: Lauren Liberda <laura@selfisekai.rocks>
+Date: Tue, 21 Dec 2021 14:06:48 +0100
+Subject: [PATCH] do not preinstall check
+
+---
+ package.json                           |   1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/package.json b/package.json
+index 57dca7b5..da56fc6a 100644
+--- a/package.json
++++ b/package.json
+@@ -31,7 +31,6 @@
+     "app-release": "npm run release --prefix packages/insomnia-app",
+     "storybook-start": "npm run storybook --prefix packages/insomnia-components",
+     "storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
+-    "preinstall": "node ./scripts/check-version.js",
+     "app-build:smoke": "cross-env SMOKE_TEST=true npm run app-build",
+     "app-package:smoke": "cross-env SMOKE_TEST=true npm run app-package",
+     "test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test",
diff --git a/srcpkgs/insomnia/template b/srcpkgs/insomnia/template
new file mode 100644
index 000000000000..1b40b90decf9
--- /dev/null
+++ b/srcpkgs/insomnia/template
@@ -0,0 +1,46 @@
+# Template file for 'insomnia'
+pkgname=insomnia
+version=2021.7.2
+revision=1
+archs="x86_64"
+wrksrc="insomnia-core-${version}"
+hostmakedepends="git nodejs-lts curl tar"
+makedepends="python3 libcurl-devel make fontconfig-devel"
+depends="ffmpeg electron9"
+short_desc="Desktop API client for REST and GraphQL"
+maintainer="Lauren Liberda <lauren@selfisekai.rocks>"
+license="MIT"
+homepage="https://insomnia.rest"
+distfiles="https://github.com/Kong/insomnia/archive/core@${version}.tar.gz"
+checksum=ba4bce09c908678565a79f5439b4ae9662b7d8c41897567311c940e747bab233
+nostrip_files="insomnia"
+
+pre_build() {
+	npm run bootstrap
+	npm run test
+}
+
+do_build() {
+	GIT_TAG="core@${version}" npm run app-package
+}
+
+do_install() {
+	vmkdir usr/lib/insomnia
+	vcopy packages/insomnia-app/dist/linux-unpacked/* usr/lib/insomnia
+
+	vmkdir usr/bin
+	ln -s /usr/lib/insomnia/insomnia ${DESTDIR}/usr/bin/
+
+	vinstall "${FILESDIR}/insomnia.desktop" 644 usr/share/applications
+
+	for size in 16 32 48 128; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}x${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	for size in 256 512; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	vlicense LICENSE
+}
+

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

* Re: [PR PATCH] [Updated] new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
@ 2022-01-01 14:37 ` selfisekai
  2022-01-01 18:44 ` selfisekai
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: selfisekai @ 2022-01-01 14:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/selfisekai/void-packages insomnia-2021-7-2
https://github.com/void-linux/void-packages/pull/34646

new package: insomnia-2021.7.2_1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** (I think)
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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
-->

Closes #11311, #23948, #26647


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

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

From fe889e1601c71e23839fc1205fabdf8b5e6b3c3e Mon Sep 17 00:00:00 2001
From: Lauren Liberda <laura@selfisekai.rocks>
Date: Tue, 21 Dec 2021 14:25:39 +0100
Subject: [PATCH] new package: insomnia-2021.7.2

---
 srcpkgs/insomnia/files/insomnia.desktop       | 11 +++++
 .../patches/remove-preinstall-step.patch      | 21 +++++++++
 srcpkgs/insomnia/template                     | 45 +++++++++++++++++++
 3 files changed, 77 insertions(+)
 create mode 100644 srcpkgs/insomnia/files/insomnia.desktop
 create mode 100644 srcpkgs/insomnia/patches/remove-preinstall-step.patch
 create mode 100644 srcpkgs/insomnia/template

diff --git a/srcpkgs/insomnia/files/insomnia.desktop b/srcpkgs/insomnia/files/insomnia.desktop
new file mode 100644
index 000000000000..5bcb7f317f90
--- /dev/null
+++ b/srcpkgs/insomnia/files/insomnia.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Insomnia
+Comment=Design and debug APIs like a human, not a robot.
+GenericName=The Open Source API Client and Design Platform for GraphQL, REST and gRPC
+Exec=insomnia
+Icon=insomnia
+Type=Application
+StartupNotify=false
+StartupWMClass=Insomnia
+Categories=Utility;Development;
+Keywords=rest;graphql;request;
diff --git a/srcpkgs/insomnia/patches/remove-preinstall-step.patch b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
new file mode 100644
index 000000000000..093eba6cadd2
--- /dev/null
+++ b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
@@ -0,0 +1,21 @@
+From b889667bfd86698fbd7ec3c3d2efb7b7112a303c Mon Sep 17 00:00:00 2001
+From: Lauren Liberda <laura@selfisekai.rocks>
+Date: Tue, 21 Dec 2021 14:06:48 +0100
+Subject: [PATCH] do not preinstall check
+
+---
+ package.json                           |   1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/package.json b/package.json
+index 57dca7b5..da56fc6a 100644
+--- a/package.json
++++ b/package.json
+@@ -31,7 +31,6 @@
+     "app-release": "npm run release --prefix packages/insomnia-app",
+     "storybook-start": "npm run storybook --prefix packages/insomnia-components",
+     "storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
+-    "preinstall": "node ./scripts/check-version.js",
+     "app-build:smoke": "cross-env SMOKE_TEST=true npm run app-build",
+     "app-package:smoke": "cross-env SMOKE_TEST=true npm run app-package",
+     "test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test",
diff --git a/srcpkgs/insomnia/template b/srcpkgs/insomnia/template
new file mode 100644
index 000000000000..153120754a6e
--- /dev/null
+++ b/srcpkgs/insomnia/template
@@ -0,0 +1,45 @@
+# Template file for 'insomnia'
+pkgname=insomnia
+version=2021.7.2
+revision=1
+archs="x86_64"
+wrksrc="insomnia-core-${version}"
+hostmakedepends="git nodejs-lts curl tar"
+makedepends="python3 libcurl-devel make fontconfig-devel"
+depends="ffmpeg electron9"
+short_desc="Desktop API client for REST and GraphQL"
+maintainer="Lauren Liberda <lauren@selfisekai.rocks>"
+license="MIT"
+homepage="https://insomnia.rest"
+distfiles="https://github.com/Kong/insomnia/archive/core@${version}.tar.gz"
+checksum=ba4bce09c908678565a79f5439b4ae9662b7d8c41897567311c940e747bab233
+nostrip_files="insomnia"
+
+pre_build() {
+	npm run bootstrap
+	npm run test
+}
+
+do_build() {
+	GIT_TAG="core@${version}" npm run app-package
+}
+
+do_install() {
+	vmkdir usr/lib/insomnia
+	vcopy packages/insomnia-app/dist/linux-unpacked/* usr/lib/insomnia
+
+	vmkdir usr/bin
+	ln -s /usr/lib/insomnia/insomnia ${DESTDIR}/usr/bin/
+
+	vinstall "${FILESDIR}/insomnia.desktop" 644 usr/share/applications
+
+	for size in 16 32 48 128; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}x${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	for size in 256 512; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
  2022-01-01 14:37 ` [PR PATCH] [Updated] " selfisekai
@ 2022-01-01 18:44 ` selfisekai
  2022-02-26 15:59 ` AlphaTechnolog
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: selfisekai @ 2022-01-01 18:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/selfisekai/void-packages insomnia-2021-7-2
https://github.com/void-linux/void-packages/pull/34646

new package: insomnia-2021.7.2_1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** (I think)
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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
-->

Closes #11311, #23948, #26647


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

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

From 585a4a147683d23d81bd95cb58b1a90c35595386 Mon Sep 17 00:00:00 2001
From: Lauren Liberda <laura@selfisekai.rocks>
Date: Tue, 21 Dec 2021 14:25:39 +0100
Subject: [PATCH] new package: insomnia-2021.7.2

---
 srcpkgs/insomnia/files/insomnia.desktop       | 11 +++++
 .../patches/remove-preinstall-step.patch      | 21 +++++++++
 srcpkgs/insomnia/template                     | 45 +++++++++++++++++++
 3 files changed, 77 insertions(+)
 create mode 100644 srcpkgs/insomnia/files/insomnia.desktop
 create mode 100644 srcpkgs/insomnia/patches/remove-preinstall-step.patch
 create mode 100644 srcpkgs/insomnia/template

diff --git a/srcpkgs/insomnia/files/insomnia.desktop b/srcpkgs/insomnia/files/insomnia.desktop
new file mode 100644
index 000000000000..5bcb7f317f90
--- /dev/null
+++ b/srcpkgs/insomnia/files/insomnia.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Insomnia
+Comment=Design and debug APIs like a human, not a robot.
+GenericName=The Open Source API Client and Design Platform for GraphQL, REST and gRPC
+Exec=insomnia
+Icon=insomnia
+Type=Application
+StartupNotify=false
+StartupWMClass=Insomnia
+Categories=Utility;Development;
+Keywords=rest;graphql;request;
diff --git a/srcpkgs/insomnia/patches/remove-preinstall-step.patch b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
new file mode 100644
index 000000000000..093eba6cadd2
--- /dev/null
+++ b/srcpkgs/insomnia/patches/remove-preinstall-step.patch
@@ -0,0 +1,21 @@
+From b889667bfd86698fbd7ec3c3d2efb7b7112a303c Mon Sep 17 00:00:00 2001
+From: Lauren Liberda <laura@selfisekai.rocks>
+Date: Tue, 21 Dec 2021 14:06:48 +0100
+Subject: [PATCH] do not preinstall check
+
+---
+ package.json                           |   1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/package.json b/package.json
+index 57dca7b5..da56fc6a 100644
+--- a/package.json
++++ b/package.json
+@@ -31,7 +31,6 @@
+     "app-release": "npm run release --prefix packages/insomnia-app",
+     "storybook-start": "npm run storybook --prefix packages/insomnia-components",
+     "storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
+-    "preinstall": "node ./scripts/check-version.js",
+     "app-build:smoke": "cross-env SMOKE_TEST=true npm run app-build",
+     "app-package:smoke": "cross-env SMOKE_TEST=true npm run app-package",
+     "test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test",
diff --git a/srcpkgs/insomnia/template b/srcpkgs/insomnia/template
new file mode 100644
index 000000000000..153120754a6e
--- /dev/null
+++ b/srcpkgs/insomnia/template
@@ -0,0 +1,45 @@
+# Template file for 'insomnia'
+pkgname=insomnia
+version=2021.7.2
+revision=1
+archs="x86_64"
+wrksrc="insomnia-core-${version}"
+hostmakedepends="git nodejs-lts curl tar"
+makedepends="python3 libcurl-devel make fontconfig-devel"
+depends="ffmpeg electron9"
+short_desc="Desktop API client for REST and GraphQL"
+maintainer="Lauren Liberda <lauren@selfisekai.rocks>"
+license="MIT"
+homepage="https://insomnia.rest"
+distfiles="https://github.com/Kong/insomnia/archive/core@${version}.tar.gz"
+checksum=ba4bce09c908678565a79f5439b4ae9662b7d8c41897567311c940e747bab233
+nostrip_files="insomnia"
+
+pre_build() {
+	npm run bootstrap
+	npm run test
+}
+
+do_build() {
+	GIT_TAG="core@${version}" npm run app-package
+}
+
+do_install() {
+	vmkdir usr/lib/insomnia
+	vcopy packages/insomnia-app/dist/linux-unpacked/* usr/lib/insomnia
+
+	vmkdir usr/bin
+	ln -s /usr/lib/insomnia/insomnia ${DESTDIR}/usr/bin/
+
+	vinstall "${FILESDIR}/insomnia.desktop" 644 usr/share/applications
+
+	for size in 16 32 48 128; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}x${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	for size in 256 512; do
+		vinstall packages/insomnia-app/dist/.icon-set/icon_${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ insomnia.png
+	done
+
+	vlicense LICENSE
+}

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

* Re: new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
  2022-01-01 14:37 ` [PR PATCH] [Updated] " selfisekai
  2022-01-01 18:44 ` selfisekai
@ 2022-02-26 15:59 ` AlphaTechnolog
  2022-04-12 12:25 ` albsen
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: AlphaTechnolog @ 2022-02-26 15:59 UTC (permalink / raw)
  To: ml

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

New comment by AlphaTechnolog on void-packages repository

https://github.com/void-linux/void-packages/pull/34646#issuecomment-1052241640

Comment:
please merge this!

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

* Re: new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
                   ` (2 preceding siblings ...)
  2022-02-26 15:59 ` AlphaTechnolog
@ 2022-04-12 12:25 ` albsen
  2022-07-12  2:15 ` github-actions
  2022-07-27  2:13 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: albsen @ 2022-04-12 12:25 UTC (permalink / raw)
  To: ml

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

New comment by albsen on void-packages repository

https://github.com/void-linux/void-packages/pull/34646#issuecomment-1096658823

Comment:
I just tried it, works as expected.

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

* Re: new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
                   ` (3 preceding siblings ...)
  2022-04-12 12:25 ` albsen
@ 2022-07-12  2:15 ` github-actions
  2022-07-27  2:13 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2022-07-12  2:15 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/34646#issuecomment-1181235495

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] 7+ messages in thread

* Re: [PR PATCH] [Closed]: new package: insomnia-2021.7.2_1
  2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
                   ` (4 preceding siblings ...)
  2022-07-12  2:15 ` github-actions
@ 2022-07-27  2:13 ` github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2022-07-27  2:13 UTC (permalink / raw)
  To: ml

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

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

new package: insomnia-2021.7.2_1
https://github.com/void-linux/void-packages/pull/34646

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** (I think)
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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
-->

Closes #11311, #23948, #26647


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

end of thread, other threads:[~2022-07-27  2:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21 16:10 [PR PATCH] new package: insomnia-2021.7.2_1 selfisekai
2022-01-01 14:37 ` [PR PATCH] [Updated] " selfisekai
2022-01-01 18:44 ` selfisekai
2022-02-26 15:59 ` AlphaTechnolog
2022-04-12 12:25 ` albsen
2022-07-12  2:15 ` github-actions
2022-07-27  2:13 ` [PR PATCH] [Closed]: " github-actions

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