Skip to content

Commit

Permalink
'Updating'
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio David Gellida Lavara committed Nov 30, 2014
1 parent 360dae6 commit 740276e
Show file tree
Hide file tree
Showing 45 changed files with 493 additions and 340 deletions.
2 changes: 1 addition & 1 deletion .~lock.chocolateyautomaticpackages.ods#
Original file line number Diff line number Diff line change
@@ -1 +1 @@
,sobremesanox/Tonin,sobremesanox,30.11.2014 23:34,file:///C:/Users/Tonin/AppData/Roaming/LibreOffice/4;
,sobremesanox/Tonin,sobremesanox,01.12.2014 00:07,file:///C:/Users/Tonin/AppData/Roaming/LibreOffice/4;
Binary file modified KETARIN/jobs.db
Binary file not shown.
22 changes: 22 additions & 0 deletions _output/line/3.8.0.1350/line.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>line</id>
<title>LINE</title>
<version>3.8.0.1350</version>
<authors>LINE Corporation</authors>
<owners>tonigellida</owners>
<summary>
Free SMS, Free Voice call messenger application.
</summary>
<description>
Free SMS, Free Voice call messenger application.
</description>
<projectUrl>http://line.naver.jp/en/#</projectUrl>
<tags>messenger communication messaging voice-chat video-call voice-call</tags>
<copyright></copyright>
<licenseUrl>http://line.naver.jp/terms_pc/en/</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/adgellida/chocolateyautomaticpackages/master/icons/line.png</iconUrl>
</metadata>
</package>
16 changes: 16 additions & 0 deletions _output/line/3.8.0.1350/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
$packageName = 'line'
$installerType = 'EXE'
$url = 'http://dl.desktop.line.naver.jp/naver/LINE/win/LineInst.exe'
$silentArgs = '/s'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
23 changes: 23 additions & 0 deletions _output/line/3.8.0.1350/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$packageName = 'line'
$installerType = 'EXE'
$silentArgs = '/s'
$processor = Get-WmiObject Win32_Processor
$is64bit = $processor.AddressWidth -eq 64
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

if ($is64bit) {
$unpath = "${Env:ProgramFiles(x86)}\Naver\LINE\LineUnInst.exe"
} else {
$unpath = "$Env:ProgramFiles\Naver\LINE\LineUnInst.exe"
}

Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $unpath -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
22 changes: 22 additions & 0 deletions _output/mucommander/0.9.0.20141201/mucommander.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>mucommander</id>
<title>muCommander</title>
<version>0.9.0.20141201</version>
<authors>Maxence Bernard</authors>
<owners>tonigellida</owners>
<summary>
A cross-platform file manager that will run on any operating system which supports Java.
</summary>
<description>
A cross-platform file manager that will run on any operating system which supports Java.
</description>
<projectUrl>http://www.mucommander.com/index.php#download</projectUrl>
<tags>file-manager file-management dual-panel</tags>
<copyright></copyright>
<licenseUrl>http://trac.mucommander.com/wiki/License</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/adgellida/chocolateyautomaticpackages/master/icons/mucommander.png</iconUrl>
</metadata>
</package>
16 changes: 16 additions & 0 deletions _output/mucommander/0.9.0.20141201/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
$packageName = 'mucommander'
$installerType = 'EXE'
$url = 'http://www.mucommander.com/download/mucommander-0_9_0.exe'
$silentArgs = '/S'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
23 changes: 23 additions & 0 deletions _output/mucommander/0.9.0.20141201/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$packageName = 'mucommander'
$installerType = 'EXE'
$silentArgs = '/S'
$processor = Get-WmiObject Win32_Processor
$is64bit = $processor.AddressWidth -eq 64
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

if ($is64bit) {
$unpath = "${Env:ProgramFiles(x86)}\muCommander\uninstall.exe"
} else {
$unpath = "$Env:ProgramFiles\muCommander\uninstall.exe"
}

Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $unpath -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
25 changes: 9 additions & 16 deletions _output/popcorntime/0.3.5.2/popcorntime.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,22 @@
<authors>Pochoclín</authors>
<owners>tonigellida</owners>
<summary>
popcorn-official Release. Watch movies free on your desktop, with a big movie catalog.
Watch movies free on your desktop, with a big movie catalog.
</summary>
<description>
popcorn-official Release. Watch movies free on your desktop, with a big movie catalog.
This p2p client offers a whole new way to watch movies. Just select the movie to watch and press play.
Popcorn Time! is the result of many developers and designers putting a bunch of APIs together to make the experience of watching torrent movies as simple as possible.
-Great movies
We're constantly searching all over the web for the best torrents from the most important sites.
-No restrictions
Watch any movie as many times as you want. All you need to get started is a proper internet connection.
-Awesome catalogue
If the movie is out there, Popcorn Time will find the best version possible and start streaming it right away.
-The best quality
Watch your movie instantly in HD and with subtitles. And then keep watching.
Watch movies free on your desktop, with a big movie catalog.

popcorn-official Release.

###Notes

