| Submitter | Steve Sakoman |
|---|---|
| Date | Jan. 30, 2012, 5:14 p.m. |
| Message ID | <1327943665-16402-3-git-send-email-steve@sakoman.com> |
| Download | mbox | patch |
| Permalink | /patch/20321/ |
| State | New |
| Headers | show |
Comments
* Steve Sakoman <steve@sakoman.com> [120130 20:20]: > GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME > diff --git a/meta/recipes-support/gnupg/gnupg_2.0.18.bb b/meta/recipes-support/gnupg/gnupg_2.0.18.bb > new file mode 100644 > index 0000000..c56f3d5 > --- /dev/null > +++ b/meta/recipes-support/gnupg/gnupg_2.0.18.bb > @@ -0,0 +1,24 @@ > +DESCRIPTION = "gnupg - GNU privacy guard" > +LICENSE = "GPLv2+" Are you sure about this? Looking at git.gnupg.org, this ought to be GPLv3+... You'll have to go back to gnupg 1.4.7, or at least a git checkout between 1.4.7 and 1.4.8, to get GPLvv2+... But such an addition would also be nice! Cheers, Anders
On Mon, Jan 30, 2012 at 12:09 PM, Anders Darander <anders@chargestorm.se> wrote: > * Steve Sakoman <steve@sakoman.com> [120130 20:20]: >> GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME > >> diff --git a/meta/recipes-support/gnupg/gnupg_2.0.18.bb b/meta/recipes-support/gnupg/gnupg_2.0.18.bb >> new file mode 100644 >> index 0000000..c56f3d5 >> --- /dev/null >> +++ b/meta/recipes-support/gnupg/gnupg_2.0.18.bb >> @@ -0,0 +1,24 @@ >> +DESCRIPTION = "gnupg - GNU privacy guard" >> +LICENSE = "GPLv2+" > > Are you sure about this? > > Looking at git.gnupg.org, this ought to be GPLv3+... Fixed in next version. Thanks! Steve
Patch
diff --git a/meta/recipes-support/gnupg/gnupg_2.0.18.bb b/meta/recipes-support/gnupg/gnupg_2.0.18.bb new file mode 100644 index 0000000..c56f3d5 --- /dev/null +++ b/meta/recipes-support/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 +}
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-support/gnupg/gnupg_2.0.18.bb | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-support/gnupg/gnupg_2.0.18.bb