Skip to content

Commit

Permalink
AU: 6 updated - dropbox Firefox python python3 python311 skype
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Apr 2, 2024
1 parent a62079b commit 569f9dc
Show file tree
Hide file tree
Showing 20 changed files with 253 additions and 253 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "196.3.6883-beta",
"stable": "195.4.4995"
"stable": "196.4.6900"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>196.3.6883-beta</version>
<version>196.4.6900</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '196.3.6883'
$version = '196.4.6900'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20196.3.6883%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20196.3.6883%20Offline%20Installer.x64.exe'
checksum = 'e287571e3d4a79e03388f3747032555464795c41ae34d159f94fb3a3337e9265'
checksum64 = 'a27ff97c51a8269908810f70f7f4e2c601d2855b0b21f74f981a0cb8509e69ac'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20196.4.6900%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20196.4.6900%20Offline%20Installer.x64.exe'
checksum = 'c606bb854ab8276c0d2ba1eb9bf9434e7aacd8a40b3afc671b992c684744edec'
checksum64 = '2f953ae4e88d9ee5450dfa049717631ce223501f18637cb61de26c49e6fada57'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
2 changes: 1 addition & 1 deletion automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latest": "124.0.1",
"latest": "124.0.2",
"esr": "115.9.1"
}
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>124.0.1</version>
<version>124.0.2</version>
<authors>Mozilla</authors>
<projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>
<projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>
Expand Down Expand Up @@ -63,7 +63,7 @@ Command-line options for installer configuration. See the [official page](https:
]]></description>
<summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>
<tags>browser mozilla firefox admin foss cross-platform</tags>
<releaseNotes>https://www.mozilla.org/en-US/firefox/124.0.1/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/124.0.2/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
408 changes: 204 additions & 204 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $softwareName = 'Mozilla Firefox'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '124.0.1')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '124.0.2')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand Down Expand Up @@ -62,15 +62,15 @@ else {
softwareName = "$softwareName*"
Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-124.0.1-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-124.0.2-ssl&os=win&lang=${locale}"
silentArgs = "$sa /S"
validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-124.0.1-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-124.0.2-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ Python is a programming language that lets you work more quickly and integrate y
## Notes

- This package depends on the the latest major version of python package.
- This package do not support package parameters, please install the package [python313](https://chocolatey.org/packages/python313) directly when using package parameters.
- This package do not support package parameters, please install the package [python311](https://chocolatey.org/packages/python311) directly when using package parameters.
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
2 changes: 1 addition & 1 deletion automatic/python/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"3.8": "3.8.10",
"3.9": "3.9.13",
"3.10": "3.10.11",
"3.11": "3.11.8",
"3.11": "3.11.9",
"3.12": "3.12.2",
"3.13": "3.13.0-a5"
}
10 changes: 5 additions & 5 deletions automatic/python/python.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python</id>
<version>3.13.0-a5</version>
<version>3.11.9</version>
<title>Python</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
<copyright>Copyright © 2001-2024 Python Software Foundation. All rights reserved.
<copyright>Copyright © 2001-2023 Python Software Foundation. All rights reserved.
Copyright © 2000 BeOpen.com. All rights reserved.
Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</copyright>
Expand All @@ -19,17 +19,17 @@ Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</cop
## Notes
- This package depends on the the latest major version of python package.
- This package do not support package parameters, please install the package [python313](https://chocolatey.org/packages/python313) directly when using package parameters.
- This package do not support package parameters, please install the package [python311](https://chocolatey.org/packages/python311) directly when using package parameters.
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
]]></description>
<summary>Python is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python and see almost immediate gains in productivity and lower maintenance costs.</summary>
<tags>python programming development foss cross-platform admin</tags>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/python</packageSourceUrl>
<projectSourceUrl>https://www.python.org/downloads/source</projectSourceUrl>
<dependencies>
<dependency id="python3" version="[3.13.0-a5]" />
<dependency id="python3" version="[3.11.9]" />
</dependencies>
<licenseUrl>https://docs.python.org/3.13/license.html</licenseUrl>
<licenseUrl>https://docs.python.org/3.11/license.html</licenseUrl>
</metadata>
<files></files>
</package>
2 changes: 1 addition & 1 deletion automatic/python3-streams/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/python.svg" width="48" height="48"/> [python313](https://community.chocolatey.org/packages/python313)
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/python.svg" width="48" height="48"/> [python311](https://community.chocolatey.org/packages/python311)

Python 3.x is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python 3.x and see almost immediate gains in productivity and lower maintenance costs.

Expand Down
12 changes: 6 additions & 6 deletions automatic/python3-streams/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ and can be verified by doing the following:

1. Go to

x32: https://www.python.org/ftp/python/3.13.0/python-3.13.0a5.exe
x64: https://www.python.org/ftp/python/3.13.0/python-3.13.0a5-amd64.exe
x32: https://www.python.org/ftp/python/3.11.9/python-3.11.9.exe
x64: https://www.python.org/ftp/python/3.11.9/python-3.11.9-amd64.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 2A4404580BF500A1C678F7DDCDA99B2D53535750369F3BC912BB4A5B6E705FB0
checksum64: 92366197B0FA271A87E8B793DC80771598B9C6B64B1D1624FDC7EC85A1B932A9
checksum32: AF19E5E2F03E715A822181F2CB7D4EFEF4EDA13FA4A2DB6DA12E998E46F5CBF9
checksum64: 5EE42C4EEE1E6B4464BB23722F90B45303F79442DF63083F05322F1785F5FDDE

The file 'LICENSE.txt' has been obtained from Python 3.13 Documentation archive <https://docs.python.org/3.13/archives/python-3.13.0a5-docs-text.zip>
and can also be found at <https://docs.python.org/3.13/license.html>.
The file 'LICENSE.txt' has been obtained from Python 3.11 Documentation archive <https://www.python.org/ftp/python/doc/3.11.9/python-3.11.9-docs-text.zip>
and can also be found at <https://docs.python.org/3.11/license.html>.
2 changes: 1 addition & 1 deletion automatic/python3-streams/python3-streams.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"3.11": "3.11.8",
"3.11": "3.11.9",
"3.12": "3.12.2",
"3.10": "3.10.10",
"3.5": "3.5.4",
Expand Down
12 changes: 6 additions & 6 deletions automatic/python3-streams/python3-streams.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python313</id>
<version>3.13.0-a5</version>
<title>Python 3.13</title>
<id>python311</id>
<version>3.11.9</version>
<title>Python 3.11</title>
<owners>chocolatey-community,jack1142</owners>
<authors>Python Software Foundation</authors>
<projectUrl>http://www.python.org/</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/python.svg</iconUrl>
<copyright>Copyright © 2001-2024 Python Software Foundation. All rights reserved.
<copyright>Copyright © 2001-2023 Python Software Foundation. All rights reserved.
Copyright © 2000 BeOpen.com. All rights reserved.
Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</copyright>
Expand All @@ -22,7 +22,7 @@ Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</cop
- `/InstallDir32:` - Installation directory for 32bit python on 64bit Operating Systems. **NOTE**: Do only use this parameter if you wish to install 32bit python alongside 64bit python. 32Bit python will not be added on PATH.
- `/NoLockdown` - Installation directory will not be locked down with Administrator only write permissions.
Example: `choco install python313 --params "/InstallDir:C:\your\install\path"`
Example: `choco install python311 --params "/InstallDir:C:\your\install\path"`
## Notes
Expand All @@ -32,7 +32,7 @@ Example: `choco install python313 --params "/InstallDir:C:\your\install\path"`
]]></description>
<summary>Python 3.x is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python 3.x and see almost immediate gains in productivity and lower maintenance costs.</summary>
<tags>python programming development foss cross-platform admin</tags>
<licenseUrl>https://docs.python.org/3.13/license.html</licenseUrl>
<licenseUrl>https://docs.python.org/3.11/license.html</licenseUrl>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/python3-streams</packageSourceUrl>
<projectSourceUrl>https://www.python.org/downloads/source</projectSourceUrl>
<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions automatic/python3-streams/tools/helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ function Install-Python {
}

$packageArgs = @{
packageName = 'python313'
packageName = 'python311'
fileType = 'exe'
file = "$toolsPath\python-3.13.0a5.exe"
file = "$toolsPath\python-3.11.9.exe"
silentArgs = '/quiet InstallAllUsers=1 PrependPath={0} TargetDir="{1}"' -f $prependPath, $installDir
validExitCodes = @(0)
}
Expand All @@ -48,7 +48,7 @@ function Install-Python {
$packageArgs['softwareName'] = "Python 3.$minor_version.*"

if (!$only32Bit) {
$packageArgs['file64'] = "$toolsPath\python-3.13.0a5-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.11.9-amd64.exe"
}
else {
$packageArgs['packageName'] = "32-bit $($packageArgs['packageName'])"
Expand Down
4 changes: 2 additions & 2 deletions automatic/python3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
## Notes

- This package depends on the latest major + minor version of python package.
- This package do not support package parameters, please install the package [python313](https://community.chocolatey.org/packages/python313) directly when using package parameters.
- To completely uninstall python, the package `python313` must also be uninstalled.
- This package do not support package parameters, please install the package [python311](https://community.chocolatey.org/packages/python311) directly when using package parameters.
- To completely uninstall python, the package `python311` must also be uninstalled.
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
2 changes: 1 addition & 1 deletion automatic/python3/python3.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"3.8": "3.8.10",
"3.9": "3.9.13",
"3.10": "3.10.11",
"3.11": "3.11.8",
"3.11": "3.11.9",
"3.12": "3.12.2",
"3.13": "3.13.0-a5"
}
12 changes: 6 additions & 6 deletions automatic/python3/python3.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python3</id>
<version>3.13.0-a5</version>
<version>3.11.9</version>
<title>Python 3.x</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
<projectUrl>http://www.python.org/</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/python.svg</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright © 2001-2024 Python Software Foundation. All rights reserved.
<copyright>Copyright © 2001-2023 Python Software Foundation. All rights reserved.
Copyright © 2000 BeOpen.com. All rights reserved.
Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</copyright>
Expand All @@ -19,17 +19,17 @@ Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.</cop
## Notes
- This package depends on the latest major + minor version of python package.
- This package do not support package parameters, please install the package [python313](https://community.chocolatey.org/packages/python313) directly when using package parameters.
- To completely uninstall python, the package `python313` must also be uninstalled.
- This package do not support package parameters, please install the package [python311](https://community.chocolatey.org/packages/python311) directly when using package parameters.
- To completely uninstall python, the package `python311` must also be uninstalled.
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
]]></description>
<summary>Python 3.x is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python 3.x and see almost immediate gains in productivity and lower maintenance costs.</summary>
<tags>python programming development foss cross-platform admin</tags>
<licenseUrl>https://docs.python.org/3.13/license.html</licenseUrl>
<licenseUrl>https://docs.python.org/3.11/license.html</licenseUrl>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/python3</packageSourceUrl>
<projectSourceUrl>https://www.python.org/downloads/source</projectSourceUrl>
<dependencies>
<dependency id="python313" version="[3.13.0-a5]" />
<dependency id="python311" version="[3.11.9]" />
</dependencies>
</metadata>
<files></files>
Expand Down
2 changes: 1 addition & 1 deletion automatic/skype/skype.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>skype</id>
<title>Skype</title>
<version>8.115.0.217</version>
<version>8.116.0.213</version>
<authors>Microsoft</authors>
<owners>chocolatey-community,Rob Reynolds</owners>
<summary>Skype - VOIP</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/skype/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Skype*'
fileType = 'msi'
url = 'https://download.skype.com/s4l/download/win/Skype-8.115.0.217.msi'
checksum = 'bebae52f1b8e5e64e4ce3290cbd175d8eff8b186b32b5c0094ee4a08349f9779'
url = 'https://download.skype.com/s4l/download/win/Skype-8.116.0.213.msi'
checksum = '25088a01209d34a61e2ab2ed4ae37d03ccd3c2fc362703c1fa7bb9d88cfc95b0'
checksumType = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0)
Expand Down

0 comments on commit 569f9dc

Please sign in to comment.