Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ContinuumIO/conda-recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jul 23, 2013
2 parents df22a9b + 37f43f5 commit fd4d177
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 3 deletions.
4 changes: 1 addition & 3 deletions appdirs/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ source:
fn: appdirs-1.2.0.zip
url: https://pypi.python.org/packages/source/a/appdirs/appdirs-1.2.0.zip
md5: 7bc76ee16112388a390ca0139e565d9b
# patches:
# List any patch files here
# - fix.patch
sha1: 818c8d1848cc4f5f047abfc53f059ee96b14cef0

# build:
# entry_points:
Expand Down
8 changes: 8 additions & 0 deletions pytz/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1

:: Add more build steps here, if they are necessary.

:: See
:: https://github.com/ContinuumIO/conda/blob/master/conda/builder/README.txt
:: for a list of environment variables that are set during the build process.
9 changes: 9 additions & 0 deletions pytz/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

$PYTHON setup.py install

# Add more build steps here, if they are necessary.

# See
# https://github.com/ContinuumIO/conda/blob/master/conda/builder/README.txt
# for a list of environment variables that are set during the build process.
59 changes: 59 additions & 0 deletions pytz/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package:
name: pytz
version: 2013b

source:
fn: pytz-2013b.tar.bz2
url: https://pypi.python.org/packages/source/p/pytz/pytz-2013b.tar.bz2
md5: 34f47470eedd5cd1faf6c3da2741967b
# patches:
# List any patch files here
# - fix.patch

# build:
# entry_points:
# Put any entry points (scripts to be generated automatically) here. The
# syntax is module:function. For example
#
# - pytz:main
#
# Would call pytz.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: 1

requirements:
build:
- python
# If setuptools is required to run setup.py, add distribute to the build
# requirements.
#
# - distribute

run:
- python

test:
# Python imports
imports:
- pytz

# 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

about:
home: http://pytz.sourceforge.net
license: MIT License

# See
# https://github.com/ContinuumIO/conda/blob/master/conda/builder/README.txt for
# more information about meta.yaml

0 comments on commit fd4d177

Please sign in to comment.