Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
@ 2021-06-28 21:33 ` sbogomolov
  2021-07-11 21:57 ` sbogomolov
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-06-28 21:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From 9c0080a141feb2ac59eb62bf86b03fe5d66e250b Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.6

---
 srcpkgs/interception-tools/files/udevmon/run | 11 +++++++++++
 srcpkgs/interception-tools/template          | 18 ++++++++++++++++++
 2 files changed, 29 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..ee170326d7b4
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,11 @@
+#!/bin/sh
+OPTS=""
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="-c ${CONF_FILE}"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..b1eec7ba786c
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,18 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.6
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+depends="glibc eudev-libudev libevdev yaml-cpp"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <sergii@bogomolov.io>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="6917eb7109c7514ef620f7ea184f95e7be522b8f5b226b121675c0a7f628afee"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From 7d267739d33e5d8679fafb401605713bc3a03149 Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/files/caps2esc.yaml.example |  4 ++++
 srcpkgs/caps2esc/template                    | 18 ++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 srcpkgs/caps2esc/files/caps2esc.yaml.example
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/files/caps2esc.yaml.example b/srcpkgs/caps2esc/files/caps2esc.yaml.example
new file mode 100644
index 000000000000..9a1f96bd447a
--- /dev/null
+++ b/srcpkgs/caps2esc/files/caps2esc.yaml.example
@@ -0,0 +1,4 @@
+- JOB: "intercept -g $DEVNODE | caps2esc | uinput -d $DEVNODE"
+  DEVICE:
+    EVENTS:
+      EV_KEY: [KEY_CAPSLOCK, KEY_ESC]
diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..3d3bcc0386d8
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,18 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <sergii@bogomolov.io>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vsconf ${FILESDIR}/caps2esc.yaml.example
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
                   ` (4 preceding siblings ...)
  2021-07-13 13:46 ` sbogomolov
