diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..7377af3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,8 @@ +name: CI +on: [push, pull_request] +jobs: + build-test: + uses: cygporter/workflows/.github/workflows/build-test.yml@v1 + with: + cygport_file: python-rfc6555.cygport + bootstrap_packages: cygport python3 diff --git a/python-rfc6555.cygport b/python-rfc6555.cygport new file mode 100644 index 0000000..c1d9da2 --- /dev/null +++ b/python-rfc6555.cygport @@ -0,0 +1,14 @@ +inherit python-wheel + +NAME=python-rfc6555 +VERSION=0.1.0 +RELEASE=1 +CATEGORY=Python +SUMMARY='Python RFC 6555 "Happy Eyeballs" implementation' +DESCRIPTION="Synchronous Python implementation of the Happy Eyeballs Algorithm +described in RFC 6555. Provided with a single file and dead-simple API to allow +easy vendoring and integration into other projects." +HOMEPAGE=https://github.com/sethmlarson/rfc6555 +LICENSE=Apache-2.0 + +ARCH=noarch