* [PATCH] glog: add 0.3.3 version
@ 2013-03-25 9:03 Marcin Juszkiewicz
2013-03-29 12:22 ` Martin Jansa
0 siblings, 1 reply; 2+ messages in thread
From: Marcin Juszkiewicz @ 2013-03-25 9:03 UTC (permalink / raw)
To: openembedded-devel
The glog library implements application-level logging. This library
provides logging APIs based on C++-style streams and various helper
macros.
glog.inc cause meta-linaro has glog_svn.bb recipe as well
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
---
meta-oe/recipes-support/glog/glog.inc | 9 +++++++++
meta-oe/recipes-support/glog/glog_0.3.3.bb | 6 ++++++
2 files changed, 15 insertions(+)
create mode 100644 meta-oe/recipes-support/glog/glog.inc
create mode 100644 meta-oe/recipes-support/glog/glog_0.3.3.bb
diff --git a/meta-oe/recipes-support/glog/glog.inc b/meta-oe/recipes-support/glog/glog.inc
new file mode 100644
index 0000000..97f3728
--- /dev/null
+++ b/meta-oe/recipes-support/glog/glog.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "The glog library implements application-level logging. This \
+library provides logging APIs based on C++-style streams and various helper \
+macros."
+HOMEPAGE = "https://code.google.com/p/google-glog/"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=dc9db360e0bbd4e46672f3fd91dd6c4b"
+
+inherit autotools pkgconfig
diff --git a/meta-oe/recipes-support/glog/glog_0.3.3.bb b/meta-oe/recipes-support/glog/glog_0.3.3.bb
new file mode 100644
index 0000000..de3f076
--- /dev/null
+++ b/meta-oe/recipes-support/glog/glog_0.3.3.bb
@@ -0,0 +1,6 @@
+require glog.inc
+
+SRC_URI = "http://google-glog.googlecode.com/files/glog-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "a6fd2c22f8996846e34c763422717c18"
+SRC_URI[sha256sum] = "fbf90c2285ba0561db7a40f8a4eefb9aa963e7d399bd450363e959929fe849d0"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] glog: add 0.3.3 version
2013-03-25 9:03 [PATCH] glog: add 0.3.3 version Marcin Juszkiewicz
@ 2013-03-29 12:22 ` Martin Jansa
0 siblings, 0 replies; 2+ messages in thread
From: Martin Jansa @ 2013-03-29 12:22 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2274 bytes --]
On Mon, Mar 25, 2013 at 10:03:38AM +0100, Marcin Juszkiewicz wrote:
> The glog library implements application-level logging. This library
> provides logging APIs based on C++-style streams and various helper
> macros.
>
> glog.inc cause meta-linaro has glog_svn.bb recipe as well
Applied, thanks!
Hopefully in right (last) revision.
Would be great if you can update patchwork status and use PATCHvN for
next patches.
memcached/libmemcached are still pending (unresolved review comments
afaik).
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> ---
> meta-oe/recipes-support/glog/glog.inc | 9 +++++++++
> meta-oe/recipes-support/glog/glog_0.3.3.bb | 6 ++++++
> 2 files changed, 15 insertions(+)
> create mode 100644 meta-oe/recipes-support/glog/glog.inc
> create mode 100644 meta-oe/recipes-support/glog/glog_0.3.3.bb
>
> diff --git a/meta-oe/recipes-support/glog/glog.inc b/meta-oe/recipes-support/glog/glog.inc
> new file mode 100644
> index 0000000..97f3728
> --- /dev/null
> +++ b/meta-oe/recipes-support/glog/glog.inc
> @@ -0,0 +1,9 @@
> +DESCRIPTION = "The glog library implements application-level logging. This \
> +library provides logging APIs based on C++-style streams and various helper \
> +macros."
> +HOMEPAGE = "https://code.google.com/p/google-glog/"
> +
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=dc9db360e0bbd4e46672f3fd91dd6c4b"
> +
> +inherit autotools pkgconfig
> diff --git a/meta-oe/recipes-support/glog/glog_0.3.3.bb b/meta-oe/recipes-support/glog/glog_0.3.3.bb
> new file mode 100644
> index 0000000..de3f076
> --- /dev/null
> +++ b/meta-oe/recipes-support/glog/glog_0.3.3.bb
> @@ -0,0 +1,6 @@
> +require glog.inc
> +
> +SRC_URI = "http://google-glog.googlecode.com/files/glog-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "a6fd2c22f8996846e34c763422717c18"
> +SRC_URI[sha256sum] = "fbf90c2285ba0561db7a40f8a4eefb9aa963e7d399bd450363e959929fe849d0"
> --
> 1.8.1.2
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-29 12:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25 9:03 [PATCH] glog: add 0.3.3 version Marcin Juszkiewicz
2013-03-29 12:22 ` Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox