All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/6] smaller fixes
@ 2012-10-01 14:38 Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 1/6] re2c: import from oe-classic Martin Jansa
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 7bfff4b1d6b0067ddabf2474320e3e78795b2b4f:

  uhd,fuse: Fix misplaced quotations (2012-09-28 22:50:42 +0200)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib jansa/pull
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/pull

Martin Jansa (6):
  re2c: import from oe-classic
  azy: add LIC_FILES_CHKSUM
  azy: fix do_configure
  elmdentica: add LIC_FILES_CHKSUM
  foxtrotgps: rename configure.in only if it still exists
  portaudio: update SRC_URI

 meta-efl/recipes-efl/e17/elmdentica_svn.bb                |  2 ++
 meta-efl/recipes-efl/efl/azy_svn.bb                       |  9 ++++++---
 meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb |  6 +++++-
 meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb    |  2 +-
 meta-oe/recipes-support/re2c/re2c_0.13.5.bb               | 14 ++++++++++++++
 5 files changed, 28 insertions(+), 5 deletions(-)
 create mode 100644 meta-oe/recipes-support/re2c/re2c_0.13.5.bb

-- 
1.7.12




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 1/6] re2c: import from oe-classic
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 2/6] azy: add LIC_FILES_CHKSUM Martin Jansa
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

* used by azy

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/re2c/re2c_0.13.5.bb | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-oe/recipes-support/re2c/re2c_0.13.5.bb

diff --git a/meta-oe/recipes-support/re2c/re2c_0.13.5.bb b/meta-oe/recipes-support/re2c/re2c_0.13.5.bb
new file mode 100644
index 0000000..d87f176
--- /dev/null
+++ b/meta-oe/recipes-support/re2c/re2c_0.13.5.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Tool for writing very fast and very flexible scanners"
+HOMEPAGE = "http://re2c.sourceforge.net/"
+AUTHOR = "Marcus Börger <helly@users.sourceforge.net>"
+SECTION = "devel"
+LICENSE = "PD"
+LIC_FILES_CHKSUM = "file://README;beginline=180;md5=822830a2204aef353f2c489f62e02089"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
+SRC_URI[md5sum] = "4a97d8f77ed6d2c76c8bd840a43f5633"
+SRC_URI[sha256sum] = "f3a995139af475e80a30207d02728b1e0065b0caade7375e974cb1b14861668c"
+
+BBCLASSEXTEND = "native"
+
+inherit autotools
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 2/6] azy: add LIC_FILES_CHKSUM
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 1/6] re2c: import from oe-classic Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 3/6] azy: fix do_configure Martin Jansa
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/azy_svn.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-efl/recipes-efl/efl/azy_svn.bb b/meta-efl/recipes-efl/efl/azy_svn.bb
index 814fb46..0b333ae 100644
--- a/meta-efl/recipes-efl/efl/azy_svn.bb
+++ b/meta-efl/recipes-efl/efl/azy_svn.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "Azy is a library meant for implementing rpc clients and servers i
 DEPENDS = "pkgconfig zlib openssl eina gnutls ecore libxml2 re2c-native mysql5 azy-native"
 DEPENDS_virtclass-native = "pkgconfig-native zlib-native openssl-native eina-native gnutls-native ecore-native libxml2-native re2c-native mysql5-native"
 LICENSE = "LGPLv2.1+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
+
 PV = "1.0.0+svnr${SRCPV}"
 SRCREV = "${EFL_SRCREV}"
 
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 3/6] azy: fix do_configure
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 1/6] re2c: import from oe-classic Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 2/6] azy: add LIC_FILES_CHKSUM Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 4/6] elmdentica: add LIC_FILES_CHKSUM Martin Jansa
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

* something changed in override/prepend expansion and azy-native now had do_configure_prepend applied too

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/azy_svn.bb | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/azy_svn.bb b/meta-efl/recipes-efl/efl/azy_svn.bb
index 0b333ae..a7889d6 100644
--- a/meta-efl/recipes-efl/efl/azy_svn.bb
+++ b/meta-efl/recipes-efl/efl/azy_svn.bb
@@ -12,16 +12,17 @@ BBCLASSEXTEND = "native"
 
 EXTRA_OECONF += " --disable-mysql-tests"
 
-do_configure_prepend() {
+do_configure_class-target() {
   sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am
   sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am
   sed -i "s#\$(top_builddir)/src/bin/azy_parser -eHn -m#${STAGING_BINDIR_NATIVE}/azy_parser -eHn -m#g" ${S}/src/tests/identi.ca/Makefile.am
+  efl_do_configure
 }
-do_configure_virtclass-native() {
+do_configure_class-native() {
   efl_do_configure
 }
 
-do_install_append_virtclass-native() {
+do_install_append_class-native() {
   install -d ${D}/${bindir}
   install -m 0755 ${S}/src/bin/lemon ${D}/${bindir}
 }
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 4/6] elmdentica: add LIC_FILES_CHKSUM
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
                   ` (2 preceding siblings ...)
  2012-10-01 14:38 ` [meta-oe][PATCH 3/6] azy: fix do_configure Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 5/6] foxtrotgps: rename configure.in only if it still exists Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 6/6] portaudio: update SRC_URI Martin Jansa
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/e17/elmdentica_svn.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-efl/recipes-efl/e17/elmdentica_svn.bb b/meta-efl/recipes-efl/e17/elmdentica_svn.bb
index c965b68..f3bf939 100644
--- a/meta-efl/recipes-efl/e17/elmdentica_svn.bb
+++ b/meta-efl/recipes-efl/e17/elmdentica_svn.bb
@@ -1,6 +1,8 @@
 DESCRIPTION = "A indenti.ca client for E"
 DEPENDS = "glib-2.0 gconf curl elementary sqlite3-native azy"
 LICENSE = "GPLv3+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
+
 SECTION = "e/apps"
 HOMEPAGE = "http://elmdentica.googlecode.com"
 AUTHOR = "seabra"
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 5/6] foxtrotgps: rename configure.in only if it still exists
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
                   ` (3 preceding siblings ...)
  2012-10-01 14:38 ` [meta-oe][PATCH 4/6] elmdentica: add LIC_FILES_CHKSUM Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  2012-10-01 14:38 ` [meta-oe][PATCH 6/6] portaudio: update SRC_URI Martin Jansa
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

* it was failing when do_configure was reexecuted in same workdir

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb b/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb
index 4572b8f..0cafdde 100644
--- a/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb
+++ b/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb
@@ -12,8 +12,12 @@ SRC_URI[sha256sum] = "ae9706285510554cc0813ac92522e0d1672b0ddb065307bfacfcff3c32
 
 inherit autotools pkgconfig perlnative
 
+PR = "r1"
+
 do_configure_prepend() {
-  mv ${S}/configure.in ${S}/configure.ac
+  if [ -f ${S}/configure.in ] ; then
+    mv ${S}/configure.in ${S}/configure.ac
+  fi
 }
 
 RRECOMMENDS_${PN} = "gpsd"
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-oe][PATCH 6/6] portaudio: update SRC_URI
  2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
                   ` (4 preceding siblings ...)
  2012-10-01 14:38 ` [meta-oe][PATCH 5/6] foxtrotgps: rename configure.in only if it still exists Martin Jansa
@ 2012-10-01 14:38 ` Martin Jansa
  5 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-10-01 14:38 UTC (permalink / raw)
  To: openembedded-devel

* http://www.portaudio.com/usingsvn.html:
  Note that we are in the process of migrating from Trac on portaudio.com to Assembla. (1/24/12)
* old repo seems gone now

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb b/meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb
index 312ae60..b35d1d8 100644
--- a/meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb
+++ b/meta-oe/recipes-support/portaudio/portaudio-v19_svn.bb
@@ -6,7 +6,7 @@ SRCREV = "1387"
 PV = "v19+svnr${SRCPV}"
 PR = "r0"
 
-SRC_URI = "svn://www.portaudio.com/repos/portaudio;module=trunk;protocol=http"
+SRC_URI = "svn://subversion.assembla.com/svn/portaudio/portaudio;module=trunk;protocol=http"
 S = "${WORKDIR}/trunk"
 
 inherit autotools
-- 
1.7.12




^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-10-01 14:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-01 14:38 [meta-oe][PATCH 0/6] smaller fixes Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 1/6] re2c: import from oe-classic Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 2/6] azy: add LIC_FILES_CHKSUM Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 3/6] azy: fix do_configure Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 4/6] elmdentica: add LIC_FILES_CHKSUM Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 5/6] foxtrotgps: rename configure.in only if it still exists Martin Jansa
2012-10-01 14:38 ` [meta-oe][PATCH 6/6] portaudio: update SRC_URI Martin Jansa

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.