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/git: ChangeLog git-1.5.4.4.ebuild
Date: Mon, 17 Mar 2008 09:14:49
Message-Id: E1JbBQc-0007GX-BM@stork.gentoo.org
1 robbat2 08/03/17 09:14:46
2
3 Modified: ChangeLog
4 Added: git-1.5.4.4.ebuild
5 Log:
6 Version bump, fixing bugs #213549, #213543, #212131.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.259 dev-util/git/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/ChangeLog?rev=1.259&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/ChangeLog?rev=1.259&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/ChangeLog?r1=1.258&r2=1.259
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v
19 retrieving revision 1.258
20 retrieving revision 1.259
21 diff -p -w -b -B -u -u -r1.258 -r1.259
22 --- ChangeLog 27 Feb 2008 02:19:03 -0000 1.258
23 +++ ChangeLog 17 Mar 2008 09:14:45 -0000 1.259
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/git
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.258 2008/02/27 02:19:03 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.259 2008/03/17 09:14:45 robbat2 Exp $
29 +
30 +*git-1.5.4.4 (17 Mar 2008)
31 +
32 + 17 Mar 2008; Robin H. Johnson <robbat2@g.o> +git-1.5.4.4.ebuild:
33 + Version bump, fixing bugs #213549, #213543, #212131.
34
35 *git-1.5.4.3 (27 Feb 2008)
36
37
38
39
40 1.1 dev-util/git/git-1.5.4.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/git-1.5.4.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/git-1.5.4.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: git-1.5.4.4.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-1.5.4.4.ebuild,v 1.1 2008/03/17 09:14:45 robbat2 Exp $
50
51 inherit toolchain-funcs eutils elisp-common perl-module bash-completion
52
53 MY_PV="${PV/_rc/.rc}"
54 MY_P="${PN}-${MY_PV}"
55
56 DOC_VER=${MY_PV}
57
58 DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team"
59 HOMEPAGE="http://git.or.cz/"
60 SRC_URI="mirror://kernel/software/scm/git/${MY_P}.tar.bz2
61 mirror://kernel/software/scm/git/${PN}-manpages-${DOC_VER}.tar.bz2
62 doc? ( mirror://kernel/software/scm/git/${PN}-htmldocs-${DOC_VER}.tar.bz2 )"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
67 IUSE="curl cgi doc emacs gtk iconv mozsha1 perl ppcsha1 tk threads webdav"
68
69 DEPEND="
70 !app-misc/git
71 dev-libs/openssl
72 sys-libs/zlib
73 dev-lang/perl
74 app-arch/cpio
75 tk? ( dev-lang/tk )
76 curl? ( net-misc/curl )
77 webdav? ( dev-libs/expat )
78 emacs? ( virtual/emacs )"
79 RDEPEND="${DEPEND}
80 cgi? ( virtual/perl-CGI )
81 perl? ( dev-perl/Error dev-perl/Authen-SASL dev-perl/Net-SMTP-SSL )
82 gtk? ( >=dev-python/pygtk-2.8 )"
83
84 SITEFILE=72${PN}-gentoo.el
85 S="${WORKDIR}/${MY_P}"
86
87 # This is needed because for some obscure reasons future calls to make don't
88 # pick up these exports if we export them in src_unpack()
89 exportmakeopts() {
90 local myopts
91
92 if use mozsha1 ; then
93 myopts="${myopts} MOZILLA_SHA1=YesPlease"
94 elif use ppcsha1 ; then
95 myopts="${myopts} PPC_SHA1=YesPlease"
96 fi
97
98 if use curl ; then
99 use webdav || myopts="${myopts} NO_EXPAT=YesPlease"
100 else
101 myopts="${myopts} NO_CURL=YesPlease"
102 use webdav && ewarn "USE=webdav only matters with USE=curl. Ignoring."
103 fi
104
105 myopts="${myopts} WITH_SEND_EMAIL=YesPlease"
106
107 use iconv || myopts="${myopts} NO_ICONV=YesPlease"
108 use tk || myopts="${myopts} NO_TCLTK=YesPlease"
109 use threads && myopts="${myopts} THREADED_DELTA_SEARCH=YesPlease"
110
111 export MY_MAKEOPTS=${myopts}
112 }
113
114 showpkgdeps() {
115 local pkg=$1
116 shift
117 elog " $(printf "%-17s:" ${pkg}) ${@}"
118 }
119
120 src_unpack() {
121 unpack ${MY_P}.tar.bz2
122 cd "${S}"
123 unpack ${PN}-manpages-${DOC_VER}.tar.bz2
124 use doc && cd "${S}"/Documentation && unpack ${PN}-htmldocs-${DOC_VER}.tar.bz2
125 cd "${S}"
126
127 epatch "${FILESDIR}"/${PN}-1.5.3-symlinks.patch
128
129 sed -i \
130 -e "s:^\(CFLAGS =\).*$:\1 ${CFLAGS} -Wall:" \
131 -e "s:^\(LDFLAGS =\).*$:\1 ${LDFLAGS}:" \
132 -e "s:^\(CC = \).*$:\1$(tc-getCC):" \
133 -e "s:^\(AR = \).*$:\1$(tc-getAR):" \
134 -e 's:ln :ln -s :g' \
135 Makefile || die "sed failed"
136
137 exportmakeopts
138 }
139
140 src_compile() {
141 emake ${MY_MAKEOPTS} DESTDIR="${D}" prefix=/usr || die "make failed"
142
143 if use emacs ; then
144 elisp-compile contrib/emacs/{,vc-}git.el || die "emacs modules failed"
145 fi
146 if use cgi ; then
147 emake ${MY_MAKEOPTS} \
148 DESTDIR="${D}" \
149 prefix=/usr \
150 gitweb/gitweb.cgi || die "make gitweb/gitweb.cgi failed"
151 fi
152 }
153
154 src_install() {
155 emake ${MY_MAKEOPTS} DESTDIR="${D}" prefix=/usr install || \
156 die "make install failed"
157
158 doman man?/*
159
160 dodoc README Documentation/{SubmittingPatches,CodingGuidelines}
161 use doc && dodir /usr/share/doc/${PF}/html
162 for d in / /howto/ /technical/ ; do
163 docinto ${d}
164 dodoc Documentation${d}*.txt
165 use doc && dohtml -p ${d} Documentation${d}*.html
166 done
167 docinto /
168
169 dobashcompletion contrib/completion/git-completion.bash ${PN}
170
171 if use emacs ; then
172 elisp-install ${PN} contrib/emacs/{,vc-}git.el* || \
173 die "elisp-install failed"
174 elisp-site-file-install "${FILESDIR}"/${SITEFILE}
175 # don't add automatically to the load-path, so the sitefile
176 # can do a conditional loading
177 touch "${D}"/"${SITELISP}"/${PN}/.nosearch
178 fi
179
180 if use gtk ; then
181 dobin "${S}"/contrib/gitview/gitview
182 dodoc "${S}"/contrib/gitview/gitview.txt
183 fi
184
185 dobin contrib/fast-import/git-p4
186 dodoc contrib/fast-import/git-p4.txt
187 newbin contrib/fast-import/import-tars.perl import-tars
188
189 dodir /usr/share/${PN}/contrib
190 # The following are excluded:
191 # svnimport - use git-svn
192 # p4import - excluded because fast-import has a better one
193 # examples - these are stuff that is not used in Git anymore actually
194 # patches - stuff the Git guys made to go upstream to other places
195 for i in continuous fast-import hg-to-git \
196 hooks remotes2config.sh vim stats \
197 workdir convert-objects blameview ; do
198 cp -rf \
199 "${S}"/contrib/${i} \
200 "${D}"/usr/share/${PN}/contrib \
201 || die "Failed contrib ${i}"
202 done
203
204 if use cgi ; then
205 dodir /usr/share/${PN}/gitweb
206 insinto /usr/share/${PN}/gitweb
207 doins "${S}"/gitweb/gitweb.{cgi,css}
208 doins "${S}"/gitweb/git-{favicon,logo}.png
209 docinto /
210 # INSTALL discusses configuration issues, not just installation
211 newdoc "${S}"/gitweb/INSTALL INSTALL.gitweb
212 newdoc "${S}"/gitweb/README README.gitweb
213 fi
214
215 insinto /etc/xinetd.d
216 newins "${FILESDIR}"/git-daemon.xinetd git-daemon
217
218 newinitd "${FILESDIR}"/git-daemon.initd git-daemon
219 newconfd "${FILESDIR}"/git-daemon.confd git-daemon
220
221 fixlocalpod
222 }
223
224 src_test() {
225 has_version dev-util/subversion || \
226 MY_MAKEOPTS="${MY_MAKEOPTS} NO_SVN_TESTS=YesPlease"
227 has_version app-arch/unzip || \
228 mv -f "${S}"/t/t5000-tar-tree.sh{,.DISABLED}
229 if ! has userpriv "${FEATURES}"; then
230 ewarn "Skipping CVS tests because CVS does not work as root!"
231 ewarn "You should retest with FEATURES=userpriv!"
232 for i in t9200-git-cvsexportcommit.sh t9600-cvsimport.sh ; do
233 mv -f "${S}"/t/${i}{,.DISABLED}
234 done
235 fi
236 has_version dev-util/cvs && \
237 built_with_use dev-util/cvs server \
238 || mv -f "${S}"/t/t9600-cvsimport.sh{,.DISABLED}
239 emake ${MY_MAKEOPTS} DESTDIR="${D}" prefix=/usr test || die "tests failed"
240 }
241
242 pkg_postinst() {
243 if use emacs ; then
244 elisp-site-regen
245 elog "GNU Emacs has built-in Git support in versions greater 22.1."
246 elog "You can disable the emacs USE flag for dev-util/git"
247 elog "if you are using such a version."
248 fi
249 elog "These additional scripts need some dependencies:"
250 elog "(These are also needed for FEATURES=test)"
251 echo
252 showpkgdeps git-archimport "dev-util/tla"
253 showpkgdeps git-cvsimport ">=dev-util/cvsps-2.1"
254 showpkgdeps git-svn \
255 "USE=perl" \
256 "dev-util/subversion(USE=perl)" \
257 "dev-perl/libwww-perl" \
258 "dev-perl/TermReadKey"
259 showpkgdeps git-quiltimport "dev-util/quilt"
260 showpkgdeps git-cvsserver "dev-perl/DBI" "dev-perl/DBD-SQLite"
261 showpkgdeps git-instaweb \
262 "|| ( www-servers/lighttpd www-servers/apache )"
263 showpkgdeps git-send-email "USE=perl"
264 showpkgdeps git-remote "USE=perl"
265 echo
266 }
267
268 pkg_postrm() {
269 use emacs && elisp-site-regen
270 }
271
272
273
274 --
275 gentoo-commits@l.g.o mailing list