Merge branch 'master' into debian/master
authorRalph Ronnquist <rrq@rrq.au>
Mon, 1 Jan 2024 08:58:15 +0000 (19:58 +1100)
committerRalph Ronnquist <rrq@rrq.au>
Mon, 1 Jan 2024 08:58:15 +0000 (19:58 +1100)
debian/README.Debian [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/gbp.conf [new file with mode: 0644]
debian/patches/series [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644 (file)
index 0000000..0481e12
--- /dev/null
@@ -0,0 +1,4 @@
+newlisp-packnl for Debian
+
+This is a utility for newlisp scripting, to release a script collection
+as a single binary.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..4b99eea
--- /dev/null
@@ -0,0 +1,5 @@
+packnl (0.1.0-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Ralph Ronnquist <rrq@rrq.au>  Wed, 27 Dec 2023 17:36:16 +1100
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..eacb260
--- /dev/null
@@ -0,0 +1,18 @@
+Source: packnl
+Section: main
+Priority: optional
+Maintainer: Ralph Ronnquist <rrq@rrq.au>
+Build-Depends: debhelper-compat (= 13), newlisp, asciidoctor
+Standards-Version: 4.6.1
+#Homepage: <insert the upstream URL, if relevant>
+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}, libc6, libffi8, libreadline8
+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 (file)
index 0000000..87ea1b4
--- /dev/null
@@ -0,0 +1 @@
+Copyright 2023, Ralph Ronnquist
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644 (file)
index 0000000..bf5b222
--- /dev/null
@@ -0,0 +1,4 @@
+[buildpackage]
+debian-branch=debian/master
+upstream-tree=branch
+upstream-branch=master
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..5427a60
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+
+%:
+       dh $@
+
+override_dh_auto_strip:
+       echo nothing to strip
+
+# #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 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)