Skip to content

Commit

Permalink
p11-kit: Use GZIP over ZIP file and correct version
Browse files Browse the repository at this point in the history
The version is actually 0.23.2 [1]:

    $ wget https://beehive.molgen.mpg.de/1bef6b823367bc625e23506942c2b591/p11-kit-0.24.0.tar.gz
    --2024-04-16 00:19:05--  https://beehive.molgen.mpg.de/1bef6b823367bc625e23506942c2b591/p11-kit-0.24.0.tar.gz
    Auflösen des Hostnamens beehive.molgen.mpg.de (beehive.molgen.mpg.de)… 141.14.27.134
    Verbindungsaufbau zu beehive.molgen.mpg.de (beehive.molgen.mpg.de)|141.14.27.134|:443 … verbunden.
    HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
    Länge: 824924 (806K) [application/octet-stream]
    Wird in »p11-kit-0.24.0.tar.gz« gespeichert.

    p11-kit-0.24.0.tar. 100%[===================>] 805,59K   182KB/s    in 4,4s

    2024-04-16 00:19:12 (182 KB/s) - »p11-kit-0.24.0.tar.gz« gespeichert [824924/824924]

    $ md5sum p11-kit-0.24.0.tar.gz
    1bef6b823367bc625e23506942c2b591  p11-kit-0.24.0.tar.gz
    $ tar xf p11-kit-0.24.0.tar.gz
    gzip: stdin has more than one entry--rest ignored
    tar: Child returned status 2
    tar: Error is not recoverable: exiting now
    $ unzip p11-kit-0.24.0.tar.gz
    Archive:  p11-kit-0.24.0.tar.gz
    5f6cc6c4c66050069d0db93006299cde44920559
       creating: p11-kit-0.23.2/
    […]

Do *not* use `PKGVERSION` in URL for the source URL, as it’s easy to
copy the output of `/src/mariux/md5repo.sh`.

[1]: #2241
  • Loading branch information
pmenzel committed Apr 18, 2024
1 parent 8f23320 commit 520f931
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions p11-kit.be0
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION p11-kit-0.24.0-0
# BEE_VERSION p11-kit-0.23.2-0

# SRCURL[0]="https://github.com/p11-glue/p11-kit/archive/0.23.2.zip p11-kit-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/1bef6b823367bc625e23506942c2b591/p11-kit-${PKGVERSION}.tar.gz"
# SRCURL[0]="https://github.com/p11-glue/p11-kit/archive/${PKGVERSION}.tar.gz p11-kit-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/5c281bb08e6a713caa8e0c5bd2f813b5/p11-kit-0.23.2.tar.gz"

# PATCHURL+=()

Expand Down

0 comments on commit 520f931

Please sign in to comment.