Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
SOWI Administratoren
chocolatey-packages
Commits
33605251
Commit
33605251
authored
Jun 05, 2012
by
Elliando Dias
Browse files
easy.install package updated
parent
deb06fc7
Changes
3
Hide whitespace changes
Inline
Side-by-side
easy.install/easy.install.0.6.11.1.nupkg
0 → 100644
View file @
33605251
File added
easy.install/easy.install.nuspec
View file @
33605251
...
...
@@ -3,7 +3,7 @@
<metadata>
<id>
easy.install
</id>
<title>
Easy Install
</title>
<version>
0.6.11
</version>
<version>
0.6.11
.1
</version>
<authors>
Phillip J. Eby
</authors>
<owners>
Elliando Dias
</owners>
<summary>
Easy Install is a python module (easy_install) bundled with setuptools that lets you automatically
...
...
@@ -15,10 +15,10 @@
<copyright>
Copyright 1990-2011, Python Software Foundation
</copyright>
<licenseUrl>
http://docs.python.org/license.html
</licenseUrl>
<requireLicenseAcceptance>
false
</requireLicenseAcceptance>
<iconUrl>
http://
www.d4n13l.com.br/daniel/wp-content/uploads/2009/02
/python-logo.png
</iconUrl>
<dependencies>
<dependency
id=
"
curl
"
/>
</dependencies>
<iconUrl>
http
s
://
github.com/adorepump/chocolatey-packages/raw/master/easy.install
/python-logo.png
</iconUrl>
<!--
<dependencies>
<dependency id=""/>
</dependencies>
-->
<releaseNotes></releaseNotes>
</metadata>
</package>
\ No newline at end of file
easy.install/tools/chocolateyInstall.ps1
View file @
33605251
#import-module C:\Chocolatey\chocolateyInstall\helpers\chocolateyInstaller
$
global
:
python_home
=
$null
$
global
:
python_version
=
$null
function
_cmd
(
$command
)
{
Write-Host
"executing cmd>
$command
"
$result
=
cmd.exe
/c
"
$command
2>&1"
#stderr hack
$result
=
cmd.exe
/c
"
$command
2>&1"
#stderr hack
return
$result
}
function
Get-RegistryValue
(
$key
,
$value
)
{
(
Get-ItemProperty
$key
$value
)
.
$value
$item
=
(
Get-ItemProperty
$key
$value
-ErrorAction
SilentlyContinue
)
if
(
$item
-ne
$null
)
{
return
$item
.
$value
}
else
{
return
$null
}
}
function
Get-Python-Home
()
{
$result
=
$
env
:
PYTHONHOME
if
(
$result
-eq
$null
)
{
$result
=
$
env
:
PYTHON_HOME
}
if
(
$result
-eq
$null
)
{
$filename
=
Get-RegistryValue
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Python.exe"
'(default)'
if
(
$filename
-ne
$null
)
{
$file
=
Get-ChildItem
$filename
$result
=
$file
.
DirectoryName
$result
=
$file
.
DirectoryName
}
}
...
...
@@ -39,29 +46,40 @@ function is64bit() {
return
([
IntPtr
]::
Size
-eq
8
)
}
function
Read-Confirmation
(
$message
)
{
$caption
=
"Confirm"
;
$yes
=
new-Object
System.Management.Automation.Host.ChoiceDescription
"&Yes"
,
"help"
;
$no
=
new-Object
System.Management.Automation.Host.ChoiceDescription
"&No"
,
"help"
;
$choices
=
[
System.Management.Automation.Host.ChoiceDescription
[]](
$yes
,
$no
);
$answer
=
$host
.
ui
.
PromptForChoice
(
$caption
,
$message
,
$choices
,
0
)
#globals
$python_home
=
Get-Python-Home
if
(
$python_home
-eq
$null
)
{
throw
new
Exception
'Cannot find PYTHON HOME, Check if Python is installed!'
switch
(
$answer
){
0
{
return
$true
;
break
}
1
{
return
$false
;
break
}
}
}
$python_version
=
Get-Python-Version
if
(
$python_version
-eq
$null
)
{
throw
new
Exception
'Python Version not defined'
function
Python-Exec
(
$url
,
$name
)
{
# _cmd "cd /d %TEMP% && curl -O $url && python $name"
$filename
=
Join-Path
$
env
:
TEMP
$name
Get-ChocolateyWebFile
'easy.install'
$filename
$url
if
(
has_file
$filename
)
{
Write-Host
"Running python file: '
$filename
'"
python
$filename
#todo: check if python not is in path
}
}
function
Install-setuptools
(
$version
)
{
Write-Host
'Installing setuptools from http://pypi.python.org/pypi/setuptools ...'
$pyvrs
=
$python_version
.
substring
(
0
,
3
)
#2.7.3 >> 2.7
$pyvrs
=
$
global
:
python_version
.
substring
(
0
,
3
)
#2.7.3 >> 2.7
if
(
is64bit
)
{
_
cmd
'cd /d %TEMP% && curl -O
http://peak.telecommunity.com/dist/ez_setup.py
&& python
ez_setup.py'
Python-Exec
'
http://peak.telecommunity.com/dist/ez_setup.py
'
'
ez_setup.py'
}
else
{
$url
=
"http://pypi.python.org/packages/
$
setuptools_
version
/s/setuptools/setuptools-
$version
.win32-py
$pyvrs
.exe"
$url
=
"http://pypi.python.org/packages/
$version
/s/setuptools/setuptools-
$version
.win32-py
$pyvrs
.exe"
Install-ChocolateyPackage
'easy.install/setuptools'
'exe'
'/S'
$url
}
}
...
...
@@ -69,11 +87,11 @@ function Install-setuptools($version) {
function
Install-distribute
()
{
Write-Host
'Installing distribute, Distribute is a fork of the Setuptools project. works with python versions >= 3.0'
Write-Host
'distribute homepage: http://pypi.python.org/pypi/distribute'
_
cmd
'cd /d %TEMP% && curl -O
http://python-distribute.org/distribute_setup.py
&& python
distribute_setup.py'
Python-Exec
'
http://python-distribute.org/distribute_setup.py
'
'
distribute_setup.py'
}
function
Install-easy-install
()
{
$pyvrs
=
[
int
]
$python_version
.
Replace
(
'.'
,
''
)
.
substring
(
0
,
2
)
# 27
$pyvrs
=
[
int
]
$
global
:
python_version
.
Replace
(
'.'
,
''
)
.
substring
(
0
,
2
)
# 27
if
(
$pyvrs
-gt
27
)
{
Install-distribute
...
...
@@ -88,13 +106,46 @@ function has_file($filename) {
}
function
Verify-installation
()
{
return
has_file
(
Join-Path
$python_home
'Scripts\easy_install.exe'
)
return
has_file
(
Join-Path
$
global
:
python_home
'Scripts\easy_install.exe'
)
}
function
chocolatey-initialize
()
{
$
global
:
python_home
=
Get-Python-Home
if
(
$
global
:
python_home
-eq
$null
)
{
if
(
Read-Confirmation
'Python not installed, Would you like to install Python now?'
)
{
Write-Host
"Installing Python using chocolatey. Wait..."
cinst
python
$
global
:
python_home
=
Get-Python-Home
}
}
if
(
$
global
:
python_home
-eq
$null
)
{
throw
'Python is not installed. easy_install installation aborted!'
}
Write-Host
"Using python home at '
$
global
:
python_home
'"
if
((
$
env
:
PYTHONHOME
-eq
$null
)
-and
(
$
global
:
python_home
-ne
$null
))
{
Write-Host
"Setting PYTHONHOME environment variable to '
$
global
:
python_home
'"
Write-Host
"PS: PYTHONHOME variable is not required to Python works, but it is a good practice to have it."
[
Environment
]::
SetEnvironmentVariable
(
'PYTHONHOME'
,
$
global
:
python_home
,
'User'
)
}
$
global
:
python_version
=
Get-Python-Version
if
(
$
global
:
python_version
-eq
$null
)
{
throw
"Python Version could not be found. Executing 'python -V' at prompt works?"
}
}
function
chocolatey-install
()
{
try
{
chocolatey-initialize
Write-Host
"Installing easy_install for Python(
$
global
:
python_version
)..."
Install-easy-install
$python_script_dir
=
Join-Path
$python_home
'Scripts'
$python_script_dir
=
Join-Path
$
global
:
python_home
'Scripts'
Install-ChocolateyPath
$python_script_dir
'User'
$status
=
Verify-installation
...
...
@@ -109,5 +160,4 @@ function chocolatey-install() {
}
}
#Install-easy-install
chocolatey-install
chocolatey-install
# installs easy_install
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment