From 0f6414c3d6c30df4458f742fee4a9818b157d28d Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 17 Oct 2009 05:59:47 +0200 Subject: [PATCH] git: update to 1.6.5, add -perl subpkg. --HG-- extra : convert_revision : b3222bebfca2954acab610020b3a77146185f326 --- templates/git-perl | 1 + templates/git/perl.template | 18 ++++++++++++++++++ templates/git/template | 9 ++++++--- 3 files changed, 25 insertions(+), 3 deletions(-) create mode 120000 templates/git-perl create mode 100644 templates/git/perl.template diff --git a/templates/git-perl b/templates/git-perl new file mode 120000 index 0000000000..0899c2993d --- /dev/null +++ b/templates/git-perl @@ -0,0 +1 @@ +git \ No newline at end of file diff --git a/templates/git/perl.template b/templates/git/perl.template new file mode 100644 index 0000000000..580a0ca66a --- /dev/null +++ b/templates/git/perl.template @@ -0,0 +1,18 @@ +# Template file for 'git-perl'. +# +short_desc="${sourcepkg} perl bindings" +long_desc="${long_desc} + + This package contains the Perl bindings." + +noarch=yes +Add_dependency run git +Add_dependency run perl + +do_install() +{ + mkdir -p ${DESTDIR}/usr/lib + mkdir -p ${DESTDIR}/usr/share/man + mv ${SRCPKGDESTDIR}/usr/lib/perl5 ${DESTDIR}/usr/lib + mv ${SRCPKGDESTDIR}/usr/share/man/man3 ${DESTDIR}/usr/share/man +} diff --git a/templates/git/template b/templates/git/template index 46ee9fbebf..bd3c16f667 100644 --- a/templates/git/template +++ b/templates/git/template @@ -1,12 +1,12 @@ # Template build file for 'git". pkgname=git -version=1.6.4.4 +version=1.6.5 distfiles="http://www.kernel.org/pub/software/scm/git/git-$version.tar.bz2" build_style=gnu_configure configure_args="--with-shell=/bin/sh --with-curl --with-expat --without-tcltk" short_desc="GIT Tree History Storage Tool" maintainer="Juan RP " -checksum=fc7e4d6c4172c62c93d5e974019f7193b03c8bc0a1c6f3a9fcc1d0928b808d7a +checksum=377962fe1176a36030ca450d801fe745adc88a69bbba69d76d48e141d0147f92 long_desc=" 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) @@ -18,8 +18,11 @@ long_desc=" GIT working directory is a full-fledged repository with full revision tracking capabilities, not dependent on network access to a central server." +subpackages="perl" Add_dependency full glibc +Add_dependency full zlib Add_dependency full expat -Add_dependency full perl +Add_dependency full openssl +Add_dependency build perl Add_dependency build curl Add_dependency run curl-libs