Downloads:
244,520
Downloads of v 1.2.0:
679
Last Update:
02 Jun 2015
Package Maintainer(s):
Software Author(s):
- Red Hat
- Inc.
Tags:
cygwin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
cyg-get
This is not the latest version of cyg-get available.
- 1
- 2
- 3
1.2.0 | Updated: 02 Jun 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
244,520
Downloads of v 1.2.0:
679
Maintainer(s):
Software Author(s):
- Red Hat
- Inc.
Tags:
cygwincyg-get 1.2.0
This is not the latest version of cyg-get available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Red Hat, Inc. The inclusion of Red Hat, Inc. trademark(s), if any, upon this webpage is solely to identify Red Hat, Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Unknown
Verification Testing Unknown
Scan Testing Successful:
No detections found in any package files
Deployment Method: Individual Install, Upgrade, & Uninstall
To install cyg-get, run the following command from the command line or from PowerShell:
To upgrade cyg-get, run the following command from the command line or from PowerShell:
To uninstall cyg-get, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download cyg-get --internalize --version=1.2.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade cyg-get -y --source="'INTERNAL REPO URL'" --version="'1.2.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade cyg-get -y --source="'INTERNAL REPO URL'" --version="'1.2.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cyg-get
win_chocolatey:
name: cyg-get
version: '1.2.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cyg-get' do
action :install
source 'INTERNAL REPO URL'
version '1.2.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cyg-get
{
Name = "cyg-get"
Version = "1.2.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cyg-get':
ensure => '1.2.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator gep13 on 02 Jun 2015.
A utility to install Cygwin (http://cygwin.com) packages and their dependencies.
Cygwin is a Linux environment for Windows.
You may provide a single package name or a comma separated list of package names to install.
e.g. cyg-get openssh
or cyg-get git gitk git-completion
For a default installation of Cygwin, call 'cyg-get default'
param(
[parameter(Position=0, ValueFromRemainingArguments=$true)]
[string[]]$packageNames = @(),
[Parameter(Mandatory=$False)]
[switch]$upgrade = $false,
[Parameter(Mandatory=$False)]
[alias("?","h")][switch]$help = $false,
[Parameter(Mandatory=$False)]
[string]$proxy = $null,
[Parameter(Mandatory=$False)]
[string]$arch = $null,
[Parameter(Mandatory=$False)]
[switch]$notSilent = $false,
[Parameter(Mandatory=$False)]
[switch]$noAdmin = $false,
[Parameter(Mandatory=$False)]
[switch]$desktop = $false,
[Parameter(Mandatory=$False)]
[switch]$startMenu = $false
)
$DebugPreference = "SilentlyContinue"
if ($PSBoundParameters['Debug']) {
$DebugPreference = "Continue";
}
if ($help -or $packageNames -join '|' -eq '/?') {
Write-Host "To run please specify `'cyg-get packageName`'."
Write-Host "You can also specify a list of packages like this: `'cyg-get package1 package2 packageN`'."
Write-Host "Optional params: -upgrade"
Write-Host "Optional params: -proxy host:port"
Write-Host "Optional params: -arch x86_64 or x86"
Write-Host "Optional params: -noadmin"
Write-Host "Optional params: -desktop"
Write-Host "Optional params: -startmenu"
Write-Host "Optional params: -debug"
} elseif ($packageNames -eq $null -or $packageNames -eq '' -or $packageNames.Count -eq 0 ) {
Write-Warning 'Please specify a package or list of packages. Run -help or /? for more information.'
} else {
$local_key = 'HKLM:\SOFTWARE\Cygwin\setup'
$local_key6432 = 'HKLM:\SOFTWARE\Wow6432Node\Cygwin\setup'
try {
$cygRoot = @($local_key, $local_key6432) | ?{Test-Path $_} | Get-ItemProperty | Select-Object -ExpandProperty rootdir
if ($cygRoot -eq $null) {
throw "Cygwin install not found"
}
$cygwinsetup = "$cygRoot\cygwinsetup.exe"
$cygLocalPackagesDir = join-path $cygRoot packages
$cygInstallPackageList = $packageNames -join ','
$cygArgs = "--root $cygRoot --local-package-dir $cygLocalPackagesDir --download"
$windowStyle = 'Minimized'
if (!$notSilent) {
$cygArgs +=" --quiet-mode"
} else {
$cygArgs +=" --package-manager"
$windowStyle = 'Normal'
}
if ($upgrade) {
$cygArgs +=" --upgrade-also"
}
if ($proxy -ne $null -and $proxy -ne '') {
Write-Debug "Adding optional proxy value '$proxy'"
$cygArgs +=" --proxy '$proxy'"
}
if ($noAdmin) {
Write-Debug "Setting --no-admin"
$cygArgs +=" --no-admin"
}
#else {
#Write-Debug "Ensure --wait for admin mode (if enforced)"
#$cygArgs +=" --wait"
#}
if (!$desktop) {
Write-Debug "Ensuring --no-desktop"
$cygArgs +=" --no-desktop"
}
if (!$startMenu) {
Write-Debug "Ensuring --no-startmenu"
$cygArgs +=" --no-startmenu"
}
if ($arch -ne $null -and $arch -ne '') {
Write-Debug "Adding optional architecture value '$arch'"
$cygArgs +=" --arch $arch"
}
$cygArgs +=" --packages $cygInstallPackageList"
Write-Host "Attempting to install cygwin packages: $cygInstallPackageList"
Write-Debug "$cygwinsetup $cygArgs"
Start-Process -FilePath $cygwinsetup -ArgumentList $cygArgs -Wait -WindowStyle $windowStyle
}
catch {
Write-Error "Please ensure you have Cygwin installed. To install please `ncall 'choco install cygwin' (optionally add -y to autoconfirm). `nERROR: $($_.Exception.Message)"
}
}
Log in or click on link to see number of positives.
- cyg-get.1.2.0.nupkg (afd3a79b7050) - ## / 55
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
cyg-get 1.2.1 | 228302 | Tuesday, June 2, 2015 | Approved | |
cyg-get 1.2.0 | 679 | Tuesday, June 2, 2015 | Approved | |
cyg-get 1.1.2 | 4526 | Tuesday, November 25, 2014 | Approved | |
cyg-get 1.1.1 | 5196 | Tuesday, November 12, 2013 | Approved | |
cyg-get 1.1.0 | 1473 | Wednesday, August 14, 2013 | Unknown | |
cyg-get 1.0.7 | 1184 | Wednesday, June 26, 2013 | Unknown | |
cyg-get 1.0.6 | 671 | Wednesday, June 19, 2013 | Unknown | |
cyg-get 1.0.5 | 1819 | Monday, May 21, 2012 | Unknown |
Red Hat, Inc.
Ground Rules:
- This discussion is only about cyg-get and the cyg-get package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or cyg-get, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.