From 43dcea5dc04c351cab4b78b9d7adf7e351b4e9d8 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 17 Oct 2016 19:23:13 -0400 Subject: Initial commit; add OOB packages --- threading2/bld.bat | 3 +++ threading2/build.sh | 2 ++ threading2/meta.yaml | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 threading2/bld.bat create mode 100644 threading2/build.sh create mode 100644 threading2/meta.yaml diff --git a/threading2/bld.bat b/threading2/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/threading2/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/threading2/build.sh b/threading2/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/threading2/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 \ No newline at end of file diff --git a/threading2/meta.yaml b/threading2/meta.yaml new file mode 100644 index 0000000..fc855ea --- /dev/null +++ b/threading2/meta.yaml @@ -0,0 +1,23 @@ +about: + home: https://pypi.python.org/packages/source/t/threading2 + license: BSD + summary: threading2 +build: + number: '0' +package: + name: threading2 + version: 0.2.1 +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + fn: threading2-0.2.1.tar.gz + md5: 4ffb227b9a0e1f3e2a42f69f92a47bae + url: + - https://pypi.python.org/packages/source/t/threading2/threading2-0.2.1.tar.gz +test: + imports: + - threading2 -- cgit