From: Matt Birkholz Date: Sun, 12 Jun 2016 06:56:25 +0000 (-0700) Subject: gdbm/debian/: Support dpkg-buildpackage. X-Git-Tag: mit-scheme-pucked-9.2.12~301 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=84fcfe452f1db6b31d4c0b9490c2fbbb2f71a6e7;p=mit-scheme.git gdbm/debian/: Support dpkg-buildpackage. --- diff --git a/src/gdbm/Makefile.am b/src/gdbm/Makefile.am index 32dfe0d65..18b55f6e5 100644 --- a/src/gdbm/Makefile.am +++ b/src/gdbm/Makefile.am @@ -94,19 +94,21 @@ TAGS_DEPENDENCIES = $(all_sources) $(cdecls) EXTRA_DIST += $(all_sources) $(cdecls) gdbm.pkg EXTRA_DIST += compile.scm gdbm-check.scm gdbm-check.sh -EXTRA_DIST += make.scm optiondb.scm tags-fix.sh +EXTRA_DIST += make.scm optiondb.scm tags-fix.sh debian install-data-hook: - echo '(update-optiondb "$(DESTDIR)$(scmlibdir)")' \ - | $(MIT_SCHEME_EXE) --batch-mode + if [ -f "$(DESTDIR)$(scmlibdir)optiondb.scm" ]; then \ + echo '(update-optiondb "$(DESTDIR)$(scmlibdir)")' \ + | $(MIT_SCHEME_EXE) --batch-mode; fi #install-html: install-html-am # echo '(update-html-index "$(DESTDIR)$(htmldir)/")' \ # | $(MIT_SCHEME_EXE) --batch-mode uninstall-hook: - echo '(update-optiondb "$(DESTDIR)$(scmlibdir)")' \ - | $(MIT_SCHEME_EXE) --batch-mode + if [ -f "$(DESTDIR)$(scmlibdir)optiondb.scm" ]; then \ + echo '(update-optiondb "$(DESTDIR)$(scmlibdir)")' \ + | $(MIT_SCHEME_EXE) --batch-mode; fi [ -d "$(DESTDIR)$(scmlib_gdbmdir)" ] \ && rmdir "$(DESTDIR)$(scmlib_gdbmdir)" # [ -d "$(DESTDIR)$(htmldir)" ] \ diff --git a/src/gdbm/debian/changelog b/src/gdbm/debian/changelog new file mode 100644 index 000000000..2382ca969 --- /dev/null +++ b/src/gdbm/debian/changelog @@ -0,0 +1,5 @@ +mit-scheme-pucked-gdbm (0.1-1) experimental; urgency=low + + * Initial Debianization. + + -- Friar Puck Sun, 12 Jun 2016 00:00:00 -0700 diff --git a/src/gdbm/debian/compat b/src/gdbm/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/src/gdbm/debian/compat @@ -0,0 +1 @@ +9 diff --git a/src/gdbm/debian/control b/src/gdbm/debian/control new file mode 100644 index 000000000..9599d5b56 --- /dev/null +++ b/src/gdbm/debian/control @@ -0,0 +1,19 @@ +Source: mit-scheme-pucked-gdbm +Section: lisp +Priority: optional +Maintainer: Friar Puck +Build-Depends: debhelper (>= 9), autotools-dev, libltdl-dev, + mit-scheme-pucked (>= 9.2.1.1), + libgdbm-dev +Standards-Version: 3.9.4 +Homepage: http://birchwood-abbey.net/~matt/Scheme/ +Vcs-Git: git://birchwood-abbey.net/~matt/mit-scheme.git +Vcs-Browser: http://birchwood-abbey.net/gitweb/?p=mit-scheme.git;a=summary + +Package: mit-scheme-pucked-gdbm +Architecture: any +Depends: mit-scheme-pucked (>= 9.2.1.1), ${shlibs:Depends}, ${misc:Depends} +Description: GDBM plugin for Friar Puck's MIT/GNU Scheme + This package provides mit-scheme-pucked with a dynamically loadable + wrapper of the GDBM (GNU Data Base Management) C API as implemented + by libgdbm. diff --git a/src/gdbm/debian/copyright b/src/gdbm/debian/copyright new file mode 100644 index 000000000..0b0ec90e4 --- /dev/null +++ b/src/gdbm/debian/copyright @@ -0,0 +1,29 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: mit-scheme-pucked-gdbm +Source: http://birchwood-abbey.net/~matt/Scheme/ + +Files: * +Copyright: 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, + 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 + Massachusetts Institute of Technology +License: GPL-2+ + This package is a gdbm plugin for Friar Puck's MIT/GNU Scheme. + . + This package 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 2 of the License, or (at + your option) any later version. + . + This package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, + USA. + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/src/gdbm/debian/docs b/src/gdbm/debian/docs new file mode 100644 index 000000000..50bd824bb --- /dev/null +++ b/src/gdbm/debian/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/src/gdbm/debian/postinst b/src/gdbm/debian/postinst new file mode 100755 index 000000000..3a1b31670 --- /dev/null +++ b/src/gdbm/debian/postinst @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +echo '(update-optiondb (system-library-directory-pathname))' \ +| mit-scheme-pucked --batch-mode + +exit 0 diff --git a/src/gdbm/debian/postrm b/src/gdbm/debian/postrm new file mode 100755 index 000000000..3a1b31670 --- /dev/null +++ b/src/gdbm/debian/postrm @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +echo '(update-optiondb (system-library-directory-pathname))' \ +| mit-scheme-pucked --batch-mode + +exit 0 diff --git a/src/gdbm/debian/rules b/src/gdbm/debian/rules new file mode 100755 index 000000000..90576a632 --- /dev/null +++ b/src/gdbm/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +export MIT_SCHEME_EXE=mit-scheme-pucked + +%: + dh $@ diff --git a/src/gdbm/debian/source/format b/src/gdbm/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/src/gdbm/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/src/gdbm/debian/watch b/src/gdbm/debian/watch new file mode 100644 index 000000000..103a3065b --- /dev/null +++ b/src/gdbm/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://birchwood-abbey.net/~matt/Scheme/mit-scheme-pucked-gdbm-(.*)\.tar\.gz debian uupdate