Ebuild
06 de april , 2011, 19:31
gitosis -- software for hosting git repositories
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.2_p20080825 | – | ~ | – | – | – | – | – | ~ | – | – | – | ~ | ~ |
DESCRIPCIÓN DE PAQUETE:
gitosis -- software for hosting git repositories
Categoría:
CAMBIOS
# ChangeLog for dev-vcs/gitosis # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitosis/ChangeLog,v 1.3 2011/04/06 19:27:19 arfrever Exp $ 06 Apr 2011; Arfrever Frehtes Taifersar Arahesis (arfrever) gitosis-0.2_p20080626.ebuild, gitosis-0.2_p20080825.ebuild: Use Python 2 (bug #329481). 19 Jun 2010; Arfrever Frehtes Taifersar Arahesis (arfrever) gitosis-0.2_p20080626.ebuild, gitosis-0.2_p20080825.ebuild: dev-util/gitosis-gentoo renamed to dev-vcs/gitosis-gentoo (bug #56967). 17 Mar 2010; Sebastian Pipping (sping) gitosis-0.2_p20080626.ebuild, gitosis-0.2_p20080825.ebuild: Propagate move of dev-util/git to dev-vcs/git 21 Feb 2010; Jonathan Callen (abcd) gitosis-0.2_p20080825.ebuild: Transfer prefix keywords (no other changes) 08 Feb 2010; Peter Volkov (pva) gitosis-0.2_p20080626.ebuild, gitosis-0.2_p20080825.ebuild: Add inherit eutils for enewgroup and enewuser. 15 Jan 2010; Tiziano Müller (dev-zero) gitosis-0.2_p20080825.ebuild: Keyworded ~sparc. 24 Nov 2008; Robin H. Johnson (robbat2) gitosis-0.2_p20080626.ebuild, gitosis-0.2_p20080825.ebuild: Bug #247322 - gitosis does actually need setuptools at runtime. 28 Oct 2008; Robin H. Johnson (robbat2) -gitosis-0.2_p20071217.ebuild, -gitosis-0.2_p20080319.ebuild: Remove older versions. *gitosis-0.2_p20080825 (28 Oct 2008) 28 Oct 2008; Robin H. Johnson (robbat2) +gitosis-0.2_p20080825.ebuild: Bug #236185, version bump for fixes with Git-1.6. 17 Jul 2008; Robin H. Johnson (robbat2) gitosis-0.2_p20080626.ebuild: setuptools should only be in DEPEND, not RDEPEND, but git needs to be in both. *gitosis-0.2_p20080626 (11 Jul 2008) 11 Jul 2008; Robin H. Johnson (robbat2) +gitosis-0.2_p20080626.ebuild: Version bump. 04 Apr 2008; Robin H. Johnson (robbat2) gitosis-0.2_p20071217.ebuild: Block the fork here too. *gitosis-0.2_p20080319 (04 Apr 2008) 04 Apr 2008; Robin H. Johnson (robbat2) +gitosis-0.2_p20080319.ebuild: Add a more upstream upstream version. The fork that powers git.overlays.gentoo.org is now moving to dev-util/gitosis-gentoo. 25 Dec 2007; Robin H. Johnson (robbat2) gitosis-0.2_p20071217.ebuild: Min version of setuptools needed. *gitosis-0.2_p20071217 (25 Dec 2007) 25 Dec 2007; Robin H. Johnson (robbat2) +metadata.xml, +gitosis-0.2_p20071217.ebuild: Initial commit. Ebuild by Robin H. Johnson (robbat2), per bug #199177. If you want to set it up, the best existing documentation is http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-w ay however you still need to jump some hoops.
PROBLEMAS
No bugs found
OPCIONES USE
No hay opciones use
DEPENDENCIAS DE CONSTRUCCIÓN
| app-admin/eselect-python | Eselect module for management of multiple Python versions |
| dev-lang/python | Python is an interpreted, interactive, object-oriented programming language. |
| dev-python/setuptools | Distribute (fork of Setuptools) is a collection of extensions to Distutils |
| dev-vcs/git | GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team |
DEPENDENCIAS DE EJECUCIÓN
| app-admin/eselect-python | Eselect module for management of multiple Python versions |
| dev-lang/python | Python is an interpreted, interactive, object-oriented programming language. |
| dev-python/setuptools | Distribute (fork of Setuptools) is a collection of extensions to Distutils |
| dev-vcs/git | GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team |
| dev-vcs/gitosis-gentoo | gitosis -- software for hosting git repositories, Gentoo fork |
SOURCE CODE
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/dev-vcs/gitosis/gitosis-0.2_p20080825.ebuild,v 1.3
2011/04/06 19:27:19 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit eutils distutils
DESCRIPTION="gitosis -- software for hosting git repositories"
HOMEPAGE="http://eagain.net/gitweb/?p=gitosis.git;a=summary"
# This is a snapshot taken from the upstream gitweb.
MY_PV="20080825-73a032520493f6b4186185d4826d12edb5614135"
MY_PN="${PN}.git"
MY_P="${MY_PN}-${MY_PV}"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE=""
DEPEND_GIT=">=dev-vcs/git-1.5.5.4"
DEPEND="${DEPEND_GIT}
>=dev-python/setuptools-0.6_rc5"
RDEPEND="${DEPEND}
!dev-vcs/gitosis-gentoo"
S=${WORKDIR}/gitosis
DOCS="example.conf gitweb.conf lighttpd-gitweb.conf TODO.rst"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
enewgroup git
enewuser git -1 /bin/sh /var/spool/gitosis git
}
src_install() {
distutils_src_install
keepdir /var/spool/gitosis
fowners git:git /var/spool/gitosis
}
# We should handle more of this, but it requires the input of an SSH public key
# from the user, and they may want to set up more configuration first.
#pkg_config() {
#}