* [PATCH 2/2] gnupg: add pinentry RDEPENDS
@ 2014-09-19 6:49 rongqing.li
2014-09-19 15:08 ` Burton, Ross
0 siblings, 1 reply; 6+ messages in thread
From: rongqing.li @ 2014-09-19 6:49 UTC (permalink / raw)
To: openembedded-core
From: "Roy.Li" <rongqing.li@windriver.com>
gnupg needs pinentry to run
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
---
meta/recipes-support/gnupg/gnupg_2.0.26.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-support/gnupg/gnupg_2.0.26.bb b/meta/recipes-support/gnupg/gnupg_2.0.26.bb
index c460b7e..c7606eb 100644
--- a/meta/recipes-support/gnupg/gnupg_2.0.26.bb
+++ b/meta/recipes-support/gnupg/gnupg_2.0.26.bb
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6"
DEPENDS = "${PTH} libassuan libksba zlib bzip2 readline libgcrypt"
+RDEPENDS_${PN} = "pinentry"
PTH = "pth"
PTH_libc-uclibc = "npth"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gnupg: add pinentry RDEPENDS
2014-09-19 6:49 [PATCH 2/2] gnupg: add pinentry RDEPENDS rongqing.li
@ 2014-09-19 15:08 ` Burton, Ross
2014-09-22 0:23 ` Rongqing Li
0 siblings, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2014-09-19 15:08 UTC (permalink / raw)
To: rongqing.li@windriver.com; +Cc: OE-core
On 19 September 2014 07:49, <rongqing.li@windriver.com> wrote:
> gnupg needs pinentry to run
Isn't this only needed if the agent is enabled?
Ross
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gnupg: add pinentry RDEPENDS
2014-09-19 15:08 ` Burton, Ross
@ 2014-09-22 0:23 ` Rongqing Li
2014-09-22 12:00 ` Paul Barker
0 siblings, 1 reply; 6+ messages in thread
From: Rongqing Li @ 2014-09-22 0:23 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 09/19/2014 11:08 PM, Burton, Ross wrote:
> On 19 September 2014 07:49, <rongqing.li@windriver.com> wrote:
>> gnupg needs pinentry to run
>
> Isn't this only needed if the agent is enabled?
>
> Ross
>
>
No, gnupg 2.x.x always need it;
1. the below is from README of gnupg
You also need the Pinentry package for most function of GnuPG; however
it is not a build requirement. Pinentry is available at
ftp://ftp.gnupg.org/gcrypt/pinentry/ .
2. we can find the report from rpmfind
http://www.rpmfind.net/linux/rpm2html/search.php?query=gnupg&submit=Search+...
-Roy
--
Best Reagrds,
Roy | RongQing Li
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gnupg: add pinentry RDEPENDS
2014-09-22 0:23 ` Rongqing Li
@ 2014-09-22 12:00 ` Paul Barker
2014-09-22 12:22 ` Burton, Ross
2014-09-23 0:24 ` Rongqing Li
0 siblings, 2 replies; 6+ messages in thread
From: Paul Barker @ 2014-09-22 12:00 UTC (permalink / raw)
To: Rongqing Li; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 960 bytes --]
On Mon, Sep 22, 2014 at 08:23:01AM +0800, Rongqing Li wrote:
>
>
> On 09/19/2014 11:08 PM, Burton, Ross wrote:
> >On 19 September 2014 07:49, <rongqing.li@windriver.com> wrote:
> >>gnupg needs pinentry to run
> >
> >Isn't this only needed if the agent is enabled?
> >
> >Ross
> >
> >
>
>
> No, gnupg 2.x.x always need it;
>
> 1. the below is from README of gnupg
>
> You also need the Pinentry package for most function of GnuPG; however
> it is not a build requirement. Pinentry is available at
> ftp://ftp.gnupg.org/gcrypt/pinentry/ .
>
There are some uses of gnupg which never need pinentry. For example, managing
the set of trusted keys for verifying package and feed signatures with opkg. I'd
prefer pinentry to be in RRECOMMENDS so that I can add it to
BAD_RECOMMENDATIONS and thereby disable it when I know it isn't needed.
Thanks,
--
Paul Barker
Email: paul@paulbarker.me.uk
http://www.paulbarker.me.uk
[-- Attachment #2: Type: application/pgp-signature, Size: 484 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gnupg: add pinentry RDEPENDS
2014-09-22 12:00 ` Paul Barker
@ 2014-09-22 12:22 ` Burton, Ross
2014-09-23 0:24 ` Rongqing Li
1 sibling, 0 replies; 6+ messages in thread
From: Burton, Ross @ 2014-09-22 12:22 UTC (permalink / raw)
To: Paul Barker; +Cc: OE-core
On 22 September 2014 13:00, Paul Barker <paul@paulbarker.me.uk> wrote:
>> You also need the Pinentry package for most function of GnuPG; however
>> it is not a build requirement. Pinentry is available at
>> ftp://ftp.gnupg.org/gcrypt/pinentry/ .
>>
>
> There are some uses of gnupg which never need pinentry. For example, managing
> the set of trusted keys for verifying package and feed signatures with opkg. I'd
> prefer pinentry to be in RRECOMMENDS so that I can add it to
> BAD_RECOMMENDATIONS and thereby disable it when I know it isn't needed.
Agreed.
Ross
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gnupg: add pinentry RDEPENDS
2014-09-22 12:00 ` Paul Barker
2014-09-22 12:22 ` Burton, Ross
@ 2014-09-23 0:24 ` Rongqing Li
1 sibling, 0 replies; 6+ messages in thread
From: Rongqing Li @ 2014-09-23 0:24 UTC (permalink / raw)
To: Paul Barker; +Cc: OE-core
On 09/22/2014 08:00 PM, Paul Barker wrote:
> On Mon, Sep 22, 2014 at 08:23:01AM +0800, Rongqing Li wrote:
>>
>>
>> On 09/19/2014 11:08 PM, Burton, Ross wrote:
>>> On 19 September 2014 07:49, <rongqing.li@windriver.com> wrote:
>>>> gnupg needs pinentry to run
>>>
>>> Isn't this only needed if the agent is enabled?
>>>
>>> Ross
>>>
>>>
>>
>>
>> No, gnupg 2.x.x always need it;
>>
>> 1. the below is from README of gnupg
>>
>> You also need the Pinentry package for most function of GnuPG; however
>> it is not a build requirement. Pinentry is available at
>> ftp://ftp.gnupg.org/gcrypt/pinentry/ .
>>
>
> There are some uses of gnupg which never need pinentry. For example, managing
> the set of trusted keys for verifying package and feed signatures with opkg. I'd
> prefer pinentry to be in RRECOMMENDS so that I can add it to
> BAD_RECOMMENDATIONS and thereby disable it when I know it isn't needed.
>
> Thanks,
>
I am ok, but I still hope the oe-core can accept the pinentry, since
"You also need the Pinentry package for most function of GnuPG" as in
gnupg README
-Roy
--
Best Reagrds,
Roy | RongQing Li
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-09-23 0:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 6:49 [PATCH 2/2] gnupg: add pinentry RDEPENDS rongqing.li
2014-09-19 15:08 ` Burton, Ross
2014-09-22 0:23 ` Rongqing Li
2014-09-22 12:00 ` Paul Barker
2014-09-22 12:22 ` Burton, Ross
2014-09-23 0:24 ` Rongqing Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox