Date: Sunday, March 12, 2023 @ 22:29:09
  Author: felixonmars
Revision: 1419583

archrelease: copy trunk to community-x86_64

Added:
  ydotool/repos/community-x86_64/80-uinput.rules
    (from rev 1419582, ydotool/trunk/80-uinput.rules)
  ydotool/repos/community-x86_64/PKGBUILD
    (from rev 1419582, ydotool/trunk/PKGBUILD)
  ydotool/repos/community-x86_64/ydotool.install
    (from rev 1419582, ydotool/trunk/ydotool.install)
Deleted:
  ydotool/repos/community-x86_64/80-uinput.rules
  ydotool/repos/community-x86_64/PKGBUILD
  ydotool/repos/community-x86_64/ydotool.install

-----------------+
 80-uinput.rules |    6 ++---
 PKGBUILD        |   64 +++++++++++++++++++++++++++---------------------------
 ydotool.install |   16 ++++++-------
 3 files changed, 43 insertions(+), 43 deletions(-)

Deleted: 80-uinput.rules
===================================================================
--- 80-uinput.rules     2023-03-12 22:28:55 UTC (rev 1419582)
+++ 80-uinput.rules     2023-03-12 22:29:09 UTC (rev 1419583)
@@ -1,3 +0,0 @@
-## ydotoold fix
-##     https://github.com/ReimuNotMoe/ydotool/issues/25#issuecomment-535842993
-KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput"

Copied: ydotool/repos/community-x86_64/80-uinput.rules (from rev 1419582, 
ydotool/trunk/80-uinput.rules)
===================================================================
--- 80-uinput.rules                             (rev 0)
+++ 80-uinput.rules     2023-03-12 22:29:09 UTC (rev 1419583)
@@ -0,0 +1,3 @@
+## ydotoold fix
+##     https://github.com/ReimuNotMoe/ydotool/issues/25#issuecomment-535842993
+KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput"

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-12 22:28:55 UTC (rev 1419582)
+++ PKGBUILD    2023-03-12 22:29:09 UTC (rev 1419583)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan <[email protected]>
-# Contributor: Eric Engestrom <aur [at] engestrom [dot] ch>
-
-pkgname=ydotool
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Generic command-line automation tool (no X!)"
-arch=('x86_64')
-depends=('glibc')
-makedepends=('cmake' 'ninja' 'scdoc' 'systemd')
-url="https://github.com/ReimuNotMoe/ydotool";
-license=('AGPL3')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-        "80-uinput.rules")
-sha256sums=('20331a486753b25d3ed2d2f4b623775feecee9a56bb1b51290bc99df891b8ce4'
-            'e092f5e7e474aec6c980c458046d0ff11b18750b53de2bf0a0aba1ca26e6d58e')
-install=ydotool.install
-
-build() {
-  cmake \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_MANDIR=/usr/share/man \
-    -G Ninja \
-    -S "$pkgname-$pkgver" -B build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  install -Dm644 80-uinput.rules -t "$pkgdir"/usr/lib/udev/rules.d/
-}

Copied: ydotool/repos/community-x86_64/PKGBUILD (from rev 1419582, 
ydotool/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-12 22:29:09 UTC (rev 1419583)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Eric Engestrom <aur [at] engestrom [dot] ch>
+
+pkgname=ydotool
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="Generic command-line automation tool (no X!)"
+arch=('x86_64')
+depends=('glibc')
+makedepends=('cmake' 'ninja' 'scdoc' 'systemd')
+url="https://github.com/ReimuNotMoe/ydotool";
+license=('AGPL3')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+        "80-uinput.rules")
+sha256sums=('4dbad0b8942ccb14d54136d9fbc853e413e29b99f5998211ffd02bee51af77b6'
+            'e092f5e7e474aec6c980c458046d0ff11b18750b53de2bf0a0aba1ca26e6d58e')
+install=ydotool.install
+
+build() {
+  cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_MANDIR=/usr/share/man \
+    -G Ninja \
+    -S "$pkgname-$pkgver" -B build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  install -Dm644 80-uinput.rules -t "$pkgdir"/usr/lib/udev/rules.d/
+}

Deleted: ydotool.install
===================================================================
--- ydotool.install     2023-03-12 22:28:55 UTC (rev 1419582)
+++ ydotool.install     2023-03-12 22:29:09 UTC (rev 1419583)
@@ -1,8 +0,0 @@
-post_install() {
-  echo 'Make sure your user is in the `input` group by running the following 
command:'
-  echo '  $ usermod -aG input $USER'
-}
-
-post_upgrade() {
-  post_install
-}

Copied: ydotool/repos/community-x86_64/ydotool.install (from rev 1419582, 
ydotool/trunk/ydotool.install)
===================================================================
--- ydotool.install                             (rev 0)
+++ ydotool.install     2023-03-12 22:29:09 UTC (rev 1419583)
@@ -0,0 +1,8 @@
+post_install() {
+  echo 'Make sure your user is in the `input` group by running the following 
command:'
+  echo '  $ usermod -aG input $USER'
+}
+
+post_upgrade() {
+  post_install
+}

Reply via email to