Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-util/ciabot-svn
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ciabot-svn/ChangeLog,v 1.3 2007/03/05 03:28:30 genone Exp $
05 Mar 2007; Marius Mauch
Replacing einfo with elog
09 Feb 2007; Diego Pettenò
Regenerate digest in Manifest2 format.
*ciabot-svn-1.15 (11 Apr 2005)
11 Apr 2005; Christian Parpart
+metadata.xml, +ciabot-svn-1.15.ebuild:
initial import
AUX config.py 2978 RMD160 104a5863a08ed4da2200a7d79a49073dba600055 SHA1 ef3397a9f428711f9545197a3b79610aedc941cb SHA256 6b8e4e00deb7a6cf39c0e69f2161f8f3b93e74a4d1bba79879b1b5aae6c25b40
DIST ciabot-svn-1.15.py.bz2 3055 RMD160 8950ae83af10b194b45a3bd5e51e5546439805db SHA1 c68b84ee68da1cdd13f30601b0dae8d5507fef76 SHA256 d7e992b512dfaaf5a8d04a6561f45607f41531d9dd7c159ce864ba1415292af0
EBUILD ciabot-svn-1.15.ebuild 1365 RMD160 bc6af4ad339d528e148ff86174f19c11c23d95f0 SHA1 8c65d202e81bc35052911af2e17f0c7dad08b130 SHA256 34c8c2efe7d413ff1d82ccc88e0f2ccd83d1fda03665d5b25020e3991415f063
MISC ChangeLog 581 RMD160 b5a8013650afd69ac0228c7d73e22c7959903da7 SHA1 e6e4213109f342f67076e0cbeff6835fc719e14a SHA256 f231f46429b8d409c57b4f1bb3b7919a3a193eee61d8c17c0c562cd5115ab2fb
MISC metadata.xml 230 RMD160 1d0a181dadbe973b83cde9a0e255e460d654a7c7 SHA1 166f42b13ef6837902bf590d4fcfbb6b847e830b SHA256 679fd461e4be2ff0b99300fc43fd11ec706e6d91e24aca4d7a07df1c53ac69f6
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ciabot-svn/ciabot-svn-1.15.ebuild,v 1.2 2007/03/05 03:28:30 genone Exp $
inherit eutils
DESCRIPTION="CIA-bot script for Subversion repositories"
HOMEPAGE="http://cia.navi.cx/doc/clients"
SRC_URI="mirror://gentoo/${P}.py.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~ppc64"
IUSE=""
DEPEND="dev-lang/python"
S="${WORKDIR}"
src_install() {
dodir /etc/${PN}
insinto /etc/${PN}
doins ${FILESDIR}/config.py
newbin ${P}.py ${PN} || die
}
pkg_postinst() {
echo
elog "This ciabot-svn script should be called from your repository's post-commit"
elog "hook with the repository and revision as arguments. For example,"
elog "you could copy this script into your repository's \"hooks\" directory"
elog "and add something like the following to the \"post-commit\" script,"
elog "also in the repository's \"hooks\" directory:"
elog ""
elog " REPOS=\"\$1\""
elog " REV=\"\$2\""
elog " /usr/bin/ciabot-svn \"\$REPOS\" \"\$REV\" &"
elog ""
elog "Or, if you have multiple project hosted, you can add each"
elog "project's name to the commandline in that project's post-commit"
elog "hook:"
elog ""
elog " /usr/bin/ciabot-svn \"\$REPOS\" \"\$REV\" \"ProjectName\" &"
echo
ebeep
epause
}