Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gitosis: ChangeLog gitosis-0.2_p20080825.ebuild
Date: Tue, 28 Oct 2008 09:55:07
Message-Id: E1KulI1-0007vQ-GF@stork.gentoo.org
1 robbat2 08/10/28 09:55:05
2
3 Modified: ChangeLog
4 Added: gitosis-0.2_p20080825.ebuild
5 Log:
6 Bug #236185, version bump for fixes with Git-1.6.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
8
9 Revision Changes Path
10 1.7 dev-util/gitosis/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gitosis/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gitosis/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gitosis/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/gitosis/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -p -w -b -B -u -u -r1.6 -r1.7
22 --- ChangeLog 17 Jul 2008 20:10:58 -0000 1.6
23 +++ ChangeLog 28 Oct 2008 09:55:05 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/gitosis
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gitosis/ChangeLog,v 1.6 2008/07/17 20:10:58 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gitosis/ChangeLog,v 1.7 2008/10/28 09:55:05 robbat2 Exp $
29 +
30 +*gitosis-0.2_p20080825 (28 Oct 2008)
31 +
32 + 28 Oct 2008; Robin H. Johnson <robbat2@g.o>
33 + +gitosis-0.2_p20080825.ebuild:
34 + Bug #236185, version bump for fixes with Git-1.6.
35
36 17 Jul 2008; Robin H. Johnson <robbat2@g.o>
37 gitosis-0.2_p20080626.ebuild:
38
39
40
41 1.1 dev-util/gitosis/gitosis-0.2_p20080825.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gitosis/gitosis-0.2_p20080825.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gitosis/gitosis-0.2_p20080825.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gitosis-0.2_p20080825.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/gitosis/gitosis-0.2_p20080825.ebuild,v 1.1 2008/10/28 09:55:05 robbat2 Exp $
51
52 inherit distutils
53
54 DESCRIPTION="gitosis -- software for hosting git repositories"
55 HOMEPAGE="http://eagain.net/gitweb/?p=gitosis.git;a=summary"
56 # This is a snapshot taken from the upstream gitweb.
57 MY_PV="20080825-73a032520493f6b4186185d4826d12edb5614135"
58 MY_PN="${PN}.git"
59 MY_P="${MY_PN}-${MY_PV}"
60 SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~x86 ~amd64 ~ppc"
64 IUSE=""
65 DEPEND_GIT=">=dev-util/git-1.5.5.4"
66 DEPEND="${DEPEND_GIT}
67 >=dev-python/setuptools-0.6_rc5"
68 RDEPEND="${DEPEND_GIT}
69 !dev-util/gitosis-gentoo"
70
71 S=${WORKDIR}/gitosis
72
73 DOCS="example.conf gitweb.conf lighttpd-gitweb.conf TODO.rst"
74
75 pkg_setup() {
76 enewgroup git
77 enewuser git -1 /bin/sh /var/spool/gitosis git
78 }
79
80 src_install() {
81 distutils_src_install
82 keepdir /var/spool/gitosis
83 fowners git:git /var/spool/gitosis
84 }
85
86 # We should handle more of this, but it requires the input of an SSH public key
87 # from the user, and they may want to set up more configuration first.
88 #pkg_config() {
89 #}