From b46e0dbad1a5fcc771173c4263856cf1a6840513 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" <git@edgarpierre.fr> Date: Sun, 9 Mar 2025 10:29:23 +0100 Subject: [PATCH] Refactor main application structure; move main logic to __main__.py and add example configuration file --- PKGBUILD | 57 +++++++++++++++++++++++++++++++++++ config.example.toml | 4 +++ hasspy.install | 35 +++++++++++++++++++++ main.py => hasspy/__main__.py | 0 4 files changed, 96 insertions(+) create mode 100644 PKGBUILD create mode 100644 config.example.toml create mode 100644 hasspy.install rename main.py => hasspy/__main__.py (100%) diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..534ca36 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,57 @@ +# This is an example PKGBUILD file. Use this as a start to creating your own, +# and remove these comments. For more information, see 'man PKGBUILD'. +# NOTE: Please fill out the license field for your package! If it is unknown, +# then please put 'unknown'. + +# The following guidelines are specific to BZR, GIT, HG and SVN packages. +# Other VCS sources are not natively supported by makepkg yet. + +# Maintainer: edpibu <git@edgarpierre.fr> +pkgname=hasspy-git +pkgver=2025.3.0 +pkgrel=1 +pkgdesc="Home assistant utility" +arch=(any) +url="https://git.edgarpierre.fr/edpibu/hasspy" +license=('GPL-3.0-or-later') +groups=() +depends=('python-paho-mqtt') +makedepends=('git' 'uv' 'python-installer') # 'bzr', 'git', 'mercurial' or 'subversion' +provides=("${pkgname%-git}") +conflicts=("${pkgname%-git}") +replaces=() +backup=("/etc/hasspy/config.toml") +options=() +install= +source=('FOLDER::VCS+URL#FRAGMENT') +noextract=() +sha256sums=('SKIP') + +# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for +# a description of each element in the source array. +source=("git+https://git.edgarpierre.fr/edpibu/hasspy.git") + +pkgver() { + cd "$srcdir/${pkgname%-git}" + +# The examples below are not absolute and need to be adapted to each repo. The +# primary goal is to generate version numbers that will increase according to +# pacman's version comparisons with later commits to the repo. The format +# VERSION='VER_NUM.rREV_NUM.HASH', or a relevant subset in case VER_NUM or HASH +# are not available, is recommended. + +# Git, no tags available + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +build() { + cd "$srcdir/${pkgname%-git}" + uv build +} + +package() { + cd "$srcdir/${pkgname%-git}" + + python -m installer --destdir="${pkgdir}" dist/*.whl + install -Dm644 config.example.toml "${pkgdir}/etc/${pkgname}/config.toml" +} diff --git a/config.example.toml b/config.example.toml new file mode 100644 index 0000000..8870406 --- /dev/null +++ b/config.example.toml @@ -0,0 +1,4 @@ +host ="homeassistant.local" +port = 1883 +username = "hasspy" +password = "password" diff --git a/hasspy.install b/hasspy.install new file mode 100644 index 0000000..f7f593f --- /dev/null +++ b/hasspy.install @@ -0,0 +1,35 @@ +# This is a default template for a post-install scriptlet. +# Uncomment only required functions and remove any functions +# you don't need (and this header). + +## arg 1: the new package version +#pre_install() { + # do something here +#} + +## arg 1: the new package version +#post_install() { + # do something here +#} + +## arg 1: the new package version +## arg 2: the old package version +#pre_upgrade() { + # do something here +#} + +## arg 1: the new package version +## arg 2: the old package version +#post_upgrade() { + # do something here +#} + +## arg 1: the old package version +#pre_remove() { + # do something here +#} + +## arg 1: the old package version +#post_remove() { + # do something here +#} diff --git a/main.py b/hasspy/__main__.py similarity index 100% rename from main.py rename to hasspy/__main__.py