Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install minitage.recipe.du

How to install minitage.recipe.du

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install minitage.recipe.du
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
1.57
1.60Never BuiltWhy not?
1.57 Available View build log
Windows (64-bit)
1.57
1.60Never BuiltWhy not?
1.57 Available View build log
Mac OS X (10.5+)
1.57
1.60Never BuiltWhy not?
1.57 Available View build log
Linux (32-bit)
1.57
1.60Never BuiltWhy not?
1.57 Available View build log
Linux (64-bit)
1.60 Available View build log
1.57 Available View build log
 
License
BSD
Lastest release
version 1.60 on Jan 9th, 2014

Introduction

Recipe for doing simple "python setup.py build && python setup.py install --prefix" maybe inside and with (or without) the help of an underlying minitage environment.

You can browse the code on minitage's following resources:

minitage.recipe:fetch

Abstract
  • you need virtualenv and zc.buildout to run tests.
  • This recipe can be used to install python packages in a specific directory aLaDisutils way (python setup.py build && python setup.py install)
Specific options

Please look for options at : http://pypi.python.org/pypi/minitage.recipe.common#options-shared-by-all-the-recipes

  • site-packages : where to drop the builded python files
Specific hooks
  • pre_setup_hook : before python setup.py build dance is called
  • pre_install_hook : before python setup.py install dance is called
  • post_setup_hook : after python setup.py install dance is called
Let's create a buildout configuration file
>>> rmdir(tempdir)
>>> mkdir(tempdir)
>>> cd(tempdir)
>>> a = [mkdir(d) for d in ('eggs', 'develop-eggs', 'bin', 'src')]
>>> install_develop_eggs(['minitage.recipe.du'])
>>> install_eggs_from_pathes(['zc.buildout'], sys.path)
>>> touch('buildout.cfg')
>>> sh('virtualenv --no-site-packages .')
virtualenv --no-site-packages .
Using real prefix '/usr'
New python executable in ./bin/python
Installing setuptools............done.
<BLANKLINE>
<BLANKLINE>
>>> sh('bin/easy_install -U zc.buildout')
bin/easy_install -U zc.buildout...
Finished processing dependencies for zc.buildout
<BLANKLINE>
<BLANKLINE>
>>> sh('bin/buildout -o bootstrap')
bin/buildout -o bootstrap...
Initializing test env.
>>> if not os.path.exists('foo'):
...     mkdir('foo')
... else:
...     rmdir(foo)
...     mkdir('foo')
>>> touch('foo/setup.py', data="""
... from setuptools import setup
... setup(name='foo', version='1.0')
...
... """)
>>> touch('foo/toto.py', data="""
... def f():
...     print "foo"
...
... """)
>>> noecho = [os.remove(d) for d in os.listdir('.') if '.tar.gz' in d]
>>> os.chdir('foo')
>>> sh('python setup.py sdist')
p...
>>> noecho = [shutil.copy(os.path.join('dist', d), os.path.join('..', d)) for d in os.listdir('dist')]
>>> os.chdir('..')
Installing "A la python setup.py install"

You can also install directly from urls. we ll use it to check the already present distribution files in the cache.

>>> data = """
... [buildout]
... parts=ez
... [ez]
... executable = ${buildout:directory}/bin/python
... recipe = minitage.recipe.du
... url = file://${buildout:directory}/foo-1.0.tar.gz
... site-packages=${buildout:directory}/myfoo
... """
>>> touch('buildout.cfg', data=data)
>>> sh('bin/buildout -vvvvvv install ez')
b...
Installing ez.
minitage.recipe: Installing python package.
minitage.recipe: Download archive
minitage.recipe: Searching cache at ...
minitage.recipe: Using cache file in /home/kiorky/.buildout/downloads/minitage/foo-1.0.tar.gz
minitage.recipe: Unpacking in /tmp/buildout.test/__minitage__ez__tmp.
minitage.recipe: Guessing compilation directory
minitage.recipe: Setting path
minitage.recipe: Setting pkgconfigpath
minitage.recipe: Setting path
minitage.recipe: Setting path
minitage.recipe: Setting compilation flags
minitage.recipe: Running "/tmp/buildout.test/bin/python" setup.py build
running build
minitage.recipe: Setting path
minitage.recipe: Running "/tmp/buildout.test/bin/python" setup.py install --install-purelib="/tmp/buildout.test/myfoo"  --install-platlib="/tmp/buildout.test/myfoo" --prefix=/tmp/buildout.test
running install
running bdist_egg
running egg_info...
Copying foo-1.0-py2.6.egg to /tmp/buildout.test/myfoo...
Installed /tmp/buildout.test/myfoo/foo-1.0-py...egg...
<BLANKLINE>

CHANGELOG

1.60 (2012-08-21)
  • fix prefix
1.58 (2012-08-21)
  • fix installation problems with multiple parts
1.35

Spllited out from minitage.recipe

Subscribe to package updates

Last updated Jan 9th, 2014

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.