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
4584db66
Commit
4584db66
authored
14 years ago
by
Piotr Ożarowski
Browse files
Options
Downloads
Patches
Plain Diff
if pycompile is needed, add "python (>= 2.6.5-1~)" to Depends
(rather than replacing python2.6)
parent
afcb8ac6
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
debpython/pydist.py
+5
-4
5 additions, 4 deletions
debpython/pydist.py
dh_python2
+1
-5
1 addition, 5 deletions
dh_python2
runtime.d/public_modules.rtremove
+1
-5
1 addition, 5 deletions
runtime.d/public_modules.rtremove
with
8 additions
and
15 deletions
Makefile
+
1
−
1
View file @
4584db66
...
@@ -4,7 +4,7 @@ PREFIX ?= /usr
...
@@ -4,7 +4,7 @@ PREFIX ?= /usr
clean
:
clean
:
make
-C
tests clean
make
-C
tests clean
find
.
-name
'*
\
.py[co]'
-delete
find
.
-name
'*.py[co]'
-delete
rm
-f
.coverage
rm
-f
.coverage
install-dev
:
install-dev
:
...
...
This diff is collapsed.
Click to expand it.
debpython/pydist.py
+
5
−
4
View file @
4584db66
...
@@ -46,7 +46,7 @@ PYDIST_RE = re.compile(r"""
...
@@ -46,7 +46,7 @@ PYDIST_RE = re.compile(r"""
"""
,
re
.
VERBOSE
)
"""
,
re
.
VERBOSE
)
def
validate
(
fpath
,
exit
=
False
):
def
validate
(
fpath
,
exit
_on_error
=
False
):
"""
Check if pydist file looks good.
"""
"""
Check if pydist file looks good.
"""
with
open
(
fpath
)
as
fp
:
with
open
(
fpath
)
as
fp
:
for
line
in
fp
:
for
line
in
fp
:
...
@@ -56,8 +56,8 @@ def validate(fpath, exit=False):
...
@@ -56,8 +56,8 @@ def validate(fpath, exit=False):
if
not
PYDIST_RE
.
match
(
line
):
if
not
PYDIST_RE
.
match
(
line
):
log
.
error
(
'
invalid pydist data in file %s: %s
'
,
\
log
.
error
(
'
invalid pydist data in file %s: %s
'
,
\
fpath
.
rsplit
(
'
/
'
,
1
)[
-
1
],
line
)
fpath
.
rsplit
(
'
/
'
,
1
)[
-
1
],
line
)
if
exit
:
if
exit
_on_error
:
sys
.
exit
(
3
)
exit
(
3
)
return
False
return
False
return
True
return
True
...
@@ -134,7 +134,8 @@ def guess_dependency(req, version):
...
@@ -134,7 +134,8 @@ def guess_dependency(req, version):
process
=
Popen
(
"
/usr/bin/dpkg -S %s
"
%
query
,
\
process
=
Popen
(
"
/usr/bin/dpkg -S %s
"
%
query
,
\
shell
=
True
,
stdout
=
PIPE
,
stderr
=
PIPE
)
shell
=
True
,
stdout
=
PIPE
,
stderr
=
PIPE
)
if
process
.
wait
()
!=
0
:
if
process
.
wait
()
!=
0
:
log
.
error
(
'
Cannot find package that provides %s.
'
,
name
)
log
.
error
(
'
Cannot find package that provides %s.
'
'
Please add it to debian/pydist-overrides
'
,
name
)
log
.
info
(
"
hint: `apt-file search -x
'
(packages|pyshared)/
"
+
\
log
.
info
(
"
hint: `apt-file search -x
'
(packages|pyshared)/
"
+
\
"
%s
'
-l` might help
"
,
name
)
"
%s
'
-l` might help
"
,
name
)
exit
(
8
)
exit
(
8
)
...
...
This diff is collapsed.
Click to expand it.
dh_python2
+
1
−
5
View file @
4584db66
...
@@ -395,11 +395,7 @@ def dependencies(package, stats, options):
...
@@ -395,11 +395,7 @@ def dependencies(package, stats, options):
# make sure pycompile binary is available
# make sure pycompile binary is available
if
stats
[
'
compile
'
]:
if
stats
[
'
compile
'
]:
dep
=
"
python2.6 (>= 2.6.5-1~)
"
# python-minimal uses the same version
depends
.
append
(
"
python (>= 2.6.5-1~)
"
)
if
depends
==
[
'
python2.6
'
]:
depends
=
[
dep
]
else
:
depends
.
append
(
dep
)
for
interpreter
,
version
in
stats
[
'
shebangs
'
]:
for
interpreter
,
version
in
stats
[
'
shebangs
'
]:
if
interpreter
not
in
depends
:
if
interpreter
not
in
depends
:
...
...
This diff is collapsed.
Click to expand it.
runtime.d/public_modules.rtremove
+
1
−
5
View file @
4584db66
...
@@ -3,9 +3,5 @@
...
@@ -3,9 +3,5 @@
if
which python
>
/dev/null 2>&1
&&
which pyclean
>
/dev/null 2>&1
;
then
if
which python
>
/dev/null 2>&1
&&
which pyclean
>
/dev/null 2>&1
;
then
pyclean
-V
$2
/usr/lib/python
$2
/
pyclean
-V
$2
/usr/lib/python
$2
/
else
else
find /usr/lib/python
$2
/
-name
'*\.py[co]'
-delete
find /usr/lib/python
$2
/
-name
'*.py[co]'
-delete
# PEP 3147 mode
#TAG=`python$2 -c "import imp; print(imp.magic_tags[imp.get_magic()])"` \
#find /usr/lib/python3/ -name "*\.$TAG\.py[co]" -delete
#find /usr/lib/python3/ -depth -empty -name '__pycache__' -delete
fi
fi
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