[arch-commits] Commit in botan/repos (4 files)

Alexander Rødseth arodseth at nymeria.archlinux.org
Tue Apr 9 20:48:47 UTC 2013


    Date: Tuesday, April 9, 2013 @ 22:48:46
  Author: arodseth
Revision: 87983

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

Added:
  botan/repos/community-i686/PKGBUILD
    (from rev 87982, botan/trunk/PKGBUILD)
  botan/repos/community-x86_64/PKGBUILD
    (from rev 87982, botan/trunk/PKGBUILD)
Deleted:
  botan/repos/community-i686/PKGBUILD
  botan/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |   70 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   32 --------------------
 community-x86_64/PKGBUILD |   32 --------------------
 3 files changed, 70 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-04-09 20:48:33 UTC (rev 87982)
+++ community-i686/PKGBUILD	2013-04-09 20:48:46 UTC (rev 87983)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez <angvp at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-# Contributor: d'Ronin <daronin at 2600.com>
-
-pkgname=botan
-pkgver=1.10.3
-pkgrel=1
-pkgdesc="Crypto library written in C++"
-license=('BSD')
-arch=('i686' 'x86_64')
-url="http://botan.randombit.net/"
-depends=('gcc-libs' 'sh')
-makedepends=('python2')
-source=(http://files.randombit.net/botan/Botan-${pkgver}.tbz{,.asc})
-sha1sums=('9f929101bf75c19432f49f57c80d2d26eec91dcb'
-          'd03b220849e3d3b3a49363a0debc266b615d9fca')
-
-build() {
-  cd "${srcdir}/Botan-${pkgver}"
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' configure.py
-  ./configure.py --prefix=/usr
-  make 
-}
-
-package() {
-  cd "${srcdir}/Botan-${pkgver}"
-  make DESTDIR="${pkgdir}/usr" install
-  install -D -m644 doc/license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  find "${pkgdir}/usr/share/doc" -type f -exec chmod 0644 {} \;
-}
-

Copied: botan/repos/community-i686/PKGBUILD (from rev 87982, botan/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-04-09 20:48:46 UTC (rev 87983)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Angel Velasquez <angvp at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+# Contributor: d'Ronin <daronin at 2600.com>
+
+pkgname=botan
+pkgver=1.10.5
+pkgrel=1
+pkgdesc='Crypto library written in C++'
+license=('BSD')
+arch=('x86_64' 'i686')
+url='http://botan.randombit.net/'
+depends=('gcc-libs' 'sh')
+makedepends=('python2')
+source=("http://files.randombit.net/botan/Botan-${pkgver}.tbz")
+sha256sums=('2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3')
+
+build() {
+  cd "$srcdir/Botan-$pkgver"
+
+  sed -i 's:env python:env python2:' configure.py
+  ./configure.py --prefix=/usr
+  make 
+}
+
+package() {
+  cd "$srcdir/Botan-$pkgver"
+
+  make DESTDIR="$pkgdir/usr" install
+  install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \;
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-04-09 20:48:33 UTC (rev 87982)
+++ community-x86_64/PKGBUILD	2013-04-09 20:48:46 UTC (rev 87983)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez <angvp at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-# Contributor: d'Ronin <daronin at 2600.com>
-
-pkgname=botan
-pkgver=1.10.3
-pkgrel=1
-pkgdesc="Crypto library written in C++"
-license=('BSD')
-arch=('i686' 'x86_64')
-url="http://botan.randombit.net/"
-depends=('gcc-libs' 'sh')
-makedepends=('python2')
-source=(http://files.randombit.net/botan/Botan-${pkgver}.tbz{,.asc})
-sha1sums=('9f929101bf75c19432f49f57c80d2d26eec91dcb'
-          'd03b220849e3d3b3a49363a0debc266b615d9fca')
-
-build() {
-  cd "${srcdir}/Botan-${pkgver}"
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' configure.py
-  ./configure.py --prefix=/usr
-  make 
-}
-
-package() {
-  cd "${srcdir}/Botan-${pkgver}"
-  make DESTDIR="${pkgdir}/usr" install
-  install -D -m644 doc/license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  find "${pkgdir}/usr/share/doc" -type f -exec chmod 0644 {} \;
-}
-

Copied: botan/repos/community-x86_64/PKGBUILD (from rev 87982, botan/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-04-09 20:48:46 UTC (rev 87983)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Angel Velasquez <angvp at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+# Contributor: d'Ronin <daronin at 2600.com>
+
+pkgname=botan
+pkgver=1.10.5
+pkgrel=1
+pkgdesc='Crypto library written in C++'
+license=('BSD')
+arch=('x86_64' 'i686')
+url='http://botan.randombit.net/'
+depends=('gcc-libs' 'sh')
+makedepends=('python2')
+source=("http://files.randombit.net/botan/Botan-${pkgver}.tbz")
+sha256sums=('2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3')
+
+build() {
+  cd "$srcdir/Botan-$pkgver"
+
+  sed -i 's:env python:env python2:' configure.py
+  ./configure.py --prefix=/usr
+  make 
+}
+
+package() {
+  cd "$srcdir/Botan-$pkgver"
+
+  make DESTDIR="$pkgdir/usr" install
+  install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \;
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list