forked from conda-archive/conda-recipes
-
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.
Added recipe for cletus-1.0.12 package
- Loading branch information
Showing
4 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
cletus/0001-Corrected-version-from-future-of-one-dependency.patch
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,25 @@ | ||
From 969cb3c54c7cd655456a8c7a405b88a2ae6b89d8 Mon Sep 17 00:00:00 2001 | ||
From: "Kamil Kwiek (irritum)" <[email protected]> | ||
Date: Wed, 2 Mar 2016 09:32:04 +0100 | ||
Subject: [PATCH] Corrected version from future of one dependency | ||
|
||
--- | ||
requirements.txt | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git requirements.txt requirements.txt | ||
index faa4068..375cf83 100644 | ||
--- requirements.txt | ||
+++ requirements.txt | ||
@@ -2,7 +2,7 @@ PyYAML >= 3.0 | ||
appdirs >= 1.3.0 | ||
pytest >= 2.6.0 | ||
tox >= 1.8.0 | ||
-envoy >= 0.0.3 | ||
+envoy >= 0.0.2 | ||
py >= 1.4.0 | ||
validictory >= 0.9.0 | ||
|
||
-- | ||
2.0.5 | ||
|
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,2 @@ | ||
%PYTHON% setup.py install | ||
if errorlevel 1 exit 1 |
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,6 @@ | ||
#!/bin/bash | ||
|
||
mkdir -vp ${PREFIX}/bin; | ||
|
||
${PYTHON} setup.py install || exit 1; | ||
|
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,45 @@ | ||
package: | ||
name: cletus | ||
version: 1.0.12 | ||
|
||
source: | ||
git_url: https://github.com/kenfar/cletus | ||
git_tag: v1.0.12 | ||
patches: | ||
- 0001-Corrected-version-from-future-of-one-dependency.patch | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- distribute | ||
- python | ||
- pyyaml >=3.0 | ||
- appdirs >=1.3.0 | ||
- pytest >=2.6.0 | ||
- tox >=1.8.0 | ||
- envoy >=0.0.2 | ||
- py >=1.4.0 | ||
- validictory >=0.9.0 | ||
|
||
run: | ||
- distribute | ||
- python | ||
- pyyaml >=3.0 | ||
- appdirs >=1.3.0 | ||
- pytest >=2.6.0 | ||
- tox >=1.8.0 | ||
- envoy >=0.0.2 | ||
- py >=1.4.0 | ||
- validictory >=0.9.0 | ||
|
||
test: | ||
imports: | ||
- cletus | ||
|
||
about: | ||
home: https://github.com/kenfar/cletus | ||
license: BSD | ||
summary: Cletus is a library to help with write commmand line python programs. | ||
|