Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
puri
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clpm
puri
Commits
25ee2651
Commit
25ee2651
authored
Aug 02, 2009
by
Kevin Rosenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates for new debian standards
parent
feebbfdc
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
35 additions
and
68 deletions
+35
-68
debian/changelog
debian/changelog
+11
-0
debian/compat
debian/compat
+1
-1
debian/control
debian/control
+6
-4
debian/copyright
debian/copyright
+1
-1
debian/postinst
debian/postinst
+0
-21
debian/prerm
debian/prerm
+1
-16
debian/rules
debian/rules
+12
-24
debian/upload.sh
debian/upload.sh
+1
-1
debian/watch
debian/watch
+2
-0
No files found.
debian/changelog
View file @
25ee2651
cl-puri (1.5.1-2) unstable; urgency=low
* debian/watch: New file
* debian/control: Require debhelper 7. Change to new lisp section.
Add Vcs-Git and Homepage fields.
* debian/compat: Update to version 7
* debian/rules: Update for debhelper 7, architecture-independent build
* debian/{prerm,postrm}: Remove path from binary function
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 02 Aug 2009 01:36:28 -0600
cl-puri (1.5.1-1) unstable; urgency=low
* New upstream
...
...
debian/compat
View file @
25ee2651
4
7
debian/control
View file @
25ee2651
Source: cl-puri
Section:
devel
Section:
lisp
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends: debhelper (>= 4.0.0)
Standards-Version: 3.7.2.2
Build-Depends: debhelper (>= 7.0.0)
Standards-Version: 3.8.2.0
Homepage: http://files.b9.com/puri/
Vcs-Git: git://git.b9.com/puri/
Package: cl-puri
Architecture: all
Depends:
${shlibs:Depends},
common-lisp-controller (>= 3.47)
Depends: common-lisp-controller (>= 3.47)
Recommends: cl-ptester
Description: Common Lisp Portable URI Library
This is portable Universal Resource Identifier (RFC 2396)
...
...
debian/copyright
View file @
25ee2651
...
...
@@ -22,7 +22,7 @@ merchantability or fitness for a particular purpose. See the GNU
Lesser General Public License for more details.
The GNU Lessor General Public License can be found in your Debian file
system in /usr/share/common-licenses/LGPL.
system in /usr/share/common-licenses/LGPL
-3
.
Preamble to the Gnu Lesser General Public License
-------------------------------------------------
...
...
debian/postinst
View file @
25ee2651
...
...
@@ -3,24 +3,6 @@ set -e
LISP_PKG
=
puri
# 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
${
LISP_PKG
}
...
...
@@ -33,9 +15,6 @@ case "$1" in
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit
0
...
...
debian/prerm
View file @
25ee2651
...
...
@@ -3,21 +3,9 @@ set -e
LISP_PKG
=
puri
# 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
${
LISP_PKG
}
unregister-common-lisp-source
${
LISP_PKG
}
;;
failed-upgrade
)
;;
...
...
@@ -27,9 +15,6 @@ case "$1" in
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit
0
...
...
debian/rules
View file @
25ee2651
...
...
@@ -3,64 +3,52 @@
pkg := puri
debpkg := cl-puri
clc-source := usr/share/common-lisp/source
clc-systems := usr/share/common-lisp/systems
clc-puri := $(clc-source)/$(pkg)
doc-dir := usr/share/doc/$(debpkg)
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
# Add here commands to compile the package.
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
rm -f debian/cl-puri.postinst.* debian/cl-puri.prerm.*
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
# Add here commands to install the package into debian/puri.
dh_prep
dh_installdirs $(clc-systems) $(clc-puri)
dh_install *.asd $(shell echo *.lisp) $(clc-puri)
dh_link $(clc-puri)/puri.asd $(clc-systems)/puri.asd
# Build architecture-independent files here.
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installdocs -i README uri.html
dh_installchangelogs -i
dh_strip -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installdocs README uri.html
dh_installchangelogs
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
...
...
debian/upload.sh
View file @
25ee2651
#!/bin/bash -e
dup puri
-Uf
tp
.b9.com
-D
/home/ftp/puri
-C
"(umask 022; /home/kevin/bin/remove-old-versions puri latest)"
-su
$*
dup puri
-Uf
iles
.b9.com
-D
/home/ftp/puri
-C
"(umask 022; /home/kevin/bin/remove-old-versions puri latest)"
-su
$*
debian/watch
0 → 100644
View file @
25ee2651
version=3
http://files.b9.com/puri/puri-([\d\.]*)\.tar\.gz
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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