git: update to 1.7.10.3.

This commit is contained in:
Juan RP 2012-05-31 22:45:18 +02:00
parent 951be833af
commit c9df7e5fb7
4 changed files with 17 additions and 31 deletions

View file

@ -1,16 +1,13 @@
# Template file for 'git-docs'. # Template file for 'git-docs'.
# #
noarch=yes
short_desc="${sourcepkg} documentation" short_desc="${sourcepkg} documentation"
long_desc="${long_desc} long_desc="${long_desc}
This package contains the full git documentation (manual pages)." This package contains the full git documentation (manual pages)."
noarch=yes do_install() {
do_install()
{
mkdir -p ${DESTDIR}/usr/share/man
for f in man1 man5 man7; do for f in man1 man5 man7; do
mv ${SRCPKGDESTDIR}/usr/share/man/${f} ${DESTDIR}/usr/share/man vmove usr/share/man/${f} usr/share/man
done done
} }

View file

@ -1,16 +1,13 @@
# Template file for 'git-perl'. # Template file for 'git-perl'.
# #
noarch=yes
depends="git perl" depends="git perl"
short_desc="${sourcepkg} perl bindings" short_desc="${sourcepkg} perl bindings"
long_desc="${long_desc} long_desc="${long_desc}
This package contains the Perl bindings." This package contains the Perl bindings."
noarch=yes do_install() {
vmove usr/share/perl5 usr/share
do_install() vmove usr/share/man/man3 usr/share/man
{
mkdir -p ${DESTDIR}/usr/share/man
mv ${SRCPKGDESTDIR}/usr/share/perl5 ${DESTDIR}/usr/share
mv ${SRCPKGDESTDIR}/usr/share/man/man3 ${DESTDIR}/usr/share/man
} }

View file

@ -1,17 +1,13 @@
# Template file for 'git-python'. # Template file for 'git-python'.
# #
noarch=yes
pycompile_module="git_remote_helpers"
depends="git python" depends="git python"
short_desc="${sourcepkg} python bindings" short_desc="${sourcepkg} python bindings"
long_desc="${long_desc} long_desc="${long_desc}
This package contains the Python bindings for GIT." This package contains the Python bindings for GIT."
noarch=yes do_install() {
pycompile_module="git_remote_helpers" vmove "usr/lib/python*" usr/lib
do_install()
{
install -d ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/python* ${DESTDIR}/usr/lib
} }

View file

@ -1,13 +1,14 @@
# Template build file for 'git". # Template build file for 'git".
pkgname=git pkgname=git
version=1.7.10.2 version=1.7.10.3
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz" subpackages="git-docs git-perl git-python"
makedepends="asciidoc xmlto perl openssl-devel libcurl-devel expat-devel python-devel" makedepends="asciidoc xmlto perl openssl-devel libcurl-devel expat-devel python-devel"
short_desc="GIT Tree History Storage Tool" short_desc="GIT Tree History Storage Tool"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://git-scm.com/" homepage="http://git-scm.com/"
license="GPL-2" license="GPL-2"
checksum=335e978814659f328e377715b13a33336859275ae6f215bf28bbbb2ae711bb43 distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
checksum=b804058554fc58336b3daf8825e314041f24a83e9204c133a58641ed06abd6f7
long_desc=" long_desc="
GIT is a directory content manager designed to handle absolutely massive GIT is a directory content manager designed to handle absolutely massive
projects with speed and efficiency, and the release of the 2.6.12 (and later) projects with speed and efficiency, and the release of the 2.6.12 (and later)
@ -19,12 +20,8 @@ long_desc="
GIT working directory is a full-fledged repository with full revision tracking GIT working directory is a full-fledged repository with full revision tracking
capabilities, not dependent on network access to a central server." capabilities, not dependent on network access to a central server."
subpackages="git-docs git-perl git-python"
do_configure() { do_configure() {
./configure ${CONFIGURE_SHARED_ARGS} --with-curl --with-expat \ ./configure ${CONFIGURE_SHARED_ARGS} --with-curl --with-expat --without-tcltk
--without-tcltk
} }
do_build() { do_build() {
@ -33,6 +30,5 @@ do_build() {
do_install() { do_install() {
make DESTDIR=${DESTDIR} install install-doc make DESTDIR=${DESTDIR} install install-doc
vinstall contrib/completion/git-completion.bash 644 \ vinstall contrib/completion/git-completion.bash 644 etc/bash_completion.d git
etc/bash_completion.d git
} }