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.
Merge branch 'master' of git://github.com/conda/conda-recipes
- Loading branch information
Showing
51 changed files
with
903 additions
and
273 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
|
@@ -3,13 +3,16 @@ package: | |
version: 0.5.4 | ||
|
||
source: | ||
git_url: [email protected]:discoproject/disco.git | ||
git_tag: 0.5.4 | ||
fn: disco-0.5.4.tar.gz | ||
url: https://github.com/discoproject/disco/archive/0.5.4.tar.gz | ||
sha1: 43bc8fac5d5d657a81a8d7b628d1f72f97470b6e | ||
patches: | ||
- build.patch | ||
# - no-listdir.patch | ||
# - prefix-erl.patch | ||
|
||
build: | ||
number: 2 | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
|
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,28 @@ | ||
diff --git bin/ddfscli.py bin/ddfscli.py | ||
index 3c3429a..1064af1 100755 | ||
--- bin/ddfscli.py | ||
+++ bin/ddfscli.py | ||
@@ -32,9 +32,6 @@ Run :command:`ddfs help` for information on using the command line utility. | ||
|
||
import fileinput, os, sys | ||
|
||
-if '.disco-home' in os.listdir('.'): | ||
- sys.path.append('lib') | ||
- | ||
from disco.cli import OptionParser, Program | ||
|
||
class DDFS(Program): | ||
diff --git bin/discocli.py bin/discocli.py | ||
index c191fe0..dd4e2fb 100755 | ||
--- bin/discocli.py | ||
+++ bin/discocli.py | ||
@@ -52,9 +52,6 @@ Would get the results for the last job with name containing ``WordCount``. | ||
|
||
import fileinput, os, sys | ||
|
||
-if '.disco-home' in os.listdir('.'): | ||
- sys.path.append('lib') | ||
- | ||
from disco.cli import OptionParser, Program | ||
|
||
class Disco(Program): |
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,17 @@ | ||
diff --git lib/clx/server.py lib/clx/server.py | ||
index 6182301..1a78887 100644 | ||
--- lib/clx/server.py | ||
+++ lib/clx/server.py | ||
@@ -47,7 +47,11 @@ class Server(object): | ||
raise ServerError("%s already started" % self) | ||
if self.rotate_log: | ||
self.log_rotate() | ||
- process = subprocess.Popen(args or self.args, env=self.env, **kwargs) | ||
+ cmd = args or self.args | ||
+ if cmd and cmd[0] == 'erl': | ||
+ import sys | ||
+ cmd[0] = sys.prefix + '/lib/erlang/bin/erl' | ||
+ process = subprocess.Popen(cmd, env=self.env, **kwargs) | ||
if process.wait(): | ||
raise ServerError("Failed to start %s" % self) | ||
yield '%s started' % self |
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
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
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,6 +1,6 @@ | ||
package: | ||
name: ipython-notebook | ||
version: 2.2.0 | ||
version: 2.3.1 | ||
|
||
requirements: | ||
run: | ||
|
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,6 +1,6 @@ | ||
package: | ||
name: ipython-qtconsole | ||
version: 2.2.0 | ||
version: 2.3.1 | ||
|
||
requirements: | ||
run: | ||
|
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
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,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. |
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,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. |
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,64 @@ | ||
package: | ||
name: mincss | ||
version: !!str 0.8.1 | ||
|
||
source: | ||
fn: mincss-0.8.1.tar.gz | ||
url: https://pypi.python.org/packages/source/m/mincss/mincss-0.8.1.tar.gz | ||
md5: 2917e8fe30d7cf80cc9b8353e2f2c3eb | ||
# patches: | ||
# List any patch files here | ||
# - fix.patch | ||
|
||
# build: | ||
# preserve_egg_dir: True | ||
# entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - mincss = mincss:main | ||
# | ||
# Would create an entry point called mincss that calls mincss.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 | ||
- setuptools | ||
- lxml | ||
- cssselect | ||
|
||
run: | ||
- python | ||
- lxml | ||
- cssselect | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- mincss | ||
|
||
# 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 additional test requirements here. For example | ||
# - nose | ||
|
||
about: | ||
home: http://github.com/peterbe/mincss | ||
license: BSD License | ||
summary: 'clears the junk out of your CSS' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |
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,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. |
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,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. |
Oops, something went wrong.