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

2020-05-27 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 27, 2020 @ 20:33:16
  Author: bisson
Revision: 387731

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 387730, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 387730, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/glibc-2.31.patch
(from rev 387730, openssh/repos/testing-x86_64/glibc-2.31.patch)
  openssh/repos/core-x86_64/install
(from rev 387730, openssh/repos/testing-x86_64/install)
  openssh/repos/core-x86_64/sshd.conf
(from rev 387730, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 387730, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 387730, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 387730, 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/glibc-2.31.patch
  openssh/repos/core-x86_64/install
  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/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |  101 
 /PKGBUILD.snap  |  105 ++
 /glibc-2.31.patch   |  100 
 /install|   32 +++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   14 +
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|  101 
 core-x86_64/PKGBUILD.snap   |  105 --
 core-x86_64/glibc-2.31.patch|  100 
 core-x86_64/install |   32 ---
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   14 -
 core-x86_64/sshdgenkeys.service |   15 -
 16 files changed, 374 insertions(+), 374 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2020-05-27 19:42:06 UTC (rev 387730)
+++ core-x86_64/PKGBUILD2020-05-27 20:33:16 UTC (rev 387731)
@@ -1,101 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.2p1
-pkgrel=3
-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' 'git' 'libfido2')
-depends=('krb5' 'openssl' 'libedit' 'ldns')
-optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X'
-'libfido2: FIDO/U2F support')
-validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-#source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
-source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sshdgenkeys.service'
-'sshd.service'
-'sshd.conf'
-'sshd.pam'
-'glibc-2.31.patch')
-sha256sums=('43925151e6cf6cee1450190c0e9af4dc36b41c12737619edff8bcebdff64e671'
-'SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../glibc-2.31.patch
-   autoreconf
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --disable-strip \
-   --with-ldns \
-   --with-libedit \
-   --with-security-key-builtin \
-   --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}-

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

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:27:05
  Author: bisson
Revision: 375724

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 375723, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 375723, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/glibc-2.31.patch
(from rev 375723, openssh/repos/testing-x86_64/glibc-2.31.patch)
  openssh/repos/core-x86_64/install
(from rev 375723, openssh/repos/testing-x86_64/install)
  openssh/repos/core-x86_64/sshd.conf
(from rev 375723, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 375723, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 375723, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 375723, 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/glibc-2.31.patch
  openssh/repos/core-x86_64/install
  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/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |  101 
 /PKGBUILD.snap  |  105 ++
 /glibc-2.31.patch   |  100 
 /install|   32 +++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   14 +
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|  102 
 core-x86_64/PKGBUILD.snap   |  105 --
 core-x86_64/glibc-2.31.patch|  100 
 core-x86_64/install |   20 ---
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   14 -
 core-x86_64/sshdgenkeys.service |   15 -
 16 files changed, 374 insertions(+), 363 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2020-02-17 01:22:33 UTC (rev 375723)
+++ core-x86_64/PKGBUILD2020-02-17 01:27:05 UTC (rev 375724)
@@ -1,102 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.2p1
-pkgrel=1
-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' 'git')
-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}
-source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
-'sshdgenkeys.service'
-'sshd.service'
-'sshd.conf'
-'sshd.pam'
-'glibc-2.31.patch')
-sha256sums=('SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-install=install
-
-prepare() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
-   patch -p1 -i ../glibc-2.31.patch
-   autoreconf
-}
-
-build() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --disable-strip \
-   --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}"
-   cd "${srcdir}/${pkgname}"
-
-   # Tests require openssh to be already installed system-wid

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

2020-02-15 Thread Gaëtan Bisson via arch-commits
Date: Sunday, February 16, 2020 @ 03:28:00
  Author: bisson
Revision: 375665

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 375664, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 375664, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/glibc-2.31.patch
(from rev 375664, openssh/repos/testing-x86_64/glibc-2.31.patch)
  openssh/repos/core-x86_64/install
(from rev 375664, openssh/repos/testing-x86_64/install)
  openssh/repos/core-x86_64/sshd.conf
(from rev 375664, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 375664, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 375664, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 375664, 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/glibc-2.31.patch
  openssh/repos/core-x86_64/install
  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/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |  102 
 /PKGBUILD.snap  |  105 ++
 /glibc-2.31.patch   |  100 
 /install|   20 +++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   14 +
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|   97 ---
 core-x86_64/PKGBUILD.snap   |   93 -
 core-x86_64/glibc-2.31.patch|  100 
 core-x86_64/install |   20 ---
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   14 -
 core-x86_64/sshdgenkeys.service |   15 -
 16 files changed, 363 insertions(+), 346 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2020-02-16 01:10:12 UTC (rev 375664)
+++ core-x86_64/PKGBUILD2020-02-16 03:28:00 UTC (rev 375665)
@@ -1,97 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.1p1
-pkgrel=4
-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.conf'
-'sshd.pam'
-'glibc-2.31.patch')
-sha256sums=('02f5dbef3835d0753556f973cd57b4c19b6b1f6cd24c03445e23ac77ca1b93ff'
-'SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i "${srcdir}/glibc-2.31.patch"
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --disable-strip \
-   --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/fa

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

2019-07-31 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, July 31, 2019 @ 21:13:31
  Author: bisson
Revision: 358854

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 358853, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 358853, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/sshd.conf
(from rev 358853, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 358853, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 358853, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshd.socket
(from rev 358853, openssh/repos/testing-x86_64/sshd.socket)
  openssh/repos/core-x86_64/sshd@.service
(from rev 358853, openssh/repos/testing-x86_64/sshd@.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 358853, 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   |   93 +++
 /PKGBUILD.snap  |   99 ++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   17 ++
 /sshd.socket|   10 +++
 /sshd@.service  |9 +++
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|   93 ---
 core-x86_64/PKGBUILD.snap   |   98 -
 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 -
 16 files changed, 250 insertions(+), 249 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-07-31 21:13:29 UTC (rev 358853)
+++ core-x86_64/PKGBUILD2019-07-31 21:13:31 UTC (rev 358854)
@@ -1,93 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.0p1
-pkgrel=1
-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
-}
-
-packa

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

2019-04-21 Thread Gaëtan Bisson via arch-commits
Date: Sunday, April 21, 2019 @ 07:24:35
  Author: bisson
Revision: 351846

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 351845, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 351845, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/sshd.conf
(from rev 351845, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 351845, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 351845, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshd.socket
(from rev 351845, openssh/repos/testing-x86_64/sshd.socket)
  openssh/repos/core-x86_64/sshd@.service
(from rev 351845, openssh/repos/testing-x86_64/sshd@.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 351845, 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   |   93 +++
 /PKGBUILD.snap  |   98 +
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   17 ++
 /sshd.socket|   10 +++
 /sshd@.service  |9 +++
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|   93 ---
 core-x86_64/PKGBUILD.snap   |  100 --
 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 -
 16 files changed, 249 insertions(+), 251 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-04-21 01:00:10 UTC (rev 351845)
+++ core-x86_64/PKGBUILD2019-04-21 07:24:35 UTC (rev 351846)
@@ -1,93 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=7.9p1
-pkgrel=1
-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=('6b4b3ba2253d84ed3771c8050728d597c91cfce898713beb7b64a305b6f11aad'
-'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

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

2018-01-08 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, January 9, 2018 @ 03:13:50
  Author: bisson
Revision: 314280

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

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 314279, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/openssl-1.1.0.patch
(from rev 314279, openssh/repos/testing-x86_64/openssl-1.1.0.patch)
  openssh/repos/core-x86_64/sshd.conf
(from rev 314279, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 314279, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 314279, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshd.socket
(from rev 314279, openssh/repos/testing-x86_64/sshd.socket)
  openssh/repos/core-x86_64/sshd@.service
(from rev 314279, openssh/repos/testing-x86_64/sshd@.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 314279, openssh/repos/testing-x86_64/sshdgenkeys.service)
Deleted:
  openssh/repos/core-x86_64/PKGBUILD
  openssh/repos/core-x86_64/openssl-1.1.0.patch
  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   |  102 +
 /openssl-1.1.0.patch| 1982 ++
 /sshd.conf  |1 
 /sshd.pam   |6 
 /sshd.service   |   17 
 /sshd.socket|   10 
 /sshd@.service  |9 
 /sshdgenkeys.service|   15 
 core-x86_64/PKGBUILD|  101 -
 core-x86_64/openssl-1.1.0.patch | 1982 --
 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 
 16 files changed, 2142 insertions(+), 2141 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-01-09 03:13:18 UTC (rev 314279)
+++ core-x86_64/PKGBUILD2018-01-09 03:13:50 UTC (rev 314280)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=7.6p1
-pkgrel=1
-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}
-'openssl-1.1.0.patch'
-'sshdgenkeys.service'
-'sshd@.service'
-'sshd.service'
-'sshd.socket'
-'sshd.conf'
-'sshd.pam')
-sha256sums=('a323caeeddfe145baaa0db16e98d784b1fbc7dd436a6bf1f479dfd5cd1d21723'
-'SKIP'
-'1fcae9fc461026d96d08b38457e7ffe281b4319caaada1508f9eb74c2566ba5d'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'3a0845737207f4eda221c9c9fb64e766ade9684562d8ba4f705f7ae6826886e5'
-'c5ed9fa629f8f8dbf3bae4edbad4441c36df535088553fe82695c52d7bde30aa'
-'de14363e9d4ed92848e524036d9e6b57b2d35cc77d377b7247c38111d2a3defd'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-prepare() {
-   cd $pkgname-$pkgver
-   # OpenSSL 1.1.0 patch from 
http://vega.pgw.jp/~kabe/vsd/patch/openssh-7.4p1-openssl-1.1.0c.patch.html
-   patch -Np1 -i ../openssl-1.1.0.patch
-}
-
-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}"
-
-   # Tests require openssh to be already installed system-wide,
-   # also connectivity tests will fail under makechrootpkg since
-# it runs as nobody which h