httpie-cli/docs/packaging/mac-ports
Mickaël Schoentgen 7989e438d2
Add documentation about our release process (#1159)
* Add documentation about our release process

* Fixes

* Add company-related tasks, enable back WIP pages

* Fix WIP links

* Add AOSC OS

* Add WIP for AOSC OS

* Tweak

* Remove maintainers email IDs

* Use GH nicknames

* Remove useless WIP for brew

* Tweaks
2021-10-06 16:45:44 +02:00
..
Portfile Add documentation about our release process (#1159) 2021-10-06 16:45:44 +02:00
README.md Add documentation about our release process (#1159) 2021-10-06 16:45:44 +02:00

HTTPie on MacPorts

Welcome to the documentation about packaging HTTPie for MacPorts.

  • If you do not know HTTPie, have a look here.
  • If you are looking for HTTPie installation or upgrade instructions on MacPorts, then you can find them on that page.
  • If you are looking for technical information about the HTTPie packaging on MacPorts, 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 MacPorts. We will discuss setting up the environment, installing development tools, installing and testing changes before submitting a patch downstream.

Overall process

Open a pull request to update the downstream file (example).

  • Here is how to calculate the size and checksums (replace 2.5.0 with the correct version):

    # Download the archive
    $ wget https://api.github.com/repos/httpie/httpie/tarball/2.5.0
    
    # Size
    $ stat --printf="%s\n" 2.5.0
    1105185
    
    # Checksums
    $ openssl dgst -rmd160 2.5.0
    RIPEMD160(2.5.0)= 88d227d52199c232c0ddf704a219d1781b1e77ee
    $ openssl dgst -sha256 2.5.0
    SHA256(2.5.0)= 00c4b7bbe7f65abe1473f37b39d9d9f8f53f44069a430ad143a404c01c2179fc
    
  • The commit message must be httpie: update to XXX.

  • The commit must be signed-off (git commit -s).

Hacking

🚧 Work in progress.