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

2019-09-21 Thread Gaëtan Bisson via arch-commits
Date: Saturday, September 21, 2019 @ 20:34:19
  Author: bisson
Revision: 363206

db-move: moved openssh from [testing] to [core] (x86_64)

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 363205, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 363205, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/install
(from rev 363205, openssh/repos/testing-x86_64/install)
  openssh/repos/core-x86_64/sshd.conf
(from rev 363205, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 363205, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 363205, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 363205, openssh/repos/testing-x86_64/sshdgenkeys.service)
Deleted:
  openssh/repos/core-x86_64/PKGBUILD
  openssh/repos/core-x86_64/PKGBUILD.snap
  openssh/repos/core-x86_64/sshd.conf
  openssh/repos/core-x86_64/sshd.pam
  openssh/repos/core-x86_64/sshd.service
  openssh/repos/core-x86_64/sshd.socket
  openssh/repos/core-x86_64/sshd@.service
  openssh/repos/core-x86_64/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |   89 ++
 /PKGBUILD.snap  |   93 +++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   14 +
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|   93 ---
 core-x86_64/PKGBUILD.snap   |   99 --
 core-x86_64/install |   20 +++
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   17 --
 core-x86_64/sshd.socket |   10 ---
 core-x86_64/sshd@.service   |9 ---
 core-x86_64/sshdgenkeys.service |   15 -
 15 files changed, 238 insertions(+), 250 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-09-21 15:44:48 UTC (rev 363205)
+++ core-x86_64/PKGBUILD2019-09-21 20:34:19 UTC (rev 363206)
@@ -1,93 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.0p1
-pkgrel=2
-pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
-url='https://www.openssh.com/portable.html'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('linux-headers')
-depends=('krb5' 'openssl' 'libedit' 'ldns')
-optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X')
-validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sshdgenkeys.service'
-'sshd@.service'
-'sshd.service'
-'sshd.socket'
-'sshd.conf'
-'sshd.pam')
-sha256sums=('bd943879e69498e8031eb6b7f44d08cdc37d59a7ab689aa0b437320c3481fd68'
-'SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'3a0845737207f4eda221c9c9fb64e766ade9684562d8ba4f705f7ae6826886e5'
-'c5ed9fa629f8f8dbf3bae4edbad4441c36df535088553fe82695c52d7bde30aa'
-'de14363e9d4ed92848e524036d9e6b57b2d35cc77d377b7247c38111d2a3defd'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --with-ldns \
-   --with-libedit \
-   --with-ssl-engine \
-   --with-pam \
-   --with-privsep-user=nobody \
-   --with-kerberos5=/usr \
-   --with-xauth=/usr/bin/xauth \
-   --with-md5-passwords \
-   --with-pid-dir=/run \
-   --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   # Tests require openssh to be already installed system-wide,
-   # also connectivity tests will fail under makechrootpkg since
-# it runs as nobody which has /bin/false as login shell.
-
-   if [[ -e /usr/bin/scp && ! -e /.arch-chroot ]]; then
-   make tests
-   fi
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-
-   ln -sf ssh.1.gz 

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

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:42:19
  Author: bisson
Revision: 285010

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

Added:
  openssh/repos/staging-i686/
  openssh/repos/staging-i686/PKGBUILD
(from rev 285009, openssh/trunk/PKGBUILD)
  openssh/repos/staging-i686/sshd.conf
(from rev 285009, openssh/trunk/sshd.conf)
  openssh/repos/staging-i686/sshd.pam
(from rev 285009, openssh/trunk/sshd.pam)
  openssh/repos/staging-i686/sshd.service
(from rev 285009, openssh/trunk/sshd.service)
  openssh/repos/staging-i686/sshd.socket
(from rev 285009, openssh/trunk/sshd.socket)
  openssh/repos/staging-i686/sshd@.service
(from rev 285009, openssh/trunk/sshd@.service)
  openssh/repos/staging-i686/sshdgenkeys.service
(from rev 285009, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-x86_64/
  openssh/repos/staging-x86_64/PKGBUILD
(from rev 285009, openssh/trunk/PKGBUILD)
  openssh/repos/staging-x86_64/sshd.conf
(from rev 285009, openssh/trunk/sshd.conf)
  openssh/repos/staging-x86_64/sshd.pam
(from rev 285009, openssh/trunk/sshd.pam)
  openssh/repos/staging-x86_64/sshd.service
(from rev 285009, openssh/trunk/sshd.service)
  openssh/repos/staging-x86_64/sshd.socket
(from rev 285009, openssh/trunk/sshd.socket)
  openssh/repos/staging-x86_64/sshd@.service
(from rev 285009, openssh/trunk/sshd@.service)
  openssh/repos/staging-x86_64/sshdgenkeys.service
(from rev 285009, openssh/trunk/sshdgenkeys.service)

+
 staging-i686/PKGBUILD  |   89 +++
 staging-i686/sshd.conf |1 
 staging-i686/sshd.pam  |6 ++
 staging-i686/sshd.service  |   17 ++
 staging-i686/sshd.socket   |   10 +++
 staging-i686/sshd@.service |8 +++
 staging-i686/sshdgenkeys.service   |   15 +
 staging-x86_64/PKGBUILD|   89 +++
 staging-x86_64/sshd.conf   |1 
 staging-x86_64/sshd.pam|6 ++
 staging-x86_64/sshd.service|   17 ++
 staging-x86_64/sshd.socket |   10 +++
 staging-x86_64/sshd@.service   |8 +++
 staging-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 292 insertions(+)

Copied: openssh/repos/staging-i686/PKGBUILD (from rev 285009, 
openssh/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 08:42:19 UTC (rev 285010)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.4p1
+pkgrel=2
+pkgdesc='Free version of the SSH connectivity tools'
+url='https://www.openssh.com/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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('2330bbf82ed08cf3ac70e0acf00186ef3eeb97e0' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests
+
+   # Connectivity tests will fail with makechrootpkg since
+   # it runs as nobody which has /bin/false as login shell.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install -Dm644 ../sshdgenkeys.service 

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

2016-12-19 Thread Gaëtan Bisson
Date: Tuesday, December 20, 2016 @ 05:04:06
  Author: bisson
Revision: 284350

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 284349, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 284349, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 284349, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 284349, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 284349, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 284349, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 284349, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 284349, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 284349, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 284349, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 284349, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 284349, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 284349, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 284349, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   89 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   89 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 292 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 284349, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-20 05:04:06 UTC (rev 284350)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.4p1
+pkgrel=1
+pkgdesc='Free version of the SSH connectivity tools'
+url='https://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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('2330bbf82ed08cf3ac70e0acf00186ef3eeb97e0' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests
+
+   # Connectivity tests will fail with makechrootpkg since
+   # it runs as nobody which has /bin/false as login shell.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install -Dm644 ../sshdgenkeys.service 

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

2016-10-01 Thread Gaëtan Bisson
Date: Saturday, October 1, 2016 @ 21:49:03
  Author: bisson
Revision: 277530

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 277529, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 277529, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 277529, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 277529, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 277529, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 277529, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 277529, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 277529, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 277529, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 277529, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 277529, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 277529, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 277529, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 277529, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   89 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   89 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 292 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 277529, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-01 21:49:03 UTC (rev 277530)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.3p1
+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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('bfade84283fcba885e2084343ab19a08c7d123a5' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install -Dm644 ../sshdgenkeys.service 

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

2016-08-01 Thread Gaëtan Bisson
Date: Monday, August 1, 2016 @ 13:47:06
  Author: bisson
Revision: 272772

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 272771, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 272771, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 272771, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 272771, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 272771, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 272771, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 272771, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 272771, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 272771, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 272771, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 272771, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 272771, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 272771, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 272771, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   90 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   90 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 294 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 272771, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-01 13:47:06 UTC (rev 272772)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.3p1
+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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('bfade84283fcba885e2084343ab19a08c7d123a5' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   

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

2016-05-14 Thread Gaetan Bisson
Date: Sunday, May 15, 2016 @ 00:26:53
  Author: bisson
Revision: 268048

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 268047, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 268047, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 268047, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 268047, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 268047, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 268047, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 268047, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 268047, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 268047, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 268047, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 268047, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 268047, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 268047, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 268047, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   90 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   90 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 294 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 268047, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-14 22:26:53 UTC (rev 268048)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.2p2
+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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('70e35d7d6386fe08abbd823b3a12a3ca44ac6d38' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install 

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

2016-03-10 Thread Gaetan Bisson
Date: Thursday, March 10, 2016 @ 17:34:53
  Author: bisson
Revision: 261292

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 261291, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 261291, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 261291, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 261291, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 261291, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 261291, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 261291, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 261291, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 261291, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 261291, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 261291, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 261291, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 261291, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 261291, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   90 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   90 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 298 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 261291, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-10 16:34:53 UTC (rev 261292)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.2p2
+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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('70e35d7d6386fe08abbd823b3a12a3ca44ac6d38' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   

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

2016-02-28 Thread Gaetan Bisson
Date: Monday, February 29, 2016 @ 05:08:50
  Author: bisson
Revision: 260361

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 260360, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 260360, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 260360, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 260360, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 260360, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 260360, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 260360, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 260360, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 260360, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 260360, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 260360, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 260360, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 260360, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 260360, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   90 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   90 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 298 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 260360, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-29 04:08:50 UTC (rev 260361)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('d30a6fd472199ab5838a7668c0c5fd885fb8d371' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   

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

2015-03-18 Thread Gaetan Bisson
Date: Wednesday, March 18, 2015 @ 17:27:12
  Author: bisson
Revision: 234106

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 234103, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 234103, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 234103, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 234103, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 234103, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 234103, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 234103, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 234103, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 234104, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 234104, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 234104, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 234104, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 234104, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 234104, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   89 +++
 testing-i686/install   |   10 +++
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   89 +++
 testing-x86_64/install |   10 +++
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 314 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 234103, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-18 16:27:12 UTC (rev 234106)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.8p1
+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')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('cdbc51e46a902b30d263b05fdc71340920e91c92' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 

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

2014-10-06 Thread Gaetan Bisson
Date: Tuesday, October 7, 2014 @ 04:38:46
  Author: bisson
Revision: 223947

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 223946, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 223946, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 223946, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 223946, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 223946, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 223946, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 223946, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 223946, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 223946, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 223946, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 223946, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 223946, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 223946, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 223946, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   88 +++
 testing-i686/install   |   10 +++
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   88 +++
 testing-x86_64/install |   10 +++
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 312 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 223946, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-10-07 02:38:46 UTC (rev 223947)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.7p1
+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{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('14e5fbed710ade334d65925e080d1aaeb9c85bf6' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 

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

2014-03-15 Thread Gaetan Bisson
Date: Sunday, March 16, 2014 @ 03:43:49
  Author: bisson
Revision: 207971

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 207970, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 207970, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 207970, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 207970, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 207970, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 207970, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 207970, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 207970, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 207970, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 207970, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 207970, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 207970, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 207970, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 207970, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   88 +++
 testing-i686/install   |   10 +++
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   88 +++
 testing-x86_64/install |   10 +++
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 312 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 207970, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-16 02:43:49 UTC (rev 207971)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.6p1
+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{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('b850fd1af704942d9b3c2eff7ef6b3a59b6a6b6e' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 

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

2014-01-29 Thread Gaetan Bisson
Date: Thursday, January 30, 2014 @ 08:21:23
  Author: bisson
Revision: 204877

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 204876, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 204876, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 204876, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 204876, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 204876, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 204876, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 204876, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 204876, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 204876, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 204876, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 204876, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 204876, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 204876, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 204876, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   88 +++
 testing-i686/install   |   10 +++
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   88 +++
 testing-x86_64/install |   10 +++
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 14 files changed, 312 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 204876, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-01-30 07:21:23 UTC (rev 204877)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.5p1
+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{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('3363a72b4fee91b29cf2024ff633c17f6cd2f86d' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests || true
+   # hard to suitably test connectivity:
+   # - fails with /bin/false as login shell
+   # - fails with firewall activated, etc.
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 

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

2013-11-07 Thread Gaetan Bisson
Date: Friday, November 8, 2013 @ 06:19:07
  Author: bisson
Revision: 199070

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 199069, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 199069, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 199069, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 199069, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 199069, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 199069, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 199069, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 199069, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 199069, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 199069, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 199069, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 199069, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 199069, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 199069, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   87 +++
 testing-i686/install   |   10 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 ++
 testing-x86_64/PKGBUILD|   87 +++
 testing-x86_64/install |   10 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 ++
 14 files changed, 306 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 199069, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-08 05:19:07 UTC (rev 199070)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.4p1
+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;
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('cf5fe0eb118d7e4f9296fbc5d6884965885fc55d'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests ||
+   grep $USER /etc/passwd | grep -q /bin/false
+   # connect.sh fails when run with stupid login shell
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 
${pkgdir}/usr/lib/systemd/system/sshd@.service
+

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

2013-09-13 Thread Gaetan Bisson
Date: Friday, September 13, 2013 @ 11:04:22
  Author: bisson
Revision: 194318

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 194317, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 194317, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 194317, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 194317, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 194317, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 194317, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 194317, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 194317, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 194317, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 194317, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 194317, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 194317, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 194317, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 194317, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   87 +++
 testing-i686/install   |   10 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 ++
 testing-x86_64/PKGBUILD|   87 +++
 testing-x86_64/install |   10 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 ++
 14 files changed, 306 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 194317, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-13 09:04:22 UTC (rev 194318)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.3p1
+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;
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('70845ca79474258cab29dbefae13d93e41a83ccb'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests ||
+   grep $USER /etc/passwd | grep -q /bin/false
+   # connect.sh fails when run with stupid login shell
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 
${pkgdir}/usr/lib/systemd/system/sshd@.service
+  

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

2013-05-15 Thread Gaetan Bisson
Date: Thursday, May 16, 2013 @ 06:17:32
  Author: bisson
Revision: 185619

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 185618, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/install
(from rev 185618, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.pam
(from rev 185618, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 185618, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 185618, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 185618, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 185618, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 185618, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/install
(from rev 185618, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 185618, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 185618, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 185618, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 185618, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 185618, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   87 +++
 testing-i686/install   |   10 
 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|   87 +++
 testing-x86_64/install |   10 
 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 ++
 14 files changed, 304 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 185618, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-16 04:17:32 UTC (rev 185619)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.2p2
+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;
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.pam')
+sha1sums=('c2b4909eba6f5ec6f9f75866c202db47f3b501ba'
+  '6df5be396f8c593bb511a249a1453294d18a01a6'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  '2d87de52a6b2f764180f9f67cb9747392784b4a5'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-mantype=man \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make tests ||
+   grep $USER /etc/passwd | grep -q /bin/false
+   # connect.sh fails when run with stupid login shell
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1
+   install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENCE
+
+   install -Dm644 ../sshdgenkeys.service 
${pkgdir}/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd@.service 
${pkgdir}/usr/lib/systemd/system/sshd@.service
+   

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

2011-09-06 Thread Gaetan Bisson
Date: Tuesday, September 6, 2011 @ 20:54:51
  Author: bisson
Revision: 137315

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

Added:
  openssh/repos/testing-i686/PKGBUILD
(from rev 137314, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 137314, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.confd
(from rev 137314, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 137314, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 137314, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 137314, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 137314, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 137314, openssh/trunk/sshd.pam)
Deleted:
  openssh/repos/testing-i686/PKGBUILD
  openssh/repos/testing-i686/sshd
  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.confd
  openssh/repos/testing-x86_64/sshd.pam

---+
 testing-i686/PKGBUILD |  132 ++--
 testing-i686/sshd |   90 +++---
 testing-i686/sshd.confd   |8 +-
 testing-i686/sshd.pam |   22 +++
 testing-x86_64/PKGBUILD   |  132 ++--
 testing-x86_64/sshd   |   90 +++---
 testing-x86_64/sshd.confd |8 +-
 testing-x86_64/sshd.pam   |   22 +++
 8 files changed, 252 insertions(+), 252 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-09-07 00:54:12 UTC (rev 137314)
+++ testing-i686/PKGBUILD   2011-09-07 00:54:51 UTC (rev 137315)
@@ -1,66 +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=2
-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')
-source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
-'sshd.confd'
-'sshd.pam'
-'sshd')
-sha1sums=('be8878869bb80ce12ca79282768ffa73cc3f05fc'
-  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
-  '07fecd5880b1c4fdd8c94ddb2e89ddce88effdc1'
-  '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
-
-   rm ${pkgdir}/usr/share/man/man1/slogin.1
-   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
-
-   # additional contrib scripts that we like
-   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
-
-   # PAM is a common, standard feature to have
-   sed \
-   -e '/^#ChallengeResponseAuthentication yes$/c 
ChallengeResponseAuthentication no' \
-   -e '/^#UsePAM no$/c UsePAM yes' \
-   -i ${pkgdir}/etc/ssh/sshd_config
-}

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 137314, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-09-07 00:54:51 UTC (rev 137315)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=5.9p1
+pkgrel=3
+pkgdesc='Free version of the SSH connectivity tools'
+arch=('i686' 'x86_64')
+license=('custom:BSD')

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

2011-09-06 Thread Gaetan Bisson
Date: Tuesday, September 6, 2011 @ 04:07:52
  Author: bisson
Revision: 137096

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

Added:
  openssh/repos/testing-i686/PKGBUILD
(from rev 137095, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/sshd
(from rev 137095, openssh/trunk/sshd)
  openssh/repos/testing-i686/sshd.confd
(from rev 137095, openssh/trunk/sshd.confd)
  openssh/repos/testing-i686/sshd.pam
(from rev 137095, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 137095, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/sshd
(from rev 137095, openssh/trunk/sshd)
  openssh/repos/testing-x86_64/sshd.confd
(from rev 137095, openssh/trunk/sshd.confd)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 137095, openssh/trunk/sshd.pam)
Deleted:
  openssh/repos/testing-i686/PKGBUILD
  openssh/repos/testing-i686/sshd
  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.confd
  openssh/repos/testing-x86_64/sshd.pam

---+
 testing-i686/PKGBUILD |  132 ++--
 testing-i686/sshd |   90 +++---
 testing-i686/sshd.confd   |8 +-
 testing-i686/sshd.pam |   22 +++
 testing-x86_64/PKGBUILD   |  132 ++--
 testing-x86_64/sshd   |   90 +++---
 testing-x86_64/sshd.confd |8 +-
 testing-x86_64/sshd.pam   |   22 +++
 8 files changed, 252 insertions(+), 252 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-09-06 08:07:20 UTC (rev 137095)
+++ testing-i686/PKGBUILD   2011-09-06 08:07:52 UTC (rev 137096)
@@ -1,66 +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=1
-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')
-source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz;
-'sshd.confd'
-'sshd.pam'
-'sshd')
-sha1sums=('be8878869bb80ce12ca79282768ffa73cc3f05fc'
-  'ec102deb69cad7d14f406289d2fc11fee6eddbdd'
-  '07fecd5880b1c4fdd8c94ddb2e89ddce88effdc1'
-  '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
-
-   rm ${pkgdir}/usr/share/man/man1/slogin.1
-   ln -sf ssh.1.gz ${pkgdir}/usr/share/man/man1/slogin.1.gz
-
-   # additional contrib scripts that we like
-   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
-
-   # PAM is a common, standard feature to have
-   sed \
-   -e '/^#ChallengeResponseAuthentication yes$/c 
ChallengeResponseAuthentication no' \
-   -e '/^#UsePAM no$/c UsePAM yes' \
-   -i ${pkgdir}/etc/ssh/sshd_config
-}

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 137095, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-09-06 08:07:52 UTC (rev 137096)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=5.9p1
+pkgrel=2
+pkgdesc='Free version of the SSH connectivity tools'
+arch=('i686' 'x86_64')
+license=('custom:BSD')