[arch-commits] Commit in keepassx/repos (8 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Fri Jan 17 11:43:02 UTC 2014


    Date: Friday, January 17, 2014 @ 12:43:02
  Author: spupykin
Revision: 104304

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

Added:
  keepassx/repos/community-i686/PKGBUILD
    (from rev 104303, keepassx/trunk/PKGBUILD)
  keepassx/repos/community-i686/keepassx.install
    (from rev 104303, keepassx/trunk/keepassx.install)
  keepassx/repos/community-x86_64/PKGBUILD
    (from rev 104303, keepassx/trunk/PKGBUILD)
  keepassx/repos/community-x86_64/keepassx.install
    (from rev 104303, keepassx/trunk/keepassx.install)
Deleted:
  keepassx/repos/community-i686/PKGBUILD
  keepassx/repos/community-i686/keepassx.install
  keepassx/repos/community-x86_64/PKGBUILD
  keepassx/repos/community-x86_64/keepassx.install

-----------------------------------+
 /PKGBUILD                         |   70 ++++++++++++++++++++++++++++++++++++
 /keepassx.install                 |   24 ++++++++++++
 community-i686/PKGBUILD           |   31 ---------------
 community-i686/keepassx.install   |   12 ------
 community-x86_64/PKGBUILD         |   31 ---------------
 community-x86_64/keepassx.install |   12 ------
 6 files changed, 94 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-01-17 11:42:46 UTC (rev 104303)
+++ community-i686/PKGBUILD	2014-01-17 11:43:02 UTC (rev 104304)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Greg Bouzakis <gregbouzakis at gmail.com>
-# Contributor: Alexander Fehr <pizzapunk gmail com>
-# Contributor: Philipp Giebel <arch at ambience-design.net>
-
-pkgname=keepassx
-pkgver=0.4.3
-pkgrel=5
-pkgdesc='Password manager'
-arch=('i686' 'x86_64')
-url='http://www.keepassx.org'
-license=('GPL2')
-depends=('libxtst' 'qt4' 'shared-mime-info')
-makedepends=('optipng')
-install=keepassx.install
-source=(http://downloads.sourceforge.net/keepassx/$pkgname-$pkgver.tar.gz)
-md5sums=('1df67bb22b2e08df49f09e61d156f508')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i '1,1i#include <unistd.h>' src/lib/random.cpp
-  qmake-qt4
-  make
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make INSTALL_ROOT=$pkgdir install
-}

Copied: keepassx/repos/community-i686/PKGBUILD (from rev 104303, keepassx/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-01-17 11:43:02 UTC (rev 104304)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Greg Bouzakis <gregbouzakis at gmail.com>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Contributor: Philipp Giebel <arch at ambience-design.net>
+
+pkgname=keepassx
+pkgver=0.4.3
+pkgrel=6
+pkgdesc='Password manager'
+arch=('i686' 'x86_64')
+url='http://www.keepassx.org'
+license=('GPL2')
+depends=('libxtst' 'qt4' 'shared-mime-info')
+makedepends=('optipng')
+install=keepassx.install
+source=(http://downloads.sourceforge.net/keepassx/$pkgname-$pkgver.tar.gz)
+md5sums=('1df67bb22b2e08df49f09e61d156f508')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '1,1i#include <unistd.h>' src/lib/random.cpp
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+}
+
+build() {
+  cd $pkgname-$pkgver
+  qmake-qt4
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-i686/keepassx.install
===================================================================
--- community-i686/keepassx.install	2014-01-17 11:42:46 UTC (rev 104303)
+++ community-i686/keepassx.install	2014-01-17 11:43:02 UTC (rev 104304)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: keepassx/repos/community-i686/keepassx.install (from rev 104303, keepassx/trunk/keepassx.install)
===================================================================
--- community-i686/keepassx.install	                        (rev 0)
+++ community-i686/keepassx.install	2014-01-17 11:43:02 UTC (rev 104304)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-01-17 11:42:46 UTC (rev 104303)
+++ community-x86_64/PKGBUILD	2014-01-17 11:43:02 UTC (rev 104304)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Greg Bouzakis <gregbouzakis at gmail.com>
-# Contributor: Alexander Fehr <pizzapunk gmail com>
-# Contributor: Philipp Giebel <arch at ambience-design.net>
-
-pkgname=keepassx
-pkgver=0.4.3
-pkgrel=5
-pkgdesc='Password manager'
-arch=('i686' 'x86_64')
-url='http://www.keepassx.org'
-license=('GPL2')
-depends=('libxtst' 'qt4' 'shared-mime-info')
-makedepends=('optipng')
-install=keepassx.install
-source=(http://downloads.sourceforge.net/keepassx/$pkgname-$pkgver.tar.gz)
-md5sums=('1df67bb22b2e08df49f09e61d156f508')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i '1,1i#include <unistd.h>' src/lib/random.cpp
-  qmake-qt4
-  make
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make INSTALL_ROOT=$pkgdir install
-}

Copied: keepassx/repos/community-x86_64/PKGBUILD (from rev 104303, keepassx/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-01-17 11:43:02 UTC (rev 104304)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Greg Bouzakis <gregbouzakis at gmail.com>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Contributor: Philipp Giebel <arch at ambience-design.net>
+
+pkgname=keepassx
+pkgver=0.4.3
+pkgrel=6
+pkgdesc='Password manager'
+arch=('i686' 'x86_64')
+url='http://www.keepassx.org'
+license=('GPL2')
+depends=('libxtst' 'qt4' 'shared-mime-info')
+makedepends=('optipng')
+install=keepassx.install
+source=(http://downloads.sourceforge.net/keepassx/$pkgname-$pkgver.tar.gz)
+md5sums=('1df67bb22b2e08df49f09e61d156f508')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '1,1i#include <unistd.h>' src/lib/random.cpp
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+}
+
+build() {
+  cd $pkgname-$pkgver
+  qmake-qt4
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/keepassx.install
===================================================================
--- community-x86_64/keepassx.install	2014-01-17 11:42:46 UTC (rev 104303)
+++ community-x86_64/keepassx.install	2014-01-17 11:43:02 UTC (rev 104304)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: keepassx/repos/community-x86_64/keepassx.install (from rev 104303, keepassx/trunk/keepassx.install)
===================================================================
--- community-x86_64/keepassx.install	                        (rev 0)
+++ community-x86_64/keepassx.install	2014-01-17 11:43:02 UTC (rev 104304)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}




More information about the arch-commits mailing list