Probably beta release (automatic push). Package version less than v1, treat as stable.
</description>
<releaseNotes>
Probably beta release (automatic push). Package version less than v1, treat as stable.
</releaseNotes>
<projectUrl>https://popcorntime.io/</projectUrl>
<tags>peer-to-peer movie-catalog torrent-movies popcorntime</tags>
<copyright></copyright>
<licenseUrl>http://www.gnu.org/copyleft/gpl.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://raw.github.com/adgellida/chocolateyautomaticpackages/master/icons/popcorntime.png</iconUrl>
<iconUrl>https://cdn.rawgit.com/adgellida/chocolateyautomaticpackages/master/icons/popcorntime.png</iconUrl>
</metadata>
</package>
28 changes: 3 additions & 25 deletions _output/popcorntime/0.3.5.2/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,38 +1,16 @@
$packageName = 'popcorntime'
$version = '0.3.5.2'
$exeToVersioning = "$Env:userprofile\AppData\Local\Popcorn Time\Uninstall.exe"
$installerType = 'EXE'
$url = 'http://212.47.229.79/build/Popcorn-Time-0.3.5.2-Setup.exe'
$silentArgs = '/S'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
$mantainer = 'tonigellida'

try {

if (Test-Path $exeToVersioning) {
$installedVersion = (Get-Command $exeToVersioning).FileVersionInfo.FileVersion
}

if ($installedVersion -gt $version) {
Write-Host "Your $packageName $installedVersion is higher than the $version proporcionated by chocolatey repo."
Write-Host "Please wait or contact the mantainer $mantainer to update this package."
Write-Host "When the package is updated try another time. Thanks."

}elseif ($installedVersion -eq $version) {
Write-Host "$packageName $version is already installed."

} else {

# Download and install the program

Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes

}
Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {

Write-ChocolateyFailure $packageName "$($_.Exception.Message)"
throw
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
15 changes: 8 additions & 7 deletions _output/popcorntime/0.3.5.2/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
$packageName = 'popcorntime'
$installerType = 'EXE'
$silentArgs = '/S'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
$unpath = "$Env:userprofile\AppData\Local\Popcorn Time\Uninstall.exe"
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx


try {

Uninstall-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$unpath" -validExitCodes $validExitCodes

# the following is all part of error handling
Write-ChocolateySuccess "$packageName"
Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $unpath -validExitCodes $validExitCodes
Write-ChocolateySuccess $packageName
} catch {
Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
throw
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
22 changes: 22 additions & 0 deletions _output/spybot/2.4.40.20141130/spybot.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>spybot</id>
<title>Spybot - Search and Destroy</title>
<version>2.4.40.20141130</version>
<authors>Safer Networking Ltd</authors>
<owners>tonigellida</owners>
<summary>
Detects and removes spyware, a relatively new kind of threat not yet covered by common anti-virus applications.
</summary>
<description>
Detects and removes spyware, a relatively new kind of threat not yet covered by common anti-virus applications.
</description>
<projectUrl>http://www.safer-networking.org/private/</projectUrl>
<tags>security anti-spyware malware-scanner anti-rootkit spyware-removal</tags>
<copyright></copyright>
<licenseUrl>http://www.safer-networking.org/eula-for-private-users/</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/adgellida/chocolateyautomaticpackages/master/icons/spybot.png</iconUrl>
</metadata>
</package>
16 changes: 16 additions & 0 deletions _output/spybot/2.4.40.20141130/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
$packageName = 'spybot'
$installerType = 'EXE'
$url = 'http://spybotupdates.com/files/spybot-2.4.exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
23 changes: 23 additions & 0 deletions _output/spybot/2.4.40.20141130/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$packageName = 'spybot'
$installerType = 'EXE'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$processor = Get-WmiObject Win32_Processor
$is64bit = $processor.AddressWidth -eq 64
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

if ($is64bit) {
$unpath = "${Env:ProgramFiles(x86)}\Spybot - Search & Destroy 2\unins000.exe"
} else {
$unpath = "$Env:ProgramFiles\Spybot - Search & Destroy 2\unins000.exe"
}

Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $unpath -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
22 changes: 22 additions & 0 deletions _output/startmenu8/1.6.0.20141130/startmenu8.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>startmenu8</id>
<title>Start Menu 8</title>
<version>1.6.0.20141130</version>
<authors>IObit</authors>
<owners>tonigellida</owners>
<summary>
It offers a perfect solution for users who work with Windows Start Menu all the time and are not accustomed to the new Metro start screen in Windows 8.
</summary>
<description>
It offers a perfect solution for users who work with Windows Start Menu all the time and are not accustomed to the new Metro start screen in Windows 8.
</description>
<projectUrl>http://www.iobit.com/iobitstartmenu8.php#none</projectUrl>
<tags>start-menu windows-8 skip-metro-ui</tags>
<copyright></copyright>
<licenseUrl>http://www.iobit.com/legal.php</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/adgellida/chocolateyautomaticpackages/master/icons/startmenu8.png</iconUrl>
</metadata>
</package>
16 changes: 16 additions & 0 deletions _output/startmenu8/1.6.0.20141130/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
$packageName = 'startmenu8'
$installerType = 'EXE'
$url = 'http://download.iobit.com/startmenu-setup.exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
23 changes: 23 additions & 0 deletions _output/startmenu8/1.6.0.20141130/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$packageName = 'startmenu8'
$installerType = 'EXE'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$processor = Get-WmiObject Win32_Processor
$is64bit = $processor.AddressWidth -eq 64
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx

try {

if ($is64bit) {
$unpath = "${Env:ProgramFiles(x86)}\IObit\Start Menu 8\unins000.exe"
} else {
$unpath = "$Env:ProgramFiles\IObit\Start Menu 8\unins000.exe"
}

Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $unpath -validExitCodes $validExitCodes

Write-ChocolateySuccess $packageName

} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
Loading

0 comments on commit 740276e

Please sign in to comment.