[arch-commits] Commit in openssh/repos (20 files)

2013-03-22 Thread Gaetan Bisson
Date: Saturday, March 23, 2013 @ 06:32:03
  Author: bisson
Revision: 180548

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 180547, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 180547, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 180547, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 180547, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 180547, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 180547, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 180547, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 180547, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 180547, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 180547, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 180547, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 180547, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 180547, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 180547, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 180547, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 180547, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 180547, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 180547, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   15 +
 18 files changed, 432 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 180547, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-03-23 05:32:03 UTC (rev 180548)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.2p1
+pkgrel=1
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('8824708c617cc781b2bb29fa20bd905fd3d2a43d'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f9af4a442b804ab661cec0edb25dd76dee16d8d2'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2013-02-13 Thread Gaetan Bisson
Date: Thursday, February 14, 2013 @ 05:59:48
  Author: bisson
Revision: 178042

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 178041, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 178041, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 178041, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 178041, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 178041, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 178041, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 178041, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 178041, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 178041, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 178041, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 178041, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 178041, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 178041, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 178041, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 178041, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 178041, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 178041, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 178041, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   15 +
 18 files changed, 432 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 178041, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-02-14 04:59:48 UTC (rev 178042)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=6
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f9af4a442b804ab661cec0edb25dd76dee16d8d2'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2013-02-04 Thread Gaetan Bisson
Date: Monday, February 4, 2013 @ 14:52:55
  Author: bisson
Revision: 177031

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 177030, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 177030, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 177030, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 177030, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 177030, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 177030, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 177030, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 177030, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 177030, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 177030, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 177030, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 177030, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 177030, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 177030, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 177030, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 177030, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 177030, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 177030, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   95 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   95 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   15 +
 18 files changed, 430 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 177030, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-02-04 13:52:55 UTC (rev 177031)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=5
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f9af4a442b804ab661cec0edb25dd76dee16d8d2'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-11-15 Thread Gaetan Bisson
Date: Thursday, November 15, 2012 @ 21:53:58
  Author: bisson
Revision: 171059

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 171058, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 171058, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 171058, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 171058, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 171058, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 171058, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 171058, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 171058, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 171058, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 171058, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 171058, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 171058, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 171058, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 171058, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 171058, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 171058, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 171058, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 171058, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   95 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |   13 
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   95 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|   13 
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   15 +
 18 files changed, 444 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 171058, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-16 02:53:58 UTC (rev 171059)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=4
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f9af4a442b804ab661cec0edb25dd76dee16d8d2'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-10-23 Thread Gaetan Bisson
Date: Tuesday, October 23, 2012 @ 18:58:43
  Author: bisson
Revision: 169589

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 169588, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 169588, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 169588, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 169588, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 169588, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 169588, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 169588, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 169588, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 169588, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 169588, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 169588, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 169588, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 169588, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 169588, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 169588, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 169588, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 169588, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 169588, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   95 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |   13 
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   95 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|   13 
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   15 +
 18 files changed, 444 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 169588, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-23 22:58:43 UTC (rev 169589)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=3
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f9af4a442b804ab661cec0edb25dd76dee16d8d2'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-09-03 Thread Gaetan Bisson
Date: Monday, September 3, 2012 @ 09:01:11
  Author: bisson
Revision: 165904

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 165903, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 165903, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 165903, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 165903, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 165903, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 165903, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 165903, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 165903, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 165903, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 165903, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 165903, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 165903, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 165903, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 165903, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 165903, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 165903, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 165903, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 165903, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   95 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |   13 
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   11 
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   18 ++
 testing-x86_64/PKGBUILD|   95 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|   13 
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   11 
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   18 ++
 18 files changed, 454 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 165903, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-09-03 13:01:11 UTC (rev 165904)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=2
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6c71de2c2ca9622aa8e863acd94b13e11125'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  '1fd209980ee2fcdd7b219883e8add0f5ca63388a'
+  'b7acfce018efc111e7ce80dbe37b932caf7c2d53'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-08-28 Thread Gaetan Bisson
Date: Wednesday, August 29, 2012 @ 01:14:58
  Author: bisson
Revision: 165684

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 165683, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 165683, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 165683, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 165683, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 165683, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 165683, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 165683, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 165683, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 165683, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 165683, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 165683, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 165683, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 165683, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 165683, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 165683, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 165683, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 165683, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 165683, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   95 +++
 testing-i686/sshd  |   44 
 testing-i686/sshd.close-sessions   |   17 ++
 testing-i686/sshd.confd|4 +
 testing-i686/sshd.pam  |   13 
 testing-i686/sshd.service  |   16 +
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 ++
 testing-i686/sshdgenkeys.service   |   18 ++
 testing-x86_64/PKGBUILD|   95 +++
 testing-x86_64/sshd|   44 
 testing-x86_64/sshd.close-sessions |   17 ++
 testing-x86_64/sshd.confd  |4 +
 testing-x86_64/sshd.pam|   13 
 testing-x86_64/sshd.service|   16 +
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 ++
 testing-x86_64/sshdgenkeys.service |   18 ++
 18 files changed, 450 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 165683, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-08-29 05:14:58 UTC (rev 165684)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.1p1
+pkgrel=1
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6c71de2c2ca9622aa8e863acd94b13e11125'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  'f27617eeb694f4edd474638adf16733d8a793d85'
+  'a30fb5fda6d0143345bae47684edaffb8d0a92a7'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-06-10 Thread Florian Pritz
Date: Sunday, June 10, 2012 @ 09:19:01
  Author: bluewind
Revision: 161379

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

Added:
  openssh/repos/staging-i686/PKGBUILD
(from rev 161378, openssh/trunk/PKGBUILD)
  openssh/repos/staging-i686/sshd
(from rev 161378, openssh/trunk/sshd)
  openssh/repos/staging-i686/sshd.close-sessions
(from rev 161378, openssh/trunk/sshd.close-sessions)
  openssh/repos/staging-i686/sshd.confd
(from rev 161378, openssh/trunk/sshd.confd)
  openssh/repos/staging-i686/sshd.pam
(from rev 161378, openssh/trunk/sshd.pam)
  openssh/repos/staging-i686/sshd.service
(from rev 161378, openssh/trunk/sshd.service)
  openssh/repos/staging-i686/sshd.socket
(from rev 161378, openssh/trunk/sshd.socket)
  openssh/repos/staging-i686/sshd@.service
(from rev 161378, openssh/trunk/sshd@.service)
  openssh/repos/staging-i686/sshdgenkeys.service
(from rev 161378, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-i686/tmpfiles.d
(from rev 161378, openssh/trunk/tmpfiles.d)
  openssh/repos/staging-x86_64/PKGBUILD
(from rev 161378, openssh/trunk/PKGBUILD)
  openssh/repos/staging-x86_64/sshd
(from rev 161378, openssh/trunk/sshd)
  openssh/repos/staging-x86_64/sshd.close-sessions
(from rev 161378, openssh/trunk/sshd.close-sessions)
  openssh/repos/staging-x86_64/sshd.confd
(from rev 161378, openssh/trunk/sshd.confd)
  openssh/repos/staging-x86_64/sshd.pam
(from rev 161378, openssh/trunk/sshd.pam)
  openssh/repos/staging-x86_64/sshd.service
(from rev 161378, openssh/trunk/sshd.service)
  openssh/repos/staging-x86_64/sshd.socket
(from rev 161378, openssh/trunk/sshd.socket)
  openssh/repos/staging-x86_64/sshd@.service
(from rev 161378, openssh/trunk/sshd@.service)
  openssh/repos/staging-x86_64/sshdgenkeys.service
(from rev 161378, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-x86_64/tmpfiles.d
(from rev 161378, openssh/trunk/tmpfiles.d)

+
 staging-i686/PKGBUILD  |   96 +++
 staging-i686/sshd  |   45 
 staging-i686/sshd.close-sessions   |   17 ++
 staging-i686/sshd.confd|4 +
 staging-i686/sshd.pam  |   13 
 staging-i686/sshd.service  |   19 ++
 staging-i686/sshd.socket   |   10 +++
 staging-i686/sshd@.service |8 ++
 staging-i686/sshdgenkeys.service   |   18 ++
 staging-i686/tmpfiles.d|1 
 staging-x86_64/PKGBUILD|   96 +++
 staging-x86_64/sshd|   45 
 staging-x86_64/sshd.close-sessions |   17 ++
 staging-x86_64/sshd.confd  |4 +
 staging-x86_64/sshd.pam|   13 
 staging-x86_64/sshd.service|   19 ++
 staging-x86_64/sshd.socket |   10 +++
 staging-x86_64/sshd@.service   |8 ++
 staging-x86_64/sshdgenkeys.service |   18 ++
 staging-x86_64/tmpfiles.d  |1 
 20 files changed, 462 insertions(+)

Copied: openssh/repos/staging-i686/PKGBUILD (from rev 161378, 
openssh/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-10 13:19:01 UTC (rev 161379)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.0p1
+pkgrel=3
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'tmpfiles.d'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('f691e53ef83417031a2854b8b1b661c9c08e4422'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6c71de2c2ca9622aa8e863acd94b13e11125'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  '83a257b8f6a62237383262cb0e2583e5609ddac0'
+  'a30fb5fda6d0143345bae47684edaffb8d0a92a7'
+  'b5cf44205e8f4365c00bfbee110d7c0e563627aa'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  'ed36e3a522f619ff6b13e253526596e4cca11e9f')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-06-08 Thread Gaetan Bisson
Date: Saturday, June 9, 2012 @ 01:45:18
  Author: bisson
Revision: 161305

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

Added:
  openssh/repos/staging-i686/
  openssh/repos/staging-i686/PKGBUILD
(from rev 161304, openssh/trunk/PKGBUILD)
  openssh/repos/staging-i686/sshd
(from rev 161304, openssh/trunk/sshd)
  openssh/repos/staging-i686/sshd.close-sessions
(from rev 161304, openssh/trunk/sshd.close-sessions)
  openssh/repos/staging-i686/sshd.confd
(from rev 161304, openssh/trunk/sshd.confd)
  openssh/repos/staging-i686/sshd.pam
(from rev 161304, openssh/trunk/sshd.pam)
  openssh/repos/staging-i686/sshd.service
(from rev 161304, openssh/trunk/sshd.service)
  openssh/repos/staging-i686/sshd.socket
(from rev 161304, openssh/trunk/sshd.socket)
  openssh/repos/staging-i686/sshdgenkeys.service
(from rev 161304, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-i686/tmpfiles.d
(from rev 161304, openssh/trunk/tmpfiles.d)
  openssh/repos/staging-x86_64/
  openssh/repos/staging-x86_64/PKGBUILD
(from rev 161304, openssh/trunk/PKGBUILD)
  openssh/repos/staging-x86_64/sshd
(from rev 161304, openssh/trunk/sshd)
  openssh/repos/staging-x86_64/sshd.close-sessions
(from rev 161304, openssh/trunk/sshd.close-sessions)
  openssh/repos/staging-x86_64/sshd.confd
(from rev 161304, openssh/trunk/sshd.confd)
  openssh/repos/staging-x86_64/sshd.pam
(from rev 161304, openssh/trunk/sshd.pam)
  openssh/repos/staging-x86_64/sshd.service
(from rev 161304, openssh/trunk/sshd.service)
  openssh/repos/staging-x86_64/sshd.socket
(from rev 161304, openssh/trunk/sshd.socket)
  openssh/repos/staging-x86_64/sshdgenkeys.service
(from rev 161304, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-x86_64/tmpfiles.d
(from rev 161304, openssh/trunk/tmpfiles.d)

+
 staging-i686/PKGBUILD  |   96 +++
 staging-i686/sshd  |   45 
 staging-i686/sshd.close-sessions   |   17 ++
 staging-i686/sshd.confd|4 +
 staging-i686/sshd.pam  |   13 
 staging-i686/sshd.service  |   19 ++
 staging-i686/sshd.socket   |   10 +++
 staging-i686/sshdgenkeys.service   |   18 ++
 staging-i686/tmpfiles.d|1 
 staging-x86_64/PKGBUILD|   96 +++
 staging-x86_64/sshd|   45 
 staging-x86_64/sshd.close-sessions |   17 ++
 staging-x86_64/sshd.confd  |4 +
 staging-x86_64/sshd.pam|   13 
 staging-x86_64/sshd.service|   19 ++
 staging-x86_64/sshd.socket |   10 +++
 staging-x86_64/sshdgenkeys.service |   18 ++
 staging-x86_64/tmpfiles.d  |1 
 18 files changed, 446 insertions(+)

Copied: openssh/repos/staging-i686/PKGBUILD (from rev 161304, 
openssh/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-09 05:45:18 UTC (rev 161305)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.0p1
+pkgrel=3
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
+'sshd.close-sessions'
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'tmpfiles.d'
+'sshd.confd'
+'sshd.pam'
+'sshd')
+sha1sums=('f691e53ef83417031a2854b8b1b661c9c08e4422'
+  '954bf1660aa32620c37034320877f4511b767ccb'
+  '6c71de2c2ca9622aa8e863acd94b13e11125'
+  'bd6eae36c7ef9efb7147778baad7858b81f2d660'
+  '83a257b8f6a62237383262cb0e2583e5609ddac0'
+  'a30fb5fda6d0143345bae47684edaffb8d0a92a7'
+  'b5cf44205e8f4365c00bfbee110d7c0e563627aa'
+  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
+  '659e3ee95c269014783ff8b318c6f50bf7496fbd'
+  'ed36e3a522f619ff6b13e253526596e4cca11e9f')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   

[arch-commits] Commit in openssh/repos (20 files)

2012-03-20 Thread Gaetan Bisson
Date: Tuesday, March 20, 2012 @ 03:01:42
  Author: bisson
Revision: 153863

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

Added:
  openssh/repos/testing-i686/PKGBUILD
(from rev 153862, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 153862, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.close-sessions
(from rev 153862, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-i686/sshd.confd
(from rev 153862, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 153862, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 153862, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 153862, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.close-sessions
(from rev 153862, openssh/trunk/sshd.close-sessions)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 153862, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 153862, openssh/trunk/sshd.pam)
Deleted:
  openssh/repos/testing-i686/PKGBUILD
  openssh/repos/testing-i686/sshd
  openssh/repos/testing-i686/sshd.close-sessions
  openssh/repos/testing-i686/sshd.confd
  openssh/repos/testing-i686/sshd.pam
  openssh/repos/testing-x86_64/PKGBUILD
  openssh/repos/testing-x86_64/sshd
  openssh/repos/testing-x86_64/sshd.close-sessions
  openssh/repos/testing-x86_64/sshd.confd
  openssh/repos/testing-x86_64/sshd.pam

+
 testing-i686/PKGBUILD  |  136 +--
 testing-i686/sshd  |   90 +++
 testing-i686/sshd.close-sessions   |   31 ---
 testing-i686/sshd.confd|8 +-
 testing-i686/sshd.pam  |   24 +++---
 testing-x86_64/PKGBUILD|  136 +--
 testing-x86_64/sshd|   90 +++
 testing-x86_64/sshd.close-sessions |   31 ---
 testing-x86_64/sshd.confd  |8 +-
 testing-x86_64/sshd.pam|   24 +++---
 10 files changed, 292 insertions(+), 286 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-03-20 07:01:02 UTC (rev 153862)
+++ testing-i686/PKGBUILD   2012-03-20 07:01:42 UTC (rev 153863)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=openssh
-pkgver=5.9p1
-pkgrel=7
-pkgdesc='Free version of the SSH connectivity tools'
-arch=('i686' 'x86_64')
-license=('custom:BSD')
-url='http://www.openssh.org/portable.html'
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 
'etc/conf.d/sshd')
-depends=('krb5' 'openssl' 'libedit')
-optdepends=('x11-ssh-askpass: input passphrase in X without a terminal')
-source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
-'sshd.close-sessions'
-'sshd.confd'
-'sshd.pam'
-'sshd')
-sha1sums=('ac4e0055421e9543f0af5da607a72cf5922dcc56'
-  '3e8efad4578bbeb8f9788432758c69dc2b303c1c'
-  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
-  '3413909fd45a28701c92e6e5b59c6b65346ddb0f'
-  '21fa88de6cc1c7912e71655f50896ba17991a1c2')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --with-privsep-user=nobody \
-   --with-md5-passwords \
-   --with-pam \
-   --with-mantype=man \
-   --with-xauth=/usr/bin/xauth \
-   --with-kerberos5=/usr \
-   --with-ssl-engine \
-   --with-libedit=/usr/lib \
-   --disable-strip # stripping is done by makepkg
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -Dm755 ../sshd ${pkgdir}/etc/rc.d/sshd
-   install -Dm644 ../sshd.pam ${pkgdir}/etc/pam.d/sshd
-   install -Dm644 ../sshd.confd ${pkgdir}/etc/conf.d/sshd
-   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
-   install -Dm755 ../sshd.close-sessions 
${pkgdir}/etc/rc.d/functions.d/sshd-close-sessions # FS#17389
-
-   rm ${pkgdir}/usr/share/man/man1/slogin.1
-   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
-
-   install -Dm755 contrib/findssl.sh ${pkgdir}/usr/bin/findssl.sh
-   install -Dm755 contrib/ssh-copy-id ${pkgdir}/usr/bin/ssh-copy-id
-   install -Dm644 contrib/ssh-copy-id.1 
${pkgdir}/usr/share/man/man1/ssh-copy-id.1
-
-   sed \
-   -e '/^#ChallengeResponseAuthentication yes$/c 
ChallengeResponseAuthentication no' \
-   -e '/^#UsePAM no$/c UsePAM yes' \
-   -i ${pkgdir}/etc/ssh/sshd_config
-}