summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-09-24 21:39:18 -0400
committerB. Stack <bgstack15@gmail.com>2024-09-24 21:39:18 -0400
commitfceb646faabc9f18bb7001ae00fc8886e7ffd416 (patch)
treefca21a3a3851c17bce3d231ba7e2fc7d518deeeb
parentnpp (diff)
downloadstackrpms-fceb646faabc9f18bb7001ae00fc8886e7ffd416.tar.gz
stackrpms-fceb646faabc9f18bb7001ae00fc8886e7ffd416.tar.bz2
stackrpms-fceb646faabc9f18bb7001ae00fc8886e7ffd416.zip
add fprintd-tk
-rw-r--r--fprintd_tk/README.md23
-rw-r--r--fprintd_tk/debian/_service40
-rw-r--r--fprintd_tk/debian/fprintd-tk+stackrpms.dsc14
3 files changed, 77 insertions, 0 deletions
diff --git a/fprintd_tk/README.md b/fprintd_tk/README.md
new file mode 100644
index 0000000..9bf5a0a
--- /dev/null
+++ b/fprintd_tk/README.md
@@ -0,0 +1,23 @@
+# Readme for fprintd-tk
+
+## Overview
+Fprintd-tk is a small project that shows a graphical interface for controlling fingerprint enrollments.
+
+## Upstream
+The original project is at <https://bgstack15.ddns.net/cgit/fprintd-tk>.
+
+## Alternatives
+Use `fprintd-enroll` on cli.
+
+## Reason for being in stackrpms
+The upstream should not be cluttered with the [OBS](https://build.opensuse.org/project/show/home:bgstack15) build assets.
+
+## Improvements
+
+## Dependencies
+See the upstream project.
+
+## References
+
+## Differences from upstream
+None.
diff --git a/fprintd_tk/debian/_service b/fprintd_tk/debian/_service
new file mode 100644
index 0000000..f1e62b3
--- /dev/null
+++ b/fprintd_tk/debian/_service
@@ -0,0 +1,40 @@
+<services>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://bgstack15.ddns.net/cgit/stackrpms</param>
+ <param name="subdir">debian</param>
+ <param name="filename">for-dsc-only</param>
+ <param name="revision">master</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">xz</param>
+ </service>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://bgstack15.ddns.net/cgit/fprintd-tk</param>
+ <param name="subdir">debian</param>
+ <param name="filename">debian</param>
+ <param name="revision">master</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">xz</param>
+ </service>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://bgstack15.ddns.net/cgit/fprintd-tk</param>
+ <param name="revision">master</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">gz</param>
+ </service>
+ <service name="extract_file">
+ <param name="archive">for-dsc-only.tar.xz</param>
+ <param name="files">*/*.dsc</param>
+ </service>
+</services>
diff --git a/fprintd_tk/debian/fprintd-tk+stackrpms.dsc b/fprintd_tk/debian/fprintd-tk+stackrpms.dsc
new file mode 100644
index 0000000..1b53174
--- /dev/null
+++ b/fprintd_tk/debian/fprintd-tk+stackrpms.dsc
@@ -0,0 +1,14 @@
+Format: 3.0 (quilt)
+Source: fprintd-tk
+Binary: fprintd-tk
+Architecture: all
+Version: 0.0.1-1
+Maintainer: B. Stack <bgstack15@gmail.com>
+Homepage: https://bgstack15.ddns.net/cgit/fprintd-tk
+Standards-Version: 4.6.1
+Build-Depends: debhelper-compat (= 13)
+Package-List:
+ fprintd-tk deb x11 optional arch=all
+Files:
+ 00000000000000000000000000000000 1 fprintd-tk.orig.tar.gz
+ 00000000000000000000000000000000 1 fprintd-tk.debian.tar.xz
bgstack15