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

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