Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: libvarlink-22
@ 2021-07-01  1:32 ericonr
  2021-07-01  1:33 ` [PR PATCH] [Updated] " ericonr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ericonr @ 2021-07-01  1:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ericonr/void-packages varlink
https://github.com/void-linux/void-packages/pull/31727

New package: libvarlink-22
<!-- Mark items with [x] where applicable -->

#### General
- [ ] 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?
- [x] 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

Will become a dependency for kanshi, hopefully.

<!--
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/31727.patch is attached

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

From 2eaf83898841d8111c7dbae2dbeb495fcefd2853 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89rico=20Nogueira?= <erico.erc@gmail.com>
Date: Wed, 30 Jun 2021 22:30:43 -0300
Subject: [PATCH] New package: libvarlink-22

---
 common/shlibs               |  1 +
 srcpkgs/libvarlink-devel    |  1 +
 srcpkgs/libvarlink/template | 24 ++++++++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 120000 srcpkgs/libvarlink-devel
 create mode 100644 srcpkgs/libvarlink/template

diff --git a/common/shlibs b/common/shlibs
index 798fa9601f56..d45bb6402d0d 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1175,6 +1175,7 @@ libwayland-server.so.0 wayland-1.6.0_1
 libwayland-client.so.0 wayland-1.10.0_1
 libwayland-cursor.so.0 wayland-1.6.0_1
 libwayland-egl.so.1 wayland-1.15.0_4
+libvarlink.so.0 libvarlink-22_1
 libtomcrypt.so.1 libtomcrypt-1.18.0_1
 libHX.so.28 libHX-3.14_1
 libxkbcommon.so.0 libxkbcommon-0.2.0_1
diff --git a/srcpkgs/libvarlink-devel b/srcpkgs/libvarlink-devel
new file mode 120000
index 000000000000..b6635d98fded
--- /dev/null
+++ b/srcpkgs/libvarlink-devel
@@ -0,0 +1 @@
+libvarlink
\ No newline at end of file
diff --git a/srcpkgs/libvarlink/template b/srcpkgs/libvarlink/template
new file mode 100644
index 000000000000..cdaaaa957802
--- /dev/null
+++ b/srcpkgs/libvarlink/template
@@ -0,0 +1,24 @@
+# Template file for 'libvarlink'
+pkgname=libvarlink
+version=22
+revision=1
+build_style=meson
+hostmakedepends=""
+makedepends=""
+depends=""
+short_desc="C implementation of the Varlink protocol and command line tool"
+maintainer="Érico Nogueira <ericonr@disroot.org>"
+license="Apache-2.0"
+homepage="https://varlink.org/"
+distfiles="https://github.com/varlink/libvarlink/archive/refs/tags/${version}.tar.gz"
+checksum=932c0d7c3d2d8acdf5878d8fd8006887c5855189688d19eb09125682740b99bb
+
+libvarlink-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: libvarlink-22
  2021-07-01  1:32 [PR PATCH] New package: libvarlink-22 ericonr
@ 2021-07-01  1:33 ` ericonr
  2021-07-03  1:43 ` ericonr
  2021-07-03  1:43 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-01  1:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ericonr/void-packages varlink
https://github.com/void-linux/void-packages/pull/31727

New package: libvarlink-22
<!-- Mark items with [x] where applicable -->

#### General
- [ ] 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?
- [x] 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

Will become a dependency for kanshi, hopefully.

<!--
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/31727.patch is attached

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

From 6e60e427f2b642fc1dc2e332cadc64671d0d8df0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89rico=20Nogueira?= <erico.erc@gmail.com>
Date: Wed, 30 Jun 2021 22:30:43 -0300
Subject: [PATCH] New package: libvarlink-22.

---
 common/shlibs               |  1 +
 srcpkgs/libvarlink-devel    |  1 +
 srcpkgs/libvarlink/template | 21 +++++++++++++++++++++
 3 files changed, 23 insertions(+)
 create mode 120000 srcpkgs/libvarlink-devel
 create mode 100644 srcpkgs/libvarlink/template

diff --git a/common/shlibs b/common/shlibs
index 798fa9601f56..d45bb6402d0d 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1175,6 +1175,7 @@ libwayland-server.so.0 wayland-1.6.0_1
 libwayland-client.so.0 wayland-1.10.0_1
 libwayland-cursor.so.0 wayland-1.6.0_1
 libwayland-egl.so.1 wayland-1.15.0_4
+libvarlink.so.0 libvarlink-22_1
 libtomcrypt.so.1 libtomcrypt-1.18.0_1
 libHX.so.28 libHX-3.14_1
 libxkbcommon.so.0 libxkbcommon-0.2.0_1
diff --git a/srcpkgs/libvarlink-devel b/srcpkgs/libvarlink-devel
new file mode 120000
index 000000000000..b6635d98fded
--- /dev/null
+++ b/srcpkgs/libvarlink-devel
@@ -0,0 +1 @@
+libvarlink
\ No newline at end of file
diff --git a/srcpkgs/libvarlink/template b/srcpkgs/libvarlink/template
new file mode 100644
index 000000000000..0633adbb17b4
--- /dev/null
+++ b/srcpkgs/libvarlink/template
@@ -0,0 +1,21 @@
+# Template file for 'libvarlink'
+pkgname=libvarlink
+version=22
+revision=1
+build_style=meson
+short_desc="C implementation of the Varlink protocol and command line tool"
+maintainer="Érico Nogueira <ericonr@disroot.org>"
+license="Apache-2.0"
+homepage="https://varlink.org/"
+distfiles="https://github.com/varlink/libvarlink/archive/refs/tags/${version}.tar.gz"
+checksum=932c0d7c3d2d8acdf5878d8fd8006887c5855189688d19eb09125682740b99bb
+
+libvarlink-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: libvarlink-22
  2021-07-01  1:32 [PR PATCH] New package: libvarlink-22 ericonr
  2021-07-01  1:33 ` [PR PATCH] [Updated] " ericonr
