From b49e365de18e62b3042b79dc19a646c050dc09ac Mon Sep 17 00:00:00 2001 From: Joe Bo Run Date: Thu, 16 Mar 2023 21:50:50 +0200 Subject: [PATCH] upg thin-provisioning-tools openssh --- openssh/PKGBUILD | 14 +++++---- openssh/PKGBUILD-arch | 42 ++++++++++++++------------- openssh/time | 7 ++--- thin-provisioning-tools/PKGBUILD | 11 +++---- thin-provisioning-tools/PKGBUILD-arch | 4 +-- 5 files changed, 42 insertions(+), 36 deletions(-) diff --git a/openssh/PKGBUILD b/openssh/PKGBUILD index a00aa23..b788053 100644 --- a/openssh/PKGBUILD +++ b/openssh/PKGBUILD @@ -6,10 +6,9 @@ #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgname=openssh -pkgver=9.2p1 +pkgver=9.3p1 pkgrel=01 pkgdesc='SSH protocol implementation for remote login, command execution and file transfer w/o systemd' -arch=('x86_64') url='https://www.openssh.com/portable.html' depends=( 'glibc' @@ -98,15 +97,20 @@ package() { } -#---- license gpg-key sha256sums ---- +#---- arch license gpg-key & sha256sums ---- + +arch=(x86_64) license=('custom:BSD') validpgpkeys=('7168B983815A5EEF59A4ADFD2A3F414E736060BA') # "Damien Miller " -sha256sums=(3f66dbf1655fb45f50e1c56da62ab01218c228807b21338d634ebcdf9d71cf46 # openssh-9.2p1.tar.gz - 7acc8e9502040972aeecb785fa3b6bb00c069cc01fbd7c214f8f7867033a6dbb # openssh-9.2p1.tar.gz.asc +sha256sums=(e9baba7701a76a51f3d85a62c383a3c9dcd97fa900b859bc7db114c1868af8a8 # openssh-9.3p1.tar.gz + 6d96d2ff60d8d3545f0fa1709cb4c273d9a2fe086afa90f70951cffc01c8fa68 # openssh-9.3p1.tar.gz.asc 27e43dfd1506c8a821ec8186bae65f2dc43ca038616d6de59f322bd14aa9d07f # openssh-9.0p1-sshd_config.patch 4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6 # sshd.conf 64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846) # sshd.pam +## 6ae4d0f937036bb0abac62ae5cde0d4cfd550b7c81e7c2abd57b152e8c645a6b openssh-9.3p1-01-x86_64.pkg.tar.lz + + diff --git a/openssh/PKGBUILD-arch b/openssh/PKGBUILD-arch index 8a7a5db..ce1c247 100644 --- a/openssh/PKGBUILD-arch +++ b/openssh/PKGBUILD-arch @@ -5,7 +5,7 @@ # Contributor: judd pkgname=openssh -pkgver=9.2p1 +pkgver=9.3p1 pkgrel=1 pkgdesc="SSH protocol implementation for remote login, command execution and file transfer" arch=('x86_64') @@ -40,14 +40,14 @@ source=( 'sshd.conf' 'sshd.pam' ) -sha256sums=('3f66dbf1655fb45f50e1c56da62ab01218c228807b21338d634ebcdf9d71cf46' +sha256sums=('e9baba7701a76a51f3d85a62c383a3c9dcd97fa900b859bc7db114c1868af8a8' 'SKIP' '27e43dfd1506c8a821ec8186bae65f2dc43ca038616d6de59f322bd14aa9d07f' 'e5305767b2d317183ad1c5022a5f6705bd9014a8b22495a000fd482713738611' 'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7' '4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6' '64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846') -b2sums=('8d0b5e43cb42cba105a1fe303c447a2b85151cb33ec7ed47747d75c5a61d0f07f0ee4b1020b79c13eb8de4b451c5a844a8afc7ebbbea7ffeceafc3bf59cb8d21' +b2sums=('45578edf98bba3d23c7cefe60d8a7d3079e7c6676459f7422ace7a2461ab96943fbcadb478633a80f40bc098f2435722850b563714adb78b14922be53cb5753d' 'SKIP' '29e1a1c2744e0234830c6f93a46338ea8dc943370e20a24883d207d611025e54643da678f2826050c073a36be48dfdc7329d4cfb144c2ff90607a5f10f73dc59' '09fad3648f48f13ee80195b90913feeba21240d121b1178e0ce62f4a17b1f7e58e8edc22c04403e377ab300f5022a804c848f5be132765d5ca26a38aab262e50' @@ -61,25 +61,27 @@ prepare() { } build() { + local configure_options=( + --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-pid-dir=/run + --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' + ) + cd "${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-pid-dir=/run \ - --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \ - + ./configure "${configure_options[@]}" make } diff --git a/openssh/time b/openssh/time index e4f0ed4..eb36ef5 100644 --- a/openssh/time +++ b/openssh/time @@ -1,7 +1,6 @@ -real 5m50.037s -user 5m27.527s -sys 0m11.301s +real 5m20.682s +user 5m10.642s +sys 0m10.607s - diff --git a/thin-provisioning-tools/PKGBUILD b/thin-provisioning-tools/PKGBUILD index eb1743f..5848fc7 100644 --- a/thin-provisioning-tools/PKGBUILD +++ b/thin-provisioning-tools/PKGBUILD @@ -6,10 +6,9 @@ #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgname=thin-provisioning-tools -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=01 pkgdesc='Suite of tools for manipulating the metadata of the dm-thin device-mapper target' -arch=('x86_64') url="https://github.com/jthornber/thin-provisioning-tools" #depends=('expat' 'gcc-libs' 'libaio') # 0.9.0 #makedepends=('boost') # 0.9.0 @@ -34,12 +33,14 @@ package() { } -#---- license gpg-key sha256sums ---- +#---- arch license gpg-key & sha256sums ---- + +arch=(x86_64) license=(GPL3) -sha256sums=(f4896b3fe37597729031df696b93fefb2480b20e56f557e67adc3ddccf9cdabe) # v1.0.2.tar.gz +sha256sums=(8c912be0f7a1cdc40f37fd4226a1794a91fa31667231d4e88338f32cf84b88b6) # v1.0.3.tar.gz -## 8f69236108fad2df9000a9ee9f469109f99a4efff63aee741d499da622cb3b1b thin-provisioning-tools-1.0.2-01-x86_64.pkg.tar.lz +## 71c1a8a629fbc829f2cc5fc10be74aabdd36ca58f9a38048d22093ba6e1da7f4 thin-provisioning-tools-1.0.3-01-x86_64.pkg.tar.lz diff --git a/thin-provisioning-tools/PKGBUILD-arch b/thin-provisioning-tools/PKGBUILD-arch index af448d8..f00d974 100644 --- a/thin-provisioning-tools/PKGBUILD-arch +++ b/thin-provisioning-tools/PKGBUILD-arch @@ -2,7 +2,7 @@ # Contributor: Jason Hall pkgname=thin-provisioning-tools -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc='Suite of tools for manipulating the metadata of the dm-thin device-mapper target' arch=('x86_64') @@ -11,7 +11,7 @@ license=('GPL3') depends=('gcc-libs') makedepends=('cargo') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('f4896b3fe37597729031df696b93fefb2480b20e56f557e67adc3ddccf9cdabe') +sha256sums=('8c912be0f7a1cdc40f37fd4226a1794a91fa31667231d4e88338f32cf84b88b6') build() { cd "${srcdir}/${pkgname}-${pkgver}"