Skip to content

Commit

Permalink
AU: 6 updated - brave dropbox openshift-cli python python3 python312
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Aug 7, 2024
1 parent 61e57a3 commit 76fda16
Show file tree
Hide file tree
Showing 20 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion automatic/brave/brave.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"stable": "1.68.134",
"stable": "1.68.137",
"beta": "1.69.136-beta"
}
8 changes: 4 additions & 4 deletions automatic/brave/brave.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<package>
<metadata>
<id>brave</id>
<version>1.69.136-beta</version>
<title>Brave Browser (Beta)</title>
<version>1.68.137</version>
<title>Brave Browser</title>
<description><![CDATA[Brave is a free and open-source web browser developed by Brave Software Inc. based on the Chromium web browser. Brave supports Windows, macOS, Linux and Android.
## Features
Expand All @@ -14,11 +14,11 @@
## Notes
- Beta is an early preview for new versions of Brave. This build showcases the newest advances and it's ready for daily use. Brave Beta automatically sends crash reports, but you can turn this off if you'd like.
- This is an **official release version** of Brave. It is in continuous development with new releases landing approximately every three weeks.
- **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>
<!-- IconUrl: Skip check -->
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@a23ca306537e2537a574ddc55e9c28dc1151ab30/icons/brave-beta.svg</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@a23ca306537e2537a574ddc55e9c28dc1151ab30/icons/brave.svg</iconUrl>
<summary>A browser that lets you browse safer and faster by blocking ads and trackers.</summary>
<owners>chocolatey-community, Sanshiro</owners>
<authors>Brave Software Inc.</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/brave/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer has been downloaded from the GitHub mirror and can be verified lik

1. Download the following installer(s):

x86_64: https://github.com/brave/brave-browser/releases/download/v1.69.136/BraveBrowserStandaloneSilentBetaSetup.exe
x86_64: https://github.com/brave/brave-browser/releases/download/v1.68.137/BraveBrowserStandaloneSilentSetup.exe

2. You can use one of the following methods to obtain the checksum(s):
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum64: AEF1516E1F620F7276296542AB452B08A6C54E1651909F75A503FBCD4D0DB8F7
checksum64: 533073E242501532C8A2C3E87B9631AE67E2F5D1F859FF2136C8CA5A48768DA1

The included 'LICENSE.txt' file have been obtained from:
https://github.com/brave/brave-browser/blob/master/LICENSE
8 changes: 4 additions & 4 deletions automatic/brave/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

$packageArgs = @{
packageName = $env:ChocolateyPackageName
url = 'https://github.com/brave/brave-browser/releases/download/v1.69.136/BraveBrowserStandaloneSilentBetaSetup32.exe'
checksum = '7C34D03385FE87E755FE9BD99B266525B03B1AF373A2EAF919D971238C740D65'
url = 'https://github.com/brave/brave-browser/releases/download/v1.68.137/BraveBrowserStandaloneSilentSetup32.exe'
checksum = '83514B96D54C9CA9FC0475F2C8D39348C0DA8003A300079ABFF7E79B5C6F944E'
checksumType= 'sha256'
file64 = "$toolsPath\BraveBrowserStandaloneSilentBetaSetup.exe"
file64 = "$toolsPath\BraveBrowserStandaloneSilentSetup.exe"
}

[version]$softwareVersion = '1.69.136'
[version]$softwareVersion = '1.68.137'

Write-Host "Checking already installed version..."
$installedVersion = Get-InstalledVersion
Expand Down
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": "205.3.5742-beta",
"beta": "206.3.6371-beta",
"stable": "205.4.5765"
}
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>205.4.5765</version>
<version>206.3.6371-beta</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 = '205.4.5765'
$version = '206.3.6371'

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%20205.4.5765%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20205.4.5765%20Offline%20Installer.x64.exe'
checksum = '00c9e134108dfc645912ea06981d17d9fa89e33fda7e8cb474b462871776404f'
checksum64 = 'cf9b6845f7b39507324ba0d40cb4f97263ed71f3c6daaf373586e0fbe38a05e1'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20206.3.6371%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20206.3.6371%20Offline%20Installer.x64.exe'
checksum = '63b356888f205522a7f513ee1d934e66472808cba790dea84b98c190c7804396'
checksum64 = '1303f988ab978476ba19981628087729d83315dd1b72acc8cb940a65a04f3c50'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
6 changes: 3 additions & 3 deletions automatic/openshift-cli/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.4>
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.5>
and can be verified by doing the following:

1. Download the following:
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.4/openshift-client-windows-4.16.4.zip>
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.5/openshift-client-windows-4.16.5.zip>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -17,6 +17,6 @@ and can be verified by doing the following:
3. The checksums should match the following:

checksum type:
checksum: 9D4DAAEAEDAC580ACFA93195771B43526C78AC3517B7E1CC557E52224363470C
checksum: 29CCB75ABC3B4A4DD97B7228E00292DFF37BAA5F20F788136CDC26C8744DC5D2

The file 'LICENSE.txt' has been obtained from <https://github.com/openshift/origin/blob/6366485d06c43fd526899510f02582484da25519/LICENSE>
4 changes: 2 additions & 2 deletions automatic/openshift-cli/openshift-cli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>openshift-cli</id>
<version>4.16.4</version>
<version>4.16.5</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/openshift-cli</packageSourceUrl>
<owners>chocolatey-community,Andrei Bejenaru</owners>
<title>OpenShift Command Line Interface (CLI)</title>
Expand Down Expand Up @@ -45,7 +45,7 @@ Origin is the upstream community project that powers OpenShift. Built around a c
* Windows support is limited to 64bit systems.
* **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>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.4</releaseNotes>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.16.5</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
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 [python312](https://chocolatey.org/packages/python312) 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 @@ -11,6 +11,6 @@
"3.9": "3.9.13",
"3.10": "3.10.11",
"3.11": "3.11.9",
"3.12": "3.12.4",
"3.12": "3.12.5",
"3.13": "3.13.0-rc1"
}
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-rc1</version>
<version>3.12.5</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 [python312](https://chocolatey.org/packages/python312) 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-rc1]" />
<dependency id="python3" version="[3.12.5]" />
</dependencies>
<licenseUrl>https://docs.python.org/3.13/license.html</licenseUrl>
<licenseUrl>https://docs.python.org/3.12/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"/> [python312](https://community.chocolatey.org/packages/python312)

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.0rc1.exe
x64: https://www.python.org/ftp/python/3.13.0/python-3.13.0rc1-amd64.exe
x32: https://www.python.org/ftp/python/3.12.5/python-3.12.5.exe
x64: https://www.python.org/ftp/python/3.12.5/python-3.12.5-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: 1591A7FE3A625E6274BEA580FA218AD9C27EAFAA2CC3051837AEC1A6F94455D4
checksum64: 3E0790DF0FC619DE69CC3B48450BA8AE1A965F68B7CAC7252D71BF967AFCECAC
checksum32: 764D8D18A82CC69B947ED08194C76CFE78DBC9D3A07960A08F0EDB9081FD4015
checksum64: 44810512AF577CA70B3269B8570B10825EC2ACE2B86E4297E767A0F4C0EE8BFD

The file 'LICENSE.txt' has been obtained from Python 3.13 Documentation archive <https://www.python.org/ftp/python/doc/3.13.0rc1/python-3.13.0rc1-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.12 Documentation archive <https://www.python.org/ftp/python/doc/3.12.5/python-3.12.5-docs-text.zip>
and can also be found at <https://docs.python.org/3.12/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,6 +1,6 @@
{
"3.11": "3.11.9",
"3.12": "3.12.4",
"3.12": "3.12.5",
"3.10": "3.10.10",
"3.5": "3.5.4",
"3.6": "3.6.8",
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-rc1</version>
<title>Python 3.13</title>
<id>python312</id>
<version>3.12.5</version>
<title>Python 3.12</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 python312 --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.12/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 = 'python312'
fileType = 'exe'
file = "$toolsPath\python-3.13.0rc1.exe"
file = "$toolsPath\python-3.12.5.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.0rc1-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.12.5-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 [python312](https://community.chocolatey.org/packages/python312) directly when using package parameters.
- To completely uninstall python, the package `python312` 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 @@ -11,6 +11,6 @@
"3.9": "3.9.13",
"3.10": "3.10.11",
"3.11": "3.11.9",
"3.12": "3.12.4",
"3.12": "3.12.5",
"3.13": "3.13.0-rc1"
}
Loading

0 comments on commit 76fda16

Please sign in to comment.