Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
99ab0068
Kaydet (Commit)
99ab0068
authored
May 18, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge launcher change from 3.5
üst
c41c70fd
49621418
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
12 deletions
+26
-12
common.wxs
Tools/msi/common.wxs
+3
-1
launcher.wixproj
Tools/msi/launcher/launcher.wixproj
+2
-1
launcher.wxs
Tools/msi/launcher/launcher.wxs
+9
-4
launcher_en-US.wxl
Tools/msi/launcher/launcher_en-US.wxl
+8
-2
msi.props
Tools/msi/msi.props
+2
-2
msi.targets
Tools/msi/msi.targets
+2
-2
No files found.
Tools/msi/common.wxs
Dosyayı görüntüle @
99ab0068
...
...
@@ -21,8 +21,8 @@
<UpgradeVersion
Property=
"UPGRADE"
Minimum=
"$(var.UpgradeMinimumVersion)"
IncludeMinimum=
"yes"
Maximum=
"$(var.Version)"
IncludeMaximum=
"no"
/>
</Upgrade>
<?ifdef CoreUpgradeCode ?>
<?if $(var.UpgradeCode)!=$(var.CoreUpgradeCode) ?>
<?ifndef SkipMissingCore ?>
<Upgrade
Id=
"$(var.CoreUpgradeCode)"
>
<UpgradeVersion
Property=
"MISSING_CORE"
Minimum=
"$(var.Version)"
IncludeMinimum=
"yes"
Maximum=
"$(var.Version)"
IncludeMaximum=
"yes"
OnlyDetect=
"yes"
/>
</Upgrade>
...
...
@@ -47,9 +47,11 @@
</Fragment>
<Fragment>
<?ifdef InstallDirectoryGuidSeed ?>
<Directory
Id=
"TARGETDIR"
Name=
"SourceDir"
>
<Directory
Id=
"InstallDirectory"
ComponentGuidGenerationSeed=
"$(var.InstallDirectoryGuidSeed)"
/>
</Directory>
<?endif ?>
</Fragment>
<!-- Top-level directories -->
...
...
Tools/msi/launcher/launcher.wixproj
Dosyayı görüntüle @
99ab0068
...
...
@@ -5,7 +5,8 @@
<SchemaVersion>
2.0
</SchemaVersion>
<OutputName>
launcher
</OutputName>
<OutputType>
Package
</OutputType>
<DefineConstants>
SkipMissingCore=1;$(DefineConstants)
</DefineConstants>
<DefineConstants>
UpgradeCode=1B68A0EC-4DD3-5134-840E-73854B0863F1;$(DefineConstants)
</DefineConstants>
<IgnoreCommonWxlTemplates>
true
</IgnoreCommonWxlTemplates>
</PropertyGroup>
<Import
Project=
"..\msi.props"
/>
<ItemGroup>
...
...
Tools/msi/launcher/launcher.wxs
Dosyayı görüntüle @
99ab0068
...
...
@@ -5,7 +5,6 @@
<MediaTemplate
EmbedCab=
"yes"
CompressionLevel=
"high"
/>
<Property
Id=
"Suppress_TARGETDIR_Check"
Value=
"1"
/>
<PropertyRef
Id=
"UpgradeTable"
/>
<PropertyRef
Id=
"ARPPRODUCTICON"
/>
<Feature
Id=
"DefaultFeature"
AllowAdvertise=
"no"
Title=
"!(loc.Title)"
Description=
"!(loc.Description)"
>
...
...
@@ -27,12 +26,18 @@
<Custom
Before=
"SetLauncherInstallDirectoryLM"
Action=
"SetLauncherInstallDirectoryCU"
>
NOT Installed AND NOT ALLUSERS=1
</Custom>
<Custom
Before=
"CostFinalize"
Action=
"SetLauncherInstallDirectoryLM"
>
NOT Installed AND ALLUSERS=1
</Custom>
<RemoveExistingProducts
After=
"Install
Initialize"
>
UPGRADE or REMOVE_OLD
_LAUNCHER
</RemoveExistingProducts>
<RemoveExistingProducts
After=
"Install
Validate"
>
UPGRADE or REMOVE_350
_LAUNCHER
</RemoveExistingProducts>
</InstallExecuteSequence>
<!-- Python 3.5.0 shipped with a
n incorrec
t UpgradeCode -->
<!-- Python 3.5.0 shipped with a
differen
t UpgradeCode -->
<Upgrade
Id=
"A71530B9-E89D-53DB-9C2D-C6D7551876D8"
>
<UpgradeVersion
M
aximum=
"$(var.Version)"
Property=
"REMOVE_OLD
_LAUNCHER"
/>
<UpgradeVersion
M
inimum=
"0.0.0.0"
Property=
"REMOVE_350
_LAUNCHER"
/>
</Upgrade>
<!-- Python 3.6.0a1 shipped with a different UpgradeCode -->
<Upgrade
Id=
"394750C0-7880-5A8F-999F-933965FBCFB4"
>
<UpgradeVersion
Maximum=
"$(var.Version)"
Property=
"REMOVE_360A1_LAUNCHER"
/>
<UpgradeVersion
Minimum=
"$(var.Version)"
Property=
"BLOCK_360A1_LAUNCHER"
/>
</Upgrade>
<Condition
Message=
"!(loc.NoDowngrade)"
>
Installed OR NOT BLOCK_360A1_LAUNCHER
</Condition>
</Product>
</Wix>
Tools/msi/launcher/launcher_en-US.wxl
Dosyayı görüntüle @
99ab0068
<?xml version="1.0" encoding="utf-8"?>
<WixLocalization
Culture=
"en-us"
xmlns=
"http://schemas.microsoft.com/wix/2006/localization"
>
<String
Id=
"Descriptor"
>
Launcher
</String>
<String
Id=
"ShortDescriptor"
>
launcher
</String>
<String
Id=
"LCID"
>
1033
</String>
<String
Id=
"Culture"
>
en-us
</String>
<String
Id=
"ProductName"
>
Python Launcher
</String>
<String
Id=
"Title"
>
Python Launcher
</String>
<String
Id=
"Description"
>
Python Launcher
</String>
<String
Id=
"Manufacturer"
>
Python Software Foundation
</String>
<String
Id=
"NoDowngrade"
>
A newer version of the Python launcher is already installed.
</String>
<String
Id=
"NoTargetDir"
>
The TARGETDIR variable must be provided when invoking this installer.
</String>
<String
Id=
"PythonFileDescription"
>
Python File
</String>
<String
Id=
"PythonNoConFileDescription"
>
Python File (no console)
</String>
<String
Id=
"PythonCompiledFileDescription"
>
Compiled Python File
</String>
...
...
Tools/msi/msi.props
Dosyayı görüntüle @
99ab0068
...
...
@@ -39,7 +39,7 @@
<ItemGroup>
<Compile
Include=
"$(MSBuildThisFileDirectory)common.wxs"
/>
<WxlTemplate
Include=
"$(MSBuildThisFileDirectory)\*.wxl_template"
/>
<WxlTemplate
Include=
"$(MSBuildThisFileDirectory)\*.wxl_template"
Condition=
"$(IgnoreCommonWxlTemplates) != 'true'"
/>
<WixExtension
Include=
"WixUtilExtension"
>
<HintPath>
WixUtilExtension
</HintPath>
<Name>
WixUtilExtension
</Name>
...
...
@@ -150,7 +150,7 @@
<Uri>
lib2to3/pickles
</Uri>
</_Uuid>
</ItemGroup>
<Target
Name=
"_GenerateGuids"
AfterTargets=
"PrepareForBuild"
>
<Target
Name=
"_GenerateGuids"
AfterTargets=
"PrepareForBuild"
Condition=
"$(TargetName) != 'launcher'"
>
<PropertyGroup>
<_Uuids>
@(_Uuid->'("%(Identity)", "$(MajorVersionNumber).$(MinorVersionNumber)/%(Uri)")',',')
</_Uuids>
<_GenerateCommand>
import uuid; print('\n'.join('{}={}'.format(i, uuid.uuid5(uuid.UUID('c8d9733e-a70c-43ff-ab0c-e26456f11083'), '$(ReleaseUri.Replace(`{arch}`, `$(ArchName)`))' + j)) for i,j in [$(_Uuids.Replace(`"`,`'`))]))
</_GenerateCommand>
...
...
Tools/msi/msi.targets
Dosyayı görüntüle @
99ab0068
...
...
@@ -25,7 +25,7 @@
</Target>
<Target
Name=
"_TransformWxlTemplates"
AfterTargets=
"PrepareForBuild"
Inputs=
"@(WxlTemplate);$(PySourcePath)include\patchlevel.h"
Outputs=
"$(IntermediateOutputPath)%(Filename).wxl"
>
<PropertyGroup>
<PropertyGroup
Condition=
"'@(WxlTemplate)' != ''"
>
<_Content>
$([System.IO.File]::ReadAllText(%(WxlTemplate.FullPath)).Replace(`{{ShortVersion}}`, `$(MajorVersionNumber).$(MinorVersionNumber)$(PyTestExt)`).Replace(`{{LongVersion}}`, `$(PythonVersion)$(PyTestExt)`).Replace(`{{Bitness}}`, `$(Bitness)`))
</_Content>
<_ExistingContent
Condition=
"Exists('$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl')"
>
$([System.IO.File]::ReadAllText($(IntermediateOutputPath)%(WxlTemplate.Filename).wxl))
</_ExistingContent>
</PropertyGroup>
...
...
@@ -35,7 +35,7 @@
Overwrite=
"true"
Condition=
"$(_Content) != $(_ExistingContent)"
/>
<ItemGroup>
<ItemGroup
Condition=
"'@(WxlTemplate)' != ''"
>
<EmbeddedResource
Include=
"$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl"
/>
<FileWrites
Include=
"$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl"
/>
</ItemGroup>
...
...
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