From 9afa811de9273fa64a596a061d5fcb5f0dc41ebb Mon Sep 17 00:00:00 2001 From: fanyx Date: Wed, 12 Jan 2022 18:26:04 +0100 Subject: [PATCH] New package: hydrus-468_1 --- srcpkgs/hydrus/files/hydrus-client | 2 ++ srcpkgs/hydrus/files/hydrus-server | 2 ++ srcpkgs/hydrus/files/hydrus.desktop | 9 ++++++ srcpkgs/hydrus/template | 43 +++++++++++++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 srcpkgs/hydrus/files/hydrus-client create mode 100644 srcpkgs/hydrus/files/hydrus-server create mode 100644 srcpkgs/hydrus/files/hydrus.desktop create mode 100644 srcpkgs/hydrus/template diff --git a/srcpkgs/hydrus/files/hydrus-client b/srcpkgs/hydrus/files/hydrus-client new file mode 100644 index 000000000000..f3ed9ccd0add --- /dev/null +++ b/srcpkgs/hydrus/files/hydrus-client @@ -0,0 +1,2 @@ +#!/bin/sh +exec python -OO /usr/lib/hydrus/client.pyw "$@" diff --git a/srcpkgs/hydrus/files/hydrus-server b/srcpkgs/hydrus/files/hydrus-server new file mode 100644 index 000000000000..80376bed6816 --- /dev/null +++ b/srcpkgs/hydrus/files/hydrus-server @@ -0,0 +1,2 @@ +#!/bin/sh +exec python -OO /usr/lib/hydrus/server.py "$@" diff --git a/srcpkgs/hydrus/files/hydrus.desktop b/srcpkgs/hydrus/files/hydrus.desktop new file mode 100644 index 000000000000..495c2f060d6e --- /dev/null +++ b/srcpkgs/hydrus/files/hydrus.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Name=Hydrus Client +Comment=Danbooru-like image tagging and searching system for the desktop +Exec=hydrus-client +Icon=/usr/lib/hydrus/static/hydrus_non-transparent.png +Terminal=false +Type=Application +Categories=Application;FileTools;Graphics;Network; diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template new file mode 100644 index 000000000000..7d37826a8c34 --- /dev/null +++ b/srcpkgs/hydrus/template @@ -0,0 +1,43 @@ +# Template file for 'hydrus' +pkgname=hydrus +version=468 +revision=1 +archs="x86_64" +makedepends="python3" +depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml python3-lz4 + python3-numpy python3-Twisted python3-Pillow python3-pysocks python3-psutil + python3-send2trash python3-html5lib python3-requests python3-QtPy noto-fonts-emoji + python3-mpv python3-service_identity python3-PyQt5 fmt python3-pyside2 ffmpeg + miniupnpc desktop-file-utils python3-cloudscraper python3-openssl" +short_desc="Danbooru-like image tagging and searching system for the desktop" +maintainer="fanyx " +license="WTFPL" +homepage="https://hydrusnetwork.github.io/hydrus/" +distfiles="https://github.com/hydrusnetwork/${pkgname}/archive/refs/tags/v${version}.tar.gz" +checksum=f87e4df7f31ac6536d74b01a5db266997145c4995bbe7223b7b38aaa8a6e3070 + +pre_build() { + rm -f "hydrus/Test"*.py + rm -rf "static/testing" +} + +do_build() { + echo 'Compiling .py files...' + python3 -OO -m compileall -fq . +} + +do_install() { + vmkdir usr/lib/hydrus + cp -r help hydrus static client.pyw server.py ${DESTDIR}/usr/lib/hydrus/ + + vmkdir usr/lib/hydrus/bin + + vbin ${FILESDIR}/hydrus-client + vbin ${FILESDIR}/hydrus-server + + vmkdir usr/share/applications + vcopy ${FILESDIR}/hydrus.desktop usr/share/applications/ + + vlicense COPYING + vlicense license.txt +}