Skip to content

Commit

Permalink
AU: 5 updated - ccleaner etcd notepadplusplus notepadplusplus.command…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 23, 2023
1 parent f512c08 commit 37b2262
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 40 deletions.
2 changes: 1 addition & 1 deletion automatic/ccleaner/ccleaner.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>ccleaner</id>
<title>CCleaner</title>
<version>6.18.10824</version>
<version>6.18.10838</version>
<authors>Piriform</authors>
<owners>chocolatey-community,maartenba, tonigellida</owners>
<summary>
Expand Down
2 changes: 1 addition & 1 deletion automatic/ccleaner/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'EXE'
url = 'https://download.ccleaner.com/ccsetup618.exe'
checksum = '3339875939414F8DDB3418DDE7702B3474A84F3DEB241BAE061BFCB525F29323'
checksum = 'FB91B42F5C848B2787937FF640CA56A8C3A2C364B30D5C00947059AF9F457C5A'
checksumType = 'sha256'
silentArgs = "/S $locale"
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/etcd/etcd.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"3.1": "3.1.20",
"3.2": "3.2.32",
"3.3": "3.3.27",
"3.4": "3.4.27",
"3.4": "3.4.28",
"3.5": "3.5.10",
"3.6": "3.6.0-alpha0"
}
32 changes: 14 additions & 18 deletions automatic/etcd/etcd.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>etcd</id>
<version>3.5.10</version>
<version>3.4.28</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/etcd</packageSourceUrl>
<owners>chocolatey-community,dgalbraith,Andrei Bejenaru,Robert Labrie</owners>
<title>etcd (Install)</title>
Expand Down Expand Up @@ -45,14 +45,14 @@ Example: `choco install etcd -y --params="-discovery https://discovery.etcd.io/t
* Windows support is limited to 64-bit systems
* Originally packaged by Robert Labrie (https://github.com/robertlabrie)
]]></description>
<releaseNotes>Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/upgrades/upgrade_3_5.md) before upgrading etcd (there may be breaking changes).
<releaseNotes>Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.4.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/upgrades/upgrade_3_4.md) before upgrading etcd (there may be breaking changes).

For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/op-guide/supported-platform.md).
For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/op-guide/supported-platform.md).

###### Linux

```bash
ETCD_VER=v3.5.10
ETCD_VER=v3.4.28

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -68,7 +68,6 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
```

```bash
Expand All @@ -83,7 +82,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
###### macOS (Darwin)

```bash
ETCD_VER=v3.5.10
ETCD_VER=v3.4.28

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
Expand All @@ -99,7 +98,6 @@ mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test &amp;&amp; rm -r

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
```

###### Docker
Expand All @@ -108,13 +106,13 @@ etcd uses [`gcr.io/etcd-development/etcd`](https://gcr.io/etcd-development/etcd)

```bash
rm -rf /tmp/etcd-data.tmp &amp;&amp; mkdir -p /tmp/etcd-data.tmp &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.5.10 || true &amp;&amp; \
docker rmi gcr.io/etcd-development/etcd:v3.4.28 || true &amp;&amp; \
docker run \
-p 2379:2379 \
-p 2380:2380 \
--mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
--name etcd-gcr-v3.5.10 \
gcr.io/etcd-development/etcd:v3.5.10 \
--name etcd-gcr-v3.4.28 \
gcr.io/etcd-development/etcd:v3.4.28 \
/usr/local/bin/etcd \
--name s1 \
--data-dir /etcd-data \
Expand All @@ -129,14 +127,12 @@ rm -rf /tmp/etcd-data.tmp &amp;&amp; mkdir -p /tmp/etcd-data.tmp &amp;&amp; \
--logger zap \
--log-outputs stderr

docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl get foo
```
</releaseNotes>
docker exec etcd-gcr-v3.4.28 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.4.28 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.4.28 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.4.28 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.4.28 /usr/local/bin/etcdctl get foo
```</releaseNotes>
<dependencies>
<dependency id="nssm" version="2.24.101" />
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions automatic/etcd/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://github.com/etcd-io/etcd/releases/tag/v3.5.10>
location on <https://github.com/etcd-io/etcd/releases/tag/v3.4.28>
and can be verified by doing the following:

1. Download the following:
software: <https://github.com/etcd-io/etcd/releases/download/v3.5.10/etcd-v3.5.10-windows-amd64.zip>
software: <https://github.com/etcd-io/etcd/releases/download/v3.4.28/etcd-v3.4.28-windows-amd64.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: sha256
checksum: B36E54D5861CB8F0EDD692A649E9A5809ABB1F8EF07996C7B5016CA9F09867F5
checksum: 4F9557B2F3F5E00C2143F569FA238DCAC197BDF3FA9FC9AD25F0133AB21D1ED1

The file 'LICENSE.txt' has been obtained from <https://github.com/etcd-io/etcd/commit/3381177341c11aa9d89b6172699d64ddc2146a11/LICENSE>
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.commandline/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.portable.7z>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.portable.x64.7z>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.6/npp.8.6.portable.7z>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.6/npp.8.6.portable.x64.7z>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 01AC0F5F0CA5DBB181D1C81AB874A5C26AFF7489D229818C0AB38950B05333FA
checksum64: BEF2D808618FD29BBC9885D0D4DBD4D5A70A6E5FEE66FC60CA919F7B38D7EF15
checksum32: 3DB1626946F11868114DE7B42C8B3DF134E99AE6D24EBFD1B08C8F6DCC12427F
checksum64: 5593754D629FA19817E180144D30193B7719DA12CCF457456D0113E730A2FF4D

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.commandline</id>
<title>Notepad++ (Portable, CommandLine)</title>
<version>8.5.8</version>
<version>8.6</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = "$toolsPath\npp.8.5.8.portable.7z"
file64 = "$toolsPath\npp.8.5.8.portable.x64.7z"
file = "$toolsPath\npp.8.6.portable.7z"
file64 = "$toolsPath\npp.8.6.portable.x64.7z"
destination = $toolsPath
}

Expand Down
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.Installer.exe>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.Installer.x64.exe>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.6/npp.8.6.Installer.exe>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.6/npp.8.6.Installer.x64.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 3E60502BD9C2656B1AF3721876CE6AB86FCDCDC6AC812B04CB28A18A98B025A7
checksum64: D50A46E7FFB799D501D60D9D3689D0B3FBE668D16AA421D67216269F83974220
checksum32: 40A7F4E73F670B5D620096115886D1931AA36E3DAA70735FC5BAD3041C3730D5
checksum64: 92B94F5DF86BF73CCDCE652E4E8B5D3085E16DA2AE7FC9FEEAC6A6DCC01C4490

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.install</id>
<title>Notepad++ (Install)</title>
<version>8.5.8</version>
<version>8.6</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\npp.8.5.8.Installer.exe"
file64 = "$toolsPath\npp.8.5.8.Installer.x64.exe"
file = "$toolsPath\npp.8.6.Installer.exe"
file64 = "$toolsPath\npp.8.6.Installer.x64.exe"
softwareName = 'Notepad\+\+*'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus/notepadplusplus.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus</id>
<title>Notepad++</title>
<version>8.5.8</version>
<version>8.6</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down Expand Up @@ -44,7 +44,7 @@ Based on the powerful editing component Scintilla, Notepad++ is written in C++ a
<mailingListUrl>https://notepad-plus-plus.org/community/</mailingListUrl>
<bugTrackerUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/issues</bugTrackerUrl>
<dependencies>
<dependency id="notepadplusplus.install" version="[8.5.8]" />
<dependency id="notepadplusplus.install" version="[8.6]" />
</dependencies>
<licenseUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/LICENSE</licenseUrl>
</metadata>
Expand Down

0 comments on commit 37b2262

Please sign in to comment.