Skip to content
Snippets Groups Projects
Commit 064f46f8 authored by Piotr Ożarowski's avatar Piotr Ożarowski
Browse files

Add myself to Uploaders

parent 52c8732f
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ python-defaults (2.6.5-2) UNRELEASED; urgency=low ...@@ -6,6 +6,7 @@ python-defaults (2.6.5-2) UNRELEASED; urgency=low
(moved to python3-defaults) (moved to python3-defaults)
* debian/copyright: Add a note about dh_python2, pycompile, pyclean and * debian/copyright: Add a note about dh_python2, pycompile, pyclean and
debpython module in debpython module in
* Add myself to Uploaders
[ Scott Kitterman ] [ Scott Kitterman ]
* debian/pyversions.py: Exclude python3 versions from results - those are * debian/pyversions.py: Exclude python3 versions from results - those are
......
...@@ -2,7 +2,7 @@ Source: python-defaults ...@@ -2,7 +2,7 @@ Source: python-defaults
Section: python Section: python
Priority: optional Priority: optional
Maintainer: Matthias Klose <doko@debian.org> Maintainer: Matthias Klose <doko@debian.org>
Uploaders: Scott Kitterman <scott@kitterman.com> Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>
Build-Depends: debhelper (>= 5) Build-Depends: debhelper (>= 5)
Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3) Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3)
Standards-Version: 3.8.4 Standards-Version: 3.8.4
......
...@@ -2,7 +2,7 @@ Source: python-defaults ...@@ -2,7 +2,7 @@ Source: python-defaults
Section: python Section: python
Priority: optional Priority: optional
Maintainer: Matthias Klose <doko@debian.org> Maintainer: Matthias Klose <doko@debian.org>
Uploaders: Scott Kitterman <scott@kitterman.com> Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>
Build-Depends: debhelper (>= 5) Build-Depends: debhelper (>= 5)
Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3) Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3)
Standards-Version: 3.8.4 Standards-Version: 3.8.4
......
...@@ -26,11 +26,9 @@ import logging ...@@ -26,11 +26,9 @@ import logging
import optparse import optparse
import sys import sys
from glob import glob1 from glob import glob1
from os import environ, remove, rmdir, walk from os import environ, remove, walk
from os.path import dirname, exists, isdir, isfile, join from os.path import exists, isdir, isfile, join
from subprocess import Popen, PIPE from subprocess import Popen, PIPE
sys.path.insert(1, '/usr/share/python/')
from debpython.version import SUPPORTED
# initialize script # initialize script
...@@ -42,7 +40,6 @@ log = logging.getLogger('pyclean') ...@@ -42,7 +40,6 @@ log = logging.getLogger('pyclean')
Examples: Examples:
pyclean -p python-mako # all .py[co] files from the package pyclean -p python-mako # all .py[co] files from the package
pyclean /usr/lib/python2.6/dist-packages # python2.6 pyclean /usr/lib/python2.6/dist-packages # python2.6
pyclean -V 3.3 /usr/lib/python3/dist-packages # python 3.3 only
""" """
......
...@@ -30,7 +30,7 @@ from os import environ, listdir, mkdir, walk ...@@ -30,7 +30,7 @@ from os import environ, listdir, mkdir, walk
from os.path import abspath, dirname, exists, isdir, isfile, join from os.path import abspath, dirname, exists, isdir, isfile, join
from subprocess import PIPE, Popen from subprocess import PIPE, Popen
sys.path.insert(1, '/usr/share/python/') sys.path.insert(1, '/usr/share/python/')
from debpython.version import SUPPORTED, DEFAULT, debsorted, vrepr, \ from debpython.version import SUPPORTED, debsorted, vrepr, \
get_requested_versions, parse_vrange get_requested_versions, parse_vrange
from debpython.option import Option, compile_regexpr from debpython.option import Option, compile_regexpr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment