Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: matterbridge-1.26.0.
@ 2024-01-01 18:09 AnInternetTroll
  2024-02-08 19:14 ` [PR PATCH] [Updated] " AnInternetTroll
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: AnInternetTroll @ 2024-01-01 18:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AnInternetTroll/void-packages user/luca/matterbridge
https://github.com/void-linux/void-packages/pull/48019

New package: matterbridge-1.26.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuilt)

Tested on aarch64-musl by making a bridge between matrix and an API
gateway.


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

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

From d5a3e0e8bc9454d9396a22ce234f376a19ed8e24 Mon Sep 17 00:00:00 2001
From: Luca Matei Pintilie <luca@lucamatei.com>
Date: Mon, 1 Jan 2024 17:38:27 +0100
Subject: [PATCH] New package: matterbridge-1.26.0.

---
 srcpkgs/matterbridge/files/matterbridge/run |  7 +++++++
 srcpkgs/matterbridge/template               | 19 +++++++++++++++++++
 2 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/matterbridge/files/matterbridge/run
 create mode 100644 srcpkgs/matterbridge/template

diff --git a/srcpkgs/matterbridge/files/matterbridge/run b/srcpkgs/matterbridge/files/matterbridge/run
new file mode 100644
index 0000000000000..3e15ebb86f948
--- /dev/null
+++ b/srcpkgs/matterbridge/files/matterbridge/run
@@ -0,0 +1,7 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+ulimit -n ${MAX_OPEN_FILES:-8192}
+export MATTERBRIDGE_CONFIG=${MATTERBRIDGE_CONFIG:-/etc/matterbridge.toml}
+
+exec matterbridge -conf "${MATTERBRIDGE_CONFIG}"
diff --git a/srcpkgs/matterbridge/template b/srcpkgs/matterbridge/template
new file mode 100644
index 0000000000000..46221dedf878a
--- /dev/null
+++ b/srcpkgs/matterbridge/template
@@ -0,0 +1,19 @@
+# Template file for 'matterbridge'
+pkgname=matterbridge
+version=1.26.0
+revision=1
+build_style=go
+go_import_path="github.com/42wim/matterbridge"
+conf_files="/etc/matterbridge.toml"
+short_desc="Bridge between various chatting services"
+maintainer="Luca Matei Pintilie <luca@lucamatei.com>"
+license="Apache-2.0"
+homepage="https://github.com/42wim/matterbridge/"
+changelog="https://github.com/42wim/matterbridge/releases/"
+distfiles="https://github.com/42wim/matterbridge/archive/refs/tags/v$version.tar.gz"
+checksum=00e1bbfe3b32f2feccf9a7f13a6f12b1ce28a5eb04cc7b922b344e3493497425
+
+post_install() {
+	vconf matterbridge.toml.sample matterbridge.toml
+	vsv matterbridge
+}

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

* Re: [PR PATCH] [Updated] New package: matterbridge-1.26.0.
  2024-01-01 18:09 [PR PATCH] New package: matterbridge-1.26.0 AnInternetTroll
@ 2024-02-08 19:14 ` AnInternetTroll
  2024-05-09  1:46 ` github-actions
  2024-05-09  8:01 ` [PR PATCH] [Updated] " AnInternetTroll
  2 siblings, 0 replies; 4+ messages in thread
From: AnInternetTroll @ 2024-02-08 19:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AnInternetTroll/void-packages user/luca/matterbridge
https://github.com/void-linux/void-packages/pull/48019

New package: matterbridge-1.26.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuilt)

Tested on aarch64-musl by making a bridge between matrix and an API
gateway.


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

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

From 562548c5fd238a81791fd352399b606776fc570f Mon Sep 17 00:00:00 2001
From: Luca Matei Pintilie <luca@lucamatei.com>
Date: Mon, 1 Jan 2024 17:38:27 +0100
Subject: [PATCH] New package: matterbridge-1.26.0.

---
 srcpkgs/matterbridge/files/matterbridge/run |  7 +++++++
 srcpkgs/matterbridge/template               | 19 +++++++++++++++++++
 2 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/matterbridge/files/matterbridge/run
 create mode 100644 srcpkgs/matterbridge/template

