-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 489ae88
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |