Codebase list cl-postmodern / dedb3a8
Import Debian changes 20140713-1 cl-postmodern (20140713-1) unstable; urgency=medium * Quicklisp release update. Dimitri Fontaine authored 9 years ago Sébastien Villemot committed 3 years ago
18 changed file(s) with 135 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 cl-postmodern (20140713-1) unstable; urgency=medium
1
2 * Quicklisp release update.
3
4 -- Dimitri Fontaine <dim@tapoueh.org> Tue, 05 Aug 2014 00:39:03 +0400
0 usr/share/common-lisp/source/cl-postgres
1 usr/share/common-lisp/systems
0 cl-postgres.asd usr/share/common-lisp/source/cl-postgres
1 cl-postgres usr/share/common-lisp/source/cl-postgres
0 usr/share/common-lisp/source/cl-postgres/cl-postgres.asd usr/share/common-lisp/systems/cl-postgres.asd
0 usr/share/common-lisp/source/postmodern
1 usr/share/common-lisp/systems
0 postmodern.asd usr/share/common-lisp/source/postmodern
1 postmodern usr/share/common-lisp/source/postmodern
0 usr/share/common-lisp/source/postmodern/postmodern.asd usr/share/common-lisp/systems/postmodern.asd
0 usr/share/common-lisp/source/s-sql
1 usr/share/common-lisp/systems
0 s-sql.asd usr/share/common-lisp/source/s-sql
1 s-sql usr/share/common-lisp/source/s-sql
0 usr/share/common-lisp/source/s-sql/s-sql.asd usr/share/common-lisp/systems/s-sql.asd
0 usr/share/common-lisp/source/simple-date
1 usr/share/common-lisp/systems
0 simple-date.asd usr/share/common-lisp/source/simple-date
1 simple-date usr/share/common-lisp/source/simple-date
0 usr/share/common-lisp/source/simple-date/simple-date.asd usr/share/common-lisp/systems/simple-date.asd
0 Source: cl-postmodern
1 Section: lisp
2 Priority: optional
3 Maintainer: Dimitri Fontaine <dim@tapoueh.org>
4 Build-Depends: debhelper (>= 7)
5 Build-Depends-Indep: dh-lisp
6 Standards-Version: 3.9.5
7 Homepage: http://marijnhaverbeke.nl/postmodern/
8 Vcs-Git: https://github.com/marijnh/Postmodern.git
9 Vcs-Browser: https://github.com/marijnh/Postmodern
10
11 Package: cl-postmodern
12 Architecture: all
13 Depends: ${misc:Depends}, cl-postgres, cl-s-sql, cl-closer-mop, cl-bordeaux-threads
14 Description: Common Lisp library for interacting with PostgreSQL databases
15 Features efficient communication with the database server without need for
16 foreign libraries, support for UTF-8 on Unicode-aware Lisp implementations,
17 a syntax for mixing SQL and Lisp code, convenient support for prepared
18 statements and stored procedures, a metaclass for simple database-access
19 objects
20 .
21 The biggest differences between this library and CLSQL/CommonSQL are that
22 Postmodern has no intention of being portable across different SQL
23 implementations (it embraces non-standard Postgres features), and
24 approaches extensions like lispy SQL and database access objects in a quite
25 different way. This library was written because the CLSQL approach did not
26 really work for me, your mileage may vary.
27
28 Package: cl-postgres
29 Architecture: all
30 Depends: ${misc:Depends}, cl-usocket
31 Description: Low-level client library for PosgreSQL
32 CL-postgres module implements a rather low-level interface for
33 communicating with a PostgreSQL database server. It is part of the
34 Postmodern library, but can be used separately.
35
36 Package: cl-s-sql
37 Architecture: all
38 Depends: ${misc:Depends}
39 Description: lispy syntax for SQL queries
40 S-SQL provides a lispy syntax for SQL queries, and knows how to convert
41 various lisp types to their textual SQL representation. It takes care to do
42 as much of the work as possible at compile-time, so that at runtime a
43 string concatenation is all that is needed to produce the final SQL query.
44
45 Package: cl-simple-date
46 Architecture: all
47 Depends: ${misc:Depends}
48 Description: Common Lisp types for dates, timestamps, and intervals
49 Simple-date provides types (CLOS classes) for dates, timestamps, and
50 intervals similar to the ones SQL databases use, in order to be able to
51 store and read these to and from a database in a straighforward way. A few
52 obvious operations are defined on these types.
53 .
54 The most glaring defect of this library is its ignorance of time zones. It
55 pretends the whole world lives in UTC. Use with care.
56 .
57 When this library is loaded after CL-postgres, it will register suitable SQL
58 readers and writers for the associated database types.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: postmodern
2 Upstream-Contact: Marijn Haverbeke <marijnh@gmail.com>
3 Source: http://marijnhaverbeke.nl/postmodern/
4
5 Files: *
6 Copyright: Marijn Haverbeke, marijnh@gmail.com
7 License:
8 This software is provided 'as-is', without any express or implied warranty.
9 In no event will the authors be held liable for any damages arising from
10 the use of this software.
11 .
12 Permission is granted to anyone to use this software for any purpose,
13 including commercial applications, and to alter it and redistribute it
14 freely, subject to the following restrictions:
15 .
16 1. The origin of this software must not be misrepresented; you must not
17 claim that you wrote the original software. If you use this software in
18 a product, an acknowledgment in the product documentation would be
19 appreciated but is not required.
20 .
21 2. Altered source versions must be plainly marked as such, and must not be
22 misrepresented as being the original software.
23 .
24 3. This notice may not be removed or altered from any source distribution.
25
26 Files: debian/*
27 Copyright: 2014 Dimitri Fontaine
28 License: WTFPL
29 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
30 Version 2, December 2004
31 .
32 Copyright (C) 2014 Dimitri Fontaine <dim@tapoueh.org>
33 .
34 Everyone is permitted to copy and distribute verbatim or modified
35 copies of this license document, and changing it is allowed as long
36 as the name is changed.
37 .
38 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
39 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
40 .
41 0. You just DO WHAT THE FUCK YOU WANT TO.
0 #!/usr/bin/make -f
1
2 %:
3 dh $@ --with lisp
4
5 override_dh_installdocs:
6 dh_installdocs doc/*
0 3.0 (quilt)