summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-11 09:03:25 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-11 09:15:55 -0700
commit484eeda474f1f6a090d4a62478ee940a9306651f (patch)
treec2252a35fc661a3885173cb6dd0df9b3deef8027
parent933270ac7107477de1bc92c1fd641fe646a7a8a9 (diff)
-rw-r--r--debian/changelog5
-rw-r--r--debian/control23
-rw-r--r--debian/copyright28
-rw-r--r--debian/docs1
-rw-r--r--debian/install1
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
7 files changed, 63 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8efff06
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+trivial-macroexpand-all (0~git20171020.933270a-1) unstable; urgency=medium
+
+ * Initial release (Closes: #984987).
+
+ -- Sean Whitton <spwhitton@spwhitton.name> Thu, 11 Mar 2021 09:15:50 -0700
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4a1cb01
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: trivial-macroexpand-all
+Section: lisp
+Priority: optional
+Maintainer: Debian Common Lisp Team <debian-common-lisp@lists.debian.org>
+Uploaders: Sean Whitton <spwhitton@spwhitton.name>
+Build-Depends: debhelper-compat (= 13)
+Standards-Version: 4.5.1
+Homepage: https://github.com/cbaggers/trivial-macroexpand-all
+Vcs-Git: https://salsa.debian.org/common-lisp-team/trivial-macroexpand-all.git
+Vcs-Browser: https://salsa.debian.org/common-lisp-team/trivial-macroexpand-all
+Rules-Requires-Root: no
+
+Package: cl-trivial-macroexpand-all
+Architecture: all
+Depends: ${misc:Depends}
+Description: macroexpand-all function which calls implementation-specific equivalent
+ Provides a macroexpand-all function that calls the implementation specific
+ equivalent. This small library is one way to deal with the fact that the
+ ANSI Common Lisp standard does not provide quite enough facilities to do
+ completely reliable code walking.
+ .
+ Supported Common Lisp implementations: `abcl`, `allegro`, `ccl`, `clisp`,
+ `cmucl`, `corman`, `lispworks`, `mkcl`, `sbcl`, `ecl` & `scl`.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..641d138
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+This package was Debianised on 2021-03-11 by Sean Whitton
+<spwhitton@spwhitton.name>. The source was downloaded from
+<https://github.com/cbaggers/trivial-macroexpand-all> using git.
+
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to <http://unlicense.org>
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..0ef91b4
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+*.asd *.lisp usr/share/common-lisp/source/trivial-macroexpand-all/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
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)