[arch-commits] Commit in pacman/repos (10 files)

2017-07-04 Thread Bartłomiej Piotrowski
Date: Tuesday, July 4, 2017 @ 09:35:46
  Author: bpiotrowski
Revision: 299659

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

Added:
  pacman/repos/staging-i686/
  pacman/repos/staging-i686/PKGBUILD
(from rev 299658, pacman/trunk/PKGBUILD)
  pacman/repos/staging-i686/makepkg.conf
(from rev 299658, pacman/trunk/makepkg.conf)
  pacman/repos/staging-i686/pacman.conf.i686
(from rev 299658, pacman/trunk/pacman.conf.i686)
  pacman/repos/staging-i686/pacman.conf.x86_64
(from rev 299658, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/staging-x86_64/
  pacman/repos/staging-x86_64/PKGBUILD
(from rev 299658, pacman/trunk/PKGBUILD)
  pacman/repos/staging-x86_64/makepkg.conf
(from rev 299658, pacman/trunk/makepkg.conf)
  pacman/repos/staging-x86_64/pacman.conf.i686
(from rev 299658, pacman/trunk/pacman.conf.i686)
  pacman/repos/staging-x86_64/pacman.conf.x86_64
(from rev 299658, pacman/trunk/pacman.conf.x86_64)

---+
 staging-i686/PKGBUILD |   91 ++
 staging-i686/makepkg.conf |  147 
 staging-i686/pacman.conf.i686 |   91 ++
 staging-i686/pacman.conf.x86_64   |  100 
 staging-x86_64/PKGBUILD   |   91 ++
 staging-x86_64/makepkg.conf   |  147 
 staging-x86_64/pacman.conf.i686   |   91 ++
 staging-x86_64/pacman.conf.x86_64 |  100 
 8 files changed, 858 insertions(+)

Copied: pacman/repos/staging-i686/PKGBUILD (from rev 299658, 
pacman/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-07-04 09:35:46 UTC (rev 299659)
@@ -0,0 +1,91 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.0.2
+pkgrel=2
+pkgdesc="A library-based package manager with dependency support"
+arch=('i686' 'x86_64')
+url="http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python2' 'fakechroot')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+sha256sums=('dfd36086ad68564bcd977f4a1fafe51dd328acd4a95093ac4bf1249be9c41f0e'
+'SKIP'
+'cb76123c15ca9f2a467ebecb72af611f618fcc8431cf8b437d40fa2e61c23590'
+'95b3b2416402059cf6acf3e046082e7ce261e2b88629231dbf579a4200d8a63b'
+'6066d67d818ee36760bf121c76d5019130f7875b3e5ed179b319b810a3a9685b')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+  make -C contrib 
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf.$CARCH" "$pkgdir/etc/pacman.conf"
+
+  case $CARCH in
+i686)
+  mycarch="i686"
+  mychost="i686-pc-linux-gnu"
+  myflags="-march=i686"
+  ;;
+x86_64)
+  mycarch="x86_64"
+  mychost="x86_64-pc-linux-gnu"
+  myflags="-march=x86-64"
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+  sed -i "$pkgdir/etc/makepkg.conf" \
+-e "s|@CARCH[@]|$mycarch|g" \
+-e "s|@CHOST[@]|$mychost|g" \
+-e "s|@CARCHFLAGS[@]|$myflags|g"
+
+  # put bash_completion in the right location
+  install -dm755 "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/etc/bash_completion.d/pacman" 
"$pkgdir/usr/share/bash-completion/completions"
+  rmdir "$pkgdir/etc/bash_completion.d"
+
+  for f in makepkg pacman-key; do
+ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim"
+}

Copied: pacman/repos/staging-i686/makepkg.conf (from rev 299658, 
pacman/trunk/makepkg.conf)
===
--- staging-i686/makepkg.conf 

[arch-commits] Commit in pacman/repos (10 files)

2017-06-13 Thread Christian Hesse
Date: Tuesday, June 13, 2017 @ 12:12:39
  Author: eworm
