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.
Moved appdirs recipe to python directory
- Loading branch information
Showing
6 changed files
with
20 additions
and
90 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,2 @@ | ||
python setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
#!/bin/bash | ||
|
||
$PYTHON setup.py install || exit 1 | ||
mkdir -vp ${PREFIX}/bin; | ||
|
||
# Add more build steps here, if they are necessary. | ||
${PYTHON} setup.py install || exit 1; | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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 |
---|---|---|
@@ -1,53 +1,32 @@ | ||
package: | ||
name: appdirs | ||
version: 1.4.0 | ||
name: appdirs | ||
version: 1.4.0 | ||
|
||
source: | ||
fn: appdirs-1.4.0.tar.gz | ||
url: https://pypi.python.org/packages/source/a/appdirs/appdirs-1.4.0.tar.gz | ||
md5: 1d17b4c9694ab84794e228f28dc3275b | ||
git_url: https://github.com/ActiveState/appdirs | ||
git_tag: 1.4.0 | ||
|
||
build: | ||
# entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - appdirs:main | ||
# | ||
# Would call appdirs.main() | ||
|
||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
number: 0 | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
build: | ||
- distribute | ||
- python | ||
|
||
run: | ||
- python | ||
run: | ||
- distribute | ||
- python | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- appdirs | ||
imports: | ||
- appdirs | ||
|
||
# commands: | ||
# You can put test commands to be run here. Use this to test that the | ||
# entry points work. | ||
|
||
# You can also put a file called run_test.py in the recipe that will be run | ||
# at test time. | ||
|
||
# requires: | ||
# Put any test requirements here. For example | ||
# - nose | ||
#commands: | ||
# - | ||
|
||
about: | ||
home: http://github.com/ActiveState/appdirs | ||
license: MIT License | ||
home: https://github.com/ActiveState/appdirs | ||
license: MIT | ||
summary: Path manipulation program | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |