* [PATCHv2] avrdude: update SRC_URI and fix deps
@ 2010-12-01 17:41 Tim Harvey
2010-12-09 16:48 ` Tim Harvey
0 siblings, 1 reply; 3+ messages in thread
From: Tim Harvey @ 2010-12-01 17:41 UTC (permalink / raw)
To: openembedded-devel
* SRC_URI updated to new location
* Makefile.am patched to fix missing dep causing parallel make issue
Signed-off-by: Tim Harvey <harvey.tim@gmail.com>
---
recipes/avrdude/avrdude.inc | 5 ++++-
recipes/avrdude/avrdude/make.patch | 14 ++++++++++++++
2 files changed, 18 insertions(+), 1 deletions(-)
create mode 100644 recipes/avrdude/avrdude/make.patch
diff --git a/recipes/avrdude/avrdude.inc b/recipes/avrdude/avrdude.inc
index 679c4ba..4679c7a 100644
--- a/recipes/avrdude/avrdude.inc
+++ b/recipes/avrdude/avrdude.inc
@@ -5,7 +5,10 @@ LICENSE = "GPLv2"
DEPENDS = "virtual/libusb0 ncurses"
-SRC_URI = "http://savannah.nongnu.org/download/avrdude/avrdude-${PV}.tar.gz"
+SRC_URI = " \
+ http://savannah.nongnu.org/releases/avrdude/avrdude-${PV}.tar.gz \
+ file://make.patch \
+ "
inherit autotools
diff --git a/recipes/avrdude/avrdude/make.patch b/recipes/avrdude/avrdude/make.patch
new file mode 100644
index 0000000..30b3b1d
--- /dev/null
+++ b/recipes/avrdude/avrdude/make.patch
@@ -0,0 +1,14 @@
+fix missing deps causing build failure on parallel make
+Index: avrdude-5.10/Makefile.am
+===================================================================
+--- avrdude-5.10.orig/Makefile.am 2010-12-01 09:17:41.675507203 -0800
++++ avrdude-5.10/Makefile.am 2010-12-01 09:17:44.474882497 -0800
+@@ -155,6 +155,8 @@
+
+ sysconf_DATA = avrdude.conf
+
++config.c: config_gram.h
++
+ install-exec-local: backup-avrdude-conf
+
+ distclean-local:
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCHv2] avrdude: update SRC_URI and fix deps
2010-12-01 17:41 [PATCHv2] avrdude: update SRC_URI and fix deps Tim Harvey
@ 2010-12-09 16:48 ` Tim Harvey
2010-12-09 17:22 ` Phil Blundell
0 siblings, 1 reply; 3+ messages in thread
From: Tim Harvey @ 2010-12-09 16:48 UTC (permalink / raw)
To: openembedded-devel
On 12/01/2010 09:41 AM, Tim Harvey wrote:
> * SRC_URI updated to new location
> * Makefile.am patched to fix missing dep causing parallel make issue
>
> Signed-off-by: Tim Harvey<harvey.tim@gmail.com>
> ---
> recipes/avrdude/avrdude.inc | 5 ++++-
> recipes/avrdude/avrdude/make.patch | 14 ++++++++++++++
> 2 files changed, 18 insertions(+), 1 deletions(-)
> create mode 100644 recipes/avrdude/avrdude/make.patch
>
> diff --git a/recipes/avrdude/avrdude.inc b/recipes/avrdude/avrdude.inc
> index 679c4ba..4679c7a 100644
> --- a/recipes/avrdude/avrdude.inc
> +++ b/recipes/avrdude/avrdude.inc
> @@ -5,7 +5,10 @@ LICENSE = "GPLv2"
>
> DEPENDS = "virtual/libusb0 ncurses"
>
> -SRC_URI = "http://savannah.nongnu.org/download/avrdude/avrdude-${PV}.tar.gz"
> +SRC_URI = " \
> + http://savannah.nongnu.org/releases/avrdude/avrdude-${PV}.tar.gz \
> + file://make.patch \
> + "
>
> inherit autotools
>
> diff --git a/recipes/avrdude/avrdude/make.patch b/recipes/avrdude/avrdude/make.patch
> new file mode 100644
> index 0000000..30b3b1d
> --- /dev/null
> +++ b/recipes/avrdude/avrdude/make.patch
> @@ -0,0 +1,14 @@
> +fix missing deps causing build failure on parallel make
> +Index: avrdude-5.10/Makefile.am
> +===================================================================
> +--- avrdude-5.10.orig/Makefile.am 2010-12-01 09:17:41.675507203 -0800
> ++++ avrdude-5.10/Makefile.am 2010-12-01 09:17:44.474882497 -0800
> +@@ -155,6 +155,8 @@
> +
> + sysconf_DATA = avrdude.conf
> +
> ++config.c: config_gram.h
> ++
> + install-exec-local: backup-avrdude-conf
> +
> + distclean-local:
can someone ack/nak this? This should get into master if there are no
objections.
Thanks,
Tim
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCHv2] avrdude: update SRC_URI and fix deps
2010-12-09 16:48 ` Tim Harvey
@ 2010-12-09 17:22 ` Phil Blundell
0 siblings, 0 replies; 3+ messages in thread
From: Phil Blundell @ 2010-12-09 17:22 UTC (permalink / raw)
To: openembedded-devel
On Thu, 2010-12-09 at 08:48 -0800, Tim Harvey wrote:
> On 12/01/2010 09:41 AM, Tim Harvey wrote:
> > * SRC_URI updated to new location
> > * Makefile.am patched to fix missing dep causing parallel make issue
> >
> > Signed-off-by: Tim Harvey<harvey.tim@gmail.com>
> > ---
> > recipes/avrdude/avrdude.inc | 5 ++++-
> > recipes/avrdude/avrdude/make.patch | 14 ++++++++++++++
> > 2 files changed, 18 insertions(+), 1 deletions(-)
> > create mode 100644 recipes/avrdude/avrdude/make.patch
> >
> > diff --git a/recipes/avrdude/avrdude.inc b/recipes/avrdude/avrdude.inc
> > index 679c4ba..4679c7a 100644
> > --- a/recipes/avrdude/avrdude.inc
> > +++ b/recipes/avrdude/avrdude.inc
> > @@ -5,7 +5,10 @@ LICENSE = "GPLv2"
> >
> > DEPENDS = "virtual/libusb0 ncurses"
> >
> > -SRC_URI = "http://savannah.nongnu.org/download/avrdude/avrdude-${PV}.tar.gz"
> > +SRC_URI = " \
> > + http://savannah.nongnu.org/releases/avrdude/avrdude-${PV}.tar.gz \
> > + file://make.patch \
> > + "
> >
> > inherit autotools
> >
> > diff --git a/recipes/avrdude/avrdude/make.patch b/recipes/avrdude/avrdude/make.patch
> > new file mode 100644
> > index 0000000..30b3b1d
> > --- /dev/null
> > +++ b/recipes/avrdude/avrdude/make.patch
> > @@ -0,0 +1,14 @@
> > +fix missing deps causing build failure on parallel make
> > +Index: avrdude-5.10/Makefile.am
> > +===================================================================
> > +--- avrdude-5.10.orig/Makefile.am 2010-12-01 09:17:41.675507203 -0800
> > ++++ avrdude-5.10/Makefile.am 2010-12-01 09:17:44.474882497 -0800
> > +@@ -155,6 +155,8 @@
> > +
> > + sysconf_DATA = avrdude.conf
> > +
> > ++config.c: config_gram.h
> > ++
> > + install-exec-local: backup-avrdude-conf
> > +
> > + distclean-local:
>
> can someone ack/nak this? This should get into master if there are no
> objections.
Yeah, looks fine to me.
Acked-by: Phil Blundell <philb@gnu.org>
p.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-09 17:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-01 17:41 [PATCHv2] avrdude: update SRC_URI and fix deps Tim Harvey
2010-12-09 16:48 ` Tim Harvey
2010-12-09 17:22 ` Phil Blundell
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.