Package Details: aacs-keydb 1.0-1

Git Clone URL: https://aur.archlinux.org/aacs-keydb.git (read-only, click to copy)
Package Base: aacs-keydb
Description: Contains the Key Database for the AACS Library
Upstream URL: http://fvonline-db.bplaced.net/
Submitter: MarkusTieger
Maintainer: MarkusTieger
Last Packager: MarkusTieger
Votes: 2
Popularity: 0.178191
First Submitted: 2023-05-23 12:41 (UTC)
Last Updated: 2023-05-31 21:59 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

MarkusTieger commented on 2024-02-01 20:35 (UTC)

The key database changes way too often. I think it would be better that you just use the installed version as long as it works (because of the revocation table in your bluray player) and if it does not work anymore, then you can just type "yay -S aacs-keydb" to update it.

DHouck commented on 2024-01-18 08:38 (UTC) (edited on 2024-01-18 08:57 (UTC) by DHouck)

A suggestion: to keep the version number useful, add

pkgver() {
        # Use this if file time is correct accounting for time zones
        # date +'%Y%m%d.%H%M%S' -u -d "@$(stat -c '%Y' "${srcdir}/keydb.cfg")"
        date +'%Y%m%d.%H%M%S' -d "$(stat -c '%y' "${srcdir}/keydb.cfg")"
}

to make the version number be the date and time of the latest update to the file (and then run makepkg -od to update the version number at least once).

Note that, as long as you extract the zip file in the same time zone as you run the pkgver function, this should usually give you the same time as on the FindVUK web page, but this is not going to be the correct time in either UTC or your localtime. It is in theory possible to fix that, but it probably isnʼt worth it. I included the change necessary in the pkgver function for that, but not a corresponding prepare function to make it work