Skip to content

Commit

Permalink
Add billiard
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jul 22, 2013
1 parent b972012 commit 245b8ad
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
8 changes: 8 additions & 0 deletions billiard/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
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
9 changes: 9 additions & 0 deletions billiard/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
# http://docs.continuum.io/conda/build.html
# for a list of environment variables that are set during the build process.
59 changes: 59 additions & 0 deletions billiard/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package:
name: billiard
version: 2.7.3.31

source:
fn: billiard-2.7.3.31.tar.gz
url: https://pypi.python.org/packages/source/b/billiard/billiard-2.7.3.31.tar.gz
md5: 98d3237fe5b4f904bcbcb743f72bcb47
# 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
#
# - billiard:main
#
# Would call billiard.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:
- billiard

# 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://github.com/celery/billiard
license: BSD License

# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml

0 comments on commit 245b8ad

Please sign in to comment.