Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: calls + deps (callaudiod + feedbackd)
@ 2021-02-28 21:27 jcgruenhage
  2021-02-28 22:42 ` [PR PATCH] [Updated] " jcgruenhage
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: jcgruenhage @ 2021-02-28 21:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages calls-0.3.1_1
https://github.com/void-linux/void-packages/pull/29138

New packages: calls + deps (callaudiod + feedbackd)
<!-- 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
- [ ] 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/29138.patch is attached

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

From ab01757b7d9b70fe7e902de3642a0bba98b9b804 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 21:45:00 +0100
Subject: [PATCH 1/3] New package: feedbackd-0.0.0+git20210125

---
 common/shlibs              |  1 +
 srcpkgs/feedbackd/template | 37 +++++++++++++++++++++++++++++++++++++
 srcpkgs/feedbackd/update   |  2 ++
 srcpkgs/libfeedback        |  1 +
 srcpkgs/libfeedback-devel  |  1 +
 5 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/feedbackd/template
 create mode 100644 srcpkgs/feedbackd/update
 create mode 120000 srcpkgs/libfeedback
 create mode 120000 srcpkgs/libfeedback-devel

diff --git a/common/shlibs b/common/shlibs
index 959f1692961..48e89eb9d1c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3924,3 +3924,4 @@ libsimavr.so.1 simavr-1.6_2
 libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
diff --git a/srcpkgs/feedbackd/template b/srcpkgs/feedbackd/template
new file mode 100644
index 00000000000..ac0d229546e
--- /dev/null
+++ b/srcpkgs/feedbackd/template
@@ -0,0 +1,37 @@
+# Template file for 'feedbackd'
+pkgname=feedbackd
+version=0.0.0+git20210125
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+build_helper=gir
+hostmakedepends="vala glib-devel pkg-config"
+makedepends="gsound-devel libgudev-devel json-glib-devel"
+depends="dbus"
+short_desc="Daemon to provide haptic feedback on events"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/feedbackd"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=48db1e6e8263025d881cd00e66c2d2a82db0d1a632cfb378803f9e3337c5dd8d
+
+post_install() {
+	vinstall debian/feedbackd.udev 0644 usr/lib/udev/rules.d 90-feedbackd.rules
+}
+
+libfeedback_package() {
+	short_desc+=" - shared libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libfeedback-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/feedbackd/update b/srcpkgs/feedbackd/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/feedbackd/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'
diff --git a/srcpkgs/libfeedback b/srcpkgs/libfeedback
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file
diff --git a/srcpkgs/libfeedback-devel b/srcpkgs/libfeedback-devel
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback-devel
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file

From 02f2eddcb245b4a3019d5de33a39dab83e9df25d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 20:43:33 +0100
Subject: [PATCH 2/3] New package: callaudiod-0.1.0

---
 common/shlibs               |  2 ++
 srcpkgs/callaudiod/template | 39 +++++++++++++++++++++++++++++++++++++
 srcpkgs/libcallaudio        |  1 +
 srcpkgs/libcallaudio-devel  |  1 +
 4 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/callaudiod/template
 create mode 120000 srcpkgs/libcallaudio
 create mode 120000 srcpkgs/libcallaudio-devel

diff --git a/common/shlibs b/common/shlibs
index 48e89eb9d1c..ebc0c0226ba 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3925,3 +3925,5 @@ libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
 libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20200707_1
+libcallaudio-0.1.so.0 libcallaudio-0.1.0_1
diff --git a/srcpkgs/callaudiod/template b/srcpkgs/callaudiod/template
new file mode 100644
index 00000000000..68957594bbf
--- /dev/null
+++ b/srcpkgs/callaudiod/template
@@ -0,0 +1,39 @@
+# Template file for 'callaudiod'
+pkgname=callaudiod
+version=0.1.0
+revision=1
+#archs="i686 x86_64"
+#wrksrc=
+#create_wrksrc=yes
+build_style=meson
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="pkg-config"
+makedepends="alsa-lib-devel pulseaudio-devel glib-devel"
+depends=""
+short_desc="Call audio routing daemon"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="LGPL-3.0-or-later"
+homepage="https://gitlab.com/mobian1/callaudiod"
+distfiles="https://gitlab.com/mobian1/callaudiod/-/archive/${version}/callaudiod-${version}.tar.gz"
+checksum=eb9202af99e7d5fdfb0c20fcb64a0384a2024c9ca27a4c8ba45113eb0ffb97fc
+
+libcallaudio_package() {
+	short_desc+=" - shared-libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libcallaudio-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/libcallaudio b/srcpkgs/libcallaudio
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file
diff --git a/srcpkgs/libcallaudio-devel b/srcpkgs/libcallaudio-devel
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio-devel
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file

From 33ea825b452723ed0343830538fa57e6f6f93a99 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 22:25:00 +0100
Subject: [PATCH 3/3] New package: calls-0.3.1

---
 srcpkgs/calls/template | 17 +++++++++++++++++
 srcpkgs/calls/update   |  2 ++
 2 files changed, 19 insertions(+)
 create mode 100644 srcpkgs/calls/template
 create mode 100644 srcpkgs/calls/update

diff --git a/srcpkgs/calls/template b/srcpkgs/calls/template
new file mode 100644
index 00000000000..1bca9c225de
--- /dev/null
+++ b/srcpkgs/calls/template
@@ -0,0 +1,17 @@
+# Template file for 'calls'
+pkgname=calls
+version=0.3.1
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+hostmakedepends="glib-devel gettext vala pkg-config wayland-devel
+ evolution-data-server-devel"
+makedepends="libcallaudio-devel folks-devel libhandy1-devel libpeas-devel
+ gom-devel ModemManager-devel libfeedback-devel"
+depends="NetworkManager ModemManager callaudiod"
+short_desc="Phone call application"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/calls"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=6b0928e3b40819082a0b409b09f94c6698dd78af0b516cb2b5d389ed351b1c55
diff --git a/srcpkgs/calls/update b/srcpkgs/calls/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/calls/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'

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

* Re: [PR PATCH] [Updated] New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
@ 2021-02-28 22:42 ` jcgruenhage
  2021-02-28 22:47 ` jcgruenhage
                   ` (23 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2021-02-28 22:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages calls-0.3.1_1
https://github.com/void-linux/void-packages/pull/29138

New packages: calls + deps (callaudiod + feedbackd)
<!-- 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
- [ ] 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/29138.patch is attached

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

From 9c43f5e773e280d8bb9038c24df93bd1f06cfe34 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 21:45:00 +0100
Subject: [PATCH 1/3] New package: feedbackd-0.0.0+git20210125

---
 common/shlibs              |  1 +
 srcpkgs/feedbackd/template | 38 ++++++++++++++++++++++++++++++++++++++
 srcpkgs/feedbackd/update   |  2 ++
 srcpkgs/libfeedback        |  1 +
 srcpkgs/libfeedback-devel  |  1 +
 5 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/feedbackd/template
 create mode 100644 srcpkgs/feedbackd/update
 create mode 120000 srcpkgs/libfeedback
 create mode 120000 srcpkgs/libfeedback-devel

diff --git a/common/shlibs b/common/shlibs
index 959f1692961..48e89eb9d1c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3924,3 +3924,4 @@ libsimavr.so.1 simavr-1.6_2
 libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
diff --git a/srcpkgs/feedbackd/template b/srcpkgs/feedbackd/template
new file mode 100644
index 00000000000..6e60d63417f
--- /dev/null
+++ b/srcpkgs/feedbackd/template
@@ -0,0 +1,38 @@
+# Template file for 'feedbackd'
+pkgname=feedbackd
+version=0.0.0+git20210125
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+build_helper=gir
+hostmakedepends="vala glib-devel pkg-config"
+makedepends="gsound-devel libgudev-devel json-glib-devel"
+depends="dbus"
+checkdepends="dbus"
+short_desc="Daemon to provide haptic feedback on events"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/feedbackd"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=48db1e6e8263025d881cd00e66c2d2a82db0d1a632cfb378803f9e3337c5dd8d
+
+post_install() {
+	vinstall debian/feedbackd.udev 0644 usr/lib/udev/rules.d 90-feedbackd.rules
+}
+
+libfeedback_package() {
+	short_desc+=" - shared libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libfeedback-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/feedbackd/update b/srcpkgs/feedbackd/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/feedbackd/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'
diff --git a/srcpkgs/libfeedback b/srcpkgs/libfeedback
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file
diff --git a/srcpkgs/libfeedback-devel b/srcpkgs/libfeedback-devel
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback-devel
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file

From ee2c66e930cd237dae0081528dc01c1d7ece0619 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 20:43:33 +0100
Subject: [PATCH 2/3] New package: callaudiod-0.1.0

---
 common/shlibs               |  2 ++
 srcpkgs/callaudiod/template | 39 +++++++++++++++++++++++++++++++++++++
 srcpkgs/libcallaudio        |  1 +
 srcpkgs/libcallaudio-devel  |  1 +
 4 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/callaudiod/template
 create mode 120000 srcpkgs/libcallaudio
 create mode 120000 srcpkgs/libcallaudio-devel

diff --git a/common/shlibs b/common/shlibs
index 48e89eb9d1c..ebc0c0226ba 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3925,3 +3925,5 @@ libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
 libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20200707_1
+libcallaudio-0.1.so.0 libcallaudio-0.1.0_1
diff --git a/srcpkgs/callaudiod/template b/srcpkgs/callaudiod/template
new file mode 100644
index 00000000000..68957594bbf
--- /dev/null
+++ b/srcpkgs/callaudiod/template
@@ -0,0 +1,39 @@
+# Template file for 'callaudiod'
+pkgname=callaudiod
+version=0.1.0
+revision=1
+#archs="i686 x86_64"
+#wrksrc=
+#create_wrksrc=yes
+build_style=meson
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="pkg-config"
+makedepends="alsa-lib-devel pulseaudio-devel glib-devel"
+depends=""
+short_desc="Call audio routing daemon"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="LGPL-3.0-or-later"
+homepage="https://gitlab.com/mobian1/callaudiod"
+distfiles="https://gitlab.com/mobian1/callaudiod/-/archive/${version}/callaudiod-${version}.tar.gz"
+checksum=eb9202af99e7d5fdfb0c20fcb64a0384a2024c9ca27a4c8ba45113eb0ffb97fc
+
+libcallaudio_package() {
+	short_desc+=" - shared-libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libcallaudio-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/libcallaudio b/srcpkgs/libcallaudio
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file
diff --git a/srcpkgs/libcallaudio-devel b/srcpkgs/libcallaudio-devel
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio-devel
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file

From 68a64d42effd771c116353a0c59f1b7a8508f24d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 22:25:00 +0100
Subject: [PATCH 3/3] New package: calls-0.3.1

---
 srcpkgs/calls/template | 19 +++++++++++++++++++
 srcpkgs/calls/update   |  2 ++
 2 files changed, 21 insertions(+)
 create mode 100644 srcpkgs/calls/template
 create mode 100644 srcpkgs/calls/update

diff --git a/srcpkgs/calls/template b/srcpkgs/calls/template
new file mode 100644
index 00000000000..f3adf7e2364
--- /dev/null
+++ b/srcpkgs/calls/template
@@ -0,0 +1,19 @@
+# Template file for 'calls'
+pkgname=calls
+version=0.3.1
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+hostmakedepends="glib-devel gettext vala pkg-config wayland-devel
+ evolution-data-server-devel"
+makedepends="libcallaudio-devel folks-devel libhandy1-devel libpeas-devel
+ gom-devel ModemManager-devel libfeedback-devel"
+depends="NetworkManager ModemManager callaudiod"
+short_desc="Phone call application"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/calls"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=6b0928e3b40819082a0b409b09f94c6698dd78af0b516cb2b5d389ed351b1c55
+# Checking depends on a wayland session
+make_check=no
diff --git a/srcpkgs/calls/update b/srcpkgs/calls/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/calls/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'

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

* Re: [PR PATCH] [Updated] New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
  2021-02-28 22:42 ` [PR PATCH] [Updated] " jcgruenhage
@ 2021-02-28 22:47 ` jcgruenhage
  2021-02-28 22:49 ` jcgruenhage
                   ` (22 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2021-02-28 22:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages calls-0.3.1_1
https://github.com/void-linux/void-packages/pull/29138

New packages: calls + deps (callaudiod + feedbackd)
<!-- 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
- [ ] 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/29138.patch is attached

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

From 9c43f5e773e280d8bb9038c24df93bd1f06cfe34 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 21:45:00 +0100
Subject: [PATCH 1/3] New package: feedbackd-0.0.0+git20210125

---
 common/shlibs              |  1 +
 srcpkgs/feedbackd/template | 38 ++++++++++++++++++++++++++++++++++++++
 srcpkgs/feedbackd/update   |  2 ++
 srcpkgs/libfeedback        |  1 +
 srcpkgs/libfeedback-devel  |  1 +
 5 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/feedbackd/template
 create mode 100644 srcpkgs/feedbackd/update
 create mode 120000 srcpkgs/libfeedback
 create mode 120000 srcpkgs/libfeedback-devel

diff --git a/common/shlibs b/common/shlibs
index 959f1692961..48e89eb9d1c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3924,3 +3924,4 @@ libsimavr.so.1 simavr-1.6_2
 libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
diff --git a/srcpkgs/feedbackd/template b/srcpkgs/feedbackd/template
new file mode 100644
index 00000000000..6e60d63417f
--- /dev/null
+++ b/srcpkgs/feedbackd/template
@@ -0,0 +1,38 @@
+# Template file for 'feedbackd'
+pkgname=feedbackd
+version=0.0.0+git20210125
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+build_helper=gir
+hostmakedepends="vala glib-devel pkg-config"
+makedepends="gsound-devel libgudev-devel json-glib-devel"
+depends="dbus"
+checkdepends="dbus"
+short_desc="Daemon to provide haptic feedback on events"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/feedbackd"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=48db1e6e8263025d881cd00e66c2d2a82db0d1a632cfb378803f9e3337c5dd8d
+
+post_install() {
+	vinstall debian/feedbackd.udev 0644 usr/lib/udev/rules.d 90-feedbackd.rules
+}
+
+libfeedback_package() {
+	short_desc+=" - shared libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libfeedback-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/feedbackd/update b/srcpkgs/feedbackd/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/feedbackd/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'
diff --git a/srcpkgs/libfeedback b/srcpkgs/libfeedback
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file
diff --git a/srcpkgs/libfeedback-devel b/srcpkgs/libfeedback-devel
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback-devel
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file

From 577091935d1994ddb7c4ed548fd6373f0b028082 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 20:43:33 +0100
Subject: [PATCH 2/3] New package: callaudiod-0.1.0

---
 common/shlibs               |  2 ++
 srcpkgs/callaudiod/template | 39 +++++++++++++++++++++++++++++++++++++
 srcpkgs/libcallaudio        |  1 +
 srcpkgs/libcallaudio-devel  |  1 +
 4 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/callaudiod/template
 create mode 120000 srcpkgs/libcallaudio
 create mode 120000 srcpkgs/libcallaudio-devel

diff --git a/common/shlibs b/common/shlibs
index 48e89eb9d1c..ebc0c0226ba 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3925,3 +3925,5 @@ libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
 libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20200707_1
+libcallaudio-0.1.so.0 libcallaudio-0.1.0_1
diff --git a/srcpkgs/callaudiod/template b/srcpkgs/callaudiod/template
new file mode 100644
index 00000000000..8ce647eaaf6
--- /dev/null
+++ b/srcpkgs/callaudiod/template
@@ -0,0 +1,39 @@
+# Template file for 'callaudiod'
+pkgname=callaudiod
+version=0.1.0
+revision=1
+#archs="i686 x86_64"
+#wrksrc=
+#create_wrksrc=yes
+build_style=meson
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="pkg-config glib-devel"
+makedepends="alsa-lib-devel pulseaudio-devel glib-devel"
+depends=""
+short_desc="Call audio routing daemon"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="LGPL-3.0-or-later"
+homepage="https://gitlab.com/mobian1/callaudiod"
+distfiles="https://gitlab.com/mobian1/callaudiod/-/archive/${version}/callaudiod-${version}.tar.gz"
+checksum=eb9202af99e7d5fdfb0c20fcb64a0384a2024c9ca27a4c8ba45113eb0ffb97fc
+
+libcallaudio_package() {
+	short_desc+=" - shared-libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libcallaudio-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/libcallaudio b/srcpkgs/libcallaudio
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file
diff --git a/srcpkgs/libcallaudio-devel b/srcpkgs/libcallaudio-devel
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio-devel
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file

From 4cd8ceefd8fab7b465c226cf92f4d834eca475de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 22:25:00 +0100
Subject: [PATCH 3/3] New package: calls-0.3.1

---
 srcpkgs/calls/template | 19 +++++++++++++++++++
 srcpkgs/calls/update   |  2 ++
 2 files changed, 21 insertions(+)
 create mode 100644 srcpkgs/calls/template
 create mode 100644 srcpkgs/calls/update

diff --git a/srcpkgs/calls/template b/srcpkgs/calls/template
new file mode 100644
index 00000000000..f3adf7e2364
--- /dev/null
+++ b/srcpkgs/calls/template
@@ -0,0 +1,19 @@
+# Template file for 'calls'
+pkgname=calls
+version=0.3.1
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+hostmakedepends="glib-devel gettext vala pkg-config wayland-devel
+ evolution-data-server-devel"
+makedepends="libcallaudio-devel folks-devel libhandy1-devel libpeas-devel
+ gom-devel ModemManager-devel libfeedback-devel"
+depends="NetworkManager ModemManager callaudiod"
+short_desc="Phone call application"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/calls"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=6b0928e3b40819082a0b409b09f94c6698dd78af0b516cb2b5d389ed351b1c55
+# Checking depends on a wayland session
+make_check=no
diff --git a/srcpkgs/calls/update b/srcpkgs/calls/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/calls/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'

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

* Re: [PR PATCH] [Updated] New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
  2021-02-28 22:42 ` [PR PATCH] [Updated] " jcgruenhage
  2021-02-28 22:47 ` jcgruenhage
@ 2021-02-28 22:49 ` jcgruenhage
  2022-05-05  2:09 ` github-actions
                   ` (21 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2021-02-28 22:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages calls-0.3.1_1
https://github.com/void-linux/void-packages/pull/29138

New packages: calls + deps (callaudiod + feedbackd)
<!-- 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
- [ ] 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/29138.patch is attached

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

From 9c43f5e773e280d8bb9038c24df93bd1f06cfe34 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 21:45:00 +0100
Subject: [PATCH 1/3] New package: feedbackd-0.0.0+git20210125

---
 common/shlibs              |  1 +
 srcpkgs/feedbackd/template | 38 ++++++++++++++++++++++++++++++++++++++
 srcpkgs/feedbackd/update   |  2 ++
 srcpkgs/libfeedback        |  1 +
 srcpkgs/libfeedback-devel  |  1 +
 5 files changed, 43 insertions(+)
 create mode 100644 srcpkgs/feedbackd/template
 create mode 100644 srcpkgs/feedbackd/update
 create mode 120000 srcpkgs/libfeedback
 create mode 120000 srcpkgs/libfeedback-devel

diff --git a/common/shlibs b/common/shlibs
index 959f1692961..48e89eb9d1c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3924,3 +3924,4 @@ libsimavr.so.1 simavr-1.6_2
 libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
diff --git a/srcpkgs/feedbackd/template b/srcpkgs/feedbackd/template
new file mode 100644
index 00000000000..6e60d63417f
--- /dev/null
+++ b/srcpkgs/feedbackd/template
@@ -0,0 +1,38 @@
+# Template file for 'feedbackd'
+pkgname=feedbackd
+version=0.0.0+git20210125
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+build_helper=gir
+hostmakedepends="vala glib-devel pkg-config"
+makedepends="gsound-devel libgudev-devel json-glib-devel"
+depends="dbus"
+checkdepends="dbus"
+short_desc="Daemon to provide haptic feedback on events"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/feedbackd"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=48db1e6e8263025d881cd00e66c2d2a82db0d1a632cfb378803f9e3337c5dd8d
+
+post_install() {
+	vinstall debian/feedbackd.udev 0644 usr/lib/udev/rules.d 90-feedbackd.rules
+}
+
+libfeedback_package() {
+	short_desc+=" - shared libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libfeedback-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/feedbackd/update b/srcpkgs/feedbackd/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/feedbackd/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'
diff --git a/srcpkgs/libfeedback b/srcpkgs/libfeedback
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file
diff --git a/srcpkgs/libfeedback-devel b/srcpkgs/libfeedback-devel
new file mode 120000
index 00000000000..49dc965f1cd
--- /dev/null
+++ b/srcpkgs/libfeedback-devel
@@ -0,0 +1 @@
+feedbackd
\ No newline at end of file

From 7bd371b056c2b2a3b1dc461a311ff783f2211616 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 20:43:33 +0100
Subject: [PATCH 2/3] New package: callaudiod-0.1.0

---
 common/shlibs               |  2 ++
 srcpkgs/callaudiod/template | 30 ++++++++++++++++++++++++++++++
 srcpkgs/libcallaudio        |  1 +
 srcpkgs/libcallaudio-devel  |  1 +
 4 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/callaudiod/template
 create mode 120000 srcpkgs/libcallaudio
 create mode 120000 srcpkgs/libcallaudio-devel

diff --git a/common/shlibs b/common/shlibs
index 48e89eb9d1c..ebc0c0226ba 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3925,3 +3925,5 @@ libsimavrparts.so.1 simavr-1.6_2
 libsword-1.8.1.so libsword-1.8.1_6
 libtree-sitter.so.0 tree-sitter-0.18.2_1
 libfeedback-0.0.so.0 libfeedback-0.0.0+git20210125_1
+libfeedback-0.0.so.0 libfeedback-0.0.0+git20200707_1
+libcallaudio-0.1.so.0 libcallaudio-0.1.0_1
diff --git a/srcpkgs/callaudiod/template b/srcpkgs/callaudiod/template
new file mode 100644
index 00000000000..f162111189b
--- /dev/null
+++ b/srcpkgs/callaudiod/template
@@ -0,0 +1,30 @@
+# Template file for 'callaudiod'
+pkgname=callaudiod
+version=0.1.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config glib-devel"
+makedepends="alsa-lib-devel pulseaudio-devel glib-devel"
+short_desc="Call audio routing daemon"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="LGPL-3.0-or-later"
+homepage="https://gitlab.com/mobian1/callaudiod"
+distfiles="https://gitlab.com/mobian1/callaudiod/-/archive/${version}/callaudiod-${version}.tar.gz"
+checksum=eb9202af99e7d5fdfb0c20fcb64a0384a2024c9ca27a4c8ba45113eb0ffb97fc
+
+libcallaudio_package() {
+	short_desc+=" - shared-libraries"
+	pkg_install() {
+		vmove "usr/lib/*.so.*"
+	}
+}
+
+libcallaudio-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}
diff --git a/srcpkgs/libcallaudio b/srcpkgs/libcallaudio
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file
diff --git a/srcpkgs/libcallaudio-devel b/srcpkgs/libcallaudio-devel
new file mode 120000
index 00000000000..8e060309aba
--- /dev/null
+++ b/srcpkgs/libcallaudio-devel
@@ -0,0 +1 @@
+./callaudiod
\ No newline at end of file

From d0f4db13120a4c41fb85ebb1d05ca404bb8d33f0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Sun, 28 Feb 2021 22:25:00 +0100
Subject: [PATCH 3/3] New package: calls-0.3.1

---
 srcpkgs/calls/template | 19 +++++++++++++++++++
 srcpkgs/calls/update   |  2 ++
 2 files changed, 21 insertions(+)
 create mode 100644 srcpkgs/calls/template
 create mode 100644 srcpkgs/calls/update

diff --git a/srcpkgs/calls/template b/srcpkgs/calls/template
new file mode 100644
index 00000000000..f3adf7e2364
--- /dev/null
+++ b/srcpkgs/calls/template
@@ -0,0 +1,19 @@
+# Template file for 'calls'
+pkgname=calls
+version=0.3.1
+revision=1
+wrksrc=${pkgname}-v${version}
+build_style=meson
+hostmakedepends="glib-devel gettext vala pkg-config wayland-devel
+ evolution-data-server-devel"
+makedepends="libcallaudio-devel folks-devel libhandy1-devel libpeas-devel
+ gom-devel ModemManager-devel libfeedback-devel"
+depends="NetworkManager ModemManager callaudiod"
+short_desc="Phone call application"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="GPL-3.0-or-later"
+homepage="https://source.puri.sm/Librem5/calls"
+distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.gz"
+checksum=6b0928e3b40819082a0b409b09f94c6698dd78af0b516cb2b5d389ed351b1c55
+# Checking depends on a wayland session
+make_check=no
diff --git a/srcpkgs/calls/update b/srcpkgs/calls/update
new file mode 100644
index 00000000000..4e461b21e8c
--- /dev/null
+++ b/srcpkgs/calls/update
@@ -0,0 +1,2 @@
+site="https://source.puri.sm/Librem5/${pkgname}/tags"
+pattern='/archive/[^/]+/\Q'"$pkgname"'\E-v?\K[\d\.]+(?=\.tar\.gz")'

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (2 preceding siblings ...)
  2021-02-28 22:49 ` jcgruenhage
@ 2022-05-05  2:09 ` github-actions
  2022-05-07 16:06 ` Piraty
                   ` (20 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: github-actions @ 2022-05-05  2:09 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/29138#issuecomment-1118098368

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (3 preceding siblings ...)
  2022-05-05  2:09 ` github-actions
@ 2022-05-07 16:06 ` Piraty
  2022-05-07 17:23 ` JamiKettunen
                   ` (19 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: Piraty @ 2022-05-07 16:06 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1120233794

Comment:
@jcgruenhage what's missing here ? (besides an environment to use this on to acually make phone calls ;) )
I assume @JamiKettunen is interested as well?

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (4 preceding siblings ...)
  2022-05-07 16:06 ` Piraty
@ 2022-05-07 17:23 ` JamiKettunen
  2022-05-07 17:23 ` JamiKettunen
                   ` (18 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2022-05-07 17:23 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1120245038

Comment:
@Piraty Yes I'd be interested, I've actually already got these as a part of my phone dev packages ([gnome-calls](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/gnome-calls),  ̣[callaudiod](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/callaudiod), [feedbackd](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/feedbackd)) but haven't unfortunately been able to test them yet on my Qualcomm hardware due to no audio routing :(

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (5 preceding siblings ...)
  2022-05-07 17:23 ` JamiKettunen
@ 2022-05-07 17:23 ` JamiKettunen
  2022-05-07 17:27 ` JamiKettunen
                   ` (17 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2022-05-07 17:23 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1120245038

Comment:
@Piraty Yes I'd be interested, I've actually already got these as a part of my phone dev packages ([gnome-calls](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/gnome-calls), ̣[callaudiod](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/callaudiod), [feedbackd](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/feedbackd)) but haven't unfortunately been able to test them yet on my Qualcomm hardware due to no audio routing :(

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (6 preceding siblings ...)
  2022-05-07 17:23 ` JamiKettunen
@ 2022-05-07 17:27 ` JamiKettunen
  2022-05-10 19:02 ` jcgruenhage
                   ` (16 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2022-05-07 17:27 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1120245038

Comment:
@Piraty Yes I'd be interested, I've actually already got these as a part of my phone dev packages ([gnome-calls](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/gnome-calls), ̣[callaudiod](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/callaudiod), [feedbackd](https://github.com/SoMainline/void-bootstrap/tree/somainline/packages/misc/feedbackd)) but haven't unfortunately been able to test them yet on my Qualcomm hardware due to no working call audio routing from the modem :(

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (7 preceding siblings ...)
  2022-05-07 17:27 ` JamiKettunen
@ 2022-05-10 19:02 ` jcgruenhage
  2022-05-10 20:15 ` JamiKettunen
                   ` (15 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2022-05-10 19:02 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1122758600

Comment:
The modem shouldn't be the problem on my phone, calling was working just fine on pmOS. How much would I need to get going for this working on Void, any idea @JamiKettunen? Would gnome-calls, callaudiod, feedbackd and ModemManager already be enough?

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (8 preceding siblings ...)
  2022-05-10 19:02 ` jcgruenhage
@ 2022-05-10 20:15 ` JamiKettunen
  2022-05-10 20:16 ` JamiKettunen
                   ` (14 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2022-05-10 20:15 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1122819057

Comment:
@jcgruenhage I unfortunately have no idea how the PinePhone cellular stack typically works, I'll explore it more in-depth after getting my PinePhone hopefully soon. However I've seen [eg25-manager](https://gitlab.com/mobian1/devices/eg25-manager) mentioned in Sxmo for example so that may be needed on top of what you mentioned already.

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (9 preceding siblings ...)
  2022-05-10 20:15 ` JamiKettunen
@ 2022-05-10 20:16 ` JamiKettunen
  2022-05-11 22:41 ` Piraty
                   ` (13 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2022-05-10 20:16 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1122819057

Comment:
@jcgruenhage I unfortunately have no idea how the PinePhone cellular stack typically works, I'll explore it more in-depth after getting my PinePhone hopefully soon. However I've seen [eg25-manager](https://gitlab.com/mobian1/devices/eg25-manager) mentioned in [Sxmo](https://sxmo.org/) scripts for example so that may be needed on top of what you mentioned already.

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (10 preceding siblings ...)
  2022-05-10 20:16 ` JamiKettunen
@ 2022-05-11 22:41 ` Piraty
  2022-08-10  2:09 ` github-actions
                   ` (12 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: Piraty @ 2022-05-11 22:41 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1124358312

Comment:
you may get calls working without eg25-manager but it will probably require fiddling with audio settings via at commands

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (11 preceding siblings ...)
  2022-05-11 22:41 ` Piraty
@ 2022-08-10  2:09 ` github-actions
  2022-08-17  7:40 ` jcgruenhage
                   ` (11 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: github-actions @ 2022-08-10  2:09 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/29138#issuecomment-1210068294

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (12 preceding siblings ...)
  2022-08-10  2:09 ` github-actions
@ 2022-08-17  7:40 ` jcgruenhage
  2022-11-17  2:10 ` github-actions
                   ` (10 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2022-08-17  7:40 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1217597666

Comment:
Well, sort-of stale, but I still plan to continue on it.

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (13 preceding siblings ...)
  2022-08-17  7:40 ` jcgruenhage
@ 2022-11-17  2:10 ` github-actions
  2022-11-18 19:16 ` Piraty
                   ` (9 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: github-actions @ 2022-11-17  2:10 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/29138#issuecomment-1317956195

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (14 preceding siblings ...)
  2022-11-17  2:10 ` github-actions
@ 2022-11-18 19:16 ` Piraty
  2022-11-19 11:23 ` jcgruenhage
                   ` (8 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: Piraty @ 2022-11-18 19:16 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1320431734

Comment:
i'll be happy to merge once you rebased and possibly updated to latest, to bring this forward and enable broader integration of mobile phone stack

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (15 preceding siblings ...)
  2022-11-18 19:16 ` Piraty
@ 2022-11-19 11:23 ` jcgruenhage
  2022-11-22 23:06 ` jcgruenhage
                   ` (7 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2022-11-19 11:23 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1320863335

Comment:
I'll try to take a look at this later today when I'm back at home and have access to my pinephone again. Would it make sense to merge those applications already even if the remaining stack for making calls isn't necessarily all there and tested already?

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (16 preceding siblings ...)
  2022-11-19 11:23 ` jcgruenhage
@ 2022-11-22 23:06 ` jcgruenhage
  2022-11-24 14:45 ` jcgruenhage
                   ` (6 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2022-11-22 23:06 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1324349574

Comment:
not quite sure what's up here but void doesn't boot on my pinephone right now, but postmarketos does.. I'll have to check again another day when I have a bit more time to investigate..

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (17 preceding siblings ...)
  2022-11-22 23:06 ` jcgruenhage
@ 2022-11-24 14:45 ` jcgruenhage
  2023-01-14 21:18 ` jcgruenhage
                   ` (5 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2022-11-24 14:45 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1326545673

Comment:
Getting better and better: Seems that void didn't boot because it was on the sdcard, and the phone was deeply discharged enough that the additional power draw of the sdcard means it couldn't boot. Now that the phone is charged again, void boots just fine. Next hurdle now: Sway doesn't want to launch. I'd assume it's related to the kernel being ancient. I'll look into this again once Linux 6.1.0 is released, because a few new things for the pinephone are in the current release candidates.

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (18 preceding siblings ...)
  2022-11-24 14:45 ` jcgruenhage
@ 2023-01-14 21:18 ` jcgruenhage
  2023-01-14 23:28 ` JamiKettunen
                   ` (4 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2023-01-14 21:18 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1382920604

Comment:
So, another two months have gone by, and I have a small-ish update. #41654 brings in kernel 6.1.3, which brings in a bunch of improvements, including finally having the keyboard case working. I still need to grab an adapter to connect a proper keyboard to it for initial setup, which I don't have with me right now, but I'll try to make a little more progress here again.

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (19 preceding siblings ...)
  2023-01-14 21:18 ` jcgruenhage
@ 2023-01-14 23:28 ` JamiKettunen
  2023-01-14 23:29 ` JamiKettunen
                   ` (3 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2023-01-14 23:28 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1382961711

Comment:
@jcgruenhage if you don't mind I can submit updated packages which I've confirmed work (minus call audio since I don't have that hooked up in DTS) on my OnePlus 5 phone running a mainline Linux kernel :)

About to start maintaining ModemManager stack too, stay tuned for that ^^

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (20 preceding siblings ...)
  2023-01-14 23:28 ` JamiKettunen
@ 2023-01-14 23:29 ` JamiKettunen
  2023-01-15  2:02 ` jcgruenhage
                   ` (2 subsequent siblings)
  24 siblings, 0 replies; 26+ messages in thread
From: JamiKettunen @ 2023-01-14 23:29 UTC (permalink / raw)
  To: ml

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

New comment by JamiKettunen on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1382961711

Comment:
@jcgruenhage if you don't mind I can submit updated packages which I've confirmed work (minus call audio since I don't have that hooked up in DTS) on my OnePlus 5 phone running a mainline Linux kernel :)

About to start maintaining ModemManager stack too along with some updates there, stay tuned for that PR ^^

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (21 preceding siblings ...)
  2023-01-14 23:29 ` JamiKettunen
@ 2023-01-15  2:02 ` jcgruenhage
  2023-04-16  1:56 ` github-actions
  2023-05-01  1:53 ` [PR PATCH] [Closed]: " github-actions
  24 siblings, 0 replies; 26+ messages in thread
From: jcgruenhage @ 2023-01-15  2:02 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/29138#issuecomment-1383023670

Comment:
I absolutely don't mind, feel free to take over ^^

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

* Re: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (22 preceding siblings ...)
  2023-01-15  2:02 ` jcgruenhage
@ 2023-04-16  1:56 ` github-actions
  2023-05-01  1:53 ` [PR PATCH] [Closed]: " github-actions
  24 siblings, 0 replies; 26+ messages in thread
From: github-actions @ 2023-04-16  1:56 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/29138#issuecomment-1510019872

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

* Re: [PR PATCH] [Closed]: New packages: calls + deps (callaudiod + feedbackd)
  2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
                   ` (23 preceding siblings ...)
  2023-04-16  1:56 ` github-actions
@ 2023-05-01  1:53 ` github-actions
  24 siblings, 0 replies; 26+ messages in thread
From: github-actions @ 2023-05-01  1:53 UTC (permalink / raw)
  To: ml

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

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

New packages: calls + deps (callaudiod + feedbackd)
https://github.com/void-linux/void-packages/pull/29138

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

end of thread, other threads:[~2023-05-01  1:53 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-28 21:27 [PR PATCH] New packages: calls + deps (callaudiod + feedbackd) jcgruenhage
2021-02-28 22:42 ` [PR PATCH] [Updated] " jcgruenhage
2021-02-28 22:47 ` jcgruenhage
2021-02-28 22:49 ` jcgruenhage
2022-05-05  2:09 ` github-actions
2022-05-07 16:06 ` Piraty
2022-05-07 17:23 ` JamiKettunen
2022-05-07 17:23 ` JamiKettunen
2022-05-07 17:27 ` JamiKettunen
2022-05-10 19:02 ` jcgruenhage
2022-05-10 20:15 ` JamiKettunen
2022-05-10 20:16 ` JamiKettunen
2022-05-11 22:41 ` Piraty
2022-08-10  2:09 ` github-actions
2022-08-17  7:40 ` jcgruenhage
2022-11-17  2:10 ` github-actions
2022-11-18 19:16 ` Piraty
2022-11-19 11:23 ` jcgruenhage
2022-11-22 23:06 ` jcgruenhage
2022-11-24 14:45 ` jcgruenhage
2023-01-14 21:18 ` jcgruenhage
2023-01-14 23:28 ` JamiKettunen
2023-01-14 23:29 ` JamiKettunen
2023-01-15  2:02 ` jcgruenhage
2023-04-16  1:56 ` github-actions
2023-05-01  1:53 ` [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).