@ 2021-07-03  1:43 ` ericonr
  2021-07-03  1:43 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-03  1:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ericonr/void-packages varlink
https://github.com/void-linux/void-packages/pull/31727

New package: libvarlink-22
<!-- Mark items with [x] where applicable -->

#### General
- [ ] 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?
- [x] 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

Will become a dependency for kanshi, hopefully.

<!--
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/31727.patch is attached

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

From 8a0038f2b030e521f26c2ddcca7931eab26f5b38 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89rico=20Nogueira?= <erico.erc@gmail.com>
Date: Wed, 30 Jun 2021 22:30:43 -0300
Subject: [PATCH] New package: libvarlink-22.

---
 common/shlibs               |  1 +
 srcpkgs/libvarlink-devel    |  1 +
 srcpkgs/libvarlink/template | 21 +++++++++++++++++++++
 3 files changed, 23 insertions(+)
 create mode 120000 srcpkgs/libvarlink-devel
 create mode 100644 srcpkgs/libvarlink/template

diff --git a/common/shlibs b/common/shlibs
index e69895184410..e1045f47b131 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1175,6 +1175,7 @@ libwayland-server.so.0 wayland-1.6.0_1
 libwayland-client.so.0 wayland-1.10.0_1
 libwayland-cursor.so.0 wayland-1.6.0_1
 libwayland-egl.so.1 wayland-1.15.0_4
+libvarlink.so.0 libvarlink-22_1
 libtomcrypt.so.1 libtomcrypt-1.18.0_1
 libHX.so.28 libHX-3.14_1
 libxkbcommon.so.0 libxkbcommon-0.2.0_1
diff --git a/srcpkgs/libvarlink-devel b/srcpkgs/libvarlink-devel
new file mode 120000
index 000000000000..b6635d98fded
--- /dev/null
+++ b/srcpkgs/libvarlink-devel
@@ -0,0 +1 @@
+libvarlink
\ No newline at end of file
diff --git a/srcpkgs/libvarlink/template b/srcpkgs/libvarlink/template
new file mode 100644
index 000000000000..0633adbb17b4
--- /dev/null
+++ b/srcpkgs/libvarlink/template
@@ -0,0 +1,21 @@
+# Template file for 'libvarlink'
+pkgname=libvarlink
+version=22
+revision=1
+build_style=meson
+short_desc="C implementation of the Varlink protocol and command line tool"
+maintainer="Érico Nogueira <ericonr@disroot.org>"
+license="Apache-2.0"
+homepage="https://varlink.org/"
+distfiles="https://github.com/varlink/libvarlink/archive/refs/tags/${version}.tar.gz"
+checksum=932c0d7c3d2d8acdf5878d8fd8006887c5855189688d19eb09125682740b99bb
+
+libvarlink-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}

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

* Re: [PR PATCH] [Merged]: New package: libvarlink-22
  2021-07-01  1:32 [PR PATCH] New package: libvarlink-22 ericonr
  2021-07-01  1:33 ` [PR PATCH] [Updated] " ericonr
  2021-07-03  1:43 ` ericonr
@ 2021-07-03  1:43 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-03  1:43 UTC (permalink / raw)
  To: ml

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

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

New package: libvarlink-22
https://github.com/void-linux/void-packages/pull/31727

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

#### General
- [ ] 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?
- [x] 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

Will become a dependency for kanshi, hopefully.

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

end of thread, other threads:[~2021-07-03  1:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01  1:32 [PR PATCH] New package: libvarlink-22 ericonr
2021-07-01  1:33 ` [PR PATCH] [Updated] " ericonr
2021-07-03  1:43 ` ericonr
2021-07-03  1:43 ` [PR PATCH] [Merged]: " ericonr

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