diff --git a/srcpkgs/matterbridge/files/matterbridge/run b/srcpkgs/matterbridge/files/matterbridge/run
new file mode 100644
index 0000000000000..3e15ebb86f948
--- /dev/null
+++ b/srcpkgs/matterbridge/files/matterbridge/run
@@ -0,0 +1,7 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+ulimit -n ${MAX_OPEN_FILES:-8192}
+export MATTERBRIDGE_CONFIG=${MATTERBRIDGE_CONFIG:-/etc/matterbridge.toml}
+
+exec matterbridge -conf "${MATTERBRIDGE_CONFIG}"
diff --git a/srcpkgs/matterbridge/template b/srcpkgs/matterbridge/template
new file mode 100644
index 0000000000000..46221dedf878a
--- /dev/null
+++ b/srcpkgs/matterbridge/template
@@ -0,0 +1,19 @@
+# Template file for 'matterbridge'
+pkgname=matterbridge
+version=1.26.0
+revision=1
+build_style=go
+go_import_path="github.com/42wim/matterbridge"
+conf_files="/etc/matterbridge.toml"
+short_desc="Bridge between various chatting services"
+maintainer="Luca Matei Pintilie <luca@lucamatei.com>"
+license="Apache-2.0"
+homepage="https://github.com/42wim/matterbridge/"
+changelog="https://github.com/42wim/matterbridge/releases/"
+distfiles="https://github.com/42wim/matterbridge/archive/refs/tags/v$version.tar.gz"
+checksum=00e1bbfe3b32f2feccf9a7f13a6f12b1ce28a5eb04cc7b922b344e3493497425
+
+post_install() {
+	vconf matterbridge.toml.sample matterbridge.toml
+	vsv matterbridge
+}

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

* Re: New package: matterbridge-1.26.0.
  2024-01-01 18:09 [PR PATCH] New package: matterbridge-1.26.0 AnInternetTroll
  2024-02-08 19:14 ` [PR PATCH] [Updated] " AnInternetTroll
@ 2024-05-09  1:46 ` github-actions
  2024-05-09  8:01 ` [PR PATCH] [Updated] " AnInternetTroll
  2 siblings, 0 replies; 4+ messages in thread
From: github-actions @ 2024-05-09  1:46 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/48019#issuecomment-2101780928

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

* Re: [PR PATCH] [Updated] New package: matterbridge-1.26.0.
  2024-01-01 18:09 [PR PATCH] New package: matterbridge-1.26.0 AnInternetTroll
  2024-02-08 19:14 ` [PR PATCH] [Updated] " AnInternetTroll
  2024-05-09  1:46 ` github-actions
@ 2024-05-09  8:01 ` AnInternetTroll
  2 siblings, 0 replies; 4+ messages in thread
From: AnInternetTroll @ 2024-05-09  8:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AnInternetTroll/void-packages user/luca/matterbridge
https://github.com/void-linux/void-packages/pull/48019

New package: matterbridge-1.26.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuilt)

Tested on aarch64-musl by making a bridge between matrix and an API
gateway.


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

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

From 03eec20b351b71662f729227132cba6c20b5f92f Mon Sep 17 00:00:00 2001
From: Luca Matei Pintilie <luca@lucamatei.com>
Date: Mon, 1 Jan 2024 17:38:27 +0100
Subject: [PATCH] New package: matterbridge-1.26.0.

---
 srcpkgs/matterbridge/files/matterbridge/run |  7 +++++++
 srcpkgs/matterbridge/template               | 19 +++++++++++++++++++
 2 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/matterbridge/files/matterbridge/run
 create mode 100644 srcpkgs/matterbridge/template

diff --git a/srcpkgs/matterbridge/files/matterbridge/run b/srcpkgs/matterbridge/files/matterbridge/run
new file mode 100644
index 00000000000000..3e15ebb86f9483
--- /dev/null
+++ b/srcpkgs/matterbridge/files/matterbridge/run
@@ -0,0 +1,7 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+ulimit -n ${MAX_OPEN_FILES:-8192}
+export MATTERBRIDGE_CONFIG=${MATTERBRIDGE_CONFIG:-/etc/matterbridge.toml}
+
+exec matterbridge -conf "${MATTERBRIDGE_CONFIG}"
diff --git a/srcpkgs/matterbridge/template b/srcpkgs/matterbridge/template
new file mode 100644
index 00000000000000..46221dedf878a5
--- /dev/null
+++ b/srcpkgs/matterbridge/template
@@ -0,0 +1,19 @@
+# Template file for 'matterbridge'
+pkgname=matterbridge
+version=1.26.0
+revision=1
+build_style=go
+go_import_path="github.com/42wim/matterbridge"
+conf_files="/etc/matterbridge.toml"
+short_desc="Bridge between various chatting services"
+maintainer="Luca Matei Pintilie <luca@lucamatei.com>"
+license="Apache-2.0"
+homepage="https://github.com/42wim/matterbridge/"
+changelog="https://github.com/42wim/matterbridge/releases/"
+distfiles="https://github.com/42wim/matterbridge/archive/refs/tags/v$version.tar.gz"
+checksum=00e1bbfe3b32f2feccf9a7f13a6f12b1ce28a5eb04cc7b922b344e3493497425
+
+post_install() {
+	vconf matterbridge.toml.sample matterbridge.toml
+	vsv matterbridge
+}

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

end of thread, other threads:[~2024-05-09  8:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-01 18:09 [PR PATCH] New package: matterbridge-1.26.0 AnInternetTroll
2024-02-08 19:14 ` [PR PATCH] [Updated] " AnInternetTroll
2024-05-09  1:46 ` github-actions
2024-05-09  8:01 ` [PR PATCH] [Updated] " AnInternetTroll

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