[arch-commits] Commit in ksshaskpass/repos (6 files)
Antonio Rojas
arojas at archlinux.org
Tue Apr 14 07:53:35 UTC 2015
Date: Tuesday, April 14, 2015 @ 09:53:35
Author: arojas
Revision: 236521
archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64
Added:
ksshaskpass/repos/kde-unstable-i686/
ksshaskpass/repos/kde-unstable-i686/PKGBUILD
(from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
ksshaskpass/repos/kde-unstable-i686/ksshaskpass.sh
(from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)
ksshaskpass/repos/kde-unstable-x86_64/
ksshaskpass/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
ksshaskpass/repos/kde-unstable-x86_64/ksshaskpass.sh
(from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)
------------------------------------+
kde-unstable-i686/PKGBUILD | 43 +++++++++++++++++++++++++++++++++++
kde-unstable-i686/ksshaskpass.sh | 1
kde-unstable-x86_64/PKGBUILD | 43 +++++++++++++++++++++++++++++++++++
kde-unstable-x86_64/ksshaskpass.sh | 1
4 files changed, 88 insertions(+)
Copied: ksshaskpass/repos/kde-unstable-i686/PKGBUILD (from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
===================================================================
--- kde-unstable-i686/PKGBUILD (rev 0)
+++ kde-unstable-i686/PKGBUILD 2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: schuay <jakob.gruber at gmail.com>
+
+pkgname=ksshaskpass
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"
+ "$pkgname.sh")
+md5sums=('834907306999c0a3f04d913b62d1b674'
+ '70396ba019ae05cc91502456f548caff')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../ksshaskpass-$pkgver \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF
+ make
+}
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+
+ install -Dm755 "$srcdir"/ksshaskpass.sh \
+ "${pkgdir}"/etc/profile.d/ksshaskpass.sh
+}
Copied: ksshaskpass/repos/kde-unstable-i686/ksshaskpass.sh (from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)
===================================================================
--- kde-unstable-i686/ksshaskpass.sh (rev 0)
+++ kde-unstable-i686/ksshaskpass.sh 2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1 @@
+test -f /usr/bin/ksshaskpass && export SSH_ASKPASS="/usr/bin/ksshaskpass"
Copied: ksshaskpass/repos/kde-unstable-x86_64/PKGBUILD (from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: schuay <jakob.gruber at gmail.com>
+
+pkgname=ksshaskpass
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"
+ "$pkgname.sh")
+md5sums=('834907306999c0a3f04d913b62d1b674'
+ '70396ba019ae05cc91502456f548caff')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../ksshaskpass-$pkgver \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF
+ make
+}
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+
+ install -Dm755 "$srcdir"/ksshaskpass.sh \
+ "${pkgdir}"/etc/profile.d/ksshaskpass.sh
+}
Copied: ksshaskpass/repos/kde-unstable-x86_64/ksshaskpass.sh (from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)
===================================================================
--- kde-unstable-x86_64/ksshaskpass.sh (rev 0)
+++ kde-unstable-x86_64/ksshaskpass.sh 2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1 @@
+test -f /usr/bin/ksshaskpass && export SSH_ASKPASS="/usr/bin/ksshaskpass"
More information about the arch-commits
mailing list