@ 2021-07-15 18:25 ` sbogomolov
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-07-15 18:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From eb127b46998be4728c7f90d7018f6d3f1cd163a9 Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.7

---
 srcpkgs/interception-tools/files/udevmon/run | 10 ++++++++++
 srcpkgs/interception-tools/template          | 18 ++++++++++++++++++
 2 files changed, 28 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..f041851365ae
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="${OPTS} -c '${CONF_FILE}'"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..f0e55acc6dc1
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,18 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.7
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+hostmakedepends="pkg-config"
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="GPL-3.0-only"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="58a388899c7bb765c5d35306b57894fb220dc8ab4d37475a33898bb2934bca81"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From d4939b80c8eed4ea03c4d8bbb27402e65492e379 Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..36b4096f17b7
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,17 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
                   ` (3 preceding siblings ...)
  2021-07-12 21:32 ` sbogomolov
@ 2021-07-13 13:46 ` sbogomolov
  2021-07-15 18:25 ` sbogomolov
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-07-13 13:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From 3e20c805c35864a2c33f48e384558f10f18d6bf1 Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.6

---
 srcpkgs/interception-tools/files/udevmon/run  | 10 +++++
 .../patches/find_libevdev.patch               | 29 +++++++++++++
 .../patches/fix_pid_t.patch                   | 43 +++++++++++++++++++
 srcpkgs/interception-tools/template           | 18 ++++++++
 4 files changed, 100 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/patches/find_libevdev.patch
 create mode 100644 srcpkgs/interception-tools/patches/fix_pid_t.patch
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..f041851365ae
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="${OPTS} -c '${CONF_FILE}'"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/patches/find_libevdev.patch b/srcpkgs/interception-tools/patches/find_libevdev.patch
new file mode 100644
index 000000000000..6510f1c6330a
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/find_libevdev.patch
@@ -0,0 +1,29 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index bda9e62..af5fd82 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,18 +5,21 @@ project(interception-tools)
+ find_package(Boost REQUIRED)
+ find_package(Threads REQUIRED)
+ 
++find_package(PkgConfig)
++pkg_check_modules(LIBEVDEV REQUIRED libevdev)
++
+ add_executable(udevmon udevmon.cpp)
+-target_include_directories(udevmon PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(udevmon PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(udevmon PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(udevmon evdev udev yaml-cpp)
+ 
+ add_executable(intercept intercept.c)
+-target_include_directories(intercept PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(intercept PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(intercept PRIVATE -Wall -Wextra)
+ target_link_libraries(intercept evdev)
+ 
+ add_executable(uinput uinput.cpp)
+-target_include_directories(uinput PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(uinput PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(uinput PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(uinput evdev udev yaml-cpp)
+ 
diff --git a/srcpkgs/interception-tools/patches/fix_pid_t.patch b/srcpkgs/interception-tools/patches/fix_pid_t.patch
new file mode 100644
index 000000000000..48a6de5d8f24
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/fix_pid_t.patch
@@ -0,0 +1,43 @@
+diff --git a/udevmon.cpp b/udevmon.cpp
+index dec988d..a4112ff 100644
+--- a/udevmon.cpp
++++ b/udevmon.cpp
+@@ -79,10 +79,10 @@ struct cmd {
+             }
+     }
+ 
+-    std::vector<__pid_t> launch() const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch() const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1: {
+                     for (auto pid : pids)
+@@ -327,10 +327,10 @@ struct job {
+             });
+     }
+ 
+-    std::vector<__pid_t> launch_for(const std::string &devnode) const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch_for(const std::string &devnode) const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1:
+                     std::fprintf(stderr,
+@@ -559,8 +559,8 @@ struct jobs_manager {
+ 
+     std::vector<cmd> cmds;
+     std::vector<job> jobs;
+-    std::vector<__pid_t> running_cmds;
+-    std::map<std::string, std::vector<__pid_t>> running_jobs;
++    std::vector<pid_t> running_cmds;
++    std::map<std::string, std::vector<pid_t>> running_jobs;
+ };
+ 
+ std::vector<yaml> scan_config(const std::string &directory) {
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..540277a7fb24
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,18 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.6
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+hostmakedepends="pkg-config"
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="GPL-3.0-only"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="6917eb7109c7514ef620f7ea184f95e7be522b8f5b226b121675c0a7f628afee"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From c9623eccd21ebab69de6cf2c8ab3188d74ac174c Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..36b4096f17b7
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,17 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2021-07-12 21:13 ` sbogomolov
@ 2021-07-12 21:32 ` sbogomolov
  2021-07-13 13:46 ` sbogomolov
  2021-07-15 18:25 ` sbogomolov
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-07-12 21:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From 7087ea302d2e6d5e9a0063c8fa27f5f6e03fa275 Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.6

---
 srcpkgs/interception-tools/files/udevmon/run  | 10 +++++
 .../patches/find_libevdev.patch               | 29 +++++++++++++
 .../patches/fix_pid_t.patch                   | 43 +++++++++++++++++++
 srcpkgs/interception-tools/template           | 18 ++++++++
 4 files changed, 100 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/patches/find_libevdev.patch
 create mode 100644 srcpkgs/interception-tools/patches/fix_pid_t.patch
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..f041851365ae
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="${OPTS} -c '${CONF_FILE}'"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/patches/find_libevdev.patch b/srcpkgs/interception-tools/patches/find_libevdev.patch
new file mode 100644
index 000000000000..6510f1c6330a
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/find_libevdev.patch
@@ -0,0 +1,29 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index bda9e62..af5fd82 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,18 +5,21 @@ project(interception-tools)
+ find_package(Boost REQUIRED)
+ find_package(Threads REQUIRED)
+ 
++find_package(PkgConfig)
++pkg_check_modules(LIBEVDEV REQUIRED libevdev)
++
+ add_executable(udevmon udevmon.cpp)
+-target_include_directories(udevmon PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(udevmon PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(udevmon PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(udevmon evdev udev yaml-cpp)
+ 
+ add_executable(intercept intercept.c)
+-target_include_directories(intercept PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(intercept PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(intercept PRIVATE -Wall -Wextra)
+ target_link_libraries(intercept evdev)
+ 
+ add_executable(uinput uinput.cpp)
+-target_include_directories(uinput PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(uinput PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(uinput PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(uinput evdev udev yaml-cpp)
+ 
diff --git a/srcpkgs/interception-tools/patches/fix_pid_t.patch b/srcpkgs/interception-tools/patches/fix_pid_t.patch
new file mode 100644
index 000000000000..48a6de5d8f24
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/fix_pid_t.patch
@@ -0,0 +1,43 @@
+diff --git a/udevmon.cpp b/udevmon.cpp
+index dec988d..a4112ff 100644
+--- a/udevmon.cpp
++++ b/udevmon.cpp
+@@ -79,10 +79,10 @@ struct cmd {
+             }
+     }
+ 
+-    std::vector<__pid_t> launch() const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch() const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1: {
+                     for (auto pid : pids)
+@@ -327,10 +327,10 @@ struct job {
+             });
+     }
+ 
+-    std::vector<__pid_t> launch_for(const std::string &devnode) const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch_for(const std::string &devnode) const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1:
+                     std::fprintf(stderr,
+@@ -559,8 +559,8 @@ struct jobs_manager {
+ 
+     std::vector<cmd> cmds;
+     std::vector<job> jobs;
+-    std::vector<__pid_t> running_cmds;
+-    std::map<std::string, std::vector<__pid_t>> running_jobs;
++    std::vector<pid_t> running_cmds;
++    std::map<std::string, std::vector<pid_t>> running_jobs;
+ };
+ 
+ std::vector<yaml> scan_config(const std::string &directory) {
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..a6d6999f02a0
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,18 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.6
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+hostmakedepends="pkg-config"
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="6917eb7109c7514ef620f7ea184f95e7be522b8f5b226b121675c0a7f628afee"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From 8f4911e09b6c2779c3e1e57ff9fd4a8df748c0bf Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..36b4096f17b7
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,17 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
  2021-06-28 21:33 ` [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2 sbogomolov
  2021-07-11 21:57 ` sbogomolov
@ 2021-07-12 21:13 ` sbogomolov
  2021-07-12 21:32 ` sbogomolov
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-07-12 21:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From c2eee0cd149fe162565877e3bc798c640f1ba5df Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.6

---
 srcpkgs/interception-tools/files/udevmon/run  | 10 +++++
 .../patches/find_libevdev.patch               | 29 +++++++++++++
 .../patches/fix_pid_t.patch                   | 43 +++++++++++++++++++
 srcpkgs/interception-tools/template           | 18 ++++++++
 4 files changed, 100 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/patches/find_libevdev.patch
 create mode 100644 srcpkgs/interception-tools/patches/fix_pid_t.patch
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..bc80910c33bf
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="${OPTS:+$OPTS }-c '${CONF_FILE}'"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/patches/find_libevdev.patch b/srcpkgs/interception-tools/patches/find_libevdev.patch
new file mode 100644
index 000000000000..6510f1c6330a
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/find_libevdev.patch
@@ -0,0 +1,29 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index bda9e62..af5fd82 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,18 +5,21 @@ project(interception-tools)
+ find_package(Boost REQUIRED)
+ find_package(Threads REQUIRED)
+ 
++find_package(PkgConfig)
++pkg_check_modules(LIBEVDEV REQUIRED libevdev)
++
+ add_executable(udevmon udevmon.cpp)
+-target_include_directories(udevmon PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(udevmon PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(udevmon PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(udevmon evdev udev yaml-cpp)
+ 
+ add_executable(intercept intercept.c)
+-target_include_directories(intercept PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(intercept PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(intercept PRIVATE -Wall -Wextra)
+ target_link_libraries(intercept evdev)
+ 
+ add_executable(uinput uinput.cpp)
+-target_include_directories(uinput PRIVATE "/usr/include/libevdev-1.0")
++target_include_directories(uinput PRIVATE ${LIBEVDEV_INCLUDE_DIRS})
+ target_compile_options(uinput PRIVATE -Wall -Wextra -pedantic -std=c++11)
+ target_link_libraries(uinput evdev udev yaml-cpp)
+ 
diff --git a/srcpkgs/interception-tools/patches/fix_pid_t.patch b/srcpkgs/interception-tools/patches/fix_pid_t.patch
new file mode 100644
index 000000000000..48a6de5d8f24
--- /dev/null
+++ b/srcpkgs/interception-tools/patches/fix_pid_t.patch
@@ -0,0 +1,43 @@
+diff --git a/udevmon.cpp b/udevmon.cpp
+index dec988d..a4112ff 100644
+--- a/udevmon.cpp
++++ b/udevmon.cpp
+@@ -79,10 +79,10 @@ struct cmd {
+             }
+     }
+ 
+-    std::vector<__pid_t> launch() const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch() const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1: {
+                     for (auto pid : pids)
+@@ -327,10 +327,10 @@ struct job {
+             });
+     }
+ 
+-    std::vector<__pid_t> launch_for(const std::string &devnode) const {
+-        std::vector<__pid_t> pids;
++    std::vector<pid_t> launch_for(const std::string &devnode) const {
++        std::vector<pid_t> pids;
+         for (size_t i = 0; i < cmds.size(); ++i) {
+-            __pid_t pid = fork();
++            pid_t pid = fork();
+             switch (pid) {
+                 case -1:
+                     std::fprintf(stderr,
+@@ -559,8 +559,8 @@ struct jobs_manager {
+ 
+     std::vector<cmd> cmds;
+     std::vector<job> jobs;
+-    std::vector<__pid_t> running_cmds;
+-    std::map<std::string, std::vector<__pid_t>> running_jobs;
++    std::vector<pid_t> running_cmds;
++    std::map<std::string, std::vector<pid_t>> running_jobs;
+ };
+ 
+ std::vector<yaml> scan_config(const std::string &directory) {
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..a6d6999f02a0
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,18 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.6
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+hostmakedepends="pkg-config"
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="6917eb7109c7514ef620f7ea184f95e7be522b8f5b226b121675c0a7f628afee"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From 01aff2d486d458b8fe654ffe54f5efc39f681d1f Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..36b4096f17b7
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,17 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
  2021-06-28 21:33 ` [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2 sbogomolov
@ 2021-07-11 21:57 ` sbogomolov
  2021-07-12 21:13 ` sbogomolov
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: sbogomolov @ 2021-07-11 21:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sbogomolov/void-packages caps2esc
https://github.com/void-linux/void-packages/pull/31575

New packages: interception-tools-0.6.6, caps2esc-0.3.2
<!-- 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?
- [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

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

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

From 27322b649e2bd75f85a77d7df04b6f6279e68c3b Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:27:48 +0200
Subject: [PATCH 1/2] New package: interception-tools-0.6.6

---
 srcpkgs/interception-tools/files/udevmon/run | 10 ++++++++++
 srcpkgs/interception-tools/template          | 17 +++++++++++++++++
 2 files changed, 27 insertions(+)
 create mode 100755 srcpkgs/interception-tools/files/udevmon/run
 create mode 100644 srcpkgs/interception-tools/template

diff --git a/srcpkgs/interception-tools/files/udevmon/run b/srcpkgs/interception-tools/files/udevmon/run
new file mode 100755
index 000000000000..bc80910c33bf
--- /dev/null
+++ b/srcpkgs/interception-tools/files/udevmon/run
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+	. ./conf
+	if [ ! -z "${CONF_FILE}" ]; then
+		OPTS="${OPTS:+$OPTS }-c '${CONF_FILE}'"
+	fi
+fi
+
+exec 2>&1
+exec udevmon ${OPTS}
diff --git a/srcpkgs/interception-tools/template b/srcpkgs/interception-tools/template
new file mode 100644
index 000000000000..145f390747b4
--- /dev/null
+++ b/srcpkgs/interception-tools/template
@@ -0,0 +1,17 @@
+# Template file for 'interception-tools'
+pkgname=interception-tools
+version=0.6.6
+revision=1
+wrksrc="tools-v${version}"
+build_style=cmake
+makedepends="boost-devel eudev-libudev-devel libevdev-devel yaml-cpp-devel"
+short_desc="Small set of utilities for operating on input events of evdev devices"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/interception/linux/tools"
+distfiles="https://gitlab.com/interception/linux/tools/-/archive/v${version}/tools-v${version}.tar.gz"
+checksum="6917eb7109c7514ef620f7ea184f95e7be522b8f5b226b121675c0a7f628afee"
+post_install() {
+	vdoc README.md
+	vsv udevmon
+}

From 312148d1cb943e84ab84683cb79502697da9ca2a Mon Sep 17 00:00:00 2001
From: Sergii Bogomolov <sergii@bogomolov.io>
Date: Sat, 19 Jun 2021 00:29:26 +0200
Subject: [PATCH 2/2] New package: caps2esc-0.3.2

---
 srcpkgs/caps2esc/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/caps2esc/template

diff --git a/srcpkgs/caps2esc/template b/srcpkgs/caps2esc/template
new file mode 100644
index 000000000000..36b4096f17b7
--- /dev/null
+++ b/srcpkgs/caps2esc/template
@@ -0,0 +1,17 @@
+# Template file for 'caps2esc'
+pkgname=caps2esc
+version=0.3.2
+revision=1
+wrksrc="caps2esc-v${version}"
+build_style=cmake
+depends="interception-tools"
+short_desc="Transforming the most useless key ever in the most useful one"
+maintainer="Sergii Bogomolov <void@sebo.dev>"
+license="MIT"
+homepage="https://gitlab.com/interception/linux/plugins/caps2esc"
+distfiles="https://gitlab.com/interception/linux/plugins/caps2esc/-/archive/v${version}/caps2esc-v${version}.tar.gz"
+checksum="d8a5c7a23cb7368fde2b91a0b5481d8ce906af146dd9a49f609052f2cf1d212c"
+post_install() {
+	vdoc README.md
+	vlicense LICENSE.md
+}

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

end of thread, other threads:[~2021-07-15 18:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31575@inbox.vuxu.org>
2021-06-28 21:33 ` [PR PATCH] [Updated] New packages: interception-tools-0.6.6, caps2esc-0.3.2 sbogomolov
2021-07-11 21:57 ` sbogomolov
2021-07-12 21:13 ` sbogomolov
2021-07-12 21:32 ` sbogomolov
2021-07-13 13:46 ` sbogomolov
2021-07-15 18:25 ` sbogomolov

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