4 Commits

Author SHA1 Message Date
spacefreak 981cfdd5f1 Fix pyproject.toml 2026-07-22 16:26:25 +02:00
spacefreak a4d9d2decb Raise version to 1.0.1 2026-07-22 16:12:06 +02:00
spacefreak 90abbd9c70 Fix Gentoo ebuild when specific version is installed 2026-07-22 15:41:31 +02:00
spacefreak 15a5b55585 Update PYTHON_COMPAT in Gentoo ebuild 2026-07-22 15:34:30 +02:00
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
PYTHON_COMPAT=( python3_{11..13}) PYTHON_COMPAT=( python3_{11..14})
DISTUTILS_USE_PEP517=setuptools DISTUTILS_USE_PEP517=setuptools
SCM="" SCM=""
@@ -14,18 +14,18 @@ fi
inherit ${SCM} distutils-r1 systemd inherit ${SCM} distutils-r1 systemd
DESCRIPTION="" DESCRIPTION="Dynamic DNS update service with CLI administration"
HOMEPAGE="https://git.ccc-rheintal.ch/spacefreak/ddns-service/" HOMEPAGE="https://git.ccc-rheintal.ch/spacefreak/ddns-service/"
if [ "${PV#9999}" != "${PV}" ] ; then if [ "${PV#9999}" != "${PV}" ] ; then
SRC_URI="" SRC_URI=""
KEYWORDS="" KEYWORDS=""
# Needed for tests # Needed for tests
S="${WORKDIR}/${PN}"
EGIT_CHECKOUT_DIR="${S}" EGIT_CHECKOUT_DIR="${S}"
else else
SRC_URI="https://git-ccc-rheintal.ch/spacefreak/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="https://git.ccc-rheintal.ch/spacefreak/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86" KEYWORDS="amd64 x86"
fi fi
S="${WORKDIR}/${PN}"
LICENSE="GPL-3" LICENSE="GPL-3"
SLOT="0" SLOT="0"
+1 -1
View File
@@ -26,7 +26,7 @@ readme = "README.md"
license = "GPL-3.0-only" license = "GPL-3.0-only"
keywords = ["dns", "ddns", "service", "http", "https"] keywords = ["dns", "ddns", "service", "http", "https"]
classifiers = [ classifiers = [
"Development Status :: 5 - Stable", "Development Status :: 5 - Production/Stable",
"Topic :: Internet :: Name Service (DNS)", "Topic :: Internet :: Name Service (DNS)",
"Intended Audience :: System Administrators", "Intended Audience :: System Administrators",
"Programming Language :: Python :: 3" "Programming Language :: Python :: 3"
+1 -1
View File
@@ -7,7 +7,7 @@ Includes CLI administration tools for user and hostname management.
import datetime import datetime
__version__ = "1.0.0" __version__ = "1.0.1"
__author__ = "Thomas Oettli <spacefreak@noop.ch>" __author__ = "Thomas Oettli <spacefreak@noop.ch>"
__all__ = [ __all__ = [