summaryrefslogtreecommitdiffstats
path: root/Tools/msi/make_cat.ps1
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-12-07 11:57:43 (GMT)
committerGitHub <noreply@github.com>2018-12-07 11:57:43 (GMT)
commitcb0b78a070ea3b704416e74f64046178ae0dff3e (patch)
tree870d16be7589c152a71a31df5824d4ae29a2c042 /Tools/msi/make_cat.ps1
parent8452ca15f41061c8a6297d7956df22ab476d4df4 (diff)
downloadcpython-cb0b78a070ea3b704416e74f64046178ae0dff3e.zip
cpython-cb0b78a070ea3b704416e74f64046178ae0dff3e.tar.gz
cpython-cb0b78a070ea3b704416e74f64046178ae0dff3e.tar.bz2
Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)
This reverts commit 468a15aaf9206448a744fc5eab3fc21f51966aad.
Diffstat (limited to 'Tools/msi/make_cat.ps1')
-rw-r--r--Tools/msi/make_cat.ps134
1 files changed, 0 insertions, 34 deletions
diff --git a/Tools/msi/make_cat.ps1 b/Tools/msi/make_cat.ps1
deleted file mode 100644
index 7074143..0000000
--- a/Tools/msi/make_cat.ps1
+++ /dev/null
@@ -1,34 +0,0 @@
-<#
-.Synopsis
- Compiles and signs a catalog file.
-.Description
- Given the CDF definition file, builds and signs a catalog.
-.Parameter catalog
- The path to the catalog definition file to compile and
- sign. It is assumed that the .cat file will be the same
- name with a new extension.
-.Parameter description
- The description to add to the signature (optional).
-.Parameter certname
- The name of the certificate to sign with (optional).
-.Parameter certsha1
- The SHA1 hash of the certificate to sign with (optional).
-#>
-param(
- [Parameter(Mandatory=$true)][string]$catalog,
- [string]$description,
- [string]$certname,
- [string]$certsha1,
- [string]$certfile
-)
-
-$tools = $script:MyInvocation.MyCommand.Path | Split-Path -parent;
-Import-Module $tools\sdktools.psm1 -WarningAction SilentlyContinue -Force
-
-Set-Alias MakeCat (Find-Tool "makecat.exe") -Scope Script
-
-MakeCat $catalog
-if (-not $?) {
- throw "Catalog compilation failed"
-}
-Sign-File -certname $certname -certsha1 $certsha1 -certfile $certfile -description $description -files @($catalog -replace 'cdf$', 'cat')