Codebase list logbook / 9c00500
First commit Agustin Henze 10 years ago
9 changed file(s) with 156 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 logbook (0.6.0-1) unstable; urgency=low
1
2 * Initial release (Closes: #596042).
3
4 -- Agustin Henze <tin@debian.org> Mon, 18 Nov 2013 20:01:13 -0300
0 Source: logbook
1 Section: python
2 Priority: optional
3 Maintainer: Agustin Henze <tin@debian.org>
4 Build-Depends:
5 debhelper (>= 9),
6 dh-python,
7 python-all,
8 python-setuptools,
9 python3-all,
10 python3-setuptools,
11 python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
12 python-docutils,
13 Standards-Version: 3.9.5
14 X-Python-Version: >= 2.6
15 X-Python3-Version: >= 3.2
16 Homepage: http://pythonhosted.org/Logbook/
17 Vcs-Git: git://anonscm.debian.org/collab-maint/logbook.git
18 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/logbook.git
19
20 Package: python-logbook
21 Architecture: all
22 Depends: ${python:Depends}, ${misc:Depends}
23 Suggests: python-logbook-doc,
24 Description: logging system for Python that replaces the standard library's module
25 Logbook is a logging system for Python that replaces the standard library's
26 logging module. It was designed with both complex and simple applications in
27 mind and the idea to make logging fun
28 .
29 This is the Python 2 version of the package.
30
31 Package: python3-logbook
32 Architecture: all
33 Depends: ${python3:Depends}, ${misc:Depends}
34 Suggests: python-logbook-doc,
35 Description: logging system for Python that replaces the standard library's module (Python3)
36 Logbook is a logging system for Python that replaces the standard library's
37 logging module. It was designed with both complex and simple applications in
38 mind and the idea to make logging fun
39 .
40 This is the Python 3 version of the package.
41
42 Package: python-logbook-doc
43 Architecture: all
44 Depends: ${misc:Depends}, ${sphinxdoc:Depends}
45 Suggests: python-doc
46 Section: doc
47 Description: logging system for Python that replaces the standard library's module (doc)
48 Logbook is a logging system for Python that replaces the standard library's
49 logging module. It was designed with both complex and simple applications in
50 mind and the idea to make logging fun
51 .
52 This package contains API documentation.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: logbook
2 Upstream-Contact: Armin Ronacher <armin.ronacher@active-4.com> or Georg Brandl
3 Source: https://github.com/mitsuhiko/logbook
4
5 Files: debian/*
6 Copyright: (C) 2013 Agustin Henze <tin@debian.org>
7 License: GPL-3
8 This package is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12 .
13 This package is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17 .
18 You should have received a copy of the GNU General Public License
19 along with this package; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 .
22 On Debian systems, the complete text of the GNU General
23 Public License can be found in `/usr/share/common-licenses/GPL-3'.
24
25 Files: *
26 Copyright: (c) 2010 by the Logbook Team, see AUTHORS for more details
27 License: BSD-3-clause
28 Redistribution and use in source and binary forms, with or without
29 modification, are permitted provided that the following conditions are
30 met:
31 .
32 * Redistributions of source code must retain the above copyright
33 notice, this list of conditions and the following disclaimer.
34 * Redistributions in binary form must reproduce the above
35 copyright notice, this list of conditions and the following
36 disclaimer in the documentation and/or other materials provided
37 with the distribution.
38 * The names of the contributors may not be used to endorse or
39 promote products derived from this software without specific
40 prior written permission.
41 .
42 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0 Document: python-logbook-reference-manual
1 Title: Python Logbook Library Reference Manual
2 Author: Logbook Team, see AUTHORS for more details
3 Abstract: Logbook is a logging system for Python that replaces the standard
4 library's logging module
5 Section: Programming/Python
6
7 Format: HTML
8 Index: /usr/share/doc/python-logbook-doc/html/index.html
9 Files: /usr/share/doc/python-logbook-doc/html/*
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2
3 # Uncomment this to turn on verbose mode.
4 # export DH_VERBOSE=1
5
6 UVERSION := $(shell dpkg-parsechangelog | sed -n -e's/^Version: \(.*\)-[^-]\+/\1/p' | cut -d ":" -f 2)
7 PACKAGE_NAME := $(shell dpkg-parsechangelog | sed -n -e's/^Source: \(.*\)\+/\1/p')
8 export PYBUILD_NAME=$(PACKAGE_NAME)
9
10 %:
11 dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
12
13 override_dh_auto_clean:
14 dh_auto_clean
15 rm -rf docs/_build
16
17 override_dh_auto_install:
18 dh_auto_install
19 # build the html pages for the -doc package
20 python setup.py build_sphinx -b html
21
22 get-orig-source:
23 @if [ ! -d "debian" ] ; then \
24 echo 'Run this from the top directory of the Debian source' >&2; \
25 exit 1; \
26 fi
27 wget https://github.com/mitsuhiko/logbook/archive/$(UVERSION).tar.gz \
28 -O ../logbook_$(UVERSION).orig.tar.gz;
0 3.0 (quilt)
0 version=3
1
2 https://github.com/mitsuhiko/logbook/releases .*archive/([0-9.]*)\.tar\.gz