[arch-commits] Commit in git/repos/extra-i686 (8 files)

2013-07-25 Thread Dan McGee
Date: Thursday, July 25, 2013 @ 16:46:44
  Author: dan
Revision: 191560

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 191558, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 191558, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 191558, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 191558, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install

-+
 PKGBUILD|  234 +-
 git-daemon.socket   |   18 +--
 git-daemon@.service |   20 ++--
 git.install |   42 
 4 files changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-25 14:46:38 UTC (rev 191559)
+++ PKGBUILD2013-07-25 14:46:44 UTC (rev 191560)
@@ -1,117 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=1.8.3.3
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/";
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=("http://git-core.googlecode.com/files/git-$pkgver.tar.gz";
-"http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz";
-git-daemon@.service
-git-daemon.socket)
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*')
-  mkdir -p /dev/shm/git-test
-  # We used to use this, but silly git regressions:
-  #GIT_TEST_OPTS="--root=/dev/shm/" \
-  # http://comments.gmane.org/gmane.comp.version-control.git/202020
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS="$jobs -Q" \
-GIT_TEST_OPTS="--root=/dev/shm/git-test" \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-INSTALLDIRS=vendor DESTDIR="$pkgdir" install
-
-  # bash completion
-  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p "$pkgdir"/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
"$pkgdir"/usr/share/git/git-prompt.sh
-  # emacs
-  make -C contrib/emacs prefix=/usr DESTDIR="$pkgdir" install
-  # gnome credentials helper
-  install -m755 contrib/credential/gnome-keyring/git-credential-gnome-keyring \
-  "$pkgdir"/usr/lib/git-core/git-credential-gnome-keyring
-  make -C contrib/credential/gnome-keyring clean
-  # the rest of the contrib stuff
-  cp -a ./contrib/* $pkgdir/usr/share/git/
-
-  # scripts are for python 2.x
-  sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' \
-$(find "$pkgdir" -name '*.py') \
-"$pkgdir"/usr/lib/git-core/git-p4 \
-"$pkgdir"/usr/share/git/gitview/gitview \
-"$pkgdir"/usr/share/git/remote-helpers/git-remote-bzr \
-"$pkgdir"/usr/share/git/remote-helpers/git-remote-hg
-  sed -i 's|#![ ]*/usr/bin/python|#!/usr/bin/python2|' \
-"$pkgdir"/usr/share/git/svn-fe/svnrdump_sim.py
-
-
-  # how 'bout some manpages?
-  for mansect in man1 man5 man7; do
-for manpage in "$srcdir"/$mansect/*; do
-  install -D -m644 $manpage "$pkgdir"/usr/share/man/$mansect/$(basename 
$manpage)
-done
-  done
-
-  # remove perllocal.pod, .packlist, and empty directories.
-  rm -rf "$pkgdir"/usr/lib/perl5
-
-  # git-daemon via systemd socket activation
-  install -D -m 64

[arch-commits] Commit in git/repos (extra-i686 extra-x86_64)

2012-08-21 Thread Dan McGee
Date: Tuesday, August 21, 2012 @ 10:10:55
  Author: dan
Revision: 165508

Try #2 to unhose everything here

Deleted:
  git/repos/extra-i686/
  git/repos/extra-x86_64/



[arch-commits] Commit in git/repos (extra-i686)

2012-08-21 Thread Dan McGee
Date: Tuesday, August 21, 2012 @ 10:08:02
  Author: dan
Revision: 165506

Try to unfuck the repos/ dir

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos/extra-i686 (10 files)

2012-08-21 Thread Dan McGee
Date: Tuesday, August 21, 2012 @ 10:05:41
  Author: dan
Revision: 165502

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 165500, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon
(from rev 165500, git/trunk/git-daemon)
  git/repos/extra-i686/git-daemon.conf
(from rev 165500, git/trunk/git-daemon.conf)
  git/repos/extra-i686/git-daemon.socket
(from rev 165500, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 165500, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 165500, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/ChangeLog
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon
  git/repos/extra-i686/git-daemon.conf

-+
 ChangeLog   |   57 
 PKGBUILD|  223 ++
 git-daemon  |  140 +++
 git-daemon.conf |   10 +-
 git-daemon.socket   |9 ++
 git-daemon@.service |   10 ++
 git.install |   21 
 7 files changed, 232 insertions(+), 238 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2012-08-21 14:05:23 UTC (rev 165501)
+++ ChangeLog   2012-08-21 14:05:41 UTC (rev 165502)
@@ -1,57 +0,0 @@
-Simple version bumps are omitted from the following ChangeLog.
-
-2011-08-16 Dan McGee 
-   Version 1.7.6.1-1
-   * Enable USE_LIBPCRE for `git grep -P` usage
-
-2011-05-05 Dan McGee 
-   Version 1.7.5.1-1
-   * Byte compile emacs files (FS#20874)
-   * Respect CFLAGS/LDFLAGS (FS#23963)
-
-2011-04-27 Dan McGee 
-   Version 1.7.5-1
-   * Add missing optdepends for git send-email (FS#20923)
-
-2011-01-05 Dan McGee 
-   Version 1.7.3.5-1
-   * More flexible git-daemon RC scripts (FS#20575)
-
-2010-10-01 Allan McRae 
-   Version 1.7.3.1-2
-   * Python 2/3 rebuild
-
-2010-06-29 Dan McGee 
-   Version 1.7.1.1-1
-   * Add emacs completion files (FS#17968)
-   * Add git-daemon RC scripts (FS#19291)
-
-2009-06-05 Dan McGee 
-   Version 1.6.3.2-1
-   * Remove gitweb from /usr/share; it needs customization to be helpful
-   * Add NO_CROSS_DIRECTORY_HARDLINKS option to build (FS#13683)
-
-2008-09-14 Dan McGee 
-   Version 1.6.0.2-1
-   * Moved optional depends from install file to optdepends array
-
-2008-06-15 Dan McGee 
-   Version 1.5.6-1
-   * Removed 'cpio' dependency, clone is now a builtin and no longer needs 
it
-
-2008-02-02 Dan McGee 
-   Version 1.5.4-1
-   * Upstream version 1.5.4
-   * Enable pthreads support in pack-objects. To use, set the pack.threads
- git config option. Read manpages of pack-objects and config for more
- details.
-   * Changelog added (with entries going back a bit).
-
-2008-01-28 Kevin Piche 
-   Version 1.5.3.7-2
-   * Updated for new perl policy (vendor dirs)
-   * Change license to GPL2
-
-2007-11-01 Eric Belanger 
-   Version 1.5.3.5-2
-   * Fix Perl module location

Deleted: PKGBUILD
===
--- PKGBUILD2012-08-21 14:05:23 UTC (rev 165501)
+++ PKGBUILD2012-08-21 14:05:41 UTC (rev 165502)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=1.7.11.5
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/";
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport')
-replaces=('git-core')
-provides=('git-core')
-backup=('etc/conf.d/git-daemon.conf')
-source=("http://git-core.googlecode.com/files/git-$pkgver.tar.gz";
-"http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz";
-git-daemon
-git-daemon.conf)
-changelog=ChangeLog
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  cd contrib/emacs
-  make prefix=/usr
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*')
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_

[arch-commits] Commit in git/repos/extra-i686 (8 files)

2011-12-21 Thread Dan McGee
Date: Wednesday, December 21, 2011 @ 19:41:35
  Author: dan
Revision: 145349

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/ChangeLog
(from rev 145348, git/trunk/ChangeLog)
  git/repos/extra-i686/PKGBUILD
(from rev 145348, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon
(from rev 145348, git/trunk/git-daemon)
  git/repos/extra-i686/git-daemon.conf
(from rev 145348, git/trunk/git-daemon.conf)
Deleted:
  git/repos/extra-i686/ChangeLog
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon
  git/repos/extra-i686/git-daemon.conf

-+
 ChangeLog   |  114 +--
 PKGBUILD|  172 +++---
 git-daemon  |  140 +--
 git-daemon.conf |   10 +--
 4 files changed, 218 insertions(+), 218 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2011-12-22 00:36:32 UTC (rev 145348)
+++ ChangeLog   2011-12-22 00:41:35 UTC (rev 145349)
@@ -1,57 +0,0 @@
-Simple version bumps are omitted from the following ChangeLog.
-
-2011-08-16 Dan McGee 
-   Version 1.7.6.1-1
-   * Enable USE_LIBPCRE for `git grep -P` usage
-
-2011-05-05 Dan McGee 
-   Version 1.7.5.1-1
-   * Byte compile emacs files (FS#20874)
-   * Respect CFLAGS/LDFLAGS (FS#23963)
-
-2011-04-27 Dan McGee 
-   Version 1.7.5-1
-   * Add missing optdepends for git send-email (FS#20923)
-
-2011-01-05 Dan McGee 
-   Version 1.7.3.5-1
-   * More flexible git-daemon RC scripts (FS#20575)
-
-2010-10-01 Allan McRae 
-   Version 1.7.3.1-2
-   * Python 2/3 rebuild
-
-2010-06-29 Dan McGee 
-   Version 1.7.1.1-1
-   * Add emacs completion files (FS#17968)
-   * Add git-daemon RC scripts (FS#19291)
-
-2009-06-05 Dan McGee 
-   Version 1.6.3.2-1
-   * Remove gitweb from /usr/share; it needs customization to be helpful
-   * Add NO_CROSS_DIRECTORY_HARDLINKS option to build (FS#13683)
-
-2008-09-14 Dan McGee 
-   Version 1.6.0.2-1
-   * Moved optional depends from install file to optdepends array
-
-2008-06-15 Dan McGee 
-   Version 1.5.6-1
-   * Removed 'cpio' dependency, clone is now a builtin and no longer needs 
it
-
-2008-02-02 Dan McGee 
-   Version 1.5.4-1
-   * Upstream version 1.5.4
-   * Enable pthreads support in pack-objects. To use, set the pack.threads
- git config option. Read manpages of pack-objects and config for more
- details.
-   * Changelog added (with entries going back a bit).
-
-2008-01-28 Kevin Piche 
-   Version 1.5.3.7-2
-   * Updated for new perl policy (vendor dirs)
-   * Change license to GPL2
-
-2007-11-01 Eric Belanger 
-   Version 1.5.3.5-2
-   * Fix Perl module location

Copied: git/repos/extra-i686/ChangeLog (from rev 145348, git/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2011-12-22 00:41:35 UTC (rev 145349)
@@ -0,0 +1,57 @@
+Simple version bumps are omitted from the following ChangeLog.
+
+2011-08-16 Dan McGee 
+   Version 1.7.6.1-1
+   * Enable USE_LIBPCRE for `git grep -P` usage
+
+2011-05-05 Dan McGee 
+   Version 1.7.5.1-1
+   * Byte compile emacs files (FS#20874)
+   * Respect CFLAGS/LDFLAGS (FS#23963)
+
+2011-04-27 Dan McGee 
+   Version 1.7.5-1
+   * Add missing optdepends for git send-email (FS#20923)
+
+2011-01-05 Dan McGee 
+   Version 1.7.3.5-1
+   * More flexible git-daemon RC scripts (FS#20575)
+
+2010-10-01 Allan McRae 
+   Version 1.7.3.1-2
+   * Python 2/3 rebuild
+
+2010-06-29 Dan McGee 
+   Version 1.7.1.1-1
+   * Add emacs completion files (FS#17968)
+   * Add git-daemon RC scripts (FS#19291)
+
+2009-06-05 Dan McGee 
+   Version 1.6.3.2-1
+   * Remove gitweb from /usr/share; it needs customization to be helpful
+   * Add NO_CROSS_DIRECTORY_HARDLINKS option to build (FS#13683)
+
+2008-09-14 Dan McGee 
+   Version 1.6.0.2-1
+   * Moved optional depends from install file to optdepends array
+
+2008-06-15 Dan McGee 
+   Version 1.5.6-1
+   * Removed 'cpio' dependency, clone is now a builtin and no longer needs 
it
+
+2008-02-02 Dan McGee 
+   Version 1.5.4-1
+   * Upstream version 1.5.4
+   * Enable pthreads support in pack-objects. To use, set the pack.threads
+ git config option. Read manpages of pack-objects and config for more
+ details.
+   * Changelog added (with entries going back a bit).
+
+2008-01-28 Kevin Piche 
+   Version 1.5.3.7-2
+   * Updated for new perl policy (vendor dirs)
+   * Change license to GPL2
+
+2007-11-01 Eric Belanger 
+   Version 1.5.3.5-2
+   * Fix Perl module location

Deleted: PKGBUILD
===
--- PKGBUILD2011

[arch-commits] Commit in git/repos/extra-i686 (8 files)

2011-08-24 Thread Dan McGee
Date: Wednesday, August 24, 2011 @ 20:29:37
  Author: dan
Revision: 136224

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/ChangeLog
(from rev 136223, git/trunk/ChangeLog)
  git/repos/extra-i686/PKGBUILD
(from rev 136223, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon
(from rev 136223, git/trunk/git-daemon)
  git/repos/extra-i686/git-daemon.conf
(from rev 136223, git/trunk/git-daemon.conf)
Deleted:
  git/repos/extra-i686/ChangeLog
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon
  git/repos/extra-i686/git-daemon.conf

-+
 ChangeLog   |  110 +-
 PKGBUILD|  173 +++---
 git-daemon  |  140 +--
 git-daemon.conf |   10 +--
 4 files changed, 220 insertions(+), 213 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2011-08-25 00:22:56 UTC (rev 136223)
+++ ChangeLog   2011-08-25 00:29:37 UTC (rev 136224)
@@ -1,53 +0,0 @@
-Simple version bumps are omitted from the following ChangeLog.
-
-2011-05-05 Dan McGee 
-   Version 1.7.5.1-1
-   * Byte compile emacs files (FS#20874)
-   * Respect CFLAGS/LDFLAGS (FS#23963)
-
-2011-04-27 Dan McGee 
-   Version 1.7.5-1
-   * Add missing optdepends for git send-email (FS#20923)
-
-2011-01-05 Dan McGee 
-   Version 1.7.3.5-1
-   * More flexible git-daemon RC scripts (FS#20575)
-
-2010-10-01 Allan McRae 
-   Version 1.7.3.1-2
-   * Python 2/3 rebuild
-
-2010-06-29 Dan McGee 
-   Version 1.7.1.1-1
-   * Add emacs completion files (FS#17968)
-   * Add git-daemon RC scripts (FS#19291)
-
-2009-06-05 Dan McGee 
-   Version 1.6.3.2-1
-   * Remove gitweb from /usr/share; it needs customization to be helpful
-   * Add NO_CROSS_DIRECTORY_HARDLINKS option to build (FS#13683)
-
-2008-09-14 Dan McGee 
-   Version 1.6.0.2-1
-   * Moved optional depends from install file to optdepends array
-
-2008-06-15 Dan McGee 
-   Version 1.5.6-1
-   * Removed 'cpio' dependency, clone is now a builtin and no longer needs 
it
-
-2008-02-02 Dan McGee 
-   Version 1.5.4-1
-   * Upstream version 1.5.4
-   * Enable pthreads support in pack-objects. To use, set the pack.threads
- git config option. Read manpages of pack-objects and config for more
- details.
-   * Changelog added (with entries going back a bit).
-
-2008-01-28 Kevin Piche 
-   Version 1.5.3.7-2
-   * Updated for new perl policy (vendor dirs)
-   * Change license to GPL2
-
-2007-11-01 Eric Belanger 
-   Version 1.5.3.5-2
-   * Fix Perl module location

Copied: git/repos/extra-i686/ChangeLog (from rev 136223, git/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2011-08-25 00:29:37 UTC (rev 136224)
@@ -0,0 +1,57 @@
+Simple version bumps are omitted from the following ChangeLog.
+
+2011-08-16 Dan McGee 
+   Version 1.7.6.1-1
+   * Enable USE_LIBPCRE for `git grep -P` usage
+
+2011-05-05 Dan McGee 
+   Version 1.7.5.1-1
+   * Byte compile emacs files (FS#20874)
+   * Respect CFLAGS/LDFLAGS (FS#23963)
+
+2011-04-27 Dan McGee 
+   Version 1.7.5-1
+   * Add missing optdepends for git send-email (FS#20923)
+
+2011-01-05 Dan McGee 
+   Version 1.7.3.5-1
+   * More flexible git-daemon RC scripts (FS#20575)
+
+2010-10-01 Allan McRae 
+   Version 1.7.3.1-2
+   * Python 2/3 rebuild
+
+2010-06-29 Dan McGee 
+   Version 1.7.1.1-1
+   * Add emacs completion files (FS#17968)
+   * Add git-daemon RC scripts (FS#19291)
+
+2009-06-05 Dan McGee 
+   Version 1.6.3.2-1
+   * Remove gitweb from /usr/share; it needs customization to be helpful
+   * Add NO_CROSS_DIRECTORY_HARDLINKS option to build (FS#13683)
+
+2008-09-14 Dan McGee 
+   Version 1.6.0.2-1
+   * Moved optional depends from install file to optdepends array
+
+2008-06-15 Dan McGee 
+   Version 1.5.6-1
+   * Removed 'cpio' dependency, clone is now a builtin and no longer needs 
it
+
+2008-02-02 Dan McGee 
+   Version 1.5.4-1
+   * Upstream version 1.5.4
+   * Enable pthreads support in pack-objects. To use, set the pack.threads
+ git config option. Read manpages of pack-objects and config for more
+ details.
+   * Changelog added (with entries going back a bit).
+
+2008-01-28 Kevin Piche 
+   Version 1.5.3.7-2
+   * Updated for new perl policy (vendor dirs)
+   * Change license to GPL2
+
+2007-11-01 Eric Belanger 
+   Version 1.5.3.5-2
+   * Fix Perl module location

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-25 00:22:56 UTC (rev 136223)
+++ PKGBUILD2011-08-25 00:29:37 UTC (rev 136224)
@@ -1,85 +0,0 @@
-# $

[arch-commits] Commit in git/repos (extra-i686 testing-i686)

2011-06-28 Thread Angel Velásquez
Date: Tuesday, June 28, 2011 @ 18:49:17
  Author: angvp
Revision: 129600

db-move: moved git from [testing] to [extra] (i686)

Added:
  git/repos/extra-i686/
Deleted:
  git/repos/testing-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-06-28 Thread Angel Velásquez
Date: Tuesday, June 28, 2011 @ 18:49:16
  Author: angvp
Revision: 129599

db-move: git removed by angvp for move to [extra] (i686)

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-05-20 Thread Dan McGee
Date: Friday, May 20, 2011 @ 12:25:36
  Author: dan
Revision: 124418

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-05-20 Thread Dan McGee
Date: Friday, May 20, 2011 @ 12:25:29
  Author: dan
Revision: 124417

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-05-05 Thread Dan McGee
Date: Thursday, May 5, 2011 @ 09:25:26
  Author: dan
Revision: 122654

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-05-05 Thread Dan McGee
Date: Thursday, May 5, 2011 @ 09:25:17
  Author: dan
Revision: 122653

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:50:47
  Author: dan
Revision: 120944

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:50:40
  Author: dan
Revision: 120943

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-06 Thread Dan McGee
Date: Wednesday, April 6, 2011 @ 21:46:36
  Author: dan
Revision: 118454

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-06 Thread Dan McGee
Date: Wednesday, April 6, 2011 @ 21:46:27
  Author: dan
Revision: 118453

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-04 Thread Dan McGee
Date: Monday, April 4, 2011 @ 23:53:13
  Author: dan
Revision: 117961

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-04-04 Thread Dan McGee
Date: Monday, April 4, 2011 @ 23:53:05
  Author: dan
Revision: 117960

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-03-27 Thread Dan McGee
Date: Sunday, March 27, 2011 @ 21:50:43
  Author: dan
Revision: 117040

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-03-27 Thread Dan McGee
Date: Sunday, March 27, 2011 @ 21:50:36
  Author: dan
Revision: 117039

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-02-12 Thread Dan McGee
Date: Saturday, February 12, 2011 @ 11:13:43
  Author: dan
Revision: 109770

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-02-12 Thread Dan McGee
Date: Saturday, February 12, 2011 @ 11:13:33
  Author: dan
Revision: 109769

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-01-31 Thread Dan McGee
Date: Monday, January 31, 2011 @ 08:57:06
  Author: dan
Revision: 108467

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-01-31 Thread Dan McGee
Date: Monday, January 31, 2011 @ 08:56:58
  Author: dan
Revision: 108466

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686 testing-i686)

2011-01-14 Thread Angel Velásquez
Date: Friday, January 14, 2011 @ 09:44:06
  Author: angvp
Revision: 105925

db-move: moved git from [testing] to [extra] (i686)

Added:
  git/repos/extra-i686/
Deleted:
  git/repos/testing-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-01-14 Thread Angel Velásquez
Date: Friday, January 14, 2011 @ 09:44:05
  Author: angvp
Revision: 105924

db-move: git removed by angvp for move to [extra] (i686)

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-01-05 Thread Dan McGee
Date: Wednesday, January 5, 2011 @ 21:56:51
  Author: dan
Revision: 105076

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2011-01-05 Thread Dan McGee
Date: Wednesday, January 5, 2011 @ 21:56:43
  Author: dan
Revision: 105075

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-12-18 Thread Dan McGee
Date: Saturday, December 18, 2010 @ 15:04:55
  Author: dan
Revision: 103395

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-12-18 Thread Dan McGee
Date: Saturday, December 18, 2010 @ 15:04:47
  Author: dan
Revision: 103394

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:24:47
  Author: dan
Revision: 102181

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:24:38
  Author: dan
Revision: 102180

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-10-22 Thread Dan McGee
Date: Friday, October 22, 2010 @ 09:19:48
  Author: dan
Revision: 96577

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-10-22 Thread Dan McGee
Date: Friday, October 22, 2010 @ 09:19:37
  Author: dan
Revision: 96576

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686 testing-i686)

2010-10-18 Thread Allan McRae
Date: Monday, October 18, 2010 @ 16:58:35
  Author: allan
Revision: 95537

db-move: moved git from [testing] to [extra] (i686)

Added:
  git/repos/extra-i686/
Deleted:
  git/repos/testing-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-10-18 Thread Allan McRae
Date: Monday, October 18, 2010 @ 16:58:32
  Author: allan
Revision: 95536

db-move: git removed by allan for move to [extra] (i686)

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-10-01 Thread Allan McRae
Date: Friday, October 1, 2010 @ 03:18:23
  Author: allan
Revision: 92784

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-10-01 Thread Allan McRae
Date: Friday, October 1, 2010 @ 03:17:58
  Author: allan
Revision: 92783

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-29 Thread Dan McGee
Date: Wednesday, September 29, 2010 @ 23:02:51
  Author: dan
Revision: 92458

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-29 Thread Dan McGee
Date: Wednesday, September 29, 2010 @ 23:02:42
  Author: dan
Revision: 92457

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-20 Thread Dan McGee
Date: Monday, September 20, 2010 @ 09:18:15
  Author: dan
Revision: 90996

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-20 Thread Dan McGee
Date: Monday, September 20, 2010 @ 09:18:08
  Author: dan
Revision: 90995

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-09 Thread Dan McGee
Date: Thursday, September 9, 2010 @ 09:23:08
  Author: dan
Revision: 90234

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-09 Thread Dan McGee
Date: Thursday, September 9, 2010 @ 09:23:00
  Author: dan
Revision: 90233

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-03 Thread Dan McGee
Date: Friday, September 3, 2010 @ 20:49:34
  Author: dan
Revision: 89779

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-09-03 Thread Dan McGee
Date: Friday, September 3, 2010 @ 20:49:24
  Author: dan
Revision: 89778

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-08-23 Thread Dan McGee
Date: Monday, August 23, 2010 @ 14:03:38
  Author: dan
Revision: 88443

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-08-23 Thread Dan McGee
Date: Monday, August 23, 2010 @ 14:03:25
  Author: dan
Revision: 88442

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-07-28 Thread Dan McGee
Date: Wednesday, July 28, 2010 @ 14:01:18
  Author: dan
Revision: 86310

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-07-28 Thread Dan McGee
Date: Wednesday, July 28, 2010 @ 14:01:08
  Author: dan
Revision: 86309

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-07-22 Thread Dan McGee
Date: Thursday, July 22, 2010 @ 14:36:35
  Author: dan
Revision: 85949

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-07-22 Thread Dan McGee
Date: Thursday, July 22, 2010 @ 14:36:26
  Author: dan
Revision: 85948

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-06-29 Thread Dan McGee
Date: Tuesday, June 29, 2010 @ 22:46:33
  Author: dan
Revision: 84470

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-06-29 Thread Dan McGee
Date: Tuesday, June 29, 2010 @ 22:46:22
  Author: dan
Revision: 84469

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-25 Thread Dan McGee
Date: Sunday, April 25, 2010 @ 12:58:02
  Author: dan
Revision: 78547

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-25 Thread Dan McGee
Date: Sunday, April 25, 2010 @ 12:57:52
  Author: dan
Revision: 78546

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-23 Thread Dan McGee
Date: Friday, April 23, 2010 @ 09:42:03
  Author: dan
Revision: 78413

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-23 Thread Dan McGee
Date: Friday, April 23, 2010 @ 09:41:53
  Author: dan
Revision: 78412

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-12 Thread Dan McGee
Date: Monday, April 12, 2010 @ 21:31:28
  Author: dan
Revision: 77432

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-12 Thread Dan McGee
Date: Monday, April 12, 2010 @ 21:31:18
  Author: dan
Revision: 77431

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-04-08 Thread Pierre Schmitz
Date: Thursday, April 8, 2010 @ 16:50:06
  Author: pierre
Revision: 76413

db-move: git removed by pierre for move to extra

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-03-22 Thread Dan McGee
Date: Monday, March 22, 2010 @ 20:47:36
  Author: dan
Revision: 73136

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-03-22 Thread Dan McGee
Date: Monday, March 22, 2010 @ 20:47:28
  Author: dan
Revision: 73135

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-03-07 Thread Dan McGee
Date: Sunday, March 7, 2010 @ 19:15:37
  Author: dan
Revision: 71663

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-03-07 Thread Dan McGee
Date: Sunday, March 7, 2010 @ 19:15:28
  Author: dan
Revision: 71662

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:08:55
  Author: dan
Revision: 70779

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:08:47
  Author: dan
Revision: 70778

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-02-16 Thread Dan McGee
Date: Tuesday, February 16, 2010 @ 22:45:20
  Author: dan
Revision: 69079

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686)

2010-02-16 Thread Dan McGee
Date: Tuesday, February 16, 2010 @ 22:45:11
  Author: dan
Revision: 69078

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2010-01-20 Thread Dan McGee
Date: Thursday, January 21, 2010 @ 00:01:58
  Author: dan
Revision: 64563

Merged revisions 64561 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r64561 | dan | 2010-01-20 22:54:13 -0600 (Wed, 20 Jan 2010) | 2 lines
  
  verbump


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-61795
   + /git/trunk:1-64562

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2010-01-21 04:54:31 UTC (rev 64562)
+++ extra-i686/PKGBUILD 2010-01-21 05:01:58 UTC (rev 64563)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.6
+pkgver=1.6.6.1
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,7 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('25e4bcdc528b3ffadc6e59908a513881'
- '2f31c767576fa693b5b45244a022fdd3')
-sha256sums=('c3f7a384f7f8618ec1c2a732c8c0a94accf00214602beea34fbb39566041c19c'
-'d1f5ec7e4094bc1ee9b6326e93c7354962c0da29ae801793c48a044e2846e862')
+md5sums=('9d254bfdae56c6fa124d8a1312a1b034'
+ '18cbc20056058ef4d336896f628fc3b8')
+sha256sums=('79c3049913a11b966b92406ec3ef6c7c5eb680cfa2a8b0c1abb167b1bfaf9769'
+'8282a948e8d06d75cad38e91ef6ca99871f44021c5e2ddd1c50327259a808236')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-24 Thread Dan McGee
Date: Thursday, December 24, 2009 @ 11:19:37
  Author: dan
Revision: 61796

Merged revisions 61794 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r61794 | dan | 2009-12-24 10:13:13 -0600 (Thu, 24 Dec 2009) | 2 lines
  
  upgpkg: git 1.6.6-1
  bump to major ver 1.6.6


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-61701
   + /git/trunk:1-61795

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-24 16:13:49 UTC (rev 61795)
+++ extra-i686/PKGBUILD 2009-12-24 16:19:37 UTC (rev 61796)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.7
+pkgver=1.6.6
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,5 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('0c2eb426cf596755d6d57a83c9a78be7'
- 'bafa2e4b914df994ede6a5b401018ef5')
+md5sums=('25e4bcdc528b3ffadc6e59908a513881'
+ '2f31c767576fa693b5b45244a022fdd3')
+sha256sums=('c3f7a384f7f8618ec1c2a732c8c0a94accf00214602beea34fbb39566041c19c'
+'d1f5ec7e4094bc1ee9b6326e93c7354962c0da29ae801793c48a044e2846e862')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-21 Thread Dan McGee
Date: Monday, December 21, 2009 @ 18:18:24
  Author: dan
Revision: 61702

Merged revisions 61701 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r61701 | dan | 2009-12-21 17:18:04 -0600 (Mon, 21 Dec 2009) | 2 lines
  
  git verbump


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-61169
   + /git/trunk:1-61701

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-21 23:18:04 UTC (rev 61701)
+++ extra-i686/PKGBUILD 2009-12-21 23:18:24 UTC (rev 61702)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.6
+pkgver=1.6.5.7
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,7 +44,5 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('03aefaaecae7a236b88d04d1a83698d9'
- '27fd3012af534f9e1ad2c67fdac7')
-sha256sums=('8e6261fc2fe162b0f1f5f0ad7aa42f8922491b9a1c43b3a1e9e6a7d049f2f106'
-'344b4e85afc4a07595c745adda3b3fe9ef7a4c6780ed1cb9d2a4350b8d2063a2')
+md5sums=('0c2eb426cf596755d6d57a83c9a78be7'
+ 'bafa2e4b914df994ede6a5b401018ef5')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-12 Thread Dan McGee
Date: Saturday, December 12, 2009 @ 17:58:09
  Author: dan
Revision: 61170

Merged revisions 61168 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r61168 | dan | 2009-12-12 16:15:45 -0600 (Sat, 12 Dec 2009) | 2 lines
  
  Version bump


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-60732
   + /git/trunk:1-61169

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-12 22:16:05 UTC (rev 61169)
+++ extra-i686/PKGBUILD 2009-12-12 22:58:09 UTC (rev 61170)
@@ -2,8 +2,8 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.5
-pkgrel=2
+pkgver=1.6.5.6
+pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
 url="http://git-scm.com/";
@@ -44,7 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('fd575f22e67adbea1d17e5bc66a80f8d'
- '223c2d831927c0b11830feadb56df77d')
-sha256sums=('4d1aaf16b4c37c8412cceab09b009bfc0f8d7b9f30a809b82027ab7fa66fdbb3'
-'1462c3c71985d760679bfd27219c03572c92d3149aaef8cae802fe6217d05c73')
+md5sums=('03aefaaecae7a236b88d04d1a83698d9'
+ '27fd3012af534f9e1ad2c67fdac7')
+sha256sums=('8e6261fc2fe162b0f1f5f0ad7aa42f8922491b9a1c43b3a1e9e6a7d049f2f106'
+'344b4e85afc4a07595c745adda3b3fe9ef7a4c6780ed1cb9d2a4350b8d2063a2')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-06 Thread Dan McGee
Date: Sunday, December 6, 2009 @ 11:38:36
  Author: dan
Revision: 60733

Merged revisions 60731 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r60731 | dan | 2009-12-06 10:33:16 -0600 (Sun, 06 Dec 2009) | 2 lines
  
  Move contrib/ into a more sane place, whoops


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-60729
   + /git/trunk:1-60732

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-06 16:33:36 UTC (rev 60732)
+++ extra-i686/PKGBUILD 2009-12-06 16:38:36 UTC (rev 60733)
@@ -3,7 +3,7 @@
 
 pkgname=git
 pkgver=1.6.5.5
-pkgrel=1
+pkgrel=2
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
 url="http://git-scm.com/";
@@ -31,7 +31,7 @@
   install -m644 ./contrib/completion/git-completion.bash 
$pkgdir/etc/bash_completion.d/git || return 1
 
   # more contrib stuff
-  cp -a ./contrib $pkgdir/usr/share/ || return 1
+  cp -a ./contrib $pkgdir/usr/share/git/ || return 1
 
   # how 'bout some manpages?
   for mansect in man1 man5 man7; do



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-06 Thread Dan McGee
Date: Sunday, December 6, 2009 @ 11:29:23
  Author: dan
Revision: 60730

Merged revisions 60728 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r60728 | dan | 2009-12-06 10:22:51 -0600 (Sun, 06 Dec 2009) | 2 lines
  
  Version bump


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-60342
   + /git/trunk:1-60729

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-06 16:23:38 UTC (rev 60729)
+++ extra-i686/PKGBUILD 2009-12-06 16:29:23 UTC (rev 60730)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.4
+pkgver=1.6.5.5
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,7 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('1c214e8175e8dd372618ecf3d76448f5'
- '513390db5f38534f5f2459202a8feccc')
-sha256sums=('e5548c4a4ddefbdb3e4a846061861c51b2498f7453606e03fa67f6ae1dc1dace'
-'3047eb40c5239b7c6d67628db60446e50027e7282eee6db400996081ca244ec7')
+md5sums=('fd575f22e67adbea1d17e5bc66a80f8d'
+ '223c2d831927c0b11830feadb56df77d')
+sha256sums=('4d1aaf16b4c37c8412cceab09b009bfc0f8d7b9f30a809b82027ab7fa66fdbb3'
+'1462c3c71985d760679bfd27219c03572c92d3149aaef8cae802fe6217d05c73')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-03 Thread Dan McGee
Date: Thursday, December 3, 2009 @ 08:59:05
  Author: dan
Revision: 60343

Merged revisions 60341 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r60341 | dan | 2009-12-03 07:44:05 -0600 (Thu, 03 Dec 2009) | 2 lines
  
  upgpkg: git 1.6.5.4-1
  verbump


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-58908
   + /git/trunk:1-60342

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-03 13:44:23 UTC (rev 60342)
+++ extra-i686/PKGBUILD 2009-12-03 13:59:05 UTC (rev 60343)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.3
+pkgver=1.6.5.4
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,7 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('a1dbc3da46cbf33c4367db689853c142'
- 'dc2cf85cb1f29b586a1353307093bc62')
-sha256sums=('3822c8350be782f28a7a60138ec65a6f04f259940f84f7062e508d9f9d64eefa'
-'0ace2ac5b3be31f919f594a3c56fbd567fbc90ac7d1db72b17335495ca29759b')
+md5sums=('1c214e8175e8dd372618ecf3d76448f5'
+ '513390db5f38534f5f2459202a8feccc')
+sha256sums=('e5548c4a4ddefbdb3e4a846061861c51b2498f7453606e03fa67f6ae1dc1dace'
+'3047eb40c5239b7c6d67628db60446e50027e7282eee6db400996081ca244ec7')



[arch-commits] Commit in git/repos (extra-i686 extra-i686/PKGBUILD)

2009-11-16 Thread Dan McGee
Date: Monday, November 16, 2009 @ 22:16:35
  Author: dan
Revision: 58909

Merged revisions 58907 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/git/trunk


  r58907 | dan | 2009-11-16 21:08:42 -0600 (Mon, 16 Nov 2009) | 3 lines
  
  Version bump git


Modified:
  git/repos/extra-i686/ (properties)
  git/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)


Property changes on: git/repos/extra-i686
___
Modified: svnmerge-integrated
   - /git/trunk:1-56735
   + /git/trunk:1-58908

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-11-17 03:09:01 UTC (rev 58908)
+++ extra-i686/PKGBUILD 2009-11-17 03:16:35 UTC (rev 58909)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.6.5.2
+pkgver=1.6.5.3
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -44,7 +44,7 @@
   rm -rf $pkgdir/usr/lib/perl5
 }
 
-md5sums=('99708c449b23433136dbdfa38bd16d80'
- 'e4c20bd92b7ec187a421c045ae99978a')
-sha256sums=('a7050b45a4c5a2b40db83dc67dc3ff4b422ef1864df72316b3221ead2eefb5c1'
-'893c1abc6729d19aef26e3e17323fc1bb6e290974c932e8ab51197fdd921')
+md5sums=('a1dbc3da46cbf33c4367db689853c142'
+ 'dc2cf85cb1f29b586a1353307093bc62')
+sha256sums=('3822c8350be782f28a7a60138ec65a6f04f259940f84f7062e508d9f9d64eefa'
+'0ace2ac5b3be31f919f594a3c56fbd567fbc90ac7d1db72b17335495ca29759b')