mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-04 19:52:28 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
44
third_party/python/Tools/msi/tools/tools.wixproj
vendored
Normal file
44
third_party/python/Tools/msi/tools/tools.wixproj
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{24CBEB95-BC1E-4EA9-AEA9-33834BCCD0EC}</ProjectGuid>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<OutputName>tools</OutputName>
|
||||
<OutputType>Package</OutputType>
|
||||
</PropertyGroup>
|
||||
<Import Project="..\msi.props" />
|
||||
<ItemGroup>
|
||||
<Compile Include="tools.wxs" />
|
||||
<Compile Include="tools_files.wxs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="*.wxl" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ToolDirectories Include="scripts;i18n;pynche;pynche\X;demo" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InstallFiles Include="$(PySourcePath)Tools\scripts\**\*.py;
|
||||
$(PySourcePath)Tools\scripts\**\*.pyw;
|
||||
$(PySourcePath)Tools\scripts\**\*.txt;
|
||||
$(PySourcePath)Tools\i18n\**\*.py;
|
||||
$(PySourcePath)Tools\i18n\**\*.pyw;
|
||||
$(PySourcePath)Tools\i18n\**\*.txt;
|
||||
$(PySourcePath)Tools\pynche\**\*.py;
|
||||
$(PySourcePath)Tools\pynche\**\*.pyw;
|
||||
$(PySourcePath)Tools\pynche\**\*.txt;
|
||||
$(PySourcePath)Tools\demo\**\*.py;
|
||||
$(PySourcePath)Tools\demo\**\*.pyw;
|
||||
$(PySourcePath)Tools\demo\**\*.txt;
|
||||
$(PySourcePath)Tools\parser\**\*.py">
|
||||
<SourceBase>$(PySourcePath)</SourceBase>
|
||||
<Source>!(bindpath.src)</Source>
|
||||
<TargetBase>$(PySourcePath)</TargetBase>
|
||||
<Target_></Target_>
|
||||
<Group>tools_py</Group>
|
||||
<IncludeInCat>true</IncludeInCat>
|
||||
</InstallFiles>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\msi.targets" />
|
||||
</Project>
|
16
third_party/python/Tools/msi/tools/tools.wxs
vendored
Normal file
16
third_party/python/Tools/msi/tools/tools.wxs
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
||||
<Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
|
||||
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
|
||||
|
||||
<PropertyRef Id="UpgradeTable" />
|
||||
|
||||
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
||||
<ComponentGroupRef Id="tools_py" />
|
||||
<ComponentGroupRef Id="tools_scripts" />
|
||||
<ComponentGroupRef Id="tools_cat" />
|
||||
<ComponentRef Id="OptionalFeature" />
|
||||
</Feature>
|
||||
</Product>
|
||||
</Wix>
|
5
third_party/python/Tools/msi/tools/tools_en-US.wxl
vendored
Normal file
5
third_party/python/Tools/msi/tools/tools_en-US.wxl
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WixLocalization Culture="en-us" xmlns="http://schemas.microsoft.com/wix/2006/localization">
|
||||
<String Id="Descriptor">Utility Scripts</String>
|
||||
<String Id="ShortDescriptor">tools</String>
|
||||
</WixLocalization>
|
23
third_party/python/Tools/msi/tools/tools_files.wxs
vendored
Normal file
23
third_party/python/Tools/msi/tools/tools_files.wxs
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Fragment>
|
||||
<ComponentGroup Id="tools_scripts">
|
||||
<Component Id="Tools_scripts_2to3.py" Directory="Tools_scripts" Guid="*">
|
||||
<File Id="Tools_scripts_2to3.py" Name="2to3.py" Source="!(bindpath.src)Tools\scripts\2to3" />
|
||||
</Component>
|
||||
<Component Id="Tools_scripts_pydoc3.py" Directory="Tools_scripts" Guid="*">
|
||||
<File Id="Tools_scripts_pydoc3.py" Name="pydoc3.py" Source="!(bindpath.src)Tools\scripts\pydoc3" />
|
||||
</Component>
|
||||
<Component Id="Tools_scripts_pyvenv.py" Directory="Tools_scripts" Guid="*">
|
||||
<File Id="Tools_scripts_pyvenv.py" Name="pyvenv.py" Source="!(bindpath.src)Tools\scripts\pyvenv" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
<Fragment>
|
||||
<ComponentGroup Id="tools_cat">
|
||||
<Component Id="tools_cat" Directory="Catalogs" Guid="*">
|
||||
<File Name="python_tools.cat" KeyPath="yes" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
</Wix>
|
Loading…
Add table
Add a link
Reference in a new issue