Skip to content

Commit

Permalink
fix dtgm#221 normalize line endings crlf>>lf
Browse files Browse the repository at this point in the history
  • Loading branch information
dtgm committed Jun 15, 2016
1 parent 1338c5c commit dccf419
Show file tree
Hide file tree
Showing 32 changed files with 122 additions and 122 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# chocolatey-packages
# chocolatey-packages
Automatic and manual nuget-based packages for management by [Chocolatey](https://chocolatey.org/).

Chocolatey is a package manager like `apt-get` or `yum`; designed for a command-line interface for management and installing MSI, EXE, and portable user applications.
Expand Down
2 changes: 1 addition & 1 deletion Roadmap.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Short-term roadmap for package production
# Short-term roadmap for package production

## Minimum requirements for pushing packages to this repository

Expand Down
26 changes: 13 additions & 13 deletions automatic/biblioteq/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/S'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-Url "$url" `
-ValidExitCodes $validExitCodes `
-Checksum "$checksum" `
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/S'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-Url "$url" `
-ValidExitCodes $validExitCodes `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
50 changes: 25 additions & 25 deletions automatic/logrotate/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/S /v/qn'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
$chocoTempDir = Join-Path $Env:Temp "chocolatey"
$tempDir = Join-Path $chocoTempDir "$packageName"
if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)}
$zipFile = Join-Path $tempDir "$($packageName)Install.zip"
$installFile = Join-Path $tempDir 'setup.exe'
Get-ChocolateyWebFile -PackageName "$packageName" `
-FileFullPath "$zipFile" `
-Url "$url" `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
Get-ChocolateyUnzip -FileFullPath "$zipFile" `
-Destination "$tempDir" `
-SpecificFolder "" `
-PackageName "$packageName"
Install-ChocolateyInstallPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-File "$installFile" `
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/S /v/qn'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
$chocoTempDir = Join-Path $Env:Temp "chocolatey"
$tempDir = Join-Path $chocoTempDir "$packageName"
if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)}
$zipFile = Join-Path $tempDir "$($packageName)Install.zip"
$installFile = Join-Path $tempDir 'setup.exe'
Get-ChocolateyWebFile -PackageName "$packageName" `
-FileFullPath "$zipFile" `
-Url "$url" `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
Get-ChocolateyUnzip -FileFullPath "$zipFile" `
-Destination "$tempDir" `
-SpecificFolder "" `
-PackageName "$packageName"
Install-ChocolateyInstallPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-File "$installFile" `
-ValidExitCodes $validExitCodes
26 changes: 13 additions & 13 deletions automatic/logrotate/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$packageName = '{{PackageName}}'
$packageSearch = "LogRotate"
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$validExitCodes = @(0,3010)
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like "$packageSearch" } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($_.PSChildName) $silentArgs" `
$packageName = '{{PackageName}}'
$packageSearch = "LogRotate"
$installerType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$validExitCodes = @(0,3010)
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like "$packageSearch" } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($_.PSChildName) $silentArgs" `
-ValidExitCodes $validExitCodes }
26 changes: 13 additions & 13 deletions automatic/windowdetective/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-Url "$url" `
-ValidExitCodes $validExitCodes `
-Checksum "$checksum" `
$packageName = '{{PackageName}}'
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$url = '{{DownloadUrlx64}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$validExitCodes = @(0)
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-Url "$url" `
-ValidExitCodes $validExitCodes `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
28 changes: 14 additions & 14 deletions automatic/windowdetective/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
$packageName = '{{PackageName}}'
$packageSearch = "Window Detective"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like "$packageSearch" } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($silentArgs)" `
-File "$($_.UninstallString.Replace('"',''))" `
$packageName = '{{PackageName}}'
$packageSearch = "Window Detective"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like "$packageSearch" } `
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($silentArgs)" `
-File "$($_.UninstallString.Replace('"',''))" `
-ValidExitCodes $validExitCodes }
26 changes: 13 additions & 13 deletions automatic/winspy/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$packageName = '{{PackageName}}'
$url = '{{DownloadUrl}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installFile = Join-Path $toolsDir "WinSpy.exe"
Install-ChocolateyZipPackage -PackageName "$packageName" `
-Url "$url" `
-UnzipLocation "$toolsDir" `
-Url64bit "" `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
Set-Content -Path ("$installFile.gui") `
$packageName = '{{PackageName}}'
$url = '{{DownloadUrl}}'
$checksum = '{{Checksum}}'
$checksumType = 'sha1'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installFile = Join-Path $toolsDir "WinSpy.exe"
Install-ChocolateyZipPackage -PackageName "$packageName" `
-Url "$url" `
-UnzipLocation "$toolsDir" `
-Url64bit "" `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
Set-Content -Path ("$installFile.gui") `
-Value $null
2 changes: 1 addition & 1 deletion issues/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# files and reference files used to solve issues
# files and reference files used to solve issues

This subdirectory includes non-important files and may be safely omitted when cloning this repo.

Expand Down
2 changes: 1 addition & 1 deletion issues/todo-active_program-latent_maintainer.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://chocolatey.org/packages/pencil
https://chocolatey.org/packages/pencil
https://chocolatey.org/profiles/customuser 18

https://chocolatey.org/packages/unetbootin
Expand Down
2 changes: 1 addition & 1 deletion issues/todo-inactive_program-latent_maintainer.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://chocolatey.org/packages/ArgoUML
https://chocolatey.org/packages/ArgoUML
https://chocolatey.org/profiles/Nicop 1

https://chocolatey.org/packages/dia
Expand Down
2 changes: 1 addition & 1 deletion issues/todo-newpkg.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dbeaver-ce
dbeaver-ce
dbeaver-ee
Free Universal Database Manager
Free multi-platform database tool for developers, SQL programmers, database administrators and analysts. Supports all popular databases: MySQL, PostgreSQL, SQLite, Oracle, DB2, SQL Server, Sybase, MongoDB, etc.
Expand Down
2 changes: 1 addition & 1 deletion ketarin/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatic updating chocolatey packages
# Automatic updating chocolatey packages

This directory contains files from [Ketarin](https://chocolatey.org/packages/ketarin) for use with [Chocolatey Automatic Package Updater](https://chocolatey.org/packages/ChocolateyPackageUpdater)

Expand Down
2 changes: 1 addition & 1 deletion ketarin/books.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version="1.0"?>
<!-- https://msdn.microsoft.com/en-us/library/windows/desktop/ms762271.aspx -->
<catalog>
<book id="bk101">
Expand Down
10 changes: 5 additions & 5 deletions licenses/advor.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Advanced Onion Router consists of Tor, Graphical Interface and extensions.
Advanced Onion Router consists of Tor, Graphical Interface and extensions.

[1] Tor is distributed under this license:

Copyright � 2001-2004, Roger Dingledine
Copyright � 2004-2006, Roger Dingledine, Nick Mathewson
Copyright � 2007-2014, The Tor Project, Inc.
Copyright � 2001-2004, Roger Dingledine
Copyright � 2004-2006, Roger Dingledine, Nick Mathewson
Copyright � 2007-2014, The Tor Project, Inc.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Expand All @@ -14,7 +14,7 @@ This product includes software developed by the OpenSSL Project for use in the O

[2] Graphical Interface, extensions added to Tor client and AdvOR.dll are distributed under Creative Commons Attribution - NonCommercial - ShareAlike license.

Copyright � by Albu Cristian, 2009-2014
Copyright � by Albu Cristian, 2009-2014

[3] Disclaimer

Expand Down
2 changes: 1 addition & 1 deletion licenses/ms-lpl-1.1.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
License
License

MICROSOFT LIMITED PUBLIC LICENSE version 1.1
This license governs use of code marked as “sample” or “example” available on this web site without a license agreement, as provided under the section above titled “NOTICE SPECIFIC TO SOFTWARE AVAILABLE ON THIS WEB SITE.” If you use such code (the “software”), you accept this license. If you do not accept the license, do not use the software.
Expand Down
4 changes: 2 additions & 2 deletions licenses/winspector.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Winspector - Watching the messages go flying by�
Copyright � 1998-2002 Gipsysoft. All Rights Reserved.
Winspector - Watching the messages go flying by�
Copyright � 1998-2002 Gipsysoft. All Rights Reserved.

Winspector Licence Agreement

Expand Down
2 changes: 1 addition & 1 deletion manual/dropboxifier/dropboxifier.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>dropboxifier</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/hddguardian.install/hddguardian.install.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>hddguardian.install</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/hddguardian.install/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$packageName = 'hddguardian'
$packageName = 'hddguardian'
$packageSearch = 'HDD Guardian'
$installerType = 'exe'
$silentArgs = '/S'
Expand Down
2 changes: 1 addition & 1 deletion manual/hddguardian.portable/hddguardian.portable.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>hddguardian.portable</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/hddguardian/hddguardian.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>hddguardian</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/hdparm/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$packageName = 'hdparm'
$packageName = 'hdparm'
$fileType = 'msi'
$silentArgs = '/quiet /qn /norestart'
$validExitCodes = @(0,3010)
Expand Down
2 changes: 1 addition & 1 deletion manual/hpusbdisk/hpusbdisk.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>hpusbdisk</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/rawwrite/rawwrite.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>rawwrite</id>
Expand Down
2 changes: 1 addition & 1 deletion manual/rawwrite/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$packageName = 'rawwrite'
$packageName = 'rawwrite'
$url = 'http://www.chrysocome.net//downloads/rawwritewin-0.7.zip'
$checksum = 'fdafe19d88add869afde8eb35b5e863243b37b5d'
$checksumType = 'sha1'
Expand Down
2 changes: 1 addition & 1 deletion naming id and title for plugin packages.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Abstract:
Abstract:
I am looking for any opinions on how chocolatey should present the title for packages with plugins.

Existing definitions:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$packageName = 'psiphon'
$packageName = 'psiphon'
$url = 'https://psiphon.ca/psiphon3.exe'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installFile = Join-Path $toolsDir "$($packageName).exe"
Expand Down
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# command line scripts
# command line scripts

Files within this subdirectory include code used to quickly manage files in this repository.

Expand Down
2 changes: 1 addition & 1 deletion scripts/ketarin-settings-commands-01-beforeupdatingapp.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Script version: 1.3.0.0
# Script version: 1.3.0.0
#
# Changelog
# evaluate custom variables rather than using variables' CachedContent
Expand Down
2 changes: 1 addition & 1 deletion scripts/ketarin-settings-commands-02-afterupdatingapp.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
/// version 6.8.0.0
///
/// Changelog: Calc SHA256 sums
Expand Down
2 changes: 1 addition & 1 deletion scripts/ketarin-settings-config-coreteam.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Summary of Readme.md and script files at https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/bin
Summary of Readme.md and script files at https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/bin

We use [Saxon Home Edition](https://chocolatey.org/packages/SaxonHE) because most other tools only support `xslt 1.0` and we need `xslt 2.0` for the kind of magic we use.

Expand Down

0 comments on commit dccf419

Please sign in to comment.