From b1e77e44777c0c99042594590e8c80a5aa4fe062 Mon Sep 17 00:00:00 2001 From: "Ralph Ronnquist rr@rrq.au" Date: Wed, 27 Dec 2023 17:54:10 +1100 Subject: [PATCH] Initial setup. --- debian/changelog | 5 +++++ debian/control | 18 ++++++++++++++++++ debian/copyright | 1 + debian/gbp.conf | 3 +++ debian/patches/series | 0 debian/rules | 11 +++++++++++ debian/source/format | 1 + 7 files changed, 39 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/patches/series create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f5263b3 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +packnl (0.1.0) unstable; urgency=low + + * Initial release. + + -- Ralph Ronnquist Wed, 27 Dec 2023 17:36:16 +1100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6d4ebcb --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: newlisp-packnl +Section: main +Priority: optional +Maintainer: Ralph Ronnquist +Build-Depends: debhelper-compat (= 13) +Standards-Version: 4.6.1 +#Homepage: +Rules-Requires-Root: no +Vcs-Browser: https://git.rrq.au/?p=ralph/newlisp/packnl.git +Vcs-Git: https://git.rrq.au/?p=ralph/newlisp/packnl.git + +Package: newlisp-packnl +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Pack newlisp script collection into an executable. + This is a newlisp utility to pack a collection of newlisp scripts + into an executable ELF binary. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..87ea1b4 --- /dev/null +++ b/debian/copyright @@ -0,0 +1 @@ +Copyright 2023, Ralph Ronnquist diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..4d7fdf9 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[default] +upstream-branch=master +debian-branch=debian diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..e69de29 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4ad770e --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. + +%: + dh $@ + +# #override_dh_auto_install: +# # dh_auto_install -- prefix=/usr + +# #override_dh_install: +# # dh_install --list-missing -X.pyc -X.pyo 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) -- 2.39.2