Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch for-2012.05/libaio
@ 2012-05-05 16:26 Thomas Petazzoni
  2012-05-05 16:26 ` [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures Thomas Petazzoni
  2012-05-05 16:26 ` [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2012-05-05 16:26 UTC (permalink / raw)
  To: buildroot

The following changes since commit aa96b4ea99b362decc524a8632c7a2c1a7586e83:

  CHANGES: GDB 4.7.1, not GCC (2012-05-03 23:29:08 +0200)

are available in the git repository at:

  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git for-2012.05/libaio

for you to fetch changes up to 7b0e3e05280562b758638a0582516394a3164675:

  libaio: use alternative upstream URL (2012-05-05 18:25:13 +0200)

----------------------------------------------------------------
Thomas Petazzoni (2):
      libaio: make available only on supported architectures
      libaio: use alternative upstream URL

 package/libaio/Config.in |    4 ++++
 package/libaio/libaio.mk |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

Thanks,
-- 
Thomas Petazzoni

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

* [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures
  2012-05-05 16:26 [Buildroot] [pull request] Pull request for branch for-2012.05/libaio Thomas Petazzoni
@ 2012-05-05 16:26 ` Thomas Petazzoni
  2012-05-05 17:35   ` Peter Korsgaard
  2012-05-05 16:26 ` [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2012-05-05 16:26 UTC (permalink / raw)
  To: buildroot

libaio has some architecture-specific code, and isn't available for
all architectures that Buildroot support.

Fixes
http://autobuild.buildroot.org/results/b171a6d6243ea021dc52830bc4b9d36fc083a60d/build-end.log.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/libaio/Config.in |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/libaio/Config.in b/package/libaio/Config.in
index ff6cc13..833009a 100644
--- a/package/libaio/Config.in
+++ b/package/libaio/Config.in
@@ -1,4 +1,8 @@
 config BR2_PACKAGE_LIBAIO
 	bool "libaio"
+	depends on \
+		BR2_arm   || BR2_armeb || BR2_avr32  || BR2_i386    || \
+		BR2_m68k  || BR2_mips  || BR2_mipsel || BR2_powerpc || \
+		BR2_sparc || BR2_x86_64
 	help
 	  Library for doing asynchronous I/O
-- 
1.7.9.5

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

* [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL
  2012-05-05 16:26 [Buildroot] [pull request] Pull request for branch for-2012.05/libaio Thomas Petazzoni
  2012-05-05 16:26 ` [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures Thomas Petazzoni
@ 2012-05-05 16:26 ` Thomas Petazzoni
  2012-05-05 17:35   ` Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2012-05-05 16:26 UTC (permalink / raw)
  To: buildroot

Since the kernel.org security problem and reinstallation, libaio is no
longer available from this site. Use snapshot.debian.net as an
alternative source.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/libaio/libaio.mk |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libaio/libaio.mk b/package/libaio/libaio.mk
index 3ffc49c..f90ef4d 100644
--- a/package/libaio/libaio.mk
+++ b/package/libaio/libaio.mk
@@ -4,8 +4,8 @@
 #
 #############################################################
 LIBAIO_VERSION=0.3.109
-LIBAIO_SOURCE=libaio-$(LIBAIO_VERSION).tar.bz2
-LIBAIO_SITE=$(BR2_KERNEL_MIRROR)/linux/libs/aio/
+LIBAIO_SOURCE=libaio_$(LIBAIO_VERSION).orig.tar.gz
+LIBAIO_SITE=http://snapshot.debian.org/archive/debian/20110227T085214Z/pool/main/liba/libaio/
 LIBAIO_INSTALL_STAGING=YES
 
 define LIBAIO_BUILD_CMDS
-- 
1.7.9.5

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

* [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures
  2012-05-05 16:26 ` [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures Thomas Petazzoni
@ 2012-05-05 17:35   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2012-05-05 17:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> libaio has some architecture-specific code, and isn't available for
 Thomas> all architectures that Buildroot support.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL
  2012-05-05 16:26 ` [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL Thomas Petazzoni
@ 2012-05-05 17:35   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2012-05-05 17:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Since the kernel.org security problem and reinstallation, libaio is no
 Thomas> longer available from this site. Use snapshot.debian.net as an
 Thomas> alternative source.

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  package/libaio/libaio.mk |    4 ++--
 Thomas>  1 file changed, 2 insertions(+), 2 deletions(-)

 Thomas> diff --git a/package/libaio/libaio.mk b/package/libaio/libaio.mk
 Thomas> index 3ffc49c..f90ef4d 100644
 Thomas> --- a/package/libaio/libaio.mk
 Thomas> +++ b/package/libaio/libaio.mk
 Thomas> @@ -4,8 +4,8 @@
 Thomas>  #
 Thomas>  #############################################################
 Thomas>  LIBAIO_VERSION=0.3.109
 Thomas> -LIBAIO_SOURCE=libaio-$(LIBAIO_VERSION).tar.bz2
 Thomas> -LIBAIO_SITE=$(BR2_KERNEL_MIRROR)/linux/libs/aio/
 Thomas> +LIBAIO_SOURCE=libaio_$(LIBAIO_VERSION).orig.tar.gz
 Thomas> +LIBAIO_SITE=http://snapshot.debian.org/archive/debian/20110227T085214Z/pool/main/liba/libaio/
 Thomas>  LIBAIO_INSTALL_STAGING=YES

I've fixed up the lines to have spaces around the '=' while we're at
it. Committed with that change, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-05-05 17:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-05 16:26 [Buildroot] [pull request] Pull request for branch for-2012.05/libaio Thomas Petazzoni
2012-05-05 16:26 ` [Buildroot] [PATCH 1/2] libaio: make available only on supported architectures Thomas Petazzoni
2012-05-05 17:35   ` Peter Korsgaard
2012-05-05 16:26 ` [Buildroot] [PATCH 2/2] libaio: use alternative upstream URL Thomas Petazzoni
2012-05-05 17:35   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox