Skip to content

Commit

Permalink
Moved appdirs recipe to python directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mutirri committed Mar 16, 2016
1 parent f3a9b4e commit a095557
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 90 deletions.
2 changes: 0 additions & 2 deletions appdirs/bld.bat

This file was deleted.

6 changes: 0 additions & 6 deletions appdirs/build.sh

This file was deleted.

32 changes: 0 additions & 32 deletions appdirs/meta.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions python/appdirs/bld.bat
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.
7 changes: 2 additions & 5 deletions python/appdirs/build.sh
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.
57 changes: 18 additions & 39 deletions python/appdirs/meta.yaml
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

0 comments on commit a095557

Please sign in to comment.