httpie-cli/docs/packaging/windows-chocolatey
Mickaël Schoentgen 419427cfb6
Update downstream files for HTTPie 2.6.0 (#1186)
* Update Alpine package

* Add charset-normalizer deps for Alpine

It currently does not exist. We will need to add it ourselves.

* Update Gentoo package

* Update Brew formula

* Update MacPorts port

* Fix Gentoo deps

* Update examples

* Update Void Linux package

* Update Void Linux commands

* Update Chocolateur package

* Review DEbian packaging details

* Simplify Void Linux package

* Update more packages

* Update summary everywhere

* Remove temporary file

* Update Chocolatey package URL

* Updates

* Update Spack
2021-10-19 10:18:35 +02:00
..
tools Tweak the Chocolatey package installation file 2021-10-11 10:07:24 +02:00
httpie.nuspec Update downstream files for HTTPie 2.6.0 (#1186) 2021-10-19 10:18:35 +02:00
README.md Specify the API key to submit Chocolatey packages 2021-10-07 13:58:02 +02:00

HTTPie on Chocolatey

Welcome to the documentation about packaging HTTPie for Chocolatey.

  • If you do not know HTTPie, have a look here.
  • If you are looking for HTTPie installation or upgrade instructions on Chocolatey, then you can find them on that page.
  • If you are looking for technical information about the HTTPie packaging on Chocolatey, then you are in a good place.

About

This document contains technical details, where we describe how to create a patch for the latest HTTPie version for Chocolatey. We will discuss setting up the environment, installing development tools, installing and testing changes before submitting a patch downstream.

Overall process

After having successfully built and tested the package, push it:

# Replace 2.5.0 with the correct version
choco push httpie.2.5.0.nupkg -s https://push.chocolatey.org/ --api-key=API_KEY

Hacking

# Clone
git clone --depth=1 https://github.com/httpie/httpie.git
cd httpie/docs/packaging/windows-chocolatey

# Build
choco pack

# Check metadata
choco info httpie -s .

# Install
choco install httpie -y -dv -s "'.;https://community.chocolatey.org/api/v2/'"

# Test
http --version
https --version

# Remove
choco uninstall -y httpie