Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AdmiringWorm/chocolatey-packages
AdmiringWorm's automatic chocolatey packages using AU
https://github.com/AdmiringWorm/chocolatey-packages
appveyor au automatic chocolatey packages powershell
Last synced: 3 months ago
JSON representation
AdmiringWorm's automatic chocolatey packages using AU
- Host: GitHub
- URL: https://github.com/AdmiringWorm/chocolatey-packages
- Owner: AdmiringWorm
- License: apache-2.0
- Created: 2016-07-15T15:19:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T13:40:54.000Z (5 months ago)
- Last Synced: 2024-05-28T19:10:13.143Z (5 months ago)
- Topics: appveyor, au, automatic, chocolatey, packages, powershell
- Language: PowerShell
- Homepage:
- Size: 12.4 MB
- Stars: 16
- Watchers: 3
- Forks: 18
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - AdmiringWorm/chocolatey-packages - AdmiringWorm's automatic chocolatey packages using AU (PowerShell)
README
# AdmiringWorm's Chocolatey Community packages
[![All Contributors](https://img.shields.io/badge/all_contributors-19-orange.svg?style=flat-square)](#contributors-)
## Automatic Chocolatey Packages built by appveyor
[![GitHub Updater Status](https://img.shields.io/github/actions/workflow/status/AdmiringWorm/chocolatey-packages/.github%2Fworkflows%2Fpackage-updater.yml?style=flat-square&logo=github&label=updater)](https://github.com/AdmiringWorm/chocolatey-packages/actions/workflows/package-updater.yml)
[![Update Status](https://img.shields.io/badge/Status-blue?style=flat-square&label=Update)](https://gist.github.com/AdmiringWorm/747b3ede98c9404e5cb6a399595e7ad1)
[![chocolatey/AdmiringWorm](https://img.shields.io/badge/AdmiringWorm-yellowgreen?style=flat-square&logo=chocolatey&label=Chocolatey)](https://community.chocolatey.org/profiles/AdmiringWorm)If you have any issues with one of the packages hosted in this repository, please feel free to open an issue (preferred instead of using `Contact Maintainers` on chocolatey.org).
This repository contains [chocolatey automatic packages](https://docs.chocolatey.org/en-us/create/automatic-packages).
The repository is setup so that you can manage your packages entirely from the GitHub web interface (using AppVeyor to update and push packages) and/or using the local repository copy.On the community repository there are certain functions that can not be used inside the package.
Please see for currently known functions to avoid, or provide fallback helpers for.## Prerequisites
To run locally you will need:
- Powershell 5+: `cinst powershell`.
- [Chocolatey Automatic Package Updater Module](https://github.com/chocolatey-community/chocolatey-au): `Install-Module au` or `cinst au`.
- [Wormies Automatic Updater Helpers](https://github.com/WormieCorp/Wormies-AU-Helpers): `Install-Module wormies-au-helpers` or `cinst wormies-au-helpers`.## Create a package
To create a new package see [Creating the package updater script](https://github.com/chocolatey-community/chocolatey-au#creating-the-package-updater-script).
## Testing the package
In a package directory run: `Test-Package`. This function can be used to start testing in [chocolatey-test-environment](https://github.com/majkinetor/chocolatey-test-environment) via `Vagrant` parameter or it can test packages locally.
## Automatic package update
### Single package
Run from within the directory of the package to update that package:
cd
./update.ps1If this script is missing, the package is not automatic.
Set `$au_Force = $true` prior to script call to update the package even if no new version is found.### Multiple packages
To update all packages run `./update_all.ps1`. It accepts few options:
```powershell
./update_all.ps1 -Name a* # Update all packages which name start with letter 'a'
./update_all.ps1 -ForcedPackages 'cpu-z copyq' # Update all packages and force cpu-z and copyq
./update_all.ps1 -ForcedPackages 'copyq:1.2.3' # Update all packages but force copyq with explicit version
./update_all.ps1 -Root 'c:\packages' # Update all packages in the c:\packages folder
```The following global variables influence the execution of `update_all.ps1` script if set prior to the call:
```powershell
$au_NoPlugins = $true #Do not execute plugins
$au_Push = $false #Do not push to chocolatey
```You can also call AU method `Update-AUPackages` (alias `updateall`) on its own in the repository root. This will just run the updater for the each package without any other option from `update_all.ps1` script. For example to force update of all packages with a single command execute:
updateall -Options ([ordered]@{ Force = $true })
## Pushing To Community Repository Via Commit Message
You can force package update and push using git commit message. AppVeyor build is set up to pass arguments from the commit message to the `./update_all.ps1` script.
If commit message includes `[AU ]` message on the first line, the `forced_packages` string will be sent to the updater.
Examples:
- `[AU pkg1 pkg2]`
Force update ONLY packages `pkg1` and `pkg2`.
- `[AU pkg1:ver1 pkg2 non_existent]`
Force `pkg1` and use explicit version `ver1`, force `pkg2` and ignore `non_existent`.
To see how versions behave when package update is forced see the [force documentation](https://github.com/chocolatey-community/chocolatey-au/blob/master/README.md#force-update).
You can also push manual packages with command `[PUSH pkg1 ... pkgN]`. This works for any package anywhere in the file hierarchy and will not invoke AU updater at all.
If there are no changes in the repository use `--allow-empty` git parameter:
git commit -m '[AU copyq less:2.0]' --allow-empty
git push## Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Eric Nielsen
π
Rui Lopes
π
Paul Broadwith
π π»
Shaun Walbridge
π€
Tyler Szabo
π€ π»
Christian Schuerer-Waldheim
π π»
MathNum
π€
imgbot[bot]
π
Aelius
π»
Jim Hester
π π»
Philipp
π€
John Vandenberg
π€
Frank Kintrup
π
soul4soul
π€
Michael Weghorn
π»
James Grant
π€
Moritz 'Morty' StrΓΌbe
π€ π»
Sanshiro
π»
Zoullx
π
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!