Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-defaults
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
python-defaults
Commits
064f46f8
Commit
064f46f8
authored
14 years ago
by
Piotr Ożarowski
Browse files
Options
Downloads
Patches
Plain Diff
Add myself to Uploaders
parent
52c8732f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
debian/changelog
+1
-0
1 addition, 0 deletions
debian/changelog
debian/control
+1
-1
1 addition, 1 deletion
debian/control
debian/control.in
+1
-1
1 addition, 1 deletion
debian/control.in
pyclean
+2
-5
2 additions, 5 deletions
pyclean
pycompile
+1
-1
1 addition, 1 deletion
pycompile
with
6 additions
and
8 deletions
debian/changelog
+
1
−
0
View file @
064f46f8
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
1
−
1
View file @
064f46f8
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
debian/control.in
+
1
−
1
View file @
064f46f8
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
pyclean
+
2
−
5
View file @
064f46f8
...
@@ -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
"""
"""
...
...
This diff is collapsed.
Click to expand it.
pycompile
+
1
−
1
View file @
064f46f8
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment