* [PATCH 0/4] zypper: support signed repositories
@ 2012-01-30 15:20 Steve Sakoman
2012-01-30 15:20 ` [PATCH 1/4] libassuan: add recipe for 2.0.3 Steve Sakoman
` (3 more replies)
0 siblings, 4 replies; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 15:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Steve Sakoman
The current zypper implementation does not work with signed repositories.
This patch series adds recipes for the required packages as well as the
necessary runtime dependencies to zypper.
Tested on Gumstix Overo (OMAP3) with meta-openembedded layer enabled and
a systemd based console image.
Steve Sakoman (4):
libassuan: add recipe for 2.0.3
libksba: add recipe for 1.2.0
gnupg: add recipe for 2.0.18
zypper: add missing runtime dependences on gzip and gnupg
meta/recipes-extended/gnupg/gnupg_2.0.18.bb | 24 ++++++++++++++++++++++++
meta/recipes-extended/gnupg/libassuan_2.0.3.bb | 11 +++++++++++
meta/recipes-extended/gnupg/libksba_1.2.0.bb | 10 ++++++++++
meta/recipes-extended/zypper/zypper_git.bb | 4 +++-
4 files changed, 48 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-extended/gnupg/gnupg_2.0.18.bb
create mode 100644 meta/recipes-extended/gnupg/libassuan_2.0.3.bb
create mode 100644 meta/recipes-extended/gnupg/libksba_1.2.0.bb
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH 1/4] libassuan: add recipe for 2.0.3
2012-01-30 15:20 [PATCH 0/4] zypper: support signed repositories Steve Sakoman
@ 2012-01-30 15:20 ` Steve Sakoman
2012-01-30 16:32 ` Saul Wold
2012-01-30 15:20 ` [PATCH 2/4] libksba: add recipe for 1.2.0 Steve Sakoman
` (2 subsequent siblings)
3 siblings, 1 reply; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 15:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Steve Sakoman
Libassuan is the IPC library used by some GnuPG related software
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/gnupg/libassuan_2.0.3.bb | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/gnupg/libassuan_2.0.3.bb
diff --git a/meta/recipes-extended/gnupg/libassuan_2.0.3.bb b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
new file mode 100644
index 0000000..ac34869
--- /dev/null
+++ b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "Libassuan is the IPC library used by some GnuPG related software"
+LICENSE = "GPLv3+ & LGPLv2.1+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
+ file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
+
+inherit autotools binconfig
+
+SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
+
+SRC_URI[md5sum] = "179d1918325fdb928c7bd90b8a514fc7"
+SRC_URI[sha256sum] = "bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b"
--
1.7.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH 1/4] libassuan: add recipe for 2.0.3
2012-01-30 15:20 ` [PATCH 1/4] libassuan: add recipe for 2.0.3 Steve Sakoman
@ 2012-01-30 16:32 ` Saul Wold
2012-01-30 16:56 ` Steve Sakoman
0 siblings, 1 reply; 13+ messages in thread
From: Saul Wold @ 2012-01-30 16:32 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Steve Sakoman
On 01/30/2012 07:20 AM, Steve Sakoman wrote:
> Libassuan is the IPC library used by some GnuPG related software
>
> Signed-off-by: Steve Sakoman<steve@sakoman.com>
> ---
> meta/recipes-extended/gnupg/libassuan_2.0.3.bb | 11 +++++++++++
> 1 files changed, 11 insertions(+), 0 deletions(-)
> create mode 100644 meta/recipes-extended/gnupg/libassuan_2.0.3.bb
>
> diff --git a/meta/recipes-extended/gnupg/libassuan_2.0.3.bb b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
> new file mode 100644
> index 0000000..ac34869
> --- /dev/null
> +++ b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
> @@ -0,0 +1,11 @@
> +DESCRIPTION = "Libassuan is the IPC library used by some GnuPG related software"
> +LICENSE = "GPLv3+& LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
> + file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
> +
> +inherit autotools binconfig
> +
> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
> +
> +SRC_URI[md5sum] = "179d1918325fdb928c7bd90b8a514fc7"
> +SRC_URI[sha256sum] = "bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b"
Why is this needed, as we already have a copy in
meta/recipes-support/libassuan? Was that version not found for some reason?
Sau!
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH 1/4] libassuan: add recipe for 2.0.3
2012-01-30 16:32 ` Saul Wold
@ 2012-01-30 16:56 ` Steve Sakoman
0 siblings, 0 replies; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 16:56 UTC (permalink / raw)
To: Saul Wold, Patches and discussions about the oe-core layer
On Mon, Jan 30, 2012 at 8:32 AM, Saul Wold <sgw@linux.intel.com> wrote:
> On 01/30/2012 07:20 AM, Steve Sakoman wrote:
>>
>> Libassuan is the IPC library used by some GnuPG related software
>>
>> Signed-off-by: Steve Sakoman<steve@sakoman.com>
>> ---
>> meta/recipes-extended/gnupg/libassuan_2.0.3.bb | 11 +++++++++++
>> 1 files changed, 11 insertions(+), 0 deletions(-)
>> create mode 100644 meta/recipes-extended/gnupg/libassuan_2.0.3.bb
>>
>> diff --git a/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
>> b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
>> new file mode 100644
>> index 0000000..ac34869
>> --- /dev/null
>> +++ b/meta/recipes-extended/gnupg/libassuan_2.0.3.bb
>> @@ -0,0 +1,11 @@
>> +DESCRIPTION = "Libassuan is the IPC library used by some GnuPG related
>> software"
>> +LICENSE = "GPLv3+& LGPLv2.1+"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
>> +
>> file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
>> +
>> +inherit autotools binconfig
>> +
>> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
>> +
>> +SRC_URI[md5sum] = "179d1918325fdb928c7bd90b8a514fc7"
>> +SRC_URI[sha256sum] =
>> "bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b"
>
>
> Why is this needed, as we already have a copy in
> meta/recipes-support/libassuan? Was that version not found for some reason?
I somehow missed seeing the recipe in recipes-support! My bad.
I will remove this patch in the next submission.
Steve
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 2/4] libksba: add recipe for 1.2.0
2012-01-30 15:20 [PATCH 0/4] zypper: support signed repositories Steve Sakoman
2012-01-30 15:20 ` [PATCH 1/4] libassuan: add recipe for 2.0.3 Steve Sakoman
@ 2012-01-30 15:20 ` Steve Sakoman
2012-01-30 17:45 ` Khem Raj
2012-01-30 15:20 ` [PATCH 3/4] gnupg: add recipe for 2.0.18 Steve Sakoman
2012-01-30 15:20 ` [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg Steve Sakoman
3 siblings, 1 reply; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 15:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Steve Sakoman
Libksba provides an easy API to create and parse X.509 and CMS related objects
and is required for gnupg
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/gnupg/libksba_1.2.0.bb | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/gnupg/libksba_1.2.0.bb
diff --git a/meta/recipes-extended/gnupg/libksba_1.2.0.bb b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
new file mode 100644
index 0000000..876eedc
--- /dev/null
+++ b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
@@ -0,0 +1,10 @@
+DESCRIPTION = " Libksba provides an easy API to create and parse X.509 and CMS related objects"
+LICENSE = "GPLv3+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
+
+inherit autotools binconfig
+
+SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
+
+SRC_URI[md5sum] = "e797f370b69b4dc776499d6a071ae137"
+SRC_URI[sha256sum] = "09afce65b03d027cbec10d21464f4f651cdfd269e38b404f83e48d3e2a3c934b"
--
1.7.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH 2/4] libksba: add recipe for 1.2.0
2012-01-30 15:20 ` [PATCH 2/4] libksba: add recipe for 1.2.0 Steve Sakoman
@ 2012-01-30 17:45 ` Khem Raj
2012-01-30 18:01 ` Steve Sakoman
0 siblings, 1 reply; 13+ messages in thread
From: Khem Raj @ 2012-01-30 17:45 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Steve Sakoman
Hi Steve
On Mon, Jan 30, 2012 at 7:20 AM, Steve Sakoman <steve@sakoman.com> wrote:
> Libksba provides an easy API to create and parse X.509 and CMS related objects
> and is required for gnupg
>
Doesn't it need libgpg-error ?
http://www.gnupg.org/related_software/libgpg-error
> Signed-off-by: Steve Sakoman <steve@sakoman.com>
> ---
> meta/recipes-extended/gnupg/libksba_1.2.0.bb | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
> create mode 100644 meta/recipes-extended/gnupg/libksba_1.2.0.bb
>
> diff --git a/meta/recipes-extended/gnupg/libksba_1.2.0.bb b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
> new file mode 100644
> index 0000000..876eedc
> --- /dev/null
> +++ b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
> @@ -0,0 +1,10 @@
> +DESCRIPTION = " Libksba provides an easy API to create and parse X.509 and CMS related objects"
> +LICENSE = "GPLv3+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
> +
> +inherit autotools binconfig
> +
> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
> +
> +SRC_URI[md5sum] = "e797f370b69b4dc776499d6a071ae137"
> +SRC_URI[sha256sum] = "09afce65b03d027cbec10d21464f4f651cdfd269e38b404f83e48d3e2a3c934b"
> --
> 1.7.1
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH 2/4] libksba: add recipe for 1.2.0
2012-01-30 17:45 ` Khem Raj
@ 2012-01-30 18:01 ` Steve Sakoman
0 siblings, 0 replies; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 18:01 UTC (permalink / raw)
To: Khem Raj, Patches and discussions about the oe-core layer
On Mon, Jan 30, 2012 at 9:45 AM, Khem Raj <raj.khem@gmail.com> wrote:
> Hi Steve
>
> On Mon, Jan 30, 2012 at 7:20 AM, Steve Sakoman <steve@sakoman.com> wrote:
>> Libksba provides an easy API to create and parse X.509 and CMS related objects
>> and is required for gnupg
>>
>
> Doesn't it need libgpg-error ?
> http://www.gnupg.org/related_software/libgpg-error
From that page it would appear so. I'll do a v4 and add it.
Steve
>> Signed-off-by: Steve Sakoman <steve@sakoman.com>
>> ---
>> meta/recipes-extended/gnupg/libksba_1.2.0.bb | 10 ++++++++++
>> 1 files changed, 10 insertions(+), 0 deletions(-)
>> create mode 100644 meta/recipes-extended/gnupg/libksba_1.2.0.bb
>>
>> diff --git a/meta/recipes-extended/gnupg/libksba_1.2.0.bb b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
>> new file mode 100644
>> index 0000000..876eedc
>> --- /dev/null
>> +++ b/meta/recipes-extended/gnupg/libksba_1.2.0.bb
>> @@ -0,0 +1,10 @@
>> +DESCRIPTION = " Libksba provides an easy API to create and parse X.509 and CMS related objects"
>> +LICENSE = "GPLv3+"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
>> +
>> +inherit autotools binconfig
>> +
>> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${PN}-${PV}.tar.bz2"
>> +
>> +SRC_URI[md5sum] = "e797f370b69b4dc776499d6a071ae137"
>> +SRC_URI[sha256sum] = "09afce65b03d027cbec10d21464f4f651cdfd269e38b404f83e48d3e2a3c934b"
>> --
>> 1.7.1
>>
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 3/4] gnupg: add recipe for 2.0.18
2012-01-30 15:20 [PATCH 0/4] zypper: support signed repositories Steve Sakoman
2012-01-30 15:20 ` [PATCH 1/4] libassuan: add recipe for 2.0.3 Steve Sakoman
2012-01-30 15:20 ` [PATCH 2/4] libksba: add recipe for 1.2.0 Steve Sakoman
@ 2012-01-30 15:20 ` Steve Sakoman
2012-01-30 16:34 ` Saul Wold
2012-01-30 15:20 ` [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg Steve Sakoman
3 siblings, 1 reply; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 15:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Steve Sakoman
GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/gnupg/gnupg_2.0.18.bb | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/gnupg/gnupg_2.0.18.bb
diff --git a/meta/recipes-extended/gnupg/gnupg_2.0.18.bb b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
new file mode 100644
index 0000000..c56f3d5
--- /dev/null
+++ b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "gnupg - GNU privacy guard"
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
+
+DEPENDS = "pth libassuan libksba zlib bzip2 readline"
+
+inherit autotools gettext
+
+SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2"
+
+SRC_URI[md5sum] = "2f37e0722666a0fedbe4d9f9227ac4d7"
+SRC_URI[sha256sum] = "48aedd762ca443fb952a9e859efe3c66706d7c2c9c77c32dbdbac4fe962dae5b"
+
+S = "${WORKDIR}/gnupg-${PV}"
+
+EXTRA_OECONF = "--disable-ldap \
+ --with-zlib=${STAGING_LIBDIR}/.. \
+ --with-bzip2=${STAGING_LIBDIR}/.. \
+ --with-readline=${STAGING_LIBDIR}/.. \
+ "
+
+do_install_append() {
+ ln -sf gpg2 ${D}${bindir}/gpg
+}
--
1.7.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH 3/4] gnupg: add recipe for 2.0.18
2012-01-30 15:20 ` [PATCH 3/4] gnupg: add recipe for 2.0.18 Steve Sakoman
@ 2012-01-30 16:34 ` Saul Wold
2012-01-30 16:57 ` Steve Sakoman
0 siblings, 1 reply; 13+ messages in thread
From: Saul Wold @ 2012-01-30 16:34 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Steve Sakoman
On 01/30/2012 07:20 AM, Steve Sakoman wrote:
> GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME
>
> Signed-off-by: Steve Sakoman<steve@sakoman.com>
> ---
> meta/recipes-extended/gnupg/gnupg_2.0.18.bb | 24 ++++++++++++++++++++++++
> 1 files changed, 24 insertions(+), 0 deletions(-)
> create mode 100644 meta/recipes-extended/gnupg/gnupg_2.0.18.bb
>
> diff --git a/meta/recipes-extended/gnupg/gnupg_2.0.18.bb b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
> new file mode 100644
> index 0000000..c56f3d5
> --- /dev/null
> +++ b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
> @@ -0,0 +1,24 @@
> +DESCRIPTION = "gnupg - GNU privacy guard"
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
> +
> +DEPENDS = "pth libassuan libksba zlib bzip2 readline"
> +
> +inherit autotools gettext
> +
> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2"
> +
> +SRC_URI[md5sum] = "2f37e0722666a0fedbe4d9f9227ac4d7"
> +SRC_URI[sha256sum] = "48aedd762ca443fb952a9e859efe3c66706d7c2c9c77c32dbdbac4fe962dae5b"
> +
> +S = "${WORKDIR}/gnupg-${PV}"
> +
> +EXTRA_OECONF = "--disable-ldap \
> + --with-zlib=${STAGING_LIBDIR}/.. \
> + --with-bzip2=${STAGING_LIBDIR}/.. \
> + --with-readline=${STAGING_LIBDIR}/.. \
> + "
> +
> +do_install_append() {
> + ln -sf gpg2 ${D}${bindir}/gpg
> +}
This recipe along with libksba, would should live in recipes-support, as
they "support" functionality provided elsewhere.
Sau!
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH 3/4] gnupg: add recipe for 2.0.18
2012-01-30 16:34 ` Saul Wold
@ 2012-01-30 16:57 ` Steve Sakoman
0 siblings, 0 replies; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 16:57 UTC (permalink / raw)
To: Saul Wold; +Cc: Patches and discussions about the oe-core layer
On Mon, Jan 30, 2012 at 8:34 AM, Saul Wold <sgw@linux.intel.com> wrote:
> On 01/30/2012 07:20 AM, Steve Sakoman wrote:
>>
>> GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and
>> S/MIME
>>
>> Signed-off-by: Steve Sakoman<steve@sakoman.com>
>> ---
>> meta/recipes-extended/gnupg/gnupg_2.0.18.bb | 24
>> ++++++++++++++++++++++++
>> 1 files changed, 24 insertions(+), 0 deletions(-)
>> create mode 100644 meta/recipes-extended/gnupg/gnupg_2.0.18.bb
>>
>> diff --git a/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
>> b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
>> new file mode 100644
>> index 0000000..c56f3d5
>> --- /dev/null
>> +++ b/meta/recipes-extended/gnupg/gnupg_2.0.18.bb
>> @@ -0,0 +1,24 @@
>> +DESCRIPTION = "gnupg - GNU privacy guard"
>> +LICENSE = "GPLv2+"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
>> +
>> +DEPENDS = "pth libassuan libksba zlib bzip2 readline"
>> +
>> +inherit autotools gettext
>> +
>> +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2"
>> +
>> +SRC_URI[md5sum] = "2f37e0722666a0fedbe4d9f9227ac4d7"
>> +SRC_URI[sha256sum] =
>> "48aedd762ca443fb952a9e859efe3c66706d7c2c9c77c32dbdbac4fe962dae5b"
>> +
>> +S = "${WORKDIR}/gnupg-${PV}"
>> +
>> +EXTRA_OECONF = "--disable-ldap \
>> + --with-zlib=${STAGING_LIBDIR}/.. \
>> + --with-bzip2=${STAGING_LIBDIR}/.. \
>> + --with-readline=${STAGING_LIBDIR}/.. \
>> + "
>> +
>> +do_install_append() {
>> + ln -sf gpg2 ${D}${bindir}/gpg
>> +}
>
>
> This recipe along with libksba, would should live in recipes-support, as
> they "support" functionality provided elsewhere.
OK, will resubmit with that change.
Steve
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg
2012-01-30 15:20 [PATCH 0/4] zypper: support signed repositories Steve Sakoman
` (2 preceding siblings ...)
2012-01-30 15:20 ` [PATCH 3/4] gnupg: add recipe for 2.0.18 Steve Sakoman
@ 2012-01-30 15:20 ` Steve Sakoman
2012-01-30 15:29 ` Koen Kooi
3 siblings, 1 reply; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 15:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Steve Sakoman
gzip is required to uncompress repository files
gnupg is required for the support of signed repositories.
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/zypper/zypper_git.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-extended/zypper/zypper_git.bb b/meta/recipes-extended/zypper/zypper_git.bb
index e5963be..1a6b83c 100644
--- a/meta/recipes-extended/zypper/zypper_git.bb
+++ b/meta/recipes-extended/zypper/zypper_git.bb
@@ -5,7 +5,9 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=3201406e350b39e05a82e28b5020f413"
DEPENDS = "libzypp augeas"
-PR = "r1"
+RDEPENDS = "gzip gnupg"
+
+PR = "r2"
SRCREV = "2c5bb6ceb99ecd950ef993e43d77bf0569ea0582"
inherit cmake
--
1.7.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg
2012-01-30 15:20 ` [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg Steve Sakoman
@ 2012-01-30 15:29 ` Koen Kooi
2012-01-30 16:02 ` Steve Sakoman
0 siblings, 1 reply; 13+ messages in thread
From: Koen Kooi @ 2012-01-30 15:29 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 861 bytes --]
Op 30 jan. 2012, om 16:20 heeft Steve Sakoman het volgende geschreven:
> gzip is required to uncompress repository files
> gnupg is required for the support of signed repositories.
>
> Signed-off-by: Steve Sakoman <steve@sakoman.com>
> ---
> meta/recipes-extended/zypper/zypper_git.bb | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/meta/recipes-extended/zypper/zypper_git.bb b/meta/recipes-extended/zypper/zypper_git.bb
> index e5963be..1a6b83c 100644
> --- a/meta/recipes-extended/zypper/zypper_git.bb
> +++ b/meta/recipes-extended/zypper/zypper_git.bb
> @@ -5,7 +5,9 @@ LICENSE = "GPLv2+"
> LIC_FILES_CHKSUM = "file://COPYING;md5=3201406e350b39e05a82e28b5020f413"
>
> DEPENDS = "libzypp augeas"
> -PR = "r1"
> +RDEPENDS = "gzip gnupg"
RDEPENDS_${PN} and move it to the proper place in the recipe.
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 169 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg
2012-01-30 15:29 ` Koen Kooi
@ 2012-01-30 16:02 ` Steve Sakoman
0 siblings, 0 replies; 13+ messages in thread
From: Steve Sakoman @ 2012-01-30 16:02 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Mon, Jan 30, 2012 at 7:29 AM, Koen Kooi <koen@dominion.thruhere.net> wrote:
>
> Op 30 jan. 2012, om 16:20 heeft Steve Sakoman het volgende geschreven:
>
>> gzip is required to uncompress repository files
>> gnupg is required for the support of signed repositories.
>>
>> Signed-off-by: Steve Sakoman <steve@sakoman.com>
>> ---
>> meta/recipes-extended/zypper/zypper_git.bb | 4 +++-
>> 1 files changed, 3 insertions(+), 1 deletions(-)
>>
>> diff --git a/meta/recipes-extended/zypper/zypper_git.bb b/meta/recipes-extended/zypper/zypper_git.bb
>> index e5963be..1a6b83c 100644
>> --- a/meta/recipes-extended/zypper/zypper_git.bb
>> +++ b/meta/recipes-extended/zypper/zypper_git.bb
>> @@ -5,7 +5,9 @@ LICENSE = "GPLv2+"
>> LIC_FILES_CHKSUM = "file://COPYING;md5=3201406e350b39e05a82e28b5020f413"
>>
>> DEPENDS = "libzypp augeas"
>> -PR = "r1"
>> +RDEPENDS = "gzip gnupg"
>
> RDEPENDS_${PN} and move it to the proper place in the recipe.
Indeed! Will resubmit.
Steve
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2012-01-30 18:15 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-30 15:20 [PATCH 0/4] zypper: support signed repositories Steve Sakoman
2012-01-30 15:20 ` [PATCH 1/4] libassuan: add recipe for 2.0.3 Steve Sakoman
2012-01-30 16:32 ` Saul Wold
2012-01-30 16:56 ` Steve Sakoman
2012-01-30 15:20 ` [PATCH 2/4] libksba: add recipe for 1.2.0 Steve Sakoman
2012-01-30 17:45 ` Khem Raj
2012-01-30 18:01 ` Steve Sakoman
2012-01-30 15:20 ` [PATCH 3/4] gnupg: add recipe for 2.0.18 Steve Sakoman
2012-01-30 16:34 ` Saul Wold
2012-01-30 16:57 ` Steve Sakoman
2012-01-30 15:20 ` [PATCH 4/4] zypper: add missing runtime dependences on gzip and gnupg Steve Sakoman
2012-01-30 15:29 ` Koen Kooi
2012-01-30 16:02 ` Steve Sakoman
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.