Differences between revisions 8 and 27 (spanning 19 versions)
Revision 8 as of 2007-07-02 14:29:06
Size: 2049
Editor: S01060000c032accd
Comment:
Revision 27 as of 2020-08-28 23:19:42
Size: 6214
Editor: IwanAucamp
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 * [http://www.a-a-p.org/ AAP]
 * [http://confix.sourceforge.net/ Confix] - generates input files for [http://www.gnu.org/software/automake/ automake]
 * [http://www.python.org/doc/current/lib/module-distutils.html distutils] - standard module provides support for building and installing additional modules into a Python installation
 * PyAnt - ''development apparently discontinued''
 * [http://pybuilder.sf.net PyBuilder] - A Gui interface to compile scripts using py2exe.
 * [http://staff.bbhc.org/christophern/exos/rebuild/index.html Rebuild] - python module that replaces make - ''site unavailable, see the [http://web.archive.org/web/20041111233140/http://staff.bbhc.org/christophern/exos/rebuild/index.html Internet Archive version]''
 * [http://www.scons.org/ SCons] - software construction tool (comparable to make)
 * [http://vertoo.sourceforge.net/ Vertoo] - '''ver'''sion management '''too'''l (automates version number maintanace across several files)
 * [http://freehackers.org/~tnagy/bksys.html Waf] - software construction tool (comparable to autotools, CMake, SCons, ant)

|| '''Name''' || '''PyPI''' || '''Latest Release''' || '''Description''' ||
|| [[https://github.com/openembedded/bitbake|Bitbake]] || None || 1.46.2 (2020-08-04) || A task executor used to build packages for [[OpenEmbedded|OpenEmbedded]] and other projects. [[https://en.wikipedia.org/wiki/BitBake|Wikipedia]] ||
|| [[http://www.buildout.org/en/latest/|Buildout]] || [[http://pypi.python.org/pypi/zc.buildout|zc.buildout]] || 2.13.3 (2020-02-11) || Build tool for creating applications, includes the capability to resolve Python dependencies that are packaged as Python eggs. ||
|| [[http://docs.python.org/distutils/|distutils]] || N/A || N/A (ships with python) || standard module provides support for building and installing additional modules into a Python installation ||
|| [[https://pydoit.org/|doit]] || [[https://pypi.org/project/doit/|doit]] || 0.32.0 (2019-12-09) || Automation tool (bringing the power of build-tools to execute any kind of task) ||


 * [[http://www.nongnu.org/fab/|Fabric]] - a simple pythonic remote deployment tool for application deployment or systems administration tasks.
 * [[https://code.google.com/p/fabricate/|Fabricate]] - the better build tool: auto-dependency discovery via strace; a successor to Memoize.
 * [[http://www.pyinvoke.org/|Invoke]] - a Python task execution tool & library, drawing inspiration from various sources to arrive at a powerful & clean feature set.
 * [[http://www.cs.berkeley.edu/~billm/memoize.html|Memoize]] - Designed as a replacement for Make - ''site unavailable, see the [[http://web.archive.org/web/20090528032849/http://www.cs.berkeley.edu/~billm/memoize.html|Internet Archive version]]''
 * [[https://github.com/CalumJEadie/microbuild|microbuild]] - Lightweight Python Build Tool.
 * [[http://www.blueskyonmars.com/projects/paver/|Paver]] - Build/distribution/deployment tool. Build files are in Python.
 * [[PyAnt|PyAnt]] - ''development discontinued''
 * [[http://pybuilder.sf.net|PyBuilder]] - A Gui interface to compile scripts using py2exe.
 * [[http://www.plope.com/software/pymake|PyMake]] - Designed as a replacement for Make. ''Development replaced by BuildIt''.
 * [[https://github.com/rags/pynt|pynt]] - A pure Python build tool. Tasks are just python functions. Manages dependencies between tasks. Allows parameter passing from the commandline. Forked from [[https://github.com/CalumJEadie/microbuild|microbuild]]
 * [[http://staff.bbhc.org/christophern/exos/rebuild/index.html|Rebuild]] - python module that replaces make - ''site unavailable, see the [[http://web.archive.org/web/20041111233140/http://staff.bbhc.org/christophern/exos/rebuild/index.html|Internet Archive version]]''
 * [[http://www.scons.org/|SCons]] - software construction tool (comparable to make)
 * [[http://www.zedshaw.com/projects/vellum/|Vellum]] - Simple build tool similar to Make. ''Dead project. see [[https://github.com/zedshaw/vellum||github repo]]''
 * [[http://vertoo.sourceforge.net/|Vertoo]] - '''ver'''sion management '''too'''l (automates version number maintenance across several files)
 * [[http://pypi.python.org/pypi/virtualenv|VirtualEnv]] - A tool for creating isolated Python environments.
 * [[http://code.google.com/p/waf/|Waf]] - software construction tool (comparable to autotools, CMake, SCons, ant)

== Dead, Unmaintained and Discontinued Projects ==

 * [[http://www.a-a-p.org/|AAP]] - Latest version 1.093 released on 2013-09-15. Does not appear to support Python 3.
 * [[http://projects.bertram-scharpf.de/bake/index.html|Bake]] - a Make replacement. Website is down, [[http://web.archive.org/web/20071007134639/http://projects.bertram-scharpf.de/bake/index.html|archived here]]. No release in the last 10 years.
 * [[http://agendaless.com/Members/chrism/software/buildit/README.txt|BuildIt]] (by chrism) - Build tool for creating applications. Website down, [[http://web.archive.org/web/20120114061845/http://agendaless.com/Members/chrism/software/buildit/README.txt|web.archive.org]]. No release in the last 10 years.
 * [[https://bitbucket.org/mixmastamyk/buildit|BuildIt]] (by mixmastamyk) - BuildIt is a simple build tool and make replacement, meaning it builds files based on other files, given your instructions. Website down, [[http://web.archive.org/web/20161008052108/https://bitbucket.org/mixmastamyk/buildit|web.archive.org]]. [[https://pypi.org/project/buildit/|pypi.org]]. Last release in 2016.
 * [[http://confix.sourceforge.net/|Confix]] - generates input files for [[http://www.gnu.org/software/automake/|automake]]. [[https://sourceforge.net/projects/confix/|sourceforge.net]]. Website down, [[http://web.archive.org/web/20080429230516/http://confix.sourceforge.net:80/|web.archive.org]]. Last release was 2.3.9 on 2013-01-29, does not support python 3. [[https://sourceforge.net/projects/confix|sourceforge.net]]
Line 15: Line 39:
 * [http://buildbot.sourceforge.net/ BuildBot] The TwistedMatrix project has a BuildBot installed which runs the unit test suite on a variety of platforms. The BuildBot uses the Twisted framework for networking, RPC, web status delivery, persistence, and other platform needs.
 * [http://gump.apache.org/ Apache Gump] - Apache's continuous integration tool. "It is written in python and fully supports Apache Ant, Apache Maven and other build tools."
Line 18: Line 40:
== Editorial Notes ==  * [[http://bitten.edgewall.org/|Bitten]] - a continuous integration plugin for Trac
 * [[http://buildbot.sourceforge.net/|BuildBot]] The [[TwistedMatrix|TwistedMatrix]] project has a [[BuildBot|BuildBot]] installed which runs the unit test suite on a variety of platforms. The [[BuildBot|BuildBot]] uses the Twisted framework for networking, RPC, web status delivery, persistence, and other platform needs.
 * [[http://gump.apache.org/|Apache Gump]] - Apache's continuous integration tool. "It is written in python and fully supports Apache Ant, Apache Maven and other build tools."


= Editorial Notes =
Line 21: Line 49:


== Criteria for Dead, Discontinued or Unmaintained Projects ==

This is a bit difficult to say and it is handled on a case by case basis, but any of the following should be sufficient criteria

 * No python 3 support
 * Project website is no longer online

1. Configuration and Build Tools

Name

PyPI

Latest Release

Description

Bitbake

None

1.46.2 (2020-08-04)

A task executor used to build packages for OpenEmbedded and other projects. Wikipedia

Buildout

zc.buildout

2.13.3 (2020-02-11)

Build tool for creating applications, includes the capability to resolve Python dependencies that are packaged as Python eggs.

distutils

N/A

N/A (ships with python)

standard module provides support for building and installing additional modules into a Python installation

doit

doit

0.32.0 (2019-12-09)

Automation tool (bringing the power of build-tools to execute any kind of task)

  • Fabric - a simple pythonic remote deployment tool for application deployment or systems administration tasks.

  • Fabricate - the better build tool: auto-dependency discovery via strace; a successor to Memoize.

  • Invoke - a Python task execution tool & library, drawing inspiration from various sources to arrive at a powerful & clean feature set.

  • Memoize - Designed as a replacement for Make - site unavailable, see the Internet Archive version

  • microbuild - Lightweight Python Build Tool.

  • Paver - Build/distribution/deployment tool. Build files are in Python.

  • PyAnt - development discontinued

  • PyBuilder - A Gui interface to compile scripts using py2exe.

  • PyMake - Designed as a replacement for Make. Development replaced by BuildIt.

  • pynt - A pure Python build tool. Tasks are just python functions. Manages dependencies between tasks. Allows parameter passing from the commandline. Forked from microbuild

  • Rebuild - python module that replaces make - site unavailable, see the Internet Archive version

  • SCons - software construction tool (comparable to make)

  • Vellum - Simple build tool similar to Make. Dead project. see https://github.com/zedshaw/vellum

  • Vertoo - version management tool (automates version number maintenance across several files)

  • VirtualEnv - A tool for creating isolated Python environments.

  • Waf - software construction tool (comparable to autotools, CMake, SCons, ant)

1.1. Dead, Unmaintained and Discontinued Projects

  • AAP - Latest version 1.093 released on 2013-09-15. Does not appear to support Python 3.

  • Bake - a Make replacement. Website is down, archived here. No release in the last 10 years.

  • BuildIt (by chrism) - Build tool for creating applications. Website down, web.archive.org. No release in the last 10 years.

  • BuildIt (by mixmastamyk) - BuildIt is a simple build tool and make replacement, meaning it builds files based on other files, given your instructions. Website down, web.archive.org. pypi.org. Last release in 2016.

  • Confix - generates input files for automake. sourceforge.net. Website down, web.archive.org. Last release was 2.3.9 on 2013-01-29, does not support python 3. sourceforge.net

2. Build Testing

  • Bitten - a continuous integration plugin for Trac

  • BuildBot The TwistedMatrix project has a BuildBot installed which runs the unit test suite on a variety of platforms. The BuildBot uses the Twisted framework for networking, RPC, web status delivery, persistence, and other platform needs.

  • Apache Gump - Apache's continuous integration tool. "It is written in python and fully supports Apache Ant, Apache Maven and other build tools."

3. Editorial Notes

The above lists should be arranged in ascending alphabetical order - please respect this when adding new entries. If, as the developer of a listed application, you disagree with the classification of the work, please move it into the appropriate category or create a new category, respecting the ascending alphabetical order of the categories. When specifying release dates please use the format YYYY-MM-DD.

3.1. Criteria for Dead, Discontinued or Unmaintained Projects

This is a bit difficult to say and it is handled on a case by case basis, but any of the following should be sufficient criteria

  • No python 3 support
  • Project website is no longer online

ConfigurationAndBuildTools (last edited 2022-09-02 13:27:22 by MatsWichmann)

Unable to edit the page? See the FrontPage for instructions.