aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-08 09:03:08 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-08 09:03:08 -0400
commitacb35c1a5bcc94d3069d99de5041ae19ca600208 (patch)
tree0126333b3e5b5dccb82c249ac491b8b22527d9e5 /debian
downloadpython3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.tar.gz
python3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.tar.bz2
python3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.zip
initial commit
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian5
-rw-r--r--debian/changelog5
-rw-r--r--debian/control26
-rw-r--r--debian/copyright32
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules10
-rw-r--r--debian/salsa-ci.yml10
-rw-r--r--debian/source/format1
-rw-r--r--debian/source/lintian-overrides1
-rw-r--r--debian/source/local-options4
-rw-r--r--debian/source/options4
-rw-r--r--debian/source/patch-header22
-rw-r--r--debian/upstream/metadata16
-rw-r--r--debian/watch2
14 files changed, 139 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..0c0ca50
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,5 @@
+python3-tkstackrpms for Devuan
+
+Initial release.
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 08 Apr 2024 08:05:32 -0400
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0d3180d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python3-tkstackrpms (0.0.1-1+stackrpms) obs; urgency=low
+
+ * Initial release. Closes: packages-want#33
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 08 Apr 2024 08:05:32 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..10b96f9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: python3-tkstackrpms
+Section: x11
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 13),
+ dh-python,
+ pybuild-plugin-pyproject,
+ python3-all-dev,
+Standards-Version: 4.6.1
+Homepage: https://bgstack15.ddns.net/cgit/tkstackrpms/
+Rules-Requires-Root: no
+X-Python3-Version: >= 3.6
+
+Package: python3-tkstackrpms
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${python3:Depends},
+ python3:any,
+ python3-pil.imagetk,
+ python3-tk
+Recommends:
+ python3-cairosvg,
+Description: Stackrpms extensions to Tcl/Tk for Python 3
+ Library of small additions that make stackrpms
+ development easier by storing repeated classes and
+ functions.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..374127b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python3-tkstackrpms
+Upstream-Contact: B. Stack <bgstack15@gmail.com>
+Source: <https://bgstack15.ddns.net/cgit/tkstackrpms/>
+
+Files: debian/*
+ .gitignore
+ README.md
+ pyproject.toml
+ setup.cfg
+ src/tkstackrpms/__init__.py
+ src/tkstackrpms/tkstackrpms.py
+ LICENSE.md
+Copyright: 2024 B. Stack
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ Written by: Mad Nick <dr.madnick@gmail.com>
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..4a97dfa
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# You must remove unused comment lines for the released package.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..7da282f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+#export PYBUILD_NAME = tkstackrpms
+
+%:
+ dh $@ --with python3 --buildsystem pybuild
+
+execute_after_dh_auto_clean:
+ rm -rf build/ .pybuild/ src/*.egg-info dist/
diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml
new file mode 100644
index 0000000..11a64c6
--- /dev/null
+++ b/debian/salsa-ci.yml
@@ -0,0 +1,10 @@
+# For more information on what jobs are run see:
+# https://salsa.debian.org/salsa-ci-team/pipeline
+#
+# To enable the jobs, go to your repository (at salsa.debian.org)
+# and click over Settings > CI/CD > Expand (in General pipelines).
+# In "CI/CD configuration file" write debian/salsa-ci.yml and click
+# in "Save Changes". The CI tests will run after the next commit.
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides
new file mode 100644
index 0000000..050df4c
--- /dev/null
+++ b/debian/source/lintian-overrides
@@ -0,0 +1 @@
+python3-tkstackrpms source: source-package-encodes-python-version
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..77effbe
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,4 @@
+#
+# ### gbp-buildpackage(1) user may like this. ###
+#abort-on-upstream-changes
+#unapply-patches
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..077de7d
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1,4 @@
+#
+# ### dgit-maint-merge(7) workflow user need this ###
+# single-debian-patch
+# auto-commit
diff --git a/debian/source/patch-header b/debian/source/patch-header
new file mode 100644
index 0000000..6ff0a40
--- /dev/null
+++ b/debian/source/patch-header
@@ -0,0 +1,22 @@
+The automatically generated patch puts this free form text on top of it.
+
+If you are using gbp-buildpackage(1), you probably don't need this file.
+
+If you are using dgit-maint-merge(7), please consider text as follows.
+
+The Debian packaging of foo is maintained in git, using the merging workflow
+described in dgit-maint-merge(7). There isn't a patch queue that can be
+represented as a quilt series.
+
+A detailed breakdown of the changes is available from their canonical
+representation - git commits in the packaging repository. For example, to see
+the changes made by the Debian maintainer in the first upload of upstream
+version 1.2.3, you could use:
+
+ % git clone https://git.dgit.debian.org/foo
+ % cd foo
+ % git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian'
+
+(If you have dgit, use `dgit clone foo`, rather than plain `git clone`.)
+
+A single combined diff, containing all the changes, follows.
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..dc2feb0
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,16 @@
+#
+# DEP-12: Per-package machine-readable metadata about Upstream
+# Please check * https://dep-team.pages.debian.net/deps/dep12/
+# * https://wiki.debian.org/UpstreamMetadata
+Reference:
+ Author: <please use full names and separate multiple author by the keyword "and">
+ Title:
+ Journal:
+ Year:
+ Volume:
+ Number:
+ Pages:
+ DOI:
+ PMID:
+ URL:
+ eprint:
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..76575dc
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+# You must remove unused comment lines for the released package.
+version=3
bgstack15