<services>
  <!--
    Bootstrap path only.  It lets a person set the OBS package up by hand with

        osc service manualrun

    without waiting for a CoolProp release workflow to exist.

    The path CoolProp should settle on is the other one: the release workflow
    builds the tarball with dev/packaging/make-release-tarball.sh and pushes it
    to OBS with osc, so that the artifact OBS builds is byte-for-byte the one
    CI produced and tested.  See dev/packaging/README.md.

    mode="manual" keeps these from running on every commit to the OBS package,
    which would otherwise re-download the tarball on each source change.
  -->
  <service name="download_url" mode="manual">
    <param name="protocol">https</param>
    <param name="host">github.com</param>
    <param name="path">/CoolProp/CoolProp/releases/download/v8.0.1/coolprop-8.0.1.tar.gz</param>
    <param name="filename">coolprop-8.0.1.tar.gz</param>
  </service>

  <!--
    Checksum from dist/coolprop-<version>.tar.gz.sha256, which
    make-release-tarball.sh writes next to the tarball.  Update both this and
    the download path above when the version changes; verify_file fails the
    service run if they disagree, which is the point.
  -->
  <service name="verify_file" mode="manual">
    <param name="file">coolprop-8.0.1.tar.gz</param>
    <param name="verifier">sha256</param>
    <param name="checksum">0000000000000000000000000000000000000000000000000000000000000000</param>
  </service>
</services>
