diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 12 | ||||
-rw-r--r-- | debian/files | 2 | ||||
-rwxr-xr-x | debian/rules | 7 |
5 files changed, 27 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..71809b0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +skaldpress (3.0.0) unstable; urgency=low + * Rewrite in python, make it more malleable + -- Qrius <[email protected]> Wed, 26 Mar 2025 09:16:00 +0000 + + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d7d8c3e --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: skaldpress +Maintainer: Qrius <[email protected]> +Section: python +Priority: optional +Build-Depends: dh-python, python3-setuptools, python3, dpkg-dev, debhelper (>= 9) +Standards-Version: 4.5.1 +Rules-Requires-Root: no + +Package: skaldpress +Architecture: any +Depends: python3, python3-markdown-it +Description: Skaldpress diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..da7ff26 --- /dev/null +++ b/debian/files @@ -0,0 +1,2 @@ +skaldpress_3.0.0_amd64.buildinfo python optional +skaldpress_3.0.0_amd64.deb python optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ffefe86 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +#export PYBUILD_NAME=skaldpress +#export DEB_BUILD_OPTIONS=nocheck +#export PYBUILD_SYSTEM=setuptools + +%: + dh $@ --with python3 --buildsystem=pybuild |