Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkoertgen/chocolatey-packages
Chocolatey Packages - packages that are managed and maintained by me
https://github.com/mkoertgen/chocolatey-packages
Last synced: 28 days ago
JSON representation
Chocolatey Packages - packages that are managed and maintained by me
- Host: GitHub
- URL: https://github.com/mkoertgen/chocolatey-packages
- Owner: mkoertgen
- License: apache-2.0
- Created: 2022-08-25T19:13:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-15T20:05:54.000Z (9 months ago)
- Last Synced: 2024-10-14T23:43:49.253Z (2 months ago)
- Language: PowerShell
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Chocolatey Packages
[![Update Packages](https://github.com/mkoertgen/chocolatey-packages/actions/workflows/update-push.yml/badge.svg)](https://github.com/mkoertgen/chocolatey-packages/actions/workflows/update-push.yml)
[Update status](https://gist.github.com/mkoertgen/566db9ad4a81bc3d4d392cd7ec8b4ade)Table of Contents
- [Chocolatey Packages](#chocolatey-packages)
- [Description](#description)
- [Development](#development)
- [Prerequisites](#prerequisites)
- [Update packages](#update-packages)
- [Push packages](#push-packages)- [Description](#description)
## Description
This repository contains Chocolatey packages, most of which are [automatically](https://docs.chocolatey.org/en-us/create/automatic-packages) updated.
It is updated from [chocolatey-community/chocolatey-packages](https://github.com/chocolatey-community/chocolatey-packages) and will probably merged back at some point in the future.**All packages in this repository should conform with the [contributing guidelines](CONTRIBUTING.md).** Contributions that follow the guideliness are welcome.
All packages in this repository are expected to be installable with any version of Chocolatey being made available in the past 12 months, unless a dependency on Chocolatey has been added.## Development
### Prerequisites
From an administrative powershell install the following:
```powershell
Install-Module au , wormies-au-helpers
```### Update packages
```powershell
# Update all packages
.\update_all.ps1# Update an individual package
cd .\automatic\visualvm\
.\update.ps1
# This should build package like 'visualvm.2.1.6.nupkg'# Force update of an individual package
$au_Force = $true; .\update.ps1
```### Push packages
Make sure your api key is configured. You can find it on your [Chocolatey Account](https://community.chocolatey.org/account)
```powershell
choco apikey -k -s https://push.chocolatey.org/
```To push the updated package, just use the following command (in the directory of your built package):
```powershell
Push-Package
```