Revision: 298724

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 298723, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 298723, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 298723, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 298723, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 298723, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 298723, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 298723, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 298723, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   91 ++
 testing-i686/makepkg.conf |  147 
 testing-i686/pacman.conf.i686 |   91 ++
 testing-i686/pacman.conf.x86_64   |  100 
 testing-x86_64/PKGBUILD   |   91 ++
 testing-x86_64/makepkg.conf   |  147 
 testing-x86_64/pacman.conf.i686   |   91 ++
 testing-x86_64/pacman.conf.x86_64 |  100 
 8 files changed, 858 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 298723, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-06-13 12:12:39 UTC (rev 298724)
@@ -0,0 +1,91 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="A library-based package manager with dependency support"
+arch=('i686' 'x86_64')
+url="http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python2' 'fakechroot')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+sha256sums=('dfd36086ad68564bcd977f4a1fafe51dd328acd4a95093ac4bf1249be9c41f0e'
+'SKIP'
+'cb76123c15ca9f2a467ebecb72af611f618fcc8431cf8b437d40fa2e61c23590'
+'95b3b2416402059cf6acf3e046082e7ce261e2b88629231dbf579a4200d8a63b'
+'56a016d6a5404ab6dd7b8fd39027ef422dd14ad07c768853863a1e03dcc9a3e0')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+  make -C contrib 
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf.$CARCH" "$pkgdir/etc/pacman.conf"
+
+  case $CARCH in
+i686)
+  mycarch="i686"
+  mychost="i686-pc-linux-gnu"
+  myflags="-march=i686"
+  ;;
+x86_64)
+  mycarch="x86_64"
+  mychost="x86_64-pc-linux-gnu"
+  myflags="-march=x86-64"
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+  sed -i "$pkgdir/etc/makepkg.conf" \
+-e "s|@CARCH[@]|$mycarch|g" \
+-e "s|@CHOST[@]|$mychost|g" \
+-e "s|@CARCHFLAGS[@]|$myflags|g"
+
+  # put bash_completion in the right location
+  install -dm755 "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/etc/bash_completion.d/pacman" 
"$pkgdir/usr/share/bash-completion/completions"
+  rmdir "$pkgdir/etc/bash_completion.d"
+
+  for f in makepkg pacman-key; do
+ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim"
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 298723, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf  

[arch-commits] Commit in pacman/repos (10 files)

2016-02-22 Thread Allan McRae
Date: Tuesday, February 23, 2016 @ 05:24:42
  Author: allan
Revision: 260171

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 260170, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 260170, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 260170, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 260170, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 260170, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 260170, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 260170, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 260170, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   90 ++
 testing-i686/makepkg.conf |  147 
 testing-i686/pacman.conf.i686 |   91 ++
 testing-i686/pacman.conf.x86_64   |  100 
 testing-x86_64/PKGBUILD   |   90 ++
 testing-x86_64/makepkg.conf   |  147 
 testing-x86_64/pacman.conf.i686   |   91 ++
 testing-x86_64/pacman.conf.x86_64 |  100 
 8 files changed, 856 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 260170, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 04:24:42 UTC (rev 260171)
@@ -0,0 +1,90 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="A library-based package manager with dependency support"
+arch=('i686' 'x86_64')
+url="http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')   # roundup patch alters docs
+checkdepends=('python2' 'fakechroot')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('377a2664d6007d72d6d8a126add83bcf'
+ 'SKIP'
+ 'bdb40c76225c2fd8874bd34b6a3f6ad7'
+ 'c511ee4c7a86a37e8841440ede89300d'
+ 'f5b59fe5f016eebd9590318530bbd996')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 

+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+  make -C contrib 
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf.$CARCH" "$pkgdir/etc/pacman.conf"
+
+  case $CARCH in
+i686)
+  mycarch="i686"
+  mychost="i686-pc-linux-gnu"
+  myflags="-march=i686"
+  ;;
+x86_64)
+  mycarch="x86_64"
+  mychost="x86_64-unknown-linux-gnu"
+  myflags="-march=x86-64"
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+  sed -i "$pkgdir/etc/makepkg.conf" \
+-e "s|@CARCH[@]|$mycarch|g" \
+-e "s|@CHOST[@]|$mychost|g" \
+-e "s|@CARCHFLAGS[@]|$myflags|g"
+
+  # put bash_completion in the right location
+  install -dm755 "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/etc/bash_completion.d/pacman" 
"$pkgdir/usr/share/bash-completion/completions"
+  rmdir "$pkgdir/etc/bash_completion.d"
+
+  for f in makepkg pacman-key; do
+ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim"
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 260170, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2016-02-23 04:24:42 UTC (rev 260171)
@@ -0,0 +1,147 @@
+#
+# /etc/makepkg.conf
+#
+

[arch-commits] Commit in pacman/repos (10 files)

2015-02-19 Thread Allan McRae
Date: Friday, February 20, 2015 @ 03:01:28
  Author: allan
Revision: 231683

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 231682, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 231682, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 231682, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 231682, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 231682, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 231682, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 231682, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 231682, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   90 ++
 testing-i686/makepkg.conf |  146 
 testing-i686/pacman.conf.i686 |   90 ++
 testing-i686/pacman.conf.x86_64   |   99 
 testing-x86_64/PKGBUILD   |   90 ++
 testing-x86_64/makepkg.conf   |  146 
 testing-x86_64/pacman.conf.i686   |   90 ++
 testing-x86_64/pacman.conf.x86_64 |   99 
 8 files changed, 850 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 231682, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-20 02:01:28 UTC (rev 231683)
@@ -0,0 +1,90 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.2.1
+pkgrel=1
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive=3.1.2' 'curl=7.39.0'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')   # roundup patch alters docs
+checkdepends=('python2' 'fakechroot')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('2a596fc8f723e99660c0869a74afcf47'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ '03d578816b56852d803cbafac85b9f09')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 
al...@archlinux.org
+
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 $pkgdir/usr/share/bash-completion/completions
+  mv $pkgdir/etc/bash_completion.d/pacman 
$pkgdir/usr/share/bash-completion/completions
+  rmdir $pkgdir/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 231682, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2015-02-20 02:01:28 UTC (rev 231683)
@@ -0,0 +1,146 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION

[arch-commits] Commit in pacman/repos (10 files)

2014-12-19 Thread Allan McRae
Date: Friday, December 19, 2014 @ 12:11:55
  Author: allan
Revision: 227782

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 227781, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 227781, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 227781, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 227781, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 227781, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 227781, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 227781, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 227781, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   89 ++
 testing-i686/makepkg.conf |  140 
 testing-i686/pacman.conf.i686 |   90 +++
 testing-i686/pacman.conf.x86_64   |   99 +
 testing-x86_64/PKGBUILD   |   89 ++
 testing-x86_64/makepkg.conf   |  140 
 testing-x86_64/pacman.conf.i686   |   90 +++
 testing-x86_64/pacman.conf.x86_64 |   99 +
 8 files changed, 836 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 227781, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-19 11:11:55 UTC (rev 227782)
@@ -0,0 +1,89 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.2.0
+pkgrel=1
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive=3.1.2' 'curl=7.39.0'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+checkdepends=('python2' 'fakechroot')
+optdepends=('fakeroot: for makepkg usage as normal user')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('184ce14f1f326fede72012cca51bba51'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ '2da6544e387f940588a90cb4b9b914e2')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 
al...@archlinux.org
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 $pkgdir/usr/share/bash-completion/completions
+  mv $pkgdir/etc/bash_completion.d/pacman 
$pkgdir/usr/share/bash-completion/completions
+  rmdir $pkgdir/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 227781, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2014-12-19 11:11:55 UTC (rev 227782)
@@ -0,0 +1,140 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION

[arch-commits] Commit in pacman/repos (10 files)

2014-05-03 Thread Allan McRae
Date: Sunday, May 4, 2014 @ 04:55:56
  Author: allan
Revision: 211993

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 211992, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 211992, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 211992, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 211992, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 211992, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 211992, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 211992, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 211992, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   88 ++
 testing-i686/makepkg.conf |  140 
 testing-i686/pacman.conf.i686 |   90 +++
 testing-i686/pacman.conf.x86_64   |   99 +
 testing-x86_64/PKGBUILD   |   88 ++
 testing-x86_64/makepkg.conf   |  140 
 testing-x86_64/pacman.conf.i686   |   90 +++
 testing-x86_64/pacman.conf.x86_64 |   99 +
 8 files changed, 834 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 211992, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-04 02:55:56 UTC (rev 211993)
@@ -0,0 +1,88 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.1.2
+pkgrel=6
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash=4.2.042-2' 'glibc=2.17-2' 'libarchive=3.1.2' 'curl=7.19.4'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+checkdepends=('python2' 'fakechroot')
+optdepends=('fakeroot: for makepkg usage as normal user')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('063c8b0ff6bdf903dc235445525627cd'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ '2da6544e387f940588a90cb4b9b914e2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 $pkgdir/usr/share/bash-completion/completions
+  mv $pkgdir/etc/bash_completion.d/pacman 
$pkgdir/usr/share/bash-completion/completions
+  rmdir $pkgdir/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 211992, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2014-05-04 02:55:56 UTC (rev 211993)
@@ -0,0 +1,140 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION
+#
+#
+#-- The download utilities that 

[arch-commits] Commit in pacman/repos (10 files)

2013-12-24 Thread Dave Reisner
Date: Tuesday, December 24, 2013 @ 22:36:18
  Author: dreisner
Revision: 202691

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 202690, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 202690, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 202690, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 202690, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 202690, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 202690, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 202690, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 202690, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   87 ++
 testing-i686/makepkg.conf |  140 
 testing-i686/pacman.conf.i686 |   90 +++
 testing-i686/pacman.conf.x86_64   |   99 +
 testing-x86_64/PKGBUILD   |   87 ++
 testing-x86_64/makepkg.conf   |  140 
 testing-x86_64/pacman.conf.i686   |   90 +++
 testing-x86_64/pacman.conf.x86_64 |   99 +
 8 files changed, 832 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 202690, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-24 21:36:18 UTC (rev 202691)
@@ -0,0 +1,87 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.1.2
+pkgrel=5
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash=4.2.042-2' 'glibc=2.17-2' 'libarchive=3.1.2' 'curl=7.19.4'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+checkdepends=('python2' 'fakechroot')
+optdepends=('fakeroot: for makepkg usage as normal user')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('063c8b0ff6bdf903dc235445525627cd'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ 'f4940a8003ebd11e514827a790ef4e7f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+  
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc/
+  # set things correctly in the default conf file
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 ${pkgdir}/usr/share/bash-completion/completions
+  mv ${pkgdir}/etc/bash_completion.d/pacman \
+${pkgdir}/usr/share/bash-completion/completions
+  rmdir ${pkgdir}/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 202690, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2013-12-24 21:36:18 UTC (rev 202691)
@@ -0,0 +1,140 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION

[arch-commits] Commit in pacman/repos (10 files)

2013-10-14 Thread Allan McRae
Date: Tuesday, October 15, 2013 @ 06:14:09
  Author: allan
Revision: 196539

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 196538, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 196538, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 196538, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 196538, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 196538, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 196538, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 196538, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 196538, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   85 +
 testing-i686/makepkg.conf |  140 
 testing-i686/pacman.conf.i686 |   90 +++
 testing-i686/pacman.conf.x86_64   |   99 +
 testing-x86_64/PKGBUILD   |   85 +
 testing-x86_64/makepkg.conf   |  140 
 testing-x86_64/pacman.conf.i686   |   90 +++
 testing-x86_64/pacman.conf.x86_64 |   99 +
 8 files changed, 828 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 196538, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-15 04:14:09 UTC (rev 196539)
@@ -0,0 +1,85 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.1.2
+pkgrel=2
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash=4.2.042-2' 'glibc=2.17-2' 'libarchive=3.1.2' 'curl=7.19.4'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+checkdepends=('python2' 'fakechroot')
+optdepends=('fakeroot: for makepkg usage as normal user')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=(!libtool)
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('063c8b0ff6bdf903dc235445525627cd'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ '88817f39676dcb093e9e64d465e40849')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+  
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc/
+  # set things correctly in the default conf file
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 ${pkgdir}/usr/share/bash-completion/completions
+  mv ${pkgdir}/etc/bash_completion.d/pacman \
+${pkgdir}/usr/share/bash-completion/completions
+  rmdir ${pkgdir}/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 196538, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2013-10-15 04:14:09 UTC (rev 196539)
@@ -0,0 +1,140 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION
+#
+#
+#-- The download utilities that makepkg should use to acquire sources
+#  Format: