httpie-cli/docs/packaging/windows-chocolatey
2023-05-22 16:21:25 +02:00
..
tools Tweak the Chocolatey package installation file 2021-10-11 10:07:24 +02:00
httpie.nuspec Bump version for Chocolatey 2023-05-22 16:21:25 +02:00
README.md Single binary executables (#1330) 2022-04-14 08:11:12 -07: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, either trigger the Release on Chocolatey action to push it to the Chocolatey store or use the CLI:

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

Be aware that it might take multiple days until the release is approved, sine it goes through multiple sets of reviews (some of them are done manually).

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