Bump an delete

This commit is contained in:
Mario Fetka
2012-01-18 08:00:25 +01:00
parent 147fb1263f
commit 7a96b6cd3b
6 changed files with 5 additions and 100 deletions

View File

@@ -1,34 +0,0 @@
# ChangeLog for www-apps/trac-gitosisplugin
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
*trac-gitosisplugin-1.0.5 (19 Nov 2011)
19 Nov 2011; Mario Fetka <mario.fetka@gmail.com>
-trac-gitosisplugin-1.0.4.ebuild, +trac-gitosisplugin-1.0.5.ebuild,
metadata.xml:
Bump
17 Sep 2010; Mario Fetka <mario.fetka@gmail.com>
trac-gitosisplugin-1.0.4.ebuild:
Add distutils_pkg_postinst to postinstall section
17 Sep 2010; Mario Fetka <mario.fetka@gmail.com>
-trac-gitosisplugin-1.0.2-r1.ebuild, +trac-gitosisplugin-1.0.4.ebuild:
Bump
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
-trac-gitosisplugin-1.0.2.ebuild, +trac-gitosisplugin-1.0.2-r1.ebuild:
cleanup
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
trac-gitosisplugin-1.0.2.ebuild:
add postinst section
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
trac-gitosisplugin-1.0.2.ebuild:
add arm keyword
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com> +metadata.xml:
initial checkin based on new ebuild design

View File

@@ -1,3 +0,0 @@
EBUILD trac-gitosisplugin-1.0.5.ebuild 1543 RMD160 25ad4850b3d6a740c5b4c8f2075d4314c3428a04 SHA1 948554e499c0ece3fd111d6512bbf002f584d27f SHA256 fb9cee6a36851157d5e346f78aa8188d02dd446bfbd9d03530cdbdcbc2530487
MISC ChangeLog 1047 RMD160 c76fbb84ae06e959e48022b6576a2086ecff99b8 SHA1 d25b48db440f9a7e8fbabf1af96ef34b0313e77f SHA256 7acfa3ec668d752533c63a504b011b26ad8eb4ea8d1d38064950cb2d63c8142f
MISC metadata.xml 205 RMD160 f85e91d792c694cb3e45fac26295dba0e6e43786 SHA1 3f13c3b49579342e2308323aa3dda2f43dd94c23 SHA256 9fdfc9c91107d94feb8416adc2cec7734fa27084bff83ea859938b3216e028bc

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mario.fetka@gmail.com</email>
</maintainer>
</pkgmetadata>

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/trac-git/trac-git-8215.ebuild,v 1.2 2010/07/05 11:00:44 hollow Exp $
EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils git-2
EGIT_REPO_URI="git://github.com/dr4Ke/TracGitosisPlugin.git"
DESCRIPTION="partial gitosis administration for Trac"
HOMEPAGE="http://trac-hacks.org/wiki/TracGitosisPlugin"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=">=www-apps/trac-0.12
|| ( dev-vcs/gitosis dev-vcs/gitosis-gentoo )"
src_prepare() {
git-2_src_prepare
cp -Rv 0.11/* .
distutils_src_prepare
}
pkg_postinst() {
distutils_pkg_postinst
elog "To enable the GitosisPlugin plugin in your Trac environments, you have to add:"
elog " [components]"
elog " # for plugin version 0.11.0.1+"
elog " tracgitosis.* = enabled"
elog ""
elog "to your trac.ini files."
elog ""
elog "You also have to create a new gitosis-admin user for trac"
elog ""
elog " Create the key pair without passphrase"
elog " mkdir /var/www/.ssh"
elog " ssh-keygen -f /var/www/.ssh/id_rsa"
elog ""
elog " Connect to the server hosting gitosis once to validate the server identity"
elog " ssh -i /var/www/.ssh/id_rsa -o UserKnownHostsFile=/var/www/.ssh/known_hosts <git_user>@<git_server>"
elog ""
elog " Give this directory to the user running Trac (here: apache)"
elog " chown -Rh apache.apache /var/www/.ssh"
}