Skip to content

Commit ef44b84

Browse files
author
Gauvain Pocentek
committed
provide debian packaging
1 parent e7ba350 commit ef44b84

File tree

5 files changed

+72
-0
lines changed

5 files changed

+72
-0
lines changed

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
python-gitlab (0.1~201305190943-0) UNRELEASED; urgency=low
2+
3+
* Initial release.
4+
5+
-- Gauvain Pocentek <gauvain@pocentek.net> Sun, 19 May 2013 09:22:46 +0200

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/control

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Source: python-gitlab
2+
Priority: optional
3+
Section: python
4+
Maintainer: Gauvain Pocentek <gauvain@pocentek.net>
5+
Build-Depends: debhelper (>= 9), python
6+
Standards-Version: 3.9.4
7+
Vcs-Git: git://github.com/gpocentek/python-gitlab.git
8+
Vcs-Browser: https://github.com/gpocentek/python-gitlab
9+
HomePage: https://github.com/gpocentek/python-gitlab
10+
XS-Python-Version: >= 2.4
11+
12+
Package: python-gitlab
13+
Architecture: all
14+
Depends: ${python:Depends}, ${misc:Depends}, python-requests
15+
Description: python module and CLI to access GitLab servers API
16+
python-gitlab provides a gitlab module and a command line tool to interact
17+
with the GitLab API.

debian/copyright

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: python-gitlab
3+
Source: https://github.com/gpocentek/python-gitlab
4+
5+
Files: *
6+
Copyright: 2013 Gauvain Pocentek <gauvain@pocentek.net>
7+
License: LGPL-3.0+
8+
9+
Files: debian/*
10+
Copyright: 2013 Gauvain Pocentek <gauvain@pocentek.net>
11+
License: GPL-3.0+
12+
13+
License: LGPL-3.0+
14+
This package is free software; you can redistribute it and/or
15+
modify it under the terms of the GNU Lesser General Public
16+
License as published by the Free Software Foundation; either
17+
version 3 of the License, or (at your option) any later version.
18+
.
19+
This package is distributed in the hope that it will be useful,
20+
but WITHOUT ANY WARRANTY; without even the implied warranty of
21+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22+
Lesser General Public License for more details.
23+
.
24+
You should have received a copy of the GNU General Public License
25+
along with this program. If not, see <http://www.gnu.org/licenses/>.
26+
.
27+
On Debian systems, the complete text of the GNU Lesser General
28+
Public License can be found in "/usr/share/common-licenses/LGPL-3".
29+
30+
License: GPL-3.0+
31+
This program is free software: you can redistribute it and/or modify
32+
it under the terms of the GNU General Public License as published by
33+
the Free Software Foundation, either version 3 of the License, or
34+
(at your option) any later version.
35+
.
36+
This package is distributed in the hope that it will be useful,
37+
but WITHOUT ANY WARRANTY; without even the implied warranty of
38+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39+
GNU General Public License for more details.
40+
.
41+
You should have received a copy of the GNU General Public License
42+
along with this program. If not, see <http://www.gnu.org/licenses/>.
43+
.
44+
On Debian systems, the complete text of the GNU General
45+
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

debian/rules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/make -f
2+
3+
%:
4+
dh $@ --with python2

0 commit comments

Comments
 (0)