{ "info": { "author": "Mathieu Pasquet", "author_email": "kiorky@cryptelium.net", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "******************************************************************************\nRecipe for compiling and installing software with or without minitage\n******************************************************************************\n\n.. contents::\n\n=======================\nIntroduction\n=======================\n\n\n``minitage.core.common`` is an abstract recipe extendended by much of\nminitage.recipe.*\n\nThat's why many options of the descendant recipes are from there.\n\n\n======================================\nMakina Corpus sponsored software\n======================================\n|makinacom|_\n\n* `Planet Makina Corpus `_\n* `Contact us `_\n\n .. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif\n .. _makinacom: http://www.makina-corpus.com\n\n\n\n\n\n\n\n====================================\nOptions shared by all the recipes\n====================================\n\nNotes\n--------\n\n - All recipes inherit all these options, depending which you are using, those options will have an incidence on the build.\n - Useless to say that the recipes code is not difficult, and as a deployer, its your job to have a look at the code to avoid surprises.\n - If you are inside a minitage all recipes will look on your minibuild dependencies section to get things into the environment at execution time. Like feeding CFLAGS, pkgconfig, ldflags and so on.\n - All recipes look for a minitage section in your buildout file and take dependencies and eggs as minitage projects to get into the environnment too::\n\n ...\n [minitage]\n dependencies = postgresql-8.3\n eggs = py-libxslt-1.1\n\nOptions\n-------------\n * urls\n A set of urls to checkout in the form\n\n\n - The last part or the urls will be the name of your checkout dir unless you have precised the name in \"destination directory name\"\n - If you don't specify any scm_type, it will be static unless you specify it in options (see scm)\n - If you don't specify any revision, it will be not set unless you specify it in options (see scm_revision)\n - The form is a New line separated list of urls to fetcha in the following form (*the | is part of the line ;)*)::\n\n url to checkout | fetch_type | revision | destination directory name | fetcher_args\n\n Here are valid inputs ::\n\n svn://toto | svn | 666 | mydirectoryname | --ignore-externals\n svn://toto | svn | 666 | mydirectoryname\n svn://toto | svn | 666\n svn://toto | svn | | | --ignore-externals\n svn://toto | svn\n file://toto\n http://tata/toto.tgz\n\n Where::\n\n fetch_type ::= bzr | hg | git | static (for ftp://, file://, http:// and local files) | svn\n \n UNAME is a platform identifier from:\n \n - linux\n - darwin\n - freebsd\n - freebsd(6,7,8)\n - snowleopard\n - leopard\n - cygwin \n \n - executable\n python executable to use\n - url(-UNAME) (backward cmpatibility)\n url to get the source from, in the previous urls syntax\n - scm\n default scm to use (a valid minitage fetch factory to use (static, git, svn, bzr, hg).)\n defaults to static.\n - scm_revision\n default revision to checkout if scm is not static\n - md5sum\n md5sum of the checkouted source [see cmmi recipe for documentation]\n - patch-binary\n path to the patch program\n - patch-options\n options to feed the patch program with [see cmmi recipe for documentation]\n - patches\n patches to apply [see cmmi recipe for documentation]\n - patch\n A patch to apply, compatibility with zc.recipe.cmmi\n - patches-UNAME / UNAME-patches\n - patches to apply to a system or a favor of this system (linux, darwin, freebsd, freebsd, freebsd(6,7,8), snowleopard, leopard, cygwin)\n - location\n where to put the build result. (default to parts/PART_NAME)\n - cc(-UNAME)\n CC compiler to use (set env['CC'], default not set\n - cpp(-UNAME)\n CPP compiler to use (set env['CPP'], default not set\n - cplusplus(-UNAME)\n c++ compiler to use (set env['C++'], default not set\n - includes(-UNAME)\n directories to add to the include search (compatibility)\n - ldflags(-UNAME)\n LDFLAGS to set at compilation time\n - cflags(-UNAME)\n CFLAGS to give to the compiler\n - includes-dirs(-UNAME)\n Directories to add to the include paths [see cmmi recipe for documentation]\n - libraries(-UNAME)\n libraries to give to the linker eg: libiconv\n - library-dirs(-UNAME)\n Directories to add to the linker, and they will be added as -rpath too. [see cmmi recipe for documentation]\n - rpath(-UNAME)\n Directories to add as -rpath.\n - skip-flags: do not set CFLAGS/LDFLAGS/LD_RUN_PATH at all.\n - environment(-UNAME)\n a part name where we can get key/values to add to the build environment [see cmmi recipe for documentation]\n - path(-UNAME)\n line separated list of paths to append to $PATH during build\n - pkgconfigpath(-UNAME)\n line separated list of paths to append to $PKGCONFIGPATH during build [see cmmi recipe for documentation]\n - pythonpath(-UNAME)\n line separated list of paths to append to $PYTHONPATH during build\n\n - osx-target: -mmacosx-version-min setting, wanting users will know what that means ;)\n\n minitage put -mmacosx-version-min in the env. if you dont set this to 'false'\n default value on leopard is 10.5.0 and on snowleopard 10.6.0\n\n - force-osx-target\n\n force MACOSX_DEPLOYMENT_TARGET to value or default if 'true' (snowleopard (10.5) /leopard(10.6))\n\nOptions incidences\n----------------------\n\n - `minitage.recipe:cmmi`\n executable is not taken in account.\n - `minitage.recipe:fetch`\n only the download related options are used.\n - `minitage.recipe:eggs`, `minitage.recipe:wsgi`, `minitage.recipe:scripts`, `minitage.recipe:printer`\n the configure-*, and make-*, and extra_options are not used\n\nPatches\n-----------\n\n - They can be either a file or an url.\n - You have means to specify options to the patch program, like -pXXX, abuses of it.\n\n\n\n===============================================\nminitage.recipe API tests\n===============================================\n\nThe divide url function\n------------------------------\n\n - If you dont precise the directory, its the basename of the url::\n\n >>> divide_url ('http://foo/bar|svn|666||--ignore-externals')\n ('http://foo/bar', 'svn', '666', 'http.foo.bar', '--ignore-externals')\n\n - Static as a default::\n\n >>> divide_url ('')\n ('', 'static', '', '', '')\n\n - arguements can be optionnal::\n\n >>> divide_url ('http://foo/bar')\n ('http://foo/bar', 'static', '', 'http.foo.bar', '')\n\n\n\n=======================\nCHANGELOG\n=======================\n\n1.90 (2013-06-26)\n-----------------\n\n- export back to buildout executable option\n\n\n1.89 (2013-06-22)\n-----------------\n\n- osx targets fixes, handle default new mountainlion PATH mods\n\n\n1.88 (2013-06-02)\n-----------------\n\n- specific uname envs\n\n\n1.87 (2013-04-14)\n-----------------\n\n- better download handling\n\n\n1.86 (2013-03-28)\n-----------------\n\n- better cache filename guessing, again\n\n\n1.85 (2013-03-24)\n-----------------\n\n- better cache filename guessing\n\n\n1.84 (2013-02-13)\n-----------------\n\n- buildout2 compat\n\n\n1.83 (2012-09-12)\n-----------------\n\n- force no upgrade on minitage itself\n\n\n1.82 (2012-08-31)\n-----------------\n\n- syntax error bugfix\n\n\n1.81 (2012-03-24)\n-----------------\n\n- Add part/site-packages-pyver to pythonpath\n\n\n1.80 (2012-01-24)\n-----------------\n\n- darwin fix for LDFLAGS\n\n\n1.79 (2011-11-28)\n-----------------\n\n- add lion to macosx flavors\n\n\n1.78 (2011-03-31)\n-----------------------\n \n - python 2.4 retrocompatibities fixes\n - add os subrelease mecanism (cygwin2)\n - snowleopard bugfix (match kernel version startswith 10)\n - add an helper to write env files\n - fix for mercurial checkouts\n - add many per/os options\n - win32 fix\n - API fix\n - indentation fix\n - make things shut up\n - add patch flavors for darwin, now you have:\n\n * darwin : all macs\n * leopard, snowleopard for a specific one\n\n - Add extra-paths to PYTHONPATH while setting PYTHONPATH\n - Add part/site-pakckages-VER in PYTHONPATH if exists\n\n1.42\n------\n\n - API compatibility for cmmi\n\n\n1.41\n-----\n\n - splitting cmmi stuff\n\n-> 1.40\n---------\n\n - remove deprecationwarning\n\n1.36\n------\n\n - re namespacing\n\n1.35\n-----\n\n - split all recipes into singles ones.\n\n.34\n---\n\nall:\n\n - fix rst doc\n\n - add ``ldflags`` and ``ldflags`` options\n\nminitage.recipe.cmmi:\n\n - ``install-in-place`` option added and pivot on make install slightly\n modified\n - ``skip-flags`` option added\n - ``prefix`` option added\n\nminitage.recipe.fetch:\n\n - ``unpack`` option added\n - md5sum un revision for static fetcher check added\n\nminitage.recipe.printer:\n\n - remove fake eggs and develop eggs from fixed versions.\n\n-> 1.20\n---------\n\nMinitage.recipe.egg:\n\n - better errors handling\n - In particular for eggs and url, now md5 urls are preferred.\n - Also when we can't download a distribution from somewhere, we try to\n fallback to other distributions which achieve the desired requirement\n - In the same way, try to compile eggs from any other sdist fullfilling the\n requirement if an error occurs on the first found.\n\nMinitage.recipe.cmmi:\n\n - new patch selection for freebsd:\n freebsd-patches\n\n - Fix some double spaces left in compilation flags which broke some exotic\n system builders.\n\n1.14\n-----\n\n - add enrionment file generation to the scripts recipe\n\n1.13\n---------\n\n - cmmi buggy update methods\n\n1.11 - 1.12\n----------------\n\n - rescan egg direcrectories at install time because there may be new\n develop eggs or eggs installed by buildout extensions (mr.developer)\n - fix for interaction with buildout.minitagificator and\n zc.buildout.easy_install..*script\n\n\n1.-1.10\n---------\n\n - bugfix with cache and static distributions.\n\n1.8\n-------\n\n - make patches go in a personnal directory with some md5 mecanism to redownload them.\n\n1.4->1.7\n----------\n\n - x64 fixes\n - bugfix in static distribution install when you have patches to apply.\n\n1.3\n----\n\n - release uncomitted unittests updates\n\n1.2\n-------\n\n - make it compatible with zc.buildout 1.0\n\n1.1\n-----\n\n - md5 bug\n\n1.0\n------\n\n * first stable release.\n * All recipe are documented and well tested.\n * buildout.minitagificator is completed.\n * stabilized and synced with other minitage components\n * minitage.recipe:eggs has been drasticly improved in term of algorythms and speed.\n\n0.33->0.34\n-----------\n\n - Fix python executable computation\n\n0.32\n-----\n\n - Documentation and tests release\n\n0.29\n----\n\n - Fix bug in recipes initialization because of buildout auto-ordering\n\n\n0.28\n----\n\n - Add another hook to the cmmi recipe: post-download\n\n0.27\n-----\n\n - Fix an annoying bug when you are using virtualenv and a classical\n python as executable in your recipe, it may occur that sometimes, the\n virtualenv site-packages is appended to PYTHONPATH. As a fix, we now\n filter all python core lib directories and site packages that are not\n relevant to the python used by the recipe.\n\n0.26\n-----\n\n - Introduce the minitage.recipe:wsgi recipe wich wraps a paste wsgi application\n in a script eatable by mod_wsgi\n\n0.25\n------\n\n - stop lowering project_name\n\n\n0.23->0.24\n-----------\n\n - Fix small bugs in printer\n\n0.22\n-----\n\n - Introduce a new recipe : minitage.recipe:printer which prints/dumps to a\n file all versions eggs needed to achieve requirements.\n\n0.21\n-----\n\n - Fix bug in compilation directory guessing\n\n0.20\n------\n\n - Fix bug in distribution reloading\n - Better handling of pkg_resources's working set\n\n0.19\n--------\n\n - add a post build hook\n\n0.18\n-------\n\n - Change installation order\n\n0.16\n-------\n\n - Fix index and find links options\n\n0.14 -> 0.15\n-------------\n - logging output improved\n - newest mode handling\n\n0.13\n-----\n- fix static dist install\n\n\n\n0.12\n------\n\n - bugfix for zipped eggs\n\n0.11\n-----\n\n - import bugfix for minitagificator\n\n0.10\n-----------\n\n - Change some logging options\n - follow allow host option from buildout for eggs installation\n\n0.9\n-----------\n\n - Do not rely anymore on zc.buildout ez for script generation\n\n0.7 -> 0.8\n-----------\n\n - egg and scripts recipes were rewritten a lot to adapt their api to\n zc.recipe.egg\n - Common to all recipes: all arguements are now identicak to zc.recipe.cmmi\n or zc.recipe.egg\n - Dependencies resolver has been improved a lot\n - For static distribution, you can know speicify multiple urls with 'urls'\n\n\n0.6\n------\n\n - fix bug in path generation in minitage.recipe:scripts\n\n0.2 -> 0.5\n-------------\n\n - add make-options for make option in minitage.recipe.cmmi\n - multiple bugfixes\n - make things append in subprocess for environment conversation\n - add initiaiization code for generated python interpreter in\n minitage.recipe:scripts\n\n0.1\n------\n - add fetch recipe\n\n0.0.13\n-------\n - fix zip safe flag\n\n0.0.11\n-------\n - Include eggs dependencies by default\n - Modulate the script recipe to append in the PYTHONPATH all egg dependencies\n found into the local eggs cache.\n\n0.0.10\n-------\n - Add pyc regeneration feature stolen from zc.buildout\n\n0.0.9\n-------\n - minor fix for run without minitage\n - fix for long path/compilation flags\n\n0.0.8\n-------\n - minor fix for scm check outs\n\n0.0.7\n-------\n - add C compiler cflags/ldflags/makeopts customistation options\n\n0.0.6\n-------\n - Change the eggs installation way to do, now using easy_install everywhere\n Also include a buildout option to allow to include eggs dependencies (ez-dependencies-true)\n - Set the __doc__ variable in scripts to fix some scripts like bzr.\n\n0.0.3\n-------\n - fix scm choice when there are eggs and url in the same part\n\n0.0.2\n------\n - bugfix version\n - fix linking problem\n\n0.0.1\n------\n - Initial version", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://cheeseshop.python.org/pypi/minitage.recipe.common", "keywords": "development buildout recipe", "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "minitage.recipe.common", "package_url": "https://pypi.org/project/minitage.recipe.common/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/minitage.recipe.common/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://cheeseshop.python.org/pypi/minitage.recipe.common" }, "release_url": "https://pypi.org/project/minitage.recipe.common/1.90/", "requires_dist": null, "requires_python": null, "summary": "zc.buildout recipes to compile and install software or python packages and generate scripts or configuration files sponsored by Makina Corpus.", "version": "1.90" }, "last_serial": 794815, "releases": { "1.35": [ { "comment_text": "", "digests": { "md5": "574367b521a284e8634ba0d0891911be", "sha256": "389094292eb1d2a119b0ad09655006c2d10da48c0e529de000570274f2625e24" }, "downloads": -1, "filename": "minitage.recipe.common-1.35.zip", "has_sig": false, "md5_digest": "574367b521a284e8634ba0d0891911be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37643, "upload_time": "2009-08-18T12:35:29", "url": "https://files.pythonhosted.org/packages/29/3d/3e45a3154d1445a0d8b57b557d4e6f4f07c99e7eb5c0697af2d3b4bceaa1/minitage.recipe.common-1.35.zip" } ], "1.36": [ { "comment_text": "", "digests": { "md5": "036c6cec1ade17c9e9e6470915bf2e6e", "sha256": "8f15ae4c3e1c97e7eada1635200f00e0563e2fe5609323c19deab3af3008244f" }, "downloads": -1, "filename": "minitage.recipe.common-1.36.zip", "has_sig": false, "md5_digest": "036c6cec1ade17c9e9e6470915bf2e6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36169, "upload_time": "2009-08-18T18:04:38", "url": "https://files.pythonhosted.org/packages/15/00/22902913b219f04c371b890f88f5892abe125157c4d598a7d0568e5e32e7/minitage.recipe.common-1.36.zip" } ], "1.37": [ { "comment_text": "", "digests": { "md5": "1630efebc15420f17643ef2eeecc19ca", "sha256": "9682451efd044c2f1bcc564b61917e47dc56e2a69a018456148eac7591dc18a6" }, "downloads": -1, "filename": "minitage.recipe.common-1.37.zip", "has_sig": false, "md5_digest": "1630efebc15420f17643ef2eeecc19ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36235, "upload_time": "2009-08-18T18:13:08", "url": "https://files.pythonhosted.org/packages/fd/ed/4796759c661520ce8af6c7e5ef2db2042cef110bb04a045dd3adc1e06046/minitage.recipe.common-1.37.zip" } ], "1.38": [ { "comment_text": "", "digests": { "md5": "ba973915d6e6c46af794115966defd7e", "sha256": "dfc1c7ed2c4a4c45a59f1418a556746fb9929b54237a963dfeebfdbaa272318e" }, "downloads": -1, "filename": "minitage.recipe.common-1.38.zip", "has_sig": false, "md5_digest": "ba973915d6e6c46af794115966defd7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36238, "upload_time": "2009-08-18T18:25:08", "url": "https://files.pythonhosted.org/packages/1f/88/a8a90406dd9503aa0702aa99b8cd8c018abc2f3be30dce21eeafe101ae72/minitage.recipe.common-1.38.zip" } ], "1.39": [ { "comment_text": "", "digests": { "md5": "7f829a9fa24a911c513ddaab4bee3455", "sha256": "26e03a3303ebd870a64b34d9e7c506527322731454204df772e675a00b910d1b" }, "downloads": -1, "filename": "minitage.recipe.common-1.39.zip", "has_sig": false, "md5_digest": "7f829a9fa24a911c513ddaab4bee3455", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36231, "upload_time": "2009-08-18T18:26:30", "url": "https://files.pythonhosted.org/packages/b7/e5/e3b9e2b835b1aab83a6d8ce285ba76966f67275af7d6c1b2ad503e686378/minitage.recipe.common-1.39.zip" } ], "1.40": [ { "comment_text": "", "digests": { "md5": "ba812d8a020b9be9590f9a14220b2579", "sha256": "55140dc1ac08fb47c046b694b75acb33a556b3e982591e5ba0d8649be7eb9a89" }, "downloads": -1, "filename": "minitage.recipe.common-1.40.zip", "has_sig": false, "md5_digest": "ba812d8a020b9be9590f9a14220b2579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36234, "upload_time": "2009-08-18T18:28:22", "url": "https://files.pythonhosted.org/packages/7c/e8/4f2cae8547e3399c0d463575246cde021574f9d1653a1bbcee584ebd9d7b/minitage.recipe.common-1.40.zip" } ], "1.41": [ { "comment_text": "", "digests": { "md5": "0e5c1c3cd7aa8739d2899b5f7289254e", "sha256": "aacf55ce94c412e6b84df47532abcfe25896edef5c55e03d47c0395841b6a237" }, "downloads": -1, "filename": "minitage.recipe.common-1.41.zip", "has_sig": false, "md5_digest": "0e5c1c3cd7aa8739d2899b5f7289254e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34589, "upload_time": "2009-08-18T18:48:42", "url": "https://files.pythonhosted.org/packages/8b/f8/8b6eaddcb0eead0e4f9b7b3827ed157ff8577c062ca464d05fd89762bf15/minitage.recipe.common-1.41.zip" } ], "1.42": [ { "comment_text": "", "digests": { "md5": "41f88bc285e07a94b10bddc2ff3791d8", "sha256": "2581ce80dc49361f3ac5d3d13e2ed5f41e33f5a0e5259d6c48d87ae65a7f4e83" }, "downloads": -1, "filename": "minitage.recipe.common-1.42.zip", "has_sig": false, "md5_digest": "41f88bc285e07a94b10bddc2ff3791d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34640, "upload_time": "2009-08-18T18:58:27", "url": "https://files.pythonhosted.org/packages/22/e9/3149f00ced43616804ce0daa05d0817591b5caa4cd431d81c737f816a480/minitage.recipe.common-1.42.zip" } ], "1.43": [ { "comment_text": "", "digests": { "md5": "bea52bf235e6952b37033557fb6a2221", "sha256": "e9158c64ab87def9cb654dfbaf315250cd187b9907d1f7f309e2b59011759092" }, "downloads": -1, "filename": "minitage.recipe.common-1.43.zip", "has_sig": false, "md5_digest": "bea52bf235e6952b37033557fb6a2221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35045, "upload_time": "2009-08-18T19:34:32", "url": "https://files.pythonhosted.org/packages/36/67/8df0c8b2464bfbcc43dcfb3d7a3c8de261ac755c92c7d0b6520c399f8618/minitage.recipe.common-1.43.zip" } ], "1.44": [ { "comment_text": "", "digests": { "md5": "a48cc0cc3a633b97ca79ba4d5677d34c", "sha256": "ac3412ab4c2da21dee2c22d287d38021cbd933ef1a1609c2a26abb334d29d49f" }, "downloads": -1, "filename": "minitage.recipe.common-1.44.zip", "has_sig": false, "md5_digest": "a48cc0cc3a633b97ca79ba4d5677d34c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35060, "upload_time": "2009-08-19T22:23:48", "url": "https://files.pythonhosted.org/packages/92/ec/ac6f4cb6809f14a6628c21cfea40d5e3b85d1e9a27348f99039dab596eed/minitage.recipe.common-1.44.zip" } ], "1.45": [ { "comment_text": "", "digests": { "md5": "8d8daa2729a0778d2fde324efc00d305", "sha256": "ce3faf53a21630b078ed09d02f9e874c9328e7864fd31d25fad314feb79229d0" }, "downloads": -1, "filename": "minitage.recipe.common-1.45.zip", "has_sig": false, "md5_digest": "8d8daa2729a0778d2fde324efc00d305", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35094, "upload_time": "2009-09-09T11:06:53", "url": "https://files.pythonhosted.org/packages/fc/01/3ce759a8f2fc4777ae050237d46e2e2dd51a2a3cb6bceb386c049e4f8e5d/minitage.recipe.common-1.45.zip" } ], "1.46": [ { "comment_text": "", "digests": { "md5": "43d35d5d96ed98ed3572d933b40dacab", "sha256": "1786660cee6f738903e4c7ab701c4bd8d469bb9ba8c17f84a76d41d994d770d7" }, "downloads": -1, "filename": "minitage.recipe.common-1.46.zip", "has_sig": false, "md5_digest": "43d35d5d96ed98ed3572d933b40dacab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36848, "upload_time": "2009-09-30T20:58:26", "url": "https://files.pythonhosted.org/packages/91/3b/34a1668cde794484201f5c25e8ce5c17d369a1c70201ec7a48a081373a74/minitage.recipe.common-1.46.zip" } ], "1.47": [ { "comment_text": "", "digests": { "md5": "b8deb9aca2b45d5fbce820545a490c54", "sha256": "8690673fdaf1fe6320b6db927de84e891793cc54b5ef6efe571681835d2add47" }, "downloads": -1, "filename": "minitage.recipe.common-1.47.zip", "has_sig": false, "md5_digest": "b8deb9aca2b45d5fbce820545a490c54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36946, "upload_time": "2009-10-01T00:57:19", "url": "https://files.pythonhosted.org/packages/73/01/7270c56c82310cac7b6c506220529c5fe358dfe3c55e21bb29f90c55f9b1/minitage.recipe.common-1.47.zip" } ], "1.48": [ { "comment_text": "", "digests": { "md5": "406e68575e9c1b424bf1f71c704296e8", "sha256": "60788bbcdc05acd979733b7f70fad6e5595d34f25855fe490dee9c4c43a83cb0" }, "downloads": -1, "filename": "minitage.recipe.common-1.48.zip", "has_sig": false, "md5_digest": "406e68575e9c1b424bf1f71c704296e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37397, "upload_time": "2009-10-02T13:55:12", "url": "https://files.pythonhosted.org/packages/0b/03/96c4073b82d243723a448a14e17e6a98e2b12ea05b03221d1e9b0f10720f/minitage.recipe.common-1.48.zip" } ], "1.49": [ { "comment_text": "", "digests": { "md5": "e70387a3ae82b755560503d544f6da22", "sha256": "e76ba3164bf3a3f90760c93d768dfd02584925d0f6fe85505df408ad188a78a7" }, "downloads": -1, "filename": "minitage.recipe.common-1.49.zip", "has_sig": false, "md5_digest": "e70387a3ae82b755560503d544f6da22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37389, "upload_time": "2009-10-02T13:57:17", "url": "https://files.pythonhosted.org/packages/5e/9b/055edffade1a80af703e4a974f340a6c6dee1d6603f40abfd384410c13b4/minitage.recipe.common-1.49.zip" } ], "1.50": [ { "comment_text": "", "digests": { "md5": "a990ef22db2cd84d2be5d0267afbce6a", "sha256": "6ec0d8f0dd836f2b254d09beca03d68da6c42740ac02aab0d5c588a96007e489" }, "downloads": -1, "filename": "minitage.recipe.common-1.50.zip", "has_sig": false, "md5_digest": "a990ef22db2cd84d2be5d0267afbce6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38089, "upload_time": "2009-10-03T03:21:08", "url": "https://files.pythonhosted.org/packages/a1/6f/a4602c53a61cf100e4b2898dedc194fada0c57e18a477c643aa16bd10a42/minitage.recipe.common-1.50.zip" } ], "1.51": [ { "comment_text": "", "digests": { "md5": "fee3c78119ab06b967216b85fc3e45c1", "sha256": "1641e501e28875a35537134e8cf2d1ff15bcaa578df255aedd84fd91dbf39698" }, "downloads": -1, "filename": "minitage.recipe.common-1.51.zip", "has_sig": false, "md5_digest": "fee3c78119ab06b967216b85fc3e45c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38090, "upload_time": "2009-10-08T00:17:00", "url": "https://files.pythonhosted.org/packages/70/1d/c347a891ed975eac42129493dbf265025980aba6a0b6df66371373071191/minitage.recipe.common-1.51.zip" } ], "1.52": [ { "comment_text": "", "digests": { "md5": "c553fc2c79c4ca9c038e0a3a660c926f", "sha256": "4ff9870fe3ee4f9ea499ceae7bf55abfe562fc68c942ba6906e34845c0ba439d" }, "downloads": -1, "filename": "minitage.recipe.common-1.52.zip", "has_sig": false, "md5_digest": "c553fc2c79c4ca9c038e0a3a660c926f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38129, "upload_time": "2009-11-19T12:42:16", "url": "https://files.pythonhosted.org/packages/b7/4d/c0dc04d0b873da83417c7cb178b575a6e032bd84db4daecef9924c010213/minitage.recipe.common-1.52.zip" } ], "1.53": [ { "comment_text": "", "digests": { "md5": "1877681d9c7ccd547fe9c03910be2434", "sha256": "5e7837927f29592510c46ee74de094e521c414517eb023cbdb4f533c68b3acbd" }, "downloads": -1, "filename": "minitage.recipe.common-1.53.zip", "has_sig": false, "md5_digest": "1877681d9c7ccd547fe9c03910be2434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38130, "upload_time": "2009-11-19T13:02:41", "url": "https://files.pythonhosted.org/packages/a5/f9/7ed8de0234c6a6916781569d5a5e15fd6590f5e5d6555112c15471597138/minitage.recipe.common-1.53.zip" } ], "1.54": [ { "comment_text": "", "digests": { "md5": "527c54845339575751f08bde6ccc5ccf", "sha256": "a51f4156805715e76483bbb10cf6d5e9cecbce9ea127e386523b61f70b7eab2a" }, "downloads": -1, "filename": "minitage.recipe.common-1.54.zip", "has_sig": false, "md5_digest": "527c54845339575751f08bde6ccc5ccf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38188, "upload_time": "2009-11-19T23:00:11", "url": "https://files.pythonhosted.org/packages/9c/5f/69d5e01dd80fb7d4c96296bf2012473e0270446606993ad93f1393b4f719/minitage.recipe.common-1.54.zip" } ], "1.55": [ { "comment_text": "", "digests": { "md5": "708d3fdbbfffefe1544d9f742672e167", "sha256": "2dec372d67d6391e3959ec2f2a6ed870c0a02a0b49c0c21e7e1b9d9335591575" }, "downloads": -1, "filename": "minitage.recipe.common-1.55.zip", "has_sig": false, "md5_digest": "708d3fdbbfffefe1544d9f742672e167", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37131, "upload_time": "2009-11-19T23:40:14", "url": "https://files.pythonhosted.org/packages/49/d6/3cc3d700f6e0a6a1616f7d3119b3d39e763ebfeb3db5a1ec276e69549de5/minitage.recipe.common-1.55.zip" } ], "1.56": [ { "comment_text": "", "digests": { "md5": "e4098cc34ca595db68d239ce78564afe", "sha256": "9672d6a99ae8dc63f36ed1cdcae98be6a10a75cf822bcace04cdef7da50a8846" }, "downloads": -1, "filename": "minitage.recipe.common-1.56.zip", "has_sig": false, "md5_digest": "e4098cc34ca595db68d239ce78564afe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37123, "upload_time": "2009-11-20T09:23:24", "url": "https://files.pythonhosted.org/packages/96/99/d579529ed95b46b10e8aacf83bd790191a834b759c214af7618366795af0/minitage.recipe.common-1.56.zip" } ], "1.57": [ { "comment_text": "", "digests": { "md5": "4d58143dc8cebe524914dea097cb1d3a", "sha256": "9d9edc4f37b6717f7545ed350b8966b2eb28471c3ee54123747c06f34e680d22" }, "downloads": -1, "filename": "minitage.recipe.common-1.57.zip", "has_sig": false, "md5_digest": "4d58143dc8cebe524914dea097cb1d3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37350, "upload_time": "2009-11-21T23:05:51", "url": "https://files.pythonhosted.org/packages/ad/a5/5aebaa3537e97fe88b50e40d9b914c05372109e9098729f3e6ffd6d3f36f/minitage.recipe.common-1.57.zip" } ], "1.58": [ { "comment_text": "", "digests": { "md5": "b1d9fbce4e80182bbd6cb91d82d04794", "sha256": "44a6b0778697cce14ee7d9ae122554cd76d38a257bff071c8f8fe22ee5a6c4fa" }, "downloads": -1, "filename": "minitage.recipe.common-1.58.zip", "has_sig": false, "md5_digest": "b1d9fbce4e80182bbd6cb91d82d04794", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37899, "upload_time": "2009-11-24T15:29:19", "url": "https://files.pythonhosted.org/packages/14/27/d4a7e1777dac0e21ccedfc4af4b50a8ca32ad75140c8e39ee191a8758fbd/minitage.recipe.common-1.58.zip" } ], "1.59": [ { "comment_text": "", "digests": { "md5": "2c1bf5754cf72a454773345245b65e27", "sha256": "aa245966e0bcda85ef6dd0b737842cee64ca0d9b63cbaad7f9e3a81de02769df" }, "downloads": -1, "filename": "minitage.recipe.common-1.59.zip", "has_sig": false, "md5_digest": "2c1bf5754cf72a454773345245b65e27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39315, "upload_time": "2009-11-29T15:29:17", "url": "https://files.pythonhosted.org/packages/7b/4b/ca91c8e90947f5efe69fd0c870e54dc1ad726d99f01258af919e742924e0/minitage.recipe.common-1.59.zip" } ], "1.60": [ { "comment_text": "", "digests": { "md5": "e93c44c46b8ea9eecb8d5dfcd7ee54ee", "sha256": "225df102e4dd37c4eec92bd6276ca633a162992bfb42eccad41895e2073b914d" }, "downloads": -1, "filename": "minitage.recipe.common-1.60.zip", "has_sig": false, "md5_digest": "e93c44c46b8ea9eecb8d5dfcd7ee54ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39479, "upload_time": "2009-11-30T11:29:41", "url": "https://files.pythonhosted.org/packages/27/45/6aba68c89e9e3afe1b3e5d35786501078422c90f4649865781a187267d3a/minitage.recipe.common-1.60.zip" } ], "1.61": [ { "comment_text": "", "digests": { "md5": "cd365f0d5e077161225713f985c8dffe", "sha256": "ca2e5d7644b8782d12e1d0a18cee2113698638abccdaea99e277602b2dd37713" }, "downloads": -1, "filename": "minitage.recipe.common-1.61.zip", "has_sig": false, "md5_digest": "cd365f0d5e077161225713f985c8dffe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39696, "upload_time": "2009-11-30T14:06:57", "url": "https://files.pythonhosted.org/packages/13/1a/db59ae5ecec680b7eaffd41f5cea783ef1328cd8e44740ab865e4dcf9b96/minitage.recipe.common-1.61.zip" } ], "1.62": [ { "comment_text": "", "digests": { "md5": "734e083f6cdde6d8dcb188b88189d938", "sha256": "659a606825a361351b507205c1e2906223ef0e537b1545f6f2db31519d6f22fa" }, "downloads": -1, "filename": "minitage.recipe.common-1.62.zip", "has_sig": false, "md5_digest": "734e083f6cdde6d8dcb188b88189d938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39696, "upload_time": "2009-11-30T17:47:45", "url": "https://files.pythonhosted.org/packages/64/49/4a5400eb3aeb4a728c33a73ae23d2bf0df831dbc52cffc08e26e21028e34/minitage.recipe.common-1.62.zip" } ], "1.63": [ { "comment_text": "", "digests": { "md5": "0fc300d13668d3caa8dea631b2b19ae7", "sha256": "4ea8bfc2f33a1c38edfee142fa26e62833faae87ca1db1dafe7d3dc9f10d9828" }, "downloads": -1, "filename": "minitage.recipe.common-1.63.zip", "has_sig": false, "md5_digest": "0fc300d13668d3caa8dea631b2b19ae7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39762, "upload_time": "2009-12-01T19:41:06", "url": "https://files.pythonhosted.org/packages/6a/8b/bf9e40a2fc17dd6b7a228246ca22be5f6561771f35ba1a71ca698bc0f551/minitage.recipe.common-1.63.zip" } ], "1.64": [ { "comment_text": "", "digests": { "md5": "90d541b7e86b4a1e62687e5e6bad5c16", "sha256": "45931141aca7375022f76ef11fa6c8867906a835044731853df6a68a26304969" }, "downloads": -1, "filename": "minitage.recipe.common-1.64.zip", "has_sig": false, "md5_digest": "90d541b7e86b4a1e62687e5e6bad5c16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39757, "upload_time": "2009-12-03T11:26:13", "url": "https://files.pythonhosted.org/packages/03/0a/d80435f75961adb12e7eed210f1e0720622ac11974b2c77173b8d5ddd95e/minitage.recipe.common-1.64.zip" } ], "1.65": [ { "comment_text": "", "digests": { "md5": "53dc4a4326dcd982bf0f994f57505c5a", "sha256": "38f8645faa9026af8ca07d7fd69a489cec50777b6a3582f7d7c1fc8775353d09" }, "downloads": -1, "filename": "minitage.recipe.common-1.65.zip", "has_sig": false, "md5_digest": "53dc4a4326dcd982bf0f994f57505c5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39822, "upload_time": "2009-12-06T21:21:52", "url": "https://files.pythonhosted.org/packages/e8/11/462baaeaaa18c3596c985c093b9647fdcf53452fd82049c08ce49cf67cba/minitage.recipe.common-1.65.zip" } ], "1.66": [ { "comment_text": "", "digests": { "md5": "89530a3594c5c38f3c6a97edd8c41265", "sha256": "981a1b6b3ec322e814606fff5b903adcb4641332537117ed17af8654e7d64d9b" }, "downloads": -1, "filename": "minitage.recipe.common-1.66.zip", "has_sig": false, "md5_digest": "89530a3594c5c38f3c6a97edd8c41265", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39839, "upload_time": "2010-01-01T16:32:13", "url": "https://files.pythonhosted.org/packages/09/5a/bddcb92fdb6a546943bda09c0bf0e31048776d7936f0549a14ac8ac30b0c/minitage.recipe.common-1.66.zip" } ], "1.67": [ { "comment_text": "", "digests": { "md5": "fa4c6947c91c82d8a18a3f506ce7c44a", "sha256": "c967f92fadaed62bf0498809b14fcf372dca235d505b66c054b3adb85d2d6a64" }, "downloads": -1, "filename": "minitage.recipe.common-1.67.zip", "has_sig": false, "md5_digest": "fa4c6947c91c82d8a18a3f506ce7c44a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39996, "upload_time": "2010-01-04T10:10:06", "url": "https://files.pythonhosted.org/packages/f2/aa/b55615de76d4406f670dc090483b24a47003998b2ab0391567ce69abd6c0/minitage.recipe.common-1.67.zip" } ], "1.68": [ { "comment_text": "", "digests": { "md5": "1f3a6a07971e3bb0d517ad66e5823570", "sha256": "d458d500293047f0eb7f2baedd76d1db140033049420b5575929894e5aa4d05c" }, "downloads": -1, "filename": "minitage.recipe.common-1.68.zip", "has_sig": false, "md5_digest": "1f3a6a07971e3bb0d517ad66e5823570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40042, "upload_time": "2010-01-11T16:21:13", "url": "https://files.pythonhosted.org/packages/39/69/aeb5f65f000b9b98904df1d9e05bb90fb437546981f06c2dc8fb8ba8a024/minitage.recipe.common-1.68.zip" } ], "1.69": [ { "comment_text": "", "digests": { "md5": "937cc3fd988a8bd2a85f1860187c1f9d", "sha256": "7418297743c13008b39cfae71ebaa521b745ff2a21dcba580dbcc69a7c1538dc" }, "downloads": -1, "filename": "minitage.recipe.common-1.69.zip", "has_sig": false, "md5_digest": "937cc3fd988a8bd2a85f1860187c1f9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40122, "upload_time": "2010-02-09T15:06:23", "url": "https://files.pythonhosted.org/packages/73/64/12cd0f0113abd0079deea0dfff013be1cafbf9bacaaf00868d9da8d56267/minitage.recipe.common-1.69.zip" } ], "1.70": [ { "comment_text": "", "digests": { "md5": "11d322aa834a1476714fefd009ab0bb2", "sha256": "d888b3ff27ff25e5f727e4fe5a07298ea26118061ab8ce3812776ca486a1e3b3" }, "downloads": -1, "filename": "minitage.recipe.common-1.70.zip", "has_sig": false, "md5_digest": "11d322aa834a1476714fefd009ab0bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40086, "upload_time": "2010-02-15T15:57:29", "url": "https://files.pythonhosted.org/packages/e1/66/4844f50fab84f6b2bbfd6bfc902729437e6d58339cb817aeaaff0bc5af71/minitage.recipe.common-1.70.zip" } ], "1.72": [ { "comment_text": "", "digests": { "md5": "6858a19d6b5e5a83543bfe3842e65754", "sha256": "cfabdb586fb14d602c258162ad66eec7ffcad4219f88a79ef031c3d48804e37b" }, "downloads": -1, "filename": "minitage.recipe.common-1.72.zip", "has_sig": false, "md5_digest": "6858a19d6b5e5a83543bfe3842e65754", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40391, "upload_time": "2010-04-06T10:58:54", "url": "https://files.pythonhosted.org/packages/b7/d7/ebbea1c94354c58991f6babb1b9f660b1c1b04a99551c4985a379140bdf2/minitage.recipe.common-1.72.zip" } ], "1.73": [ { "comment_text": "", "digests": { "md5": "c832f9829e2a9905ecf2be300c53c603", "sha256": "8651f4c2006d3e53b6f0059ccbff5a1db33b43a673fa30085952871d3e3eaa24" }, "downloads": -1, "filename": "minitage.recipe.common-1.73.zip", "has_sig": false, "md5_digest": "c832f9829e2a9905ecf2be300c53c603", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40847, "upload_time": "2010-10-08T19:43:03", "url": "https://files.pythonhosted.org/packages/88/71/82da1147ec930be607ba165f79f3f3b13ea956e8b0bb54dab78f6614f5c8/minitage.recipe.common-1.73.zip" } ], "1.75": [ { "comment_text": "", "digests": { "md5": "90c42bc40076f69199d8f2a9985e1374", "sha256": "cc263d269ddd8059b0a3268c512c08590db8cb484bc70a4419d661141bf89e83" }, "downloads": -1, "filename": "minitage.recipe.common-1.75.zip", "has_sig": false, "md5_digest": "90c42bc40076f69199d8f2a9985e1374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40847, "upload_time": "2010-10-08T19:43:43", "url": "https://files.pythonhosted.org/packages/bd/c7/487080e8d682deca532029f9beab6eb32be3f86e38ccb147f535c64de7f4/minitage.recipe.common-1.75.zip" } ], "1.76": [ { "comment_text": "", "digests": { "md5": "c6e647bfeeb3c3007495b6879cb13355", "sha256": "0ef7c10c569ff6e56ec37d28fd4639fc70ac330610d84c4caec297c77a36d92f" }, "downloads": -1, "filename": "minitage.recipe.common-1.76.zip", "has_sig": false, "md5_digest": "c6e647bfeeb3c3007495b6879cb13355", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40807, "upload_time": "2010-10-12T11:12:39", "url": "https://files.pythonhosted.org/packages/a5/c0/7712964530d7474f5691bca41dad0fa88232c97eec0fd740ab56f0e2c0e7/minitage.recipe.common-1.76.zip" } ], "1.77": [ { "comment_text": "", "digests": { "md5": "920d8cbedc4dc644691889024659b7c0", "sha256": "8f561e72025c283605e98b06b29d35e692b0b35ef1dfe63762db0c0f58aa4912" }, "downloads": -1, "filename": "minitage.recipe.common-1.77.zip", "has_sig": false, "md5_digest": "920d8cbedc4dc644691889024659b7c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40820, "upload_time": "2010-11-02T17:02:21", "url": "https://files.pythonhosted.org/packages/1c/f9/b42047640b60db1372bcef508a37b88c6d21d1ac0f4c748cb84322f3df2e/minitage.recipe.common-1.77.zip" } ], "1.78": [ { "comment_text": "", "digests": { "md5": "81d5258bf449cf6e332db51db32326e7", "sha256": "de636455327068cecb3e18467d731632e2e70e3ba60b0eb60c97d43923a2b5c6" }, "downloads": -1, "filename": "minitage.recipe.common-1.78.tar.gz", "has_sig": false, "md5_digest": "81d5258bf449cf6e332db51db32326e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26605, "upload_time": "2011-03-31T20:07:17", "url": "https://files.pythonhosted.org/packages/66/a2/2f403ce994c82172d39c9f770f7b7d8ad6c9c260dbf67610dc75d31dfb00/minitage.recipe.common-1.78.tar.gz" } ], "1.79": [ { "comment_text": "", "digests": { "md5": "d735162709cd3cfdd43b968030c65eb4", "sha256": "c09b7541ffe050cd2c70ef2dfe19872e03aad984672ac1a71650d77b49751b6c" }, "downloads": -1, "filename": "minitage.recipe.common-1.79.tar.gz", "has_sig": false, "md5_digest": "d735162709cd3cfdd43b968030c65eb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27419, "upload_time": "2011-11-28T10:11:35", "url": "https://files.pythonhosted.org/packages/4d/85/907a4330ec6fae2fc20fc85a96f749c6c8deb7ec4d43bab86d4cd7d2c026/minitage.recipe.common-1.79.tar.gz" } ], "1.80": [ { "comment_text": "", "digests": { "md5": "f3cc7f5cb92d6703a7de3e97959ede20", "sha256": "511cbd1db16fb6a938eabd926ba4e7abfdbfcf29936994a444ff35e73c80b093" }, "downloads": -1, "filename": "minitage.recipe.common-1.80.tar.gz", "has_sig": false, "md5_digest": "f3cc7f5cb92d6703a7de3e97959ede20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27473, "upload_time": "2012-01-24T11:52:17", "url": "https://files.pythonhosted.org/packages/37/97/e9fba81c8c7663b8328a92de48399ab02fa8d8e1b160bc3c3aef7ac00beb/minitage.recipe.common-1.80.tar.gz" } ], "1.81": [ { "comment_text": "", "digests": { "md5": "3ee7ff4b3a5baaef17527d483618757c", "sha256": "7f19ac58c90202bdb9bc5cd5fbee01d291f1bb44cc6963702d234eb0778844c5" }, "downloads": -1, "filename": "minitage.recipe.common-1.81.zip", "has_sig": false, "md5_digest": "3ee7ff4b3a5baaef17527d483618757c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41224, "upload_time": "2012-03-24T18:31:57", "url": "https://files.pythonhosted.org/packages/9e/23/c7ff0ce2cae5766da2a751cef11b1886631e6579a8ba9788cb4b29532f14/minitage.recipe.common-1.81.zip" } ], "1.82": [ { "comment_text": "", "digests": { "md5": "7a53dc2b5f4bed274d361b352f0c7f62", "sha256": "3501f5ce4dc8558ed0297347072c8321d87bcb653fc55d6555b6e6047b292200" }, "downloads": -1, "filename": "minitage.recipe.common-1.82.zip", "has_sig": false, "md5_digest": "7a53dc2b5f4bed274d361b352f0c7f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41286, "upload_time": "2012-08-31T13:32:10", "url": "https://files.pythonhosted.org/packages/f5/d8/fb3f2d49b6a950d675c355cdbb1f17e220cc5cbae7fcb52cd37ebb807a50/minitage.recipe.common-1.82.zip" } ], "1.83": [ { "comment_text": "", "digests": { "md5": "ca6b68138c9ba798ffb842ab608520f4", "sha256": "4b34963fe2e3e5c288016f68732769344e27a49a227f2959e03ca9de39084b5f" }, "downloads": -1, "filename": "minitage.recipe.common-1.83.zip", "has_sig": false, "md5_digest": "ca6b68138c9ba798ffb842ab608520f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41385, "upload_time": "2012-09-12T11:06:47", "url": "https://files.pythonhosted.org/packages/be/6a/f73b775cb4ceecf76fb2efcbdefe65cd88f92f9f25b1d11b4cc38dba11ed/minitage.recipe.common-1.83.zip" } ], "1.84": [ { "comment_text": "", "digests": { "md5": "3856e8c681cfc512ee91d01b05c18493", "sha256": "4b16d5acce1a31ddf4f44b3d991fa35d5458c143169229851efa0d9e63c0f41b" }, "downloads": -1, "filename": "minitage.recipe.common-1.84.zip", "has_sig": false, "md5_digest": "3856e8c681cfc512ee91d01b05c18493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39533, "upload_time": "2013-02-13T19:16:47", "url": "https://files.pythonhosted.org/packages/2e/82/948188fef5d3811902de92379a7d1f4a04115cf47d096f1df9de51514409/minitage.recipe.common-1.84.zip" } ], "1.85": [ { "comment_text": "", "digests": { "md5": "2b1a0dfb1e3fe82097f5fb1a898606a3", "sha256": "5da1e6ba99dd4defc187a40079ed3e1c4dc462b197ecf95214520e0fedd4da20" }, "downloads": -1, "filename": "minitage.recipe.common-1.85.zip", "has_sig": false, "md5_digest": "2b1a0dfb1e3fe82097f5fb1a898606a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39681, "upload_time": "2013-03-24T20:36:38", "url": "https://files.pythonhosted.org/packages/69/89/9b871762d53cb6335cce18f527a6c9fbfda79fc110209c081edd051f3cec/minitage.recipe.common-1.85.zip" } ], "1.86": [ { "comment_text": "", "digests": { "md5": "5a4b92ba01aa64cfd359be9fb7df6e18", "sha256": "d3438d69d44126204a62f9bea5f28bf74b0f74573628907c556cfb0eb03978ea" }, "downloads": -1, "filename": "minitage.recipe.common-1.86.zip", "has_sig": false, "md5_digest": "5a4b92ba01aa64cfd359be9fb7df6e18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39733, "upload_time": "2013-03-28T22:00:13", "url": "https://files.pythonhosted.org/packages/98/a8/9b580432cf28964bfab5f3c57b74953f6811048d4deb9cb8ccaf72ec07b9/minitage.recipe.common-1.86.zip" } ], "1.87": [ { "comment_text": "", "digests": { "md5": "5c4190c04ea9d3f6763176141e901648", "sha256": "9f24260846eb8d37ca97a4f434868b676f0d285a0fb9481d03416b4c9190d81f" }, "downloads": -1, "filename": "minitage.recipe.common-1.87.zip", "has_sig": false, "md5_digest": "5c4190c04ea9d3f6763176141e901648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40119, "upload_time": "2013-04-14T11:23:38", "url": "https://files.pythonhosted.org/packages/07/ef/82dcaa2dffe465f6d3c70b8a2c7cf8fdc626cfed1b1347adbc962c527420/minitage.recipe.common-1.87.zip" } ], "1.88": [ { "comment_text": "", "digests": { "md5": "f820b82209794a87b2e92307de80a47c", "sha256": "793256b83718cd767c9da0b056a109700f9b7bad52c7984753cfdb010563865f" }, "downloads": -1, "filename": "minitage.recipe.common-1.88.zip", "has_sig": false, "md5_digest": "f820b82209794a87b2e92307de80a47c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40199, "upload_time": "2013-06-02T00:06:51", "url": "https://files.pythonhosted.org/packages/43/7f/fb5810adb7fa4a96b1da8a5d41e8165c7821ea719b02c5f76cdaf9b5a0ed/minitage.recipe.common-1.88.zip" } ], "1.89": [ { "comment_text": "", "digests": { "md5": "9ffd48182ecaef170231266761e86822", "sha256": "ffa3d9db2ebb392b7a000fb0047658ef8940bf187b2afd835d100574e495b7fb" }, "downloads": -1, "filename": "minitage.recipe.common-1.89.zip", "has_sig": false, "md5_digest": "9ffd48182ecaef170231266761e86822", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40494, "upload_time": "2013-06-22T17:28:32", "url": "https://files.pythonhosted.org/packages/0b/89/cb17e32089c94188c3cbd694ae9dd49c01b7709867aa184eae578ad91c91/minitage.recipe.common-1.89.zip" } ], "1.90": [ { "comment_text": "", "digests": { "md5": "d43ae5e58480f19b0ea0f1d7c554e888", "sha256": "5d0bd8cab5af3d75dd7e4faf775f1317f2c8d09b6075f0e995188bed142978ec" }, "downloads": -1, "filename": "minitage.recipe.common-1.90.zip", "has_sig": false, "md5_digest": "d43ae5e58480f19b0ea0f1d7c554e888", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40584, "upload_time": "2013-06-26T14:41:06", "url": "https://files.pythonhosted.org/packages/be/08/81d4a34fce2e95dc1956f8fc6f0618edad40c7c90788507d848be40d78f3/minitage.recipe.common-1.90.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d43ae5e58480f19b0ea0f1d7c554e888", "sha256": "5d0bd8cab5af3d75dd7e4faf775f1317f2c8d09b6075f0e995188bed142978ec" }, "downloads": -1, "filename": "minitage.recipe.common-1.90.zip", "has_sig": false, "md5_digest": "d43ae5e58480f19b0ea0f1d7c554e888", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40584, "upload_time": "2013-06-26T14:41:06", "url": "https://files.pythonhosted.org/packages/be/08/81d4a34fce2e95dc1956f8fc6f0618edad40c7c90788507d848be40d78f3/minitage.recipe.common-1.90.zip" } ] }