From 9377b7a9d941050e9843fbd02e087e2b45f28ad6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 30 Apr 2016 19:06:49 -0400 Subject: Redo completely broken decorator recipe --- decorator/bld.bat | 3 +++ decorator/build.sh | 2 ++ decorator/meta.yaml | 24 ++++++++++++++++++++++++ decorators/bld.bat | 3 --- decorators/build.sh | 2 -- decorators/meta.yaml | 20 -------------------- 6 files changed, 29 insertions(+), 25 deletions(-) create mode 100644 decorator/bld.bat create mode 100644 decorator/build.sh create mode 100644 decorator/meta.yaml delete mode 100644 decorators/bld.bat delete mode 100644 decorators/build.sh delete mode 100644 decorators/meta.yaml diff --git a/decorator/bld.bat b/decorator/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/decorator/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/decorator/build.sh b/decorator/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/decorator/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 \ No newline at end of file diff --git a/decorator/meta.yaml b/decorator/meta.yaml new file mode 100644 index 0000000..c5082d5 --- /dev/null +++ b/decorator/meta.yaml @@ -0,0 +1,24 @@ +{% set name = 'decorator' %} +{% set version = '4.0.9' %} +{% set number = '0' %} + +about: + home: https://github.com/micheles/decorator + license: BSD + summary: Better living through Python with decorators +build: + number: {{ number }} +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + fn: {{ name }}-{{ version }}.tar.gz + md5: f12c5651ccd707e12a0abaa4f76cd69a + url: + - https://pypi.python.org/packages/source/d/decorator/{{ name }}-{{ version }}.tar.gz diff --git a/decorators/bld.bat b/decorators/bld.bat deleted file mode 100644 index b290566..0000000 --- a/decorators/bld.bat +++ /dev/null @@ -1,3 +0,0 @@ - -python setup.py install -if errorlevel 1 exit 1 \ No newline at end of file diff --git a/decorators/build.sh b/decorators/build.sh deleted file mode 100644 index 4b71885..0000000 --- a/decorators/build.sh +++ /dev/null @@ -1,2 +0,0 @@ - -python setup.py install || exit 1 \ No newline at end of file diff --git a/decorators/meta.yaml b/decorators/meta.yaml deleted file mode 100644 index 917aa4b..0000000 --- a/decorators/meta.yaml +++ /dev/null @@ -1,20 +0,0 @@ -about: - home: https://github.com/micheles/decorator - license: BSD - summary: Better living through Python with decorators -build: - number: '0' -package: - name: decorators - version: 4.0.9 -requirements: - build: - - setuptools - - python x.x - run: - - python x.x -source: - fn: decorators-4.0.9.tar.gz - md5: f12c5651ccd707e12a0abaa4f76cd69a - url: - - https://pypi.python.org/packages/source/d/decorators/decorators-4.0.9.tar.gz -- cgit