Package Details: beersmith 3.2.8-1

Git Clone URL: https://aur.archlinux.org/beersmith.git (read-only, click to copy)
Package Base: beersmith
Description: Complete software suite for brewers
Upstream URL: https://beersmith.com
Licenses: Commercial
Submitter: Scimmia
Maintainer: cadilhac
Last Packager: cadilhac
Votes: 3
Popularity: 0.000004
First Submitted: 2018-08-03 08:57 (UTC)
Last Updated: 2022-11-10 15:44 (UTC)

Latest Comments

cadilhac commented on 2022-11-10 15:46 (UTC)

@everythingfunct: Updated, thanks!

everythingfunct commented on 2022-11-10 01:11 (UTC) (edited on 2022-11-10 01:12 (UTC) by everythingfunct)

A new version has been released (3.2.8), which fixes an openssl issue (it was using an old, deprecated version, and thus unable to start). Any chance you could update the package. The diff should just be:

$ git diff
diff --git a/PKGBUILD b/PKGBUILD
index 46c12d7..f1df91e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Contributor: Doug Newgard <scimmia at archlinux dot org>

 pkgname=beersmith
-pkgver=3.2.7
+pkgver=3.2.8
 pkgrel=1
 pkgdesc='Complete software suite for brewers'
 arch=('x86_64')
@@ -10,13 +10,13 @@ license=('commercial')
 servsuffix=${pkgver/./-}
 servsuffix=${servsuffix%%.*}
 source_x86_64=("https://beersmith${servsuffix}.s3.amazonaws.com/BeerSmith-${pkgver}_amd64.deb")
-sha256sums_x86_64=('0ba64dd7cad373b9bd349394c5909e4d2693e7d66b9456cee6d95c7741d540f3')
+sha256sums_x86_64=('a8dfc610e2532b179057dfd775e3db00515c811160b08b52d5ad6e8ce680fb1b')

 package() {
   depends=('cairo' 'fontconfig' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
            'libpng' 'libsm' 'libx11' 'libxxf86vm' 'openssl' 'pango' 'webkit2gtk' 'zlib')

-  bsdtar -xf data.tar.xz -C "$pkgdir"
+  bsdtar -xf data.tar.zst -C "$pkgdir"

   rm -r "$pkgdir"{/etc/,/usr/share/menu/}
   install -dm755 "$pkgdir/usr/share/licenses/$pkgname"

and I have tested that it works.