Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 522882 - app-crypt/gnupg-2.0.26-r1: fails to install tools/make-dns-cert
Summary: app-crypt/gnupg-2.0.26-r1: fails to install tools/make-dns-cert
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Crypto team [DISABLED]
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-09-15 15:36 UTC by Michael Weber (RETIRED)
Modified: 2014-09-17 18:10 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Weber (RETIRED) gentoo-dev 2014-09-15 15:36:04 UTC
I stubled [0] over this binary, which gets compiled during src_compile but isn't installed later. Please include this binary via USE flag or by default.

[0] http://www.gushi.org/make-dns-cert/HOWTO.html
Comment 1 Alon Bar-Lev (RETIRED) gentoo-dev 2014-09-15 17:16:49 UTC
added tools USE flag

  15 Sep 2014; Alon Bar-Lev <alonbl@gentoo.org> +gnupg-2.0.26-r2.ebuild,
  -gnupg-2.0.26-r1.ebuild, gnupg-2.1.0_beta783.ebuild, metadata.xml:
  Install extra tools, including previous default ones as it becomes long list,
  bug#522882
Comment 2 Arfrever Frehtes Taifersar Arahesis 2014-09-17 13:25:08 UTC
    if use tools; then
        for f in \
                convert-from-106 \
                gpg-check-pattern \
                gpg-zip \
                gpgconf \
                gpgsplit \
                lspgpot \
                mail-signed-keys \
                make-dns-cert \
                ; do
            dobin "tools/${f}" tools/gpg-zip
        done
    fi

Above ugly code installs tools/gpg-zip 9 times.

You can just use e.g.:

    if use tools; then
        dobin tools/convert-from-106 tools/gpg-check-pattern tools/gpg-zip ...
    fi

Or:

    if use tools; then
        dobin tools/{convert-from-106,gpg-check-pattern,gpg-zip,...}
    fi
Comment 3 Alon Bar-Lev (RETIRED) gentoo-dev 2014-09-17 18:10:28 UTC
(In reply to Arfrever Frehtes Taifersar Arahesis from comment #2)
> Above ugly code installs tools/gpg-zip 9 times.

this was a mistake.
anyway, fixed per your suggestion.