Date: Saturday, November 19, 2022 @ 21:04:06
  Author: eworm
Revision: 462183

archrelease: copy trunk to testing-x86_64

Added:
  libxcrypt/repos/testing-x86_64/PKGBUILD
    (from rev 462182, libxcrypt/trunk/PKGBUILD)
  libxcrypt/repos/testing-x86_64/keys/
  libxcrypt/repos/testing-x86_64/libxcrypt.install
    (from rev 462182, libxcrypt/trunk/libxcrypt.install)
Deleted:
  libxcrypt/repos/testing-x86_64/PKGBUILD
  libxcrypt/repos/testing-x86_64/keys/
  libxcrypt/repos/testing-x86_64/libxcrypt.install

-------------------+
 PKGBUILD          |  126 ++++++++++++++++++++++++++--------------------------
 libxcrypt.install |   30 ++++++------
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-11-19 21:03:57 UTC (rev 462182)
+++ PKGBUILD    2022-11-19 21:04:06 UTC (rev 462183)
@@ -1,63 +0,0 @@
-# Maintainer: Christian Hesse <[email protected]>
-
-pkgbase=libxcrypt
-pkgname=(libxcrypt libxcrypt-compat)
-pkgver=4.4.32
-pkgrel=1
-pkgdesc='Modern library for one-way hashing of passwords'
-arch=('x86_64')
-url='https://github.com/besser82/libxcrypt/'
-license=('GPL')
-depends=('glibc')
-provides=('libcrypt.so')
-options=('debug')
-install=libxcrypt.install
-validpgpkeys=('678CE3FEE430311596DB8C16F52E98007594C21D') # Björn 'besser82' 
Esser
-source=("${url}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('0613f9bd51d713f8bb79fa10705b68d2ab705c3be4c4fc119f0a96bdc72256c4'
-            'SKIP')
-
-build() {
-  mkdir build-libxcrypt build-libxcrypt-compat
-
-  cd "${srcdir}/build-libxcrypt/"
-  "${srcdir}/${pkgbase}-${pkgver}"/configure \
-    --prefix=/usr \
-    --disable-static \
-    --enable-hashes=strong,glibc \
-    --enable-obsolete-api=no \
-    --disable-failure-tokens
-  make
-  
-  cd "${srcdir}/build-libxcrypt-compat/"
-  "${srcdir}/${pkgbase}-${pkgver}"/configure \
-    --prefix=/usr \
-    --disable-static \
-    --enable-hashes=strong,glibc \
-    --enable-obsolete-api=glibc \
-    --disable-failure-tokens
-  make
-}
-
-check() {
-  cd build-libxcrypt/
-
-  make check 
-}
-
-package_libxcrypt() {
-  cd build-libxcrypt/
-
-  make DESTDIR="${pkgdir}" install
-}
-
-package_libxcrypt-compat() {
-  pkgdesc='Modern library for one-way hashing of passwords - legacy API 
functions'
-  depends=('libxcrypt')
-  
-  cd build-libxcrypt-compat/
-
-  make DESTDIR="${pkgdir}" install
-
-  rm -rf "${pkgdir}"/usr/{include,lib/{lib*.so,pkgconfig},share}
-}

Copied: libxcrypt/repos/testing-x86_64/PKGBUILD (from rev 462182, 
libxcrypt/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-11-19 21:04:06 UTC (rev 462183)
@@ -0,0 +1,63 @@
+# Maintainer: Christian Hesse <[email protected]>
+
+pkgbase=libxcrypt
+pkgname=(libxcrypt libxcrypt-compat)
+pkgver=4.4.33
+pkgrel=1
+pkgdesc='Modern library for one-way hashing of passwords'
+arch=('x86_64')
+url='https://github.com/besser82/libxcrypt/'
+license=('GPL')
+depends=('glibc')
+provides=('libcrypt.so')
+options=('debug')
+install=libxcrypt.install
+validpgpkeys=('678CE3FEE430311596DB8C16F52E98007594C21D') # Björn 'besser82' 
Esser
+source=("${url}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('e87acf9c652c573a4713d5582159f98f305d56ed5f754ce64f57d4194d6b3a6f'
+            'SKIP')
+
+build() {
+  mkdir build-libxcrypt build-libxcrypt-compat
+
+  cd "${srcdir}/build-libxcrypt/"
+  "${srcdir}/${pkgbase}-${pkgver}"/configure \
+    --prefix=/usr \
+    --disable-static \
+    --enable-hashes=strong,glibc \
+    --enable-obsolete-api=no \
+    --disable-failure-tokens
+  make
+  
+  cd "${srcdir}/build-libxcrypt-compat/"
+  "${srcdir}/${pkgbase}-${pkgver}"/configure \
+    --prefix=/usr \
+    --disable-static \
+    --enable-hashes=strong,glibc \
+    --enable-obsolete-api=glibc \
+    --disable-failure-tokens
+  make
+}
+
+check() {
+  cd build-libxcrypt/
+
+  make check 
+}
+
+package_libxcrypt() {
+  cd build-libxcrypt/
+
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libxcrypt-compat() {
+  pkgdesc='Modern library for one-way hashing of passwords - legacy API 
functions'
+  depends=('libxcrypt')
+  
+  cd build-libxcrypt-compat/
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,lib/{lib*.so,pkgconfig},share}
+}

Deleted: libxcrypt.install
===================================================================
--- libxcrypt.install   2022-11-19 21:03:57 UTC (rev 462182)
+++ libxcrypt.install   2022-11-19 21:04:06 UTC (rev 462183)
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-post_upgrade() {
-  # return if old package version greater 4.4.21...
-  (( $(vercmp $2 '4.4.21') > 0 )) && return
-
-  cat <<EOM
- > Starting with 'libxcrypt' 4.4.21, weak password hashes (such as MD5 and 
SHA1)
- > are no longer accepted for new passwords. Users that still have their
- > passwords stored with a weak hash will be asked to update their password on
- > their next login.
- > If the login just fails (for example from display manager) switch to a
- > virtual terminal ('Ctrl-Alt-F2') and log in there once.
-EOM
-}

Copied: libxcrypt/repos/testing-x86_64/libxcrypt.install (from rev 462182, 
libxcrypt/trunk/libxcrypt.install)
===================================================================
--- libxcrypt.install                           (rev 0)
+++ libxcrypt.install   2022-11-19 21:04:06 UTC (rev 462183)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  # return if old package version greater 4.4.21...
+  (( $(vercmp $2 '4.4.21') > 0 )) && return
+
+  cat <<EOM
+ > Starting with 'libxcrypt' 4.4.21, weak password hashes (such as MD5 and 
SHA1)
+ > are no longer accepted for new passwords. Users that still have their
+ > passwords stored with a weak hash will be asked to update their password on
+ > their next login.
+ > If the login just fails (for example from display manager) switch to a
+ > virtual terminal ('Ctrl-Alt-F2') and log in there once.
+EOM
+}

Reply via email to