Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
a2b6ad84
Commit
a2b6ad84
authored
Aug 26, 2002
by
Kevin Rosenberg
Browse files
Auto commit for Debian build
parent
b4845916
Changes
4
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a2b6ad84
cl-asdf (0.0+cvs.2002.08.26-1) unstable; urgency=low
* Add Common Lisp Controller registration functions for cl-cclan
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 26 Aug 2002 04:21:32 -0600
cl-asdf (0.0+cvs.2002.08.26) unstable; urgency=low
* New upstream version
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 26 Aug 2002 01:23:48 -0600
cl-asdf (0.0+cvs.2002.08.22) unstable; urgency=low
* Add new binary package: cl-cclan
...
...
debian/cl-cclan.postinst
0 → 100644
View file @
a2b6ad84
#!/bin/sh -e
pkg
=
cl-cclan
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
case
"
$1
"
in
configure
)
/usr/sbin/register-common-lisp-source
$pkg
;;
abort-upgrade|abort-remove|abort-deconfigure
)
;;
*
)
echo
"postinst called with unknown argument
\`
$1
'"
>
&2
exit
1
;;
esac
#DEBHELPER#
exit
0
debian/cl-cclan.prerm
0 → 100644
View file @
a2b6ad84
#!/bin/sh -e
pkg
=
cl-cclan
# summary of how this script can be called:
# * <prerm> `remove'
# * <old-prerm> `upgrade' <new-version>
# * <new-prerm> `failed-upgrade' <old-version>
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <deconfigured's-prerm> `deconfigure' `in-favour'
# <package-being-installed> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case
"
$1
"
in
remove|upgrade|deconfigure
)
/usr/sbin/unregister-common-lisp-source
$pkg
;;
failed-upgrade
)
;;
*
)
echo
"prerm called with unknown argument
\`
$1
'"
>
&2
exit
1
;;
esac
#DEBHELPER#
exit
0
debian/control
View file @
a2b6ad84
...
...
@@ -19,8 +19,7 @@ Description: Another System Definition Facility
Package: cl-cclan
Architecture: all
Depends: ${shlibs:Depends}, cl-asdf, cmucl-normal | lisp-compiler
Recommends: common-lisp-controller
Depends: ${shlibs:Depends}, cl-asdf, cmucl-normal | lisp-compiler, common-lisp-controller
Description: Comprehensive Common Lisp Archive Network
cclan is a tool for creating a repository of Common Lisp packages.
cclan utilizes asdf to automatically create installable packages for various
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment