All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 00/12] Google Code: Change site
@ 2015-07-26 20:38 Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 01/12] zxing_cpp: New package Maxime Hadjinlian
                   ` (12 more replies)
  0 siblings, 13 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Hi all,

For thoses of you that don't know, Google Code will be read-only by
August and close its door at the end of the year. The sources will
remain online for a full year and then it's gone.

Some projects have already moved on, this series bump/change the site of
theses projects.

A few are still on Google Code, they seems pretty abandonned, so a
decision will be needed regarding theses. Switch to Alioth ? Look for a
fork ?

Maxime Hadjinlian (12):
  zxing_cpp: New package
  yaml-cpp: Bump version and change site
  libass: Bump version and change site
  explorercanvas: Bump version and change site
  libfreefare: Bump version and change site
  libiscsi: Bump version
  libllcp: Bump version and change site
  libnfc: Bump version and change site
  python-pycrc16: Change site
  python-dpkt: Bump version and change site
  python-pypcap: Bump version and change site
  qextserialport: Bump version and change site

 Config.in.legacy                                   |  8 +++
 package/Config.in                                  |  2 +-
 package/explorercanvas/explorercanvas.hash         |  2 -
 package/explorercanvas/explorercanvas.mk           | 12 +---
 package/libass/libass.hash                         |  4 +-
 package/libass/libass.mk                           |  6 +-
 package/libfreefare/libfreefare.hash               |  2 +
 package/libfreefare/libfreefare.mk                 |  7 +-
 ...01-Fix-warnings-related-to-subdir-objects.patch | 46 ------------
 ...tool-AM_PROG_AR-warning-during-autoreconf.patch | 42 -----------
 ...0003-Fix-CUnit-test-for-cross-compilation.patch | 56 ---------------
 ...4-examples-fix-uint64_t-formatting-issues.patch | 49 -------------
 ...005-ld_iscsi-fix-largefile-related-issues.patch | 83 ----------------------
 ...nly-build-the-test-tool-and-ld-iscsi-iff-.patch | 55 --------------
 package/libiscsi/libiscsi.hash                     |  3 +
 package/libiscsi/libiscsi.mk                       |  7 +-
 package/libllcp/libllcp.mk                         |  5 +-
 package/libnfc/libnfc.hash                         |  3 +
 package/libnfc/libnfc.mk                           |  6 +-
 package/python-crc16/python-crc16.mk               |  3 +-
 package/python-dpkt/python-dpkt.mk                 |  5 +-
 package/python-pypcap/python-pypcap.mk             |  5 +-
 package/qextserialport/qextserialport.mk           |  7 +-
 package/yaml-cpp/yaml-cpp.hash                     |  5 --
 package/yaml-cpp/yaml-cpp.mk                       |  4 +-
 package/{zxing => zxing-cpp}/Config.in             | 10 +--
 package/zxing-cpp/zxing-cpp.mk                     | 33 +++++++++
 package/zxing/0001-makefile.patch                  | 30 --------
 package/zxing/zxing.mk                             | 40 -----------
 29 files changed, 86 insertions(+), 454 deletions(-)
 delete mode 100644 package/explorercanvas/explorercanvas.hash
 create mode 100644 package/libfreefare/libfreefare.hash
 delete mode 100644 package/libiscsi/0001-Fix-warnings-related-to-subdir-objects.patch
 delete mode 100644 package/libiscsi/0002-Avoid-libtool-AM_PROG_AR-warning-during-autoreconf.patch
 delete mode 100644 package/libiscsi/0003-Fix-CUnit-test-for-cross-compilation.patch
 delete mode 100644 package/libiscsi/0004-examples-fix-uint64_t-formatting-issues.patch
 delete mode 100644 package/libiscsi/0005-ld_iscsi-fix-largefile-related-issues.patch
 delete mode 100644 package/libiscsi/0006-configure-only-build-the-test-tool-and-ld-iscsi-iff-.patch
 create mode 100644 package/libiscsi/libiscsi.hash
 create mode 100644 package/libnfc/libnfc.hash
 delete mode 100644 package/yaml-cpp/yaml-cpp.hash
 rename package/{zxing => zxing-cpp}/Config.in (52%)
 create mode 100644 package/zxing-cpp/zxing-cpp.mk
 delete mode 100644 package/zxing/0001-makefile.patch
 delete mode 100644 package/zxing/zxing.mk

--
2.1.4

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

* [Buildroot] [PATCH 01/12] zxing_cpp: New package
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 02/12] yaml-cpp: Bump version and change site Maxime Hadjinlian
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

ZXing was hosted on Google Code, which is a closing forges.
The current link was already redirecting to the github repo.

But upstream is no longer supporting the cpp bindings, it's now a Java
library/application.

A fork has been created from the latests cpp source of the original
upstream.
So this is a new package from an old one and a legacy option has been
added.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 Config.in.legacy                       |  8 +++++++
 package/Config.in                      |  2 +-
 package/{zxing => zxing-cpp}/Config.in | 10 ++++-----
 package/zxing-cpp/zxing-cpp.mk         | 33 ++++++++++++++++++++++++++++
 package/zxing/0001-makefile.patch      | 30 -------------------------
 package/zxing/zxing.mk                 | 40 ----------------------------------
 6 files changed, 47 insertions(+), 76 deletions(-)
 rename package/{zxing => zxing-cpp}/Config.in (52%)
 create mode 100644 package/zxing-cpp/zxing-cpp.mk
 delete mode 100644 package/zxing/0001-makefile.patch
 delete mode 100644 package/zxing/zxing.mk

diff --git a/Config.in.legacy b/Config.in.legacy
index 4afeb83..c6cebcb 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -107,6 +107,14 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2015.08"
 
+config BR2_PACKAGE_ZXING
+	bool "zxing option has been renamed"
+	select BR2_LEGACY
+	select BR2_PACKAGE_ZXING_CPP
+	help
+	  ZXing no longer provides the cpp bindings, it has been renamed to
+	  BR2_PACKAGE_ZXING_CPP which uses a new upstream.
+
 config BR2_PACKAGE_PERF
 	bool "perf option has been renamed"
 	select BR2_LEGACY
diff --git a/package/Config.in b/package/Config.in
index f029e1d..fb54323 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -832,7 +832,7 @@ menu "Graphics"
 	source "package/wayland/Config.in"
 	source "package/webkit/Config.in"
 	source "package/webp/Config.in"
-	source "package/zxing/Config.in"
+	source "package/zxing-cpp/Config.in"
 endmenu
 
 menu "Hardware handling"
diff --git a/package/zxing/Config.in b/package/zxing-cpp/Config.in
similarity index 52%
rename from package/zxing/Config.in
rename to package/zxing-cpp/Config.in
index 1e04635..1695d27 100644
--- a/package/zxing/Config.in
+++ b/package/zxing-cpp/Config.in
@@ -1,13 +1,13 @@
-comment "zxing needs a toolchain w/ C++"
+comment "zxing-cpp needs a toolchain w/ C++"
 	depends on !BR2_INSTALL_LIBSTDCPP
 
-config BR2_PACKAGE_ZXING
-	bool "zxing"
+config BR2_PACKAGE_ZXING_CPP
+	bool "zxing-cpp"
 	depends on BR2_INSTALL_LIBSTDCPP
 	help
-	  ZXing (pronounced "zebra crossing") is an open-source,
+	  ZXing-cpp (pronounced "zebra crossing") is an open-source,
 	  multi-format 1D/2D barcode image processing library
 	  implemented in Java, with ports to other languages. This
 	  compiles the C++ port.
 
-	  http://code.google.com/p/zxing/
+	  https://github.com/glassechidna/zxing-cpp
diff --git a/package/zxing-cpp/zxing-cpp.mk b/package/zxing-cpp/zxing-cpp.mk
new file mode 100644
index 0000000..36ba0fe
--- /dev/null
+++ b/package/zxing-cpp/zxing-cpp.mk
@@ -0,0 +1,33 @@
+################################################################################
+#
+# zxing-cpp
+#
+################################################################################
+
+ZXING_CPP_VERSION = e7594421d240d8a79633a83c7ad3d26b670e038f
+ZXING_CPP_SITE = $(call github,glassechidna,zxing-cpp,$(ZXING_CPP_VERSION))
+ZXING_CPP_LICENSE = Apache-2.0
+ZXING_CPP_LICENSE_FILES = COPYING
+ZXING_CPP_INSTALL_STAGING = YES
+ZXING_CPP_SUPPORTS_IN_SOURCE_BUILD = NO
+
+ifneq ($(BR2_ENABLE_LOCALE),y)
+ifeq ($(BR2_PACKAGE_LIBICONV),y)
+ZXING_CPP_DEPENDENCIES += libiconv
+endif
+endif
+
+define ZXING_CPP_INSTALL_STAGING_CMDS
+	for i in $$(find $(@D)/buildroot-build/core/src -iname *.h); do \
+		$(INSTALL) -m 644 $$i $(TARGET_DIR)/usr/local/include; \
+	done
+endef
+
+define ZXING_CPP_INSTALL_TARGET_CMDS
+	for i in $$(find $(@D)/buildroot-build/ -iname *.so -o -iname *.a); do \
+		$(INSTALL) -m 644 $$i $(TARGET_DIR)/usr/lib; \
+	done
+	$(INSTALL) -m 755 $(@D)/buildroot-build/zxing $(TARGET_DIR)/usr/sbin
+endef
+
+$(eval $(cmake-package))
diff --git a/package/zxing/0001-makefile.patch b/package/zxing/0001-makefile.patch
deleted file mode 100644
index 66896bf..0000000
--- a/package/zxing/0001-makefile.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-[PATCH] add Makefile
-
-The scons based build system doesn't handle cross compilation, special
-compiler flags or (un)installation, so add a simple makefile instead
-which does.
-
-Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
----
- cpp/core/src/Makefile |   14 ++++++++++++++
- 1 file changed, 14 insertions(+)
-
-Index: zxing-2.0/cpp/core/src/Makefile
-===================================================================
---- /dev/null
-+++ zxing-2.0/cpp/core/src/Makefile
-@@ -0,0 +1,14 @@
-+override CXXFLAGS += -I.
-+SRCS := $(shell find -name '*.cpp')
-+
-+libzxing.a: $(SRCS:.cpp=.o)
-+	$(AR) $(ARFLAGS) $@ $^
-+
-+install: libzxing.a
-+	install -D -m 0644 $^ $(DESTDIR)/usr/lib/$^
-+	find -name '*.h' -exec install -m 0644 -D "{}" \
-+		"$(DESTDIR)/usr/include/{}" ";"
-+
-+uninstall:
-+	rm -f $(DESTDIR)/usr/lib/libzxing.a
-+	rm -rf $(DESTDIR)/usr/include/zxing
diff --git a/package/zxing/zxing.mk b/package/zxing/zxing.mk
deleted file mode 100644
index 94e8b1f..0000000
--- a/package/zxing/zxing.mk
+++ /dev/null
@@ -1,40 +0,0 @@
-################################################################################
-#
-# zxing
-#
-################################################################################
-
-ZXING_VERSION = 2.3.0
-ZXING_SITE = http://zxing.googlecode.com/files
-ZXING_SOURCE = ZXing-$(ZXING_VERSION).zip
-ZXING_LICENSE = Apache-2.0
-ZXING_LICENSE_FILES = COPYING
-ZXING_INSTALL_STAGING = YES
-
-ifneq ($(BR2_ENABLE_LOCALE),y)
-ifeq ($(BR2_PACKAGE_LIBICONV),y)
-ZXING_DEPENDENCIES += libiconv
-else
-# There is no locale support in the toolchain and libiconv
-# is not available so disable iconv support in zxing
-ZING_MAKE_OPTS = CXXFLAGS+="-DNO_ICONV"
-endif
-endif
-
-define ZXING_EXTRACT_CMDS
-	$(UNZIP) -d $(BUILD_DIR) $(DL_DIR)/$(ZXING_SOURCE)
-endef
-
-define ZXING_BUILD_CMDS
-	$(MAKE) -C $(@D)/cpp/core/src $(TARGET_CONFIGURE_OPTS) $(ZING_MAKE_OPTS)
-endef
-
-define ZXING_INSTALL_STAGING_CMDS
-	$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(STAGING_DIR) install
-endef
-
-define ZXING_INSTALL_TARGET_CMDS
-	$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(TARGET_DIR) install
-endef
-
-$(eval $(generic-package))
-- 
2.1.4

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

* [Buildroot] [PATCH 02/12] yaml-cpp: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 01/12] zxing_cpp: New package Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 03/12] libass: " Maxime Hadjinlian
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, yaml-cpp has already made the move
to Github.

Since a new release was available a bump was also in order.
The hash is removed since the tarball from Github is generated.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/yaml-cpp/yaml-cpp.hash | 5 -----
 package/yaml-cpp/yaml-cpp.mk   | 4 ++--
 2 files changed, 2 insertions(+), 7 deletions(-)
 delete mode 100644 package/yaml-cpp/yaml-cpp.hash

diff --git a/package/yaml-cpp/yaml-cpp.hash b/package/yaml-cpp/yaml-cpp.hash
deleted file mode 100644
index 391e317..0000000
--- a/package/yaml-cpp/yaml-cpp.hash
+++ /dev/null
@@ -1,5 +0,0 @@
-# hash from: https://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz:
-sha1 9c5414b4090491e96d1b808fe8628b31e625fdaa  yaml-cpp-0.5.1.tar.gz
-
-# Locally calculated:
-sha256 3e7c9052b43d987d41819a203d97fc45de4eed3ec67e0fdb14265c3d11046f06  yaml-cpp-0.5.1.tar.gz
diff --git a/package/yaml-cpp/yaml-cpp.mk b/package/yaml-cpp/yaml-cpp.mk
index afc70bd..cea54a9 100644
--- a/package/yaml-cpp/yaml-cpp.mk
+++ b/package/yaml-cpp/yaml-cpp.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-YAML_CPP_VERSION = 0.5.1
-YAML_CPP_SITE = https://yaml-cpp.googlecode.com/files
+YAML_CPP_VERSION = 0.5.2
+YAML_CPP_SITE = $(call github,jbeder,yaml-cpp,release-$(YAML_CPP_VERSION))
 YAML_CPP_INSTALL_STAGING = YES
 YAML_CPP_LICENSE = MIT
 YAML_CPP_LICENSE_FILES = license.txt
-- 
2.1.4

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

* [Buildroot] [PATCH 03/12] libass: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 01/12] zxing_cpp: New package Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 02/12] yaml-cpp: Bump version and change site Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:34   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 04/12] explorercanvas: " Maxime Hadjinlian
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, libass has already made the move to Github.

Since a new release was available a bump was also in order.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/libass/libass.hash | 4 ++--
 package/libass/libass.mk   | 6 ++++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/package/libass/libass.hash b/package/libass/libass.hash
index b7510de..f300166 100644
--- a/package/libass/libass.hash
+++ b/package/libass/libass.hash
@@ -1,2 +1,2 @@
-# From https://code.google.com/p/libass/downloads/detail?name=libass-0.10.2.tar.xz&can=2&q=
-sha1 72a153364e838d3b561bae3653f1515169d479c4 libass-0.10.2.tar.xz
+# Locally computed
+sha256 a67c54ebaf5ec19ae72e86259ee6ab6adfe2e64ed9f9149db03dc863360ea38c  libass-0.12.3.tar.xz
diff --git a/package/libass/libass.mk b/package/libass/libass.mk
index 056ea8b..ed604b8 100644
--- a/package/libass/libass.mk
+++ b/package/libass/libass.mk
@@ -4,9 +4,11 @@
 #
 ################################################################################
 
-LIBASS_VERSION = 0.10.2
+LIBASS_VERSION = 0.12.3
 LIBASS_SOURCE = libass-$(LIBASS_VERSION).tar.xz
-LIBASS_SITE = http://libass.googlecode.com/files
+# Do not use the github helper here, the generated tarball is *NOT* the same
+# # as the one uploaded by upstream for the release.
+LIBASS_SITE = https://github.com/libass/libass/releases/download/$(LIBASS_VERSION)
 LIBASS_INSTALL_STAGING = YES
 LIBASS_LICENSE = ISC
 LIBASS_LICENSE_FILES = COPYING
-- 
2.1.4

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

* [Buildroot] [PATCH 04/12] explorercanvas: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (2 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 03/12] libass: " Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:35   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 05/12] libfreefare: " Maxime Hadjinlian
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, libass has already made the move to Github.

This package has no release yet, so we are using a commit.
Since the tarball is generated by Github, a hash is useless here.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/explorercanvas/explorercanvas.hash |  2 --
 package/explorercanvas/explorercanvas.mk   | 12 +++---------
 2 files changed, 3 insertions(+), 11 deletions(-)
 delete mode 100644 package/explorercanvas/explorercanvas.hash

diff --git a/package/explorercanvas/explorercanvas.hash b/package/explorercanvas/explorercanvas.hash
deleted file mode 100644
index ae1bfcd..0000000
--- a/package/explorercanvas/explorercanvas.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# From http://code.google.com/p/explorercanvas/downloads/detail?name=excanvas_r3.zip&can=2&q=
-sha1	f1b9f7a44428eb0c7b27fe8ac0242d34ec94a385	excanvas_r3.zip
diff --git a/package/explorercanvas/explorercanvas.mk b/package/explorercanvas/explorercanvas.mk
index 083d9a3..57ebfcf 100644
--- a/package/explorercanvas/explorercanvas.mk
+++ b/package/explorercanvas/explorercanvas.mk
@@ -4,19 +4,13 @@
 #
 ################################################################################
 
-EXPLORERCANVAS_VERSION = r3
-EXPLORERCANVAS_SITE = http://explorercanvas.googlecode.com/files
-EXPLORERCANVAS_SOURCE = excanvas_$(EXPLORERCANVAS_VERSION).zip
+EXPLORERCANVAS_VERSION = aa989ea9d9bac748638f7c66b0fc88e619715da6
+EXPLORERCANVAS_SITE = $(call github,arv,ExplorerCanvas,$(EXPLORERCANVAS_VERSION))
 EXPLORERCANVAS_LICENSE = Apache-2.0
 EXPLORERCANVAS_LICENSE_FILES = COPYING
 
-define EXPLORERCANVAS_EXTRACT_CMDS
-	$(UNZIP) -d $(@D) $(DL_DIR)/$(EXPLORERCANVAS_SOURCE)
-endef
-
 define EXPLORERCANVAS_INSTALL_TARGET_CMDS
-	$(INSTALL) -D $(@D)/excanvas.compiled.js \
-		$(TARGET_DIR)/var/www/excanvas.js
+	$(INSTALL) -D $(@D)/excanvas.js $(TARGET_DIR)/var/www/excanvas.js
 endef
 
 $(eval $(generic-package))
-- 
2.1.4

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

* [Buildroot] [PATCH 05/12] libfreefare: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (3 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 04/12] explorercanvas: " Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:36   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 06/12] libiscsi: Bump version Maxime Hadjinlian
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, libfreefare has already made the move to
Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/libfreefare/libfreefare.hash | 2 ++
 package/libfreefare/libfreefare.mk   | 7 +++++--
 2 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 package/libfreefare/libfreefare.hash

diff --git a/package/libfreefare/libfreefare.hash b/package/libfreefare/libfreefare.hash
new file mode 100644
index 0000000..4d23136
--- /dev/null
+++ b/package/libfreefare/libfreefare.hash
@@ -0,0 +1,2 @@
+# From https://github.com/nfc-tools/libfreefare/releases/download/libfreefare-0.4.0/libfreefare-0.4.0.tar.bz2
+sha256 bfa31d14a99a1247f5ed49195d6373de512e3eb75bf1627658b40cf7f876bc64  libfreefare-0.4.0.tar.bz2
diff --git a/package/libfreefare/libfreefare.mk b/package/libfreefare/libfreefare.mk
index 5d6d636..a8de617 100644
--- a/package/libfreefare/libfreefare.mk
+++ b/package/libfreefare/libfreefare.mk
@@ -4,8 +4,11 @@
 #
 ################################################################################
 
-LIBFREEFARE_VERSION = 0.3.4
-LIBFREEFARE_SITE = http://libfreefare.googlecode.com/files
+LIBFREEFARE_VERSION = 0.4.0
+LIBFREEFARE_SOURCE = libfreefare-$(LIBFREEFARE_VERSION).tar.bz2
+# Do not use the github helper here, the generated tarball is *NOT* the same
+# # as the one uploaded by upstream for the release.
+LIBFREEFARE_SITE = https://github.com/nfc-tools/libfreefare/releases/download/libfreefare-$(LIBFREEFARE_VERSION)
 LIBFREEFARE_DEPENDENCIES = libnfc openssl
 LIBFREEFARE_LICENSE = LGPLv3+ with exception
 LIBFREEFARE_LICENSE_FILES = COPYING
-- 
2.1.4

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

* [Buildroot] [PATCH 06/12] libiscsi: Bump version
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (4 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 05/12] libfreefare: " Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:39   ` Thomas Petazzoni
  2015-07-27 21:38   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 07/12] libllcp: Bump version and change site Maxime Hadjinlian
                   ` (6 subsequent siblings)
  12 siblings, 2 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Patches were applied upstream so they are removed.
Also remove the autoreconf which has no purposes anymore

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 ...01-Fix-warnings-related-to-subdir-objects.patch | 46 ------------
 ...tool-AM_PROG_AR-warning-during-autoreconf.patch | 42 -----------
 ...0003-Fix-CUnit-test-for-cross-compilation.patch | 56 ---------------
 ...4-examples-fix-uint64_t-formatting-issues.patch | 49 -------------
 ...005-ld_iscsi-fix-largefile-related-issues.patch | 83 ----------------------
 ...nly-build-the-test-tool-and-ld-iscsi-iff-.patch | 55 --------------
 package/libiscsi/libiscsi.hash                     |  3 +
 package/libiscsi/libiscsi.mk                       |  7 +-
 8 files changed, 6 insertions(+), 335 deletions(-)
 delete mode 100644 package/libiscsi/0001-Fix-warnings-related-to-subdir-objects.patch
 delete mode 100644 package/libiscsi/0002-Avoid-libtool-AM_PROG_AR-warning-during-autoreconf.patch
 delete mode 100644 package/libiscsi/0003-Fix-CUnit-test-for-cross-compilation.patch
 delete mode 100644 package/libiscsi/0004-examples-fix-uint64_t-formatting-issues.patch
 delete mode 100644 package/libiscsi/0005-ld_iscsi-fix-largefile-related-issues.patch
 delete mode 100644 package/libiscsi/0006-configure-only-build-the-test-tool-and-ld-iscsi-iff-.patch
 create mode 100644 package/libiscsi/libiscsi.hash

diff --git a/package/libiscsi/0001-Fix-warnings-related-to-subdir-objects.patch b/package/libiscsi/0001-Fix-warnings-related-to-subdir-objects.patch
deleted file mode 100644
index 7ccdc53..0000000
--- a/package/libiscsi/0001-Fix-warnings-related-to-subdir-objects.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From e801ccb2633e3f5842ed6d160af0e6e5cce44c77 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Tue, 2 Sep 2014 22:38:55 +0200
-Subject: [PATCH 1/4] Fix warnings related to subdir-objects
-
-Use AM_INIT_AUTOMAKE in configure.ac to define options such as
-subdir-objects, instead of AUTOMAKE_OPTIONS in Makefile.am, as it
-allows to avoid warnings during autoreconf:
-
-examples/Makefile.am:25: warning: source file '../lib/connect.c' is in a subdirectory,
-examples/Makefile.am:25: but option 'subdir-objects' is disabled
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- Makefile.am  | 1 -
- configure.ac | 2 +-
- 2 files changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 7023988..f9de08c 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -2,7 +2,6 @@
- SUBDIRS = lib doc utils test-tool examples
- 
- ACLOCAL_AMFLAGS =-I m4
--AUTOMAKE_OPTIONS = foreign subdir-objects
- AM_CPPFLAGS=-I. -I$(srcdir)/include "-D_U_=__attribute__((unused))" \
- 	"-D_R_(A,B)=__attribute__((format(printf,A,B)))"
- AM_CFLAGS=$(WARN_CFLAGS)
-diff --git a/configure.ac b/configure.ac
-index e1d01c6..6d29af0 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -3,7 +3,7 @@ AC_INIT(libiscsi, m4_esyscmd([grep 'Version:' ./packaging/RPM/libiscsi.spec.in 2
- AC_CONFIG_SRCDIR([lib/init.c])
- AC_CONFIG_MACRO_DIR([m4])
- 
--AM_INIT_AUTOMAKE
-+AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
- AM_SILENT_RULES
- LT_INIT
- 
--- 
-2.0.0
-
diff --git a/package/libiscsi/0002-Avoid-libtool-AM_PROG_AR-warning-during-autoreconf.patch b/package/libiscsi/0002-Avoid-libtool-AM_PROG_AR-warning-during-autoreconf.patch
deleted file mode 100644
index 44572f1..0000000
--- a/package/libiscsi/0002-Avoid-libtool-AM_PROG_AR-warning-during-autoreconf.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 2f476df340f50b9c10a7f45f4ec809e9ef82aba6 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Tue, 2 Sep 2014 22:40:04 +0200
-Subject: [PATCH 2/4] Avoid libtool/AM_PROG_AR warning during autoreconf
-
-This patch allows to avoid the following warning during autoreconf:
-
-/home/thomas/projets/buildroot/output/host/usr/share/automake-1.14/am/ltlibrary.am: warning: 'lib/libiscsi_convenience.la': linking libtool libraries using a non-POSIX
-/home/thomas/projets/buildroot/output/host/usr/share/automake-1.14/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
-
-Note that LT_INIT *must* be after AM_PROG_AR, otherwise:
-
-configure.ac:14: warning: LT_INIT was called before AM_PROG_AR
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- configure.ac | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 6d29af0..eb9d995 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -5,12 +5,14 @@ AC_CONFIG_MACRO_DIR([m4])
- 
- AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
- AM_SILENT_RULES
--LT_INIT
- 
- AC_CANONICAL_HOST
- AM_CONDITIONAL(LD_ISCSI,
-                [expr "$host_os" : linux > /dev/null 2>&1])
- AM_PROG_CC_C_O
-+AM_PROG_AR
-+
-+LT_INIT
- 
- enable_write_strings="yes"
- 
--- 
-2.0.0
-
diff --git a/package/libiscsi/0003-Fix-CUnit-test-for-cross-compilation.patch b/package/libiscsi/0003-Fix-CUnit-test-for-cross-compilation.patch
deleted file mode 100644
index dd4eb4a..0000000
--- a/package/libiscsi/0003-Fix-CUnit-test-for-cross-compilation.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 3271dd69b731c0320ab0b3b0a0609e64b00f1a56 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Tue, 2 Sep 2014 22:41:32 +0200
-Subject: [PATCH 3/4] Fix CUnit test for cross-compilation
-
-The current test in configure.ac for CUnit uses AC_TRY_RUN, which
-doesn't work in a cross-compilation context, because we can't run on
-the build machine the binaries that are built for the target. In
-addition, the current logic assumes CUnit is available when the
-AC_TRY_RUN test cannot be used (e.g in a cross-compilation case).
-
-Since we actually don't care about *running* but only about testing
-whether a simple program include the CUnit header file and linking
-against the cunit library works, simply use AC_TRY_LINK() instead of
-AC_TRY_RUN().
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- configure.ac | 15 ++-------------
- 1 file changed, 2 insertions(+), 13 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index eb9d995..0ee2d9b 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -91,25 +91,14 @@ if test x"$libiscsi_cv_HAVE_SOCKADDR_IN6" = x"yes"; then
-     AC_DEFINE(HAVE_SOCKADDR_IN6,1,[Whether we have IPv6 support])
- fi
- 
--
- AC_MSG_CHECKING(whether libcunit is available)
- ac_save_CFLAGS="$CFLAGS"
- ac_save_LIBS="$LIBS"
- CFLAGS="$CFLAGS $GLIB_CFLAGS"
- LIBS="$GLIB_LIBS $LIBS -lcunit"
--AC_TRY_RUN([
--/*
-- * Just see if we can compile/link with libcunit
-- */
-+AC_TRY_LINK([
- #include <CUnit/CUnit.h>
--
--int main(int argc, const char *argv[])
--{
--	return 0;
--}
--], ac_cv_have_cunit=yes, ac_cv_have_cunit=no,
--   [echo $ac_n "compile with CUNIT. Assuming OK... $ac_c"
--    ac_cv_have_cunit=yes])
-+], [], [ac_cv_have_cunit=yes], [ac_cv_have_cunit=no])
- CFLAGS="$ac_save_CFLAGS"
- LIBS="$ac_save_LIBS"
- if test "$ac_cv_have_cunit" = yes ; then
--- 
-2.0.0
-
diff --git a/package/libiscsi/0004-examples-fix-uint64_t-formatting-issues.patch b/package/libiscsi/0004-examples-fix-uint64_t-formatting-issues.patch
deleted file mode 100644
index 3a45049..0000000
--- a/package/libiscsi/0004-examples-fix-uint64_t-formatting-issues.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From fdfeff0462e17e0f0e37e65e5b6be6e74a9b39fd Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Tue, 2 Sep 2014 22:43:44 +0200
-Subject: [PATCH 4/4] examples: fix uint64_t formatting issues
-
-Using %lu to format uint64_t doesn't work for 32 bits architecture,
-because uint64_t is an unsigned long long and therefore %llu should be
-used. The solution is to use PRIu64 from <inttypes.h>, which is equal
-to %lu on 64 bits architectures, and %llu on 32 bits architectures,
-which corresponds to the definition of uint64_t.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- examples/iscsi-dd.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/examples/iscsi-dd.c b/examples/iscsi-dd.c
-index 4cc7c2b..33007c3 100644
---- a/examples/iscsi-dd.c
-+++ b/examples/iscsi-dd.c
-@@ -19,6 +19,7 @@
- #include <stdlib.h>
- #include <stdint.h>
- #include <string.h>
-+#include <inttypes.h>
- #include <poll.h>
- #include <getopt.h>
- #include "iscsi.h"
-@@ -79,7 +80,7 @@ void write_cb(struct iscsi_context *iscsi, int status, void *command_data, void
- 	fill_read_queue(client);
- 
- 	if (client->progress) {
--		printf("\r%lu of %lu blocks transferred.", client->pos, client->src_num_blocks);
-+		printf("\r%" PRIu64 " of %" PRIu64 " blocks transferred.", client->pos, client->src_num_blocks);
- 	}
- 
- 	if ((client->in_flight == 0) && (client->pos == client->src_num_blocks)) {
-@@ -378,7 +379,7 @@ int main(int argc, char *argv[])
- 	}
- 
- 	if (client.src_num_blocks > client.dst_num_blocks) {
--		fprintf(stderr, "source LUN is bigger than destination (%lu > %lu sectors)\n", client.src_num_blocks, client.dst_num_blocks);
-+		fprintf(stderr, "source LUN is bigger than destination (%" PRIu64 " > %" PRIu64 " sectors)\n", client.src_num_blocks, client.dst_num_blocks);
- 		exit(10);
- 	}
- 
--- 
-2.0.0
-
diff --git a/package/libiscsi/0005-ld_iscsi-fix-largefile-related-issues.patch b/package/libiscsi/0005-ld_iscsi-fix-largefile-related-issues.patch
deleted file mode 100644
index 05ad8eb..0000000
--- a/package/libiscsi/0005-ld_iscsi-fix-largefile-related-issues.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From b77db7fa6cd00e1412fdd186180996f8d622b275 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Sun, 7 Sep 2014 12:21:04 +0200
-Subject: [PATCH 5/5] ld_iscsi: fix largefile related issues
-
-This commit fixes two related issues in the ld_iscsi example with
-largefile support.
-
-The first issue appears when building libiscsi against the glibc C
-library, with the flags -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
--D_FILE_OFFSET_BITS=64:
-
-{standard input}: Assembler messages:
-{standard input}:2774: Error: symbol `__fxstat64' is already defined
-{standard input}:2850: Error: symbol `__lxstat64' is already defined
-{standard input}:2938: Error: symbol `__xstat64' is already defined
-
-This is due to the fact that when _FILE_OFFSET_BITS=64 is passed, the
-*64() functions are defined by the C library as aliases to the
-non-64*() functions, because those ones directly support large files
-(i.e 64 bits).
-
-The second issue appears when building libiscsi against the uClibc C
-library, in a configuration that doesn't have largefile support. In
-this case, the ld_iscsi that tries to use stat64 or some other *64()
-functions cannot build, because such functions are not provided by the
-C library. Of course, ld_iscsi does not need to wrap the *64()
-functions in such a situation, because they do not exist.
-
-This commit fixes those problems by enclosing the *64() related code
-of ld_iscsi in the following compile time conditional:
-
-This ensures that the *64() function handling is here only if
-largefile support is available and enabled (_LARGEFILE_SOURCE64) and
-if non-*64() functions are not already 64 bits capable (in which case
-the 64*() functions are just aliases for the non-64*() ones).
-
-See also
-http://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
-for more details about the meaning of those macros.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- examples/ld_iscsi.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/examples/ld_iscsi.c b/examples/ld_iscsi.c
-index 0cf2724..02f9d25 100644
---- a/examples/ld_iscsi.c
-+++ b/examples/ld_iscsi.c
-@@ -543,6 +543,7 @@ int dup2(int oldfd, int newfd)
- 	return real_dup2(oldfd, newfd);
- }
- 
-+#if defined(_LARGEFILE64_SOURCE) && _FILE_OFFSET_BITS != 64
- 
- int (*real_fxstat64)(int ver, int fd, struct stat64 *buf);
- 
-@@ -591,6 +592,7 @@ int __xstat64(int ver, const char *path, struct stat64 *buf)
- 	return __lxstat64(ver, path, buf);
- }
- 
-+#endif
- 
- static void __attribute__((constructor)) _init(void)
- {
-@@ -669,6 +671,7 @@ static void __attribute__((constructor)) _init(void)
- 		exit(10);
- 	}
- 
-+#if defined(_LARGEFILE64_SOURCE) && _FILE_OFFSET_BITS != 64
- 	real_fxstat64 = dlsym(RTLD_NEXT, "__fxstat64");
- 	if (real_fxstat64 == NULL) {
- 		LD_ISCSI_DPRINTF(0,"Failed to dlsym(__fxstat64)");
-@@ -683,4 +686,5 @@ static void __attribute__((constructor)) _init(void)
- 	if (real_xstat64 == NULL) {
- 		LD_ISCSI_DPRINTF(0,"Failed to dlsym(__xstat64)");
- 	}
-+#endif
- }
--- 
-2.0.0
-
diff --git a/package/libiscsi/0006-configure-only-build-the-test-tool-and-ld-iscsi-iff-.patch b/package/libiscsi/0006-configure-only-build-the-test-tool-and-ld-iscsi-iff-.patch
deleted file mode 100644
index d57a208..0000000
--- a/package/libiscsi/0006-configure-only-build-the-test-tool-and-ld-iscsi-iff-.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-Only build the test tool and ld-iscsi if we have shared libraries
-
-Backporting an upstream patch to fix a failure when doing a static
-build:
-
-/br/output/host/usr/bin/mipsel-ctng-linux-uclibc-gcc -shared -o 
-ld_iscsi.so ld_iscsi.o -ldl
-/br/output/host/opt/ext-toolchain/bin/../lib/gcc/mipsel-ctng-linux-uclibc/4.8.2/../../../../mipsel-ctng-linux-uclibc/bin/ld: 
-ld_iscsi.o: relocation R_MIPS_HI16 against `__gnu_local_gp' can not be 
-used when making a shared object; recompile with -fPIC
-ld_iscsi.o: could not read symbols: Bad value
-collect2: error: ld returned 1 exit status
-
-Upstream commit:
-  https://github.com/sahlberg/libiscsi/commit/3d6c2be3428d88682cecfa2a4ad172aaacffb318
-
-Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
-
-From 3d6c2be3428d88682cecfa2a4ad172aaacffb318 Mon Sep 17 00:00:00 2001
-From: Ronnie Sahlberg <ronniesahlberg@gmail.com>
-Date: Wed, 22 Oct 2014 17:44:03 -0700
-Subject: [PATCH] configure: only build the test tool and ld-iscsi iff we have shared libraries
-
-Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
----
- configure.ac |    5 ++---
- 1 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5e18ff4..e9c5c93 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -10,8 +10,6 @@ AM_PROG_AR
- LT_INIT
- 
- AC_CANONICAL_HOST
--AM_CONDITIONAL(LD_ISCSI,
--               [expr "$host_os" : linux > /dev/null 2>&1])
- AM_PROG_CC_C_O
- 
- enable_write_strings="yes"
-@@ -108,8 +106,9 @@ else
-   AC_MSG_NOTICE(You need libcunit to build the test suite.)
-   AC_MSG_NOTICE(The scsi/iscsi test suite will not be built.)
- fi
--AM_CONDITIONAL(ISCSITEST, [test "$ac_cv_have_cunit" = yes])
-+AM_CONDITIONAL(ISCSITEST, [test "$ac_cv_have_cunit" = yes -a "$enable_shared" = "yes"])
- 
-+AM_CONDITIONAL(LD_ISCSI, [expr "(" "$host_os" : "linux" ")" "&" "$enable_shared" "=" "yes"])
- 
- AC_CHECK_MEMBER([struct CU_SuiteInfo.pSetUpFunc],
- 		[AC_DEFINE([HAVE_CU_SUITEINFO_PSETUPFUNC], 1,
--- 
-1.7.1
-
diff --git a/package/libiscsi/libiscsi.hash b/package/libiscsi/libiscsi.hash
new file mode 100644
index 0000000..00c0116
--- /dev/null
+++ b/package/libiscsi/libiscsi.hash
@@ -0,0 +1,3 @@
+# Locally computed:
+sha256 26aa5583053d4fe0d4686f76a76c216c7dce00130f008e652ece305b88758ff1  libiscsi-1.15.0.tar.gz
+
diff --git a/package/libiscsi/libiscsi.mk b/package/libiscsi/libiscsi.mk
index c244830..425c29b 100644
--- a/package/libiscsi/libiscsi.mk
+++ b/package/libiscsi/libiscsi.mk
@@ -4,13 +4,12 @@
 #
 ################################################################################
 
-LIBISCSI_VERSION = 1.12.0
+LIBISCSI_VERSION = 1.15.0
+# Note: Upstream can be found at:
+# https://github.com/sahlberg/libiscsi
 LIBISCSI_SITE = https://sites.google.com/site/libiscsitarballs/libiscsitarballs
 LIBISCSI_LICENSE = GPLv2+ LGPLv2.1+
 LIBISCSI_LICENSE_FILES = COPYING LICENCE-GPL-2.txt LICENCE-LGPL-2.1.txt
 LIBISCSI_INSTALL_STAGING = YES
 
-# We patch configure.ac and Makefile.am
-LIBISCSI_AUTORECONF = YES
-
 $(eval $(autotools-package))
-- 
2.1.4

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

* [Buildroot] [PATCH 07/12] libllcp: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (5 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 06/12] libiscsi: Bump version Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 08/12] libnfc: " Maxime Hadjinlian
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, libllcp has already made the move to Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/libllcp/libllcp.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/libllcp/libllcp.mk b/package/libllcp/libllcp.mk
index e0dbb83..2c2014a 100644
--- a/package/libllcp/libllcp.mk
+++ b/package/libllcp/libllcp.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-LIBLLCP_VERSION = cf0c4b3c9df98851c6092c130192130c3f5a46bd
-LIBLLCP_SITE = https://libllcp.googlecode.com/git
-LIBLLCP_SITE_METHOD = git
+LIBLLCP_VERSION = 05dfa8003433a7070bfd8ae02efdb0203bbf34aa
+LIBLLCP_SITE = $(call github,nfc-tools,libllcp,$(LIBLLCP_VERSION))
 LIBLLCP_DEPENDENCIES = host-pkgconf libnfc
 # There's no ./configure in the repository, so we need to autoreconf
 LIBLLCP_AUTORECONF = YES
-- 
2.1.4

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

* [Buildroot] [PATCH 08/12] libnfc: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (6 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 07/12] libllcp: Bump version and change site Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:40   ` Thomas Petazzoni
  2015-07-26 21:41   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 09/12] python-pycrc16: Change site Maxime Hadjinlian
                   ` (4 subsequent siblings)
  12 siblings, 2 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, libllcp has already made the move to Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/libnfc/libnfc.hash | 3 +++
 package/libnfc/libnfc.mk   | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)
 create mode 100644 package/libnfc/libnfc.hash

diff --git a/package/libnfc/libnfc.hash b/package/libnfc/libnfc.hash
new file mode 100644
index 0000000..dbaf32d
--- /dev/null
+++ b/package/libnfc/libnfc.hash
@@ -0,0 +1,3 @@
+# Locally computed:
+sha256 945e74d8e27683f9b8a6f6e529557b305d120df347a960a6a7ead6cb388f4072  libnfc-1.7.1.tar.bz2
+
diff --git a/package/libnfc/libnfc.mk b/package/libnfc/libnfc.mk
index ff55f93..aceedb0 100644
--- a/package/libnfc/libnfc.mk
+++ b/package/libnfc/libnfc.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-LIBNFC_VERSION = 7b7f5061427b5456835dd48923a8cc0563cfd1e9
-LIBNFC_SITE = http://libnfc.googlecode.com/git
-LIBNFC_SITE_METHOD = git
+LIBNFC_VERSION = 1.7.1
+LIBNFC_SOURCE = libnfc-$(LIBNFC_VERSION).tar.bz2
+LIBNFC_SITE = https://github.com/nfc-tools/libnfc/releases/download/libnfc-$(LIBNFC_VERSION)
 LIBNFC_LICENSE = LGPLv3+
 LIBNFC_LICENSE_FILES = COPYING
 LIBNFC_AUTORECONF = YES
-- 
2.1.4

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

* [Buildroot] [PATCH 09/12] python-pycrc16: Change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (7 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 08/12] libnfc: " Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 10/12] python-dpkt: Bump version and change site Maxime Hadjinlian
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, python-pycrc16 has already made the move
to Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/python-crc16/python-crc16.mk | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/package/python-crc16/python-crc16.mk b/package/python-crc16/python-crc16.mk
index 5b9b13b..3a292a0 100644
--- a/package/python-crc16/python-crc16.mk
+++ b/package/python-crc16/python-crc16.mk
@@ -5,8 +5,7 @@
 ################################################################################
 
 PYTHON_CRC16_VERSION = 0.1.1
-PYTHON_CRC16_SOURCE = crc16-$(PYTHON_CRC16_VERSION).tar.gz
-PYTHON_CRC16_SITE = http://pycrc16.googlecode.com/files
+PYTHON_CRC16_SITE = $(call github,gennady,pycrc16,v$(PYTHON_CRC16_VERSION))
 PYTHON_CRC16_LICENSE = LGPLv3+
 PYTHON_CRC16_LICENSE_FILES = COPYING.txt
 PYTHON_CRC16_SETUP_TYPE = distutils
-- 
2.1.4

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

* [Buildroot] [PATCH 10/12] python-dpkt: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (8 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 09/12] python-pycrc16: Change site Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 20:38 ` [Buildroot] [PATCH 11/12] python-pypcap: " Maxime Hadjinlian
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, python-dpkt has already made the move to
Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/python-dpkt/python-dpkt.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/python-dpkt/python-dpkt.mk b/package/python-dpkt/python-dpkt.mk
index fb630fb..3015502 100644
--- a/package/python-dpkt/python-dpkt.mk
+++ b/package/python-dpkt/python-dpkt.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-PYTHON_DPKT_VERSION = 1.7
-PYTHON_DPKT_SOURCE = dpkt-$(PYTHON_DPKT_VERSION).tar.gz
-PYTHON_DPKT_SITE = http://dpkt.googlecode.com/files
+PYTHON_DPKT_VERSION = 1.8.r98
+PYTHON_DPKT_SITE = $(call github,kbandla,dpkt,$(PYTHON_DPKT_VERSION))
 PYTHON_DPKT_SETUP_TYPE = distutils
 PYTHON_DPKT_LICENSE = BSD-3c
 PYTHON_DPKT_LICENSE_FILES = LICENSE
-- 
2.1.4

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

* [Buildroot] [PATCH 11/12] python-pypcap: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (9 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 10/12] python-dpkt: Bump version and change site Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:41   ` Thomas Petazzoni
  2015-07-26 20:38 ` [Buildroot] [PATCH 12/12] qextserialport: " Maxime Hadjinlian
  2015-07-26 21:34 ` [Buildroot] [PATCH 00/12] Google Code: Change site Thomas Petazzoni
  12 siblings, 1 reply; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, python-dpkt has already made the move to
Github.

We are not using the latest tag, it's dated from 2005 and the latests
commits is from 2010 with ~20 commits between them.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/python-pypcap/python-pypcap.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/python-pypcap/python-pypcap.mk b/package/python-pypcap/python-pypcap.mk
index 89f2dc1..bff9d8f 100644
--- a/package/python-pypcap/python-pypcap.mk
+++ b/package/python-pypcap/python-pypcap.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-PYTHON_PYPCAP_VERSION = 102
-PYTHON_PYPCAP_SITE = https://pypcap.googlecode.com/svn/trunk
-PYTHON_PYPCAP_SITE_METHOD = svn
+PYTHON_PYPCAP_VERSION = 6f46e7bf29a648256ddc732a7d0ec83d3ffca390
+PYTHON_PYPCAP_SITE = $(call github,dugsong,pypcap,$(PYTHON_PYPCAP_VERSION))
 PYTHON_PYPCAP_LICENSE = BSD-3c
 PYTHON_PYPCAP_LICENSE_FILES = LICENSE
 PYTHON_PYPCAP_SETUP_TYPE = distutils
-- 
2.1.4

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

* [Buildroot] [PATCH 12/12] qextserialport: Bump version and change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (10 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 11/12] python-pypcap: " Maxime Hadjinlian
@ 2015-07-26 20:38 ` Maxime Hadjinlian
  2015-07-26 21:34 ` [Buildroot] [PATCH 00/12] Google Code: Change site Thomas Petazzoni
  12 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 20:38 UTC (permalink / raw)
  To: buildroot

Google Code is a closing forge, qextserialport has already made the move
to Github.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/qextserialport/qextserialport.mk | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/package/qextserialport/qextserialport.mk b/package/qextserialport/qextserialport.mk
index 61f7b05..6f82b39 100644
--- a/package/qextserialport/qextserialport.mk
+++ b/package/qextserialport/qextserialport.mk
@@ -4,13 +4,10 @@
 #
 ################################################################################
 
-QEXTSERIALPORT_VERSION = 6c47244de4ce6db43c2f05caee957666c951dae1
-QEXTSERIALPORT_SITE = https://qextserialport.googlecode.com/git
-QEXTSERIALPORT_SITE_METHOD = git
-
+QEXTSERIALPORT_VERSION = ada321a9ee463f628e7b781b8ed00ff219152158
+QEXTSERIALPORT_SITE = $(call github,qextserialport,qextserialport,$(QEXTSERIALPORT_VERSION))
 QEXTSERIALPORT_LICENSE = MIT
 QEXTSERIALPORT_LICENSE_FILES = LICENSE
-
 QEXTSERIALPORT_INSTALL_STAGING = YES
 
 ifeq ($(BR2_PACKAGE_QT),y)
-- 
2.1.4

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

* [Buildroot] [PATCH 00/12] Google Code: Change site
  2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
                   ` (11 preceding siblings ...)
  2015-07-26 20:38 ` [Buildroot] [PATCH 12/12] qextserialport: " Maxime Hadjinlian
@ 2015-07-26 21:34 ` Thomas Petazzoni
  12 siblings, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:34 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:26 +0200, Maxime Hadjinlian wrote:

> Some projects have already moved on, this series bump/change the site of
> theses projects.
> 
> A few are still on Google Code, they seems pretty abandonned, so a
> decision will be needed regarding theses. Switch to Alioth ? Look for a
> fork ?

With still have 1.5 years ahead of us before they go offline. So I
would suggest that we could to monitor those projects in the coming
months, and only start taking radical decision in 9-12 months.

> Maxime Hadjinlian (12):
>   zxing_cpp: New package
>   yaml-cpp: Bump version and change site
>   libass: Bump version and change site
>   explorercanvas: Bump version and change site
>   libfreefare: Bump version and change site
>   libiscsi: Bump version
>   libllcp: Bump version and change site
>   libnfc: Bump version and change site
>   python-pycrc16: Change site
>   python-dpkt: Bump version and change site
>   python-pypcap: Bump version and change site
>   qextserialport: Bump version and change site

I've applied all except the zxing_cpp patch. But I had to do some fixes
for some of them, so I'll reply to the specific patches.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 03/12] libass: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 03/12] libass: " Maxime Hadjinlian
@ 2015-07-26 21:34   ` Thomas Petazzoni
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:34 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:29 +0200, Maxime Hadjinlian wrote:
> Google Code is a closing forge, libass has already made the move to Github.

This line is too long. Use a real text editor that wraps properly :-)

> -LIBASS_VERSION = 0.10.2
> +LIBASS_VERSION = 0.12.3
>  LIBASS_SOURCE = libass-$(LIBASS_VERSION).tar.xz
> -LIBASS_SITE = http://libass.googlecode.com/files
> +# Do not use the github helper here, the generated tarball is *NOT* the same
> +# # as the one uploaded by upstream for the release.

   ^^^

and doesn't mess up comments when rewrapping text :-)

Applied with those issues fixed.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 04/12] explorercanvas: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 04/12] explorercanvas: " Maxime Hadjinlian
@ 2015-07-26 21:35   ` Thomas Petazzoni
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:35 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:30 +0200, Maxime Hadjinlian wrote:
> Google Code is a closing forge, libass has already made the move to Github.

This one, I didn't detect before committing, but this line is wrong:
s/libass/explorercanvas/.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 05/12] libfreefare: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 05/12] libfreefare: " Maxime Hadjinlian
@ 2015-07-26 21:36   ` Thomas Petazzoni
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:36 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:31 +0200, Maxime Hadjinlian wrote:

> -LIBFREEFARE_VERSION = 0.3.4
> -LIBFREEFARE_SITE = http://libfreefare.googlecode.com/files
> +LIBFREEFARE_VERSION = 0.4.0
> +LIBFREEFARE_SOURCE = libfreefare-$(LIBFREEFARE_VERSION).tar.bz2
> +# Do not use the github helper here, the generated tarball is *NOT* the same
> +# # as the one uploaded by upstream for the release.

   ^^^^

Crappy text editor again?

Fixed, of course.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 06/12] libiscsi: Bump version
  2015-07-26 20:38 ` [Buildroot] [PATCH 06/12] libiscsi: Bump version Maxime Hadjinlian
@ 2015-07-26 21:39   ` Thomas Petazzoni
  2015-07-26 21:40     ` Maxime Hadjinlian
  2015-07-27 21:38   ` Thomas Petazzoni
  1 sibling, 1 reply; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:39 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:32 +0200, Maxime Hadjinlian wrote:
> Patches were applied upstream so they are removed.

Since you did the research, it would have good to put the pointers to
the upstream commits for the respective patches.

> +# Note: Upstream can be found at:
> +# https://github.com/sahlberg/libiscsi

Comment not needed, since the Config.in help text already mentions that
as the help text.

>  LIBISCSI_SITE = https://sites.google.com/site/libiscsitarballs/libiscsitarballs

So in the end, we're still using Google? Or maybe sites.google.com is
not disappearing?

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 08/12] libnfc: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 08/12] libnfc: " Maxime Hadjinlian
@ 2015-07-26 21:40   ` Thomas Petazzoni
  2015-07-26 21:41   ` Thomas Petazzoni
  1 sibling, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:40 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:34 +0200, Maxime Hadjinlian wrote:
> Google Code is a closing forge, libllcp has already made the move to Github.

libllcp -> libnfc.

Applied with that fixed, of course.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 06/12] libiscsi: Bump version
  2015-07-26 21:39   ` Thomas Petazzoni
@ 2015-07-26 21:40     ` Maxime Hadjinlian
  0 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-26 21:40 UTC (permalink / raw)
  To: buildroot

Hi Thomas, all

On Sun, Jul 26, 2015 at 11:39 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Maxime Hadjinlian,
>
> On Sun, 26 Jul 2015 22:38:32 +0200, Maxime Hadjinlian wrote:
>> Patches were applied upstream so they are removed.
>
> Since you did the research, it would have good to put the pointers to
> the upstream commits for the respective patches.
>
>> +# Note: Upstream can be found at:
>> +# https://github.com/sahlberg/libiscsi
>
> Comment not needed, since the Config.in help text already mentions that
> as the help text.
>
>>  LIBISCSI_SITE = https://sites.google.com/site/libiscsitarballs/libiscsitarballs
>
> So in the end, we're still using Google? Or maybe sites.google.com is
> not disappearing?
sites.google.com is not scheduled to disappear as far as I know
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com

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

* [Buildroot] [PATCH 11/12] python-pypcap: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 11/12] python-pypcap: " Maxime Hadjinlian
@ 2015-07-26 21:41   ` Thomas Petazzoni
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:41 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:37 +0200, Maxime Hadjinlian wrote:
> Google Code is a closing forge, python-dpkt has already made the move to

python-pypcap.

> We are not using the latest tag, it's dated from 2005 and the latests
> commits is from 2010 with ~20 commits between them.

Rephrased to:

    We are not using the latest available tag as it dates back from 2005,
    and ~20 more commits have been made after the last tag. Therefore,
    we're using the latest commit.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 08/12] libnfc: Bump version and change site
  2015-07-26 20:38 ` [Buildroot] [PATCH 08/12] libnfc: " Maxime Hadjinlian
  2015-07-26 21:40   ` Thomas Petazzoni
@ 2015-07-26 21:41   ` Thomas Petazzoni
  1 sibling, 0 replies; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 21:41 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:34 +0200, Maxime Hadjinlian wrote:

> diff --git a/package/libnfc/libnfc.hash b/package/libnfc/libnfc.hash
> new file mode 100644
> index 0000000..dbaf32d
> --- /dev/null
> +++ b/package/libnfc/libnfc.hash
> @@ -0,0 +1,3 @@
> +# Locally computed:
> +sha256 945e74d8e27683f9b8a6f6e529557b305d120df347a960a6a7ead6cb388f4072  libnfc-1.7.1.tar.bz2
> +

It was also on several other patches: useless trailing newline here.

I've (hopefully) fixed before applying.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 06/12] libiscsi: Bump version
  2015-07-26 20:38 ` [Buildroot] [PATCH 06/12] libiscsi: Bump version Maxime Hadjinlian
  2015-07-26 21:39   ` Thomas Petazzoni
@ 2015-07-27 21:38   ` Thomas Petazzoni
  2015-07-27 21:50     ` Maxime Hadjinlian
  1 sibling, 1 reply; 24+ messages in thread
From: Thomas Petazzoni @ 2015-07-27 21:38 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Sun, 26 Jul 2015 22:38:32 +0200, Maxime Hadjinlian wrote:
> Patches were applied upstream so they are removed.
> Also remove the autoreconf which has no purposes anymore
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

This is causing some regression:

  http://autobuild.buildroot.org/results/0a9/0a96f3654983ed2efc851522352dec43c1df0077/build-end.log

This is due to the fact that ld is used instead of gcc. Can you have a
look?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 06/12] libiscsi: Bump version
  2015-07-27 21:38   ` Thomas Petazzoni
@ 2015-07-27 21:50     ` Maxime Hadjinlian
  0 siblings, 0 replies; 24+ messages in thread
From: Maxime Hadjinlian @ 2015-07-27 21:50 UTC (permalink / raw)
  To: buildroot

Hi Thomas, all

On Mon, Jul 27, 2015 at 11:38 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Maxime Hadjinlian,
>
> On Sun, 26 Jul 2015 22:38:32 +0200, Maxime Hadjinlian wrote:
>> Patches were applied upstream so they are removed.
>> Also remove the autoreconf which has no purposes anymore
>>
>> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
>
> This is causing some regression:
>
>   http://autobuild.buildroot.org/results/0a9/0a96f3654983ed2efc851522352dec43c1df0077/build-end.log
>
> This is due to the fact that ld is used instead of gcc. Can you have a
> look?
Dully noted, I'll add it to my todo list and look at it asap.
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com

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

end of thread, other threads:[~2015-07-27 21:50 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-26 20:38 [Buildroot] [PATCH 00/12] Google Code: Change site Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 01/12] zxing_cpp: New package Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 02/12] yaml-cpp: Bump version and change site Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 03/12] libass: " Maxime Hadjinlian
2015-07-26 21:34   ` Thomas Petazzoni
2015-07-26 20:38 ` [Buildroot] [PATCH 04/12] explorercanvas: " Maxime Hadjinlian
2015-07-26 21:35   ` Thomas Petazzoni
2015-07-26 20:38 ` [Buildroot] [PATCH 05/12] libfreefare: " Maxime Hadjinlian
2015-07-26 21:36   ` Thomas Petazzoni
2015-07-26 20:38 ` [Buildroot] [PATCH 06/12] libiscsi: Bump version Maxime Hadjinlian
2015-07-26 21:39   ` Thomas Petazzoni
2015-07-26 21:40     ` Maxime Hadjinlian
2015-07-27 21:38   ` Thomas Petazzoni
2015-07-27 21:50     ` Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 07/12] libllcp: Bump version and change site Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 08/12] libnfc: " Maxime Hadjinlian
2015-07-26 21:40   ` Thomas Petazzoni
2015-07-26 21:41   ` Thomas Petazzoni
2015-07-26 20:38 ` [Buildroot] [PATCH 09/12] python-pycrc16: Change site Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 10/12] python-dpkt: Bump version and change site Maxime Hadjinlian
2015-07-26 20:38 ` [Buildroot] [PATCH 11/12] python-pypcap: " Maxime Hadjinlian
2015-07-26 21:41   ` Thomas Petazzoni
2015-07-26 20:38 ` [Buildroot] [PATCH 12/12] qextserialport: " Maxime Hadjinlian
2015-07-26 21:34 ` [Buildroot] [PATCH 00/12] Google Code: Change site Thomas Petazzoni

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.