/usr/share/common-lisp/source/zip/package.lisp is in cl-zip 20150608-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | (in-package :cl-user)
(defpackage :zip
(:use :cl :trivial-gray-streams)
(:export #:zipfile ;reading ZIP files
#:open-zipfile
#:close-zipfile
#:with-zipfile
#:zipfile-entries
#:get-zipfile-entry
#:zipfile-entry-name
#:zipfile-entry-size
#:zipfile-entry-comment
#:do-zipfile-entries
#:zipfile-entry-contents
#:unzip
#:with-output-to-zipfile ;writing ZIP files
#:write-zipentry
#:zip
#:inflate ;inflate.lisp
#:skip-gzip-header
#:compress ;deflate.lisp
#:store))
|