Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
712f02e3
Commit
712f02e3
authored
12 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Patches
Plain Diff
v1.8.4
parent
61477e51
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/compile
+1
-1
1 addition, 1 deletion
bin/compile
vendor/virtualenv-1.8.4/bin/rebuild-script.py
+71
-0
71 additions, 0 deletions
vendor/virtualenv-1.8.4/bin/rebuild-script.py
vendor/virtualenv-1.8.4/bin/refresh-support-files.py
+59
-0
59 additions, 0 deletions
vendor/virtualenv-1.8.4/bin/refresh-support-files.py
with
131 additions
and
1 deletion
bin/compile
+
1
−
1
View file @
712f02e3
...
@@ -79,7 +79,7 @@ cleanup() {
...
@@ -79,7 +79,7 @@ cleanup() {
# Virtualenv wrapper.
# Virtualenv wrapper.
function
virtualenv
(){
function
virtualenv
(){
python
"
$ROOT_DIR
/vendor/virtualenv-1.
7.2
/virtualenv.py"
"
$@
"
python
"
$ROOT_DIR
/vendor/virtualenv-1.
8.4
/virtualenv.py"
"
$@
"
}
}
# Buildpack Steps.
# Buildpack Steps.
...
...
This diff is collapsed.
Click to expand it.
vendor/virtualenv-1.8.4/bin/rebuild-script.py
0 → 100755
+
71
−
0
View file @
712f02e3
#!/usr/bin/env python
"""
Helper script to rebuild virtualenv.py from virtualenv_support
"""
import
re
import
os
import
sys
here
=
os
.
path
.
dirname
(
__file__
)
script
=
os
.
path
.
join
(
here
,
'
..
'
,
'
virtualenv.py
'
)
file_regex
=
re
.
compile
(
r
'
##file (.*?)\n([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*convert\(
"""
(.*?)
"""
\)
'
,
re
.
S
)
file_template
=
'
##file %(filename)s
\n
%(varname)s = convert(
"""
\n
%(data)s
"""
)
'
def
rebuild
():
f
=
open
(
script
,
'
rb
'
)
content
=
f
.
read
()
f
.
close
()
parts
=
[]
last_pos
=
0
match
=
None
for
match
in
file_regex
.
finditer
(
content
):
parts
.
append
(
content
[
last_pos
:
match
.
start
()])
last_pos
=
match
.
end
()
filename
=
match
.
group
(
1
)
varname
=
match
.
group
(
2
)
data
=
match
.
group
(
3
)
print
(
'
Found reference to file %s
'
%
filename
)
pathname
=
os
.
path
.
join
(
here
,
'
..
'
,
'
virtualenv_embedded
'
,
filename
)
f
=
open
(
pathname
,
'
rb
'
)
c
=
f
.
read
()
f
.
close
()
new_data
=
c
.
encode
(
'
zlib
'
).
encode
(
'
base64
'
)
if
new_data
==
data
:
print
(
'
Reference up to date (%s bytes)
'
%
len
(
c
))
parts
.
append
(
match
.
group
(
0
))
continue
print
(
'
Content changed (%s bytes -> %s bytes)
'
%
(
zipped_len
(
data
),
len
(
c
)))
new_match
=
file_template
%
dict
(
filename
=
filename
,
varname
=
varname
,
data
=
new_data
)
parts
.
append
(
new_match
)
parts
.
append
(
content
[
last_pos
:])
new_content
=
''
.
join
(
parts
)
if
new_content
!=
content
:
sys
.
stdout
.
write
(
'
Content updated; overwriting...
'
)
f
=
open
(
script
,
'
wb
'
)
f
.
write
(
new_content
)
f
.
close
()
print
(
'
done.
'
)
else
:
print
(
'
No changes in content
'
)
if
match
is
None
:
print
(
'
No variables were matched/found
'
)
def
zipped_len
(
data
):
if
not
data
:
return
'
no data
'
try
:
return
len
(
data
.
decode
(
'
base64
'
).
decode
(
'
zlib
'
))
except
:
return
'
unknown
'
if
__name__
==
'
__main__
'
:
rebuild
()
This diff is collapsed.
Click to expand it.
vendor/virtualenv-1.8.4/bin/refresh-support-files.py
0 → 100755
+
59
−
0
View file @
712f02e3
#!/usr/bin/env python
"""
Refresh any files in ../virtualenv_support/ that come from elsewhere
"""
import
os
try
:
from
urllib.request
import
urlopen
except
ImportError
:
from
urllib2
import
urlopen
import
sys
here
=
os
.
path
.
dirname
(
__file__
)
support_location
=
os
.
path
.
join
(
here
,
'
..
'
,
'
virtualenv_support
'
)
embedded_location
=
os
.
path
.
join
(
here
,
'
..
'
,
'
virtualenv_embedded
'
)
embedded_files
=
[
(
'
http://peak.telecommunity.com/dist/ez_setup.py
'
,
'
ez_setup.py
'
),
(
'
http://python-distribute.org/distribute_setup.py
'
,
'
distribute_setup.py
'
),
]
support_files
=
[
(
'
http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11-py2.6.egg
'
,
'
setuptools-0.6c11-py2.6.egg
'
),
(
'
http://pypi.python.org/packages/2.5/s/setuptools/setuptools-0.6c11-py2.5.egg
'
,
'
setuptools-0.6c11-py2.5.egg
'
),
(
'
http://pypi.python.org/packages/source/d/distribute/distribute-0.6.31.tar.gz
'
,
'
distribute-0.6.31.tar.gz
'
),
(
'
http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz
'
,
'
pip-1.2.1.tar.gz
'
),
]
def
refresh_files
(
files
,
location
):
for
url
,
filename
in
files
:
sys
.
stdout
.
write
(
'
fetching %s ...
'
%
url
)
sys
.
stdout
.
flush
()
f
=
urlopen
(
url
)
content
=
f
.
read
()
f
.
close
()
print
(
'
done.
'
)
filename
=
os
.
path
.
join
(
location
,
filename
)
if
os
.
path
.
exists
(
filename
):
f
=
open
(
filename
,
'
rb
'
)
cur_content
=
f
.
read
()
f
.
close
()
else
:
cur_content
=
''
if
cur_content
==
content
:
print
(
'
%s up-to-date
'
%
filename
)
else
:
print
(
'
overwriting %s
'
%
filename
)
f
=
open
(
filename
,
'
wb
'
)
f
.
write
(
content
)
f
.
close
()
def
main
():
refresh_files
(
embedded_files
,
embedded_location
)
refresh_files
(
support_files
,
support_location
)
if
__name__
==
'
__main__
'
:
main
()
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