Announcement

Collapse
No announcement yet.

Update gnupg to 1.4.10

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Update gnupg to 1.4.10

    Hey Michael, can you update the gnupg packages to the latest. 1.4.9 has a bug that causes it not to compile on systems. Here are the changes:

    /phoronix-test-suite/pts/test-resources/gnupg/downloads.xml

    Code:
    <PhoronixTestSuite>
        <Downloads>
            <Package>
                <URL>ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.10.tar.gz, ftp://ftp.usa.openbsd.org/pub/OpenBSD/distfiles/gnupg-1.4.10.tar.gz</URL>
                <MD5>991faf66d3352ac1452acc393c430b23</MD5>
                <FileSize>4747259</FileSize>
            </Package>
        </Downloads>
    </PhoronixTestSuite>
    /phoronix-test-suite/pts/test-resources/gnupg/install.sh

    Code:
    #!/bin/sh
    
    mkdir $HOME/gnupg_
    
    tar -zxvf gnupg-1.4.10.tar.gz
    cd gnupg-1.4.10/
    ./configure --prefix=$HOME/gnupg_
    make -j $NUM_CPU_JOBS
    echo $? > ~/install-exit-status
    make install
    cd ..
    rm -rf gnupg-1.4.10/
    rm -rf gnupg_/share/
    
    echo pts-1234567890 > passphrase
    
    echo "#!/bin/sh
    \$TIMER_START
    ./gnupg_/bin/gpg -c --no-options --passphrase-file passphrase -o /dev/null encryptfile 2>&1
    \$TIMER_STOP" > gnupg
    chmod +x gnupg

  • #2
    Updated in Git, thanks.
    Michael Larabel
    https://www.michaellarabel.com/

    Comment

    Working...
    X