All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Package Upgrades
@ 2013-07-10 12:24 Radu Moisan
  2013-07-10 12:24 ` [PATCH 1/2] iputils: Upgrade to v20121221 Radu Moisan
  2013-07-10 12:24 ` [PATCH 2/2] diffutils: Upgrade to v3.3 Radu Moisan
  0 siblings, 2 replies; 13+ messages in thread
From: Radu Moisan @ 2013-07-10 12:24 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 8a186a6b3853fc1a7dcf342d421c8926c38949c9:

  bitbake: hob: save button from settings called a nonexisting method (2013-07-03 08:13:35 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib rmoisan/branch-upgrades-last
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=rmoisan/branch-upgrades-last

Radu Moisan (2):
  iputils: Upgrade to v20121221
  diffutils: Upgrade to v3.3

 .../diffutils-3.2/obsolete_automake_macros.patch   |   14 -------
 .../diffutils/diffutils-3.2/remove-gets.patch      |   22 ----------
 meta/recipes-extended/diffutils/diffutils.inc      |    4 --
 meta/recipes-extended/diffutils/diffutils_2.8.1.bb |    7 ++--
 .../{diffutils_3.2.bb => diffutils_3.3.bb}         |   12 ++----
 .../files/debian/add-icmp-return-codes.diff        |   43 --------------------
 .../iputils/files/debian/fix-arping-timeouts.diff  |   26 ------------
 .../files/debian/fix-dead-host-ping-stats.diff     |   16 --------
 .../iputils/files/debian/targets.diff              |   14 +++----
 .../iputils/files/debian/use_gethostbyname2.diff   |   36 ++++++++--------
 ...x-build-command-line-argument-with-gnutls.patch |   37 +++++++++++++++++
 .../{iputils_s20101006.bb => iputils_s20121221.bb} |   15 +++----
 12 files changed, 76 insertions(+), 170 deletions(-)
 delete mode 100644 meta/recipes-extended/diffutils/diffutils-3.2/obsolete_automake_macros.patch
 delete mode 100644 meta/recipes-extended/diffutils/diffutils-3.2/remove-gets.patch
 rename meta/recipes-extended/diffutils/{diffutils_3.2.bb => diffutils_3.3.bb} (59%)
 delete mode 100644 meta/recipes-extended/iputils/files/debian/add-icmp-return-codes.diff
 delete mode 100644 meta/recipes-extended/iputils/files/debian/fix-arping-timeouts.diff
 delete mode 100644 meta/recipes-extended/iputils/files/debian/fix-dead-host-ping-stats.diff
 create mode 100644 meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch
 rename meta/recipes-extended/iputils/{iputils_s20101006.bb => iputils_s20121221.bb} (80%)

-- 
1.7.9.5



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

* [PATCH 1/2] iputils: Upgrade to v20121221
  2013-07-10 12:24 [PATCH 0/2] Package Upgrades Radu Moisan
@ 2013-07-10 12:24 ` Radu Moisan
  2013-07-10 12:24 ` [PATCH 2/2] diffutils: Upgrade to v3.3 Radu Moisan
  1 sibling, 0 replies; 13+ messages in thread
From: Radu Moisan @ 2013-07-10 12:24 UTC (permalink / raw)
  To: openembedded-core

Removed obsolete patches
Header for arping changed. New author added.
Capability support enabled by default(upstream) -> added libcap to DEPENDS
Gnutls enabled by default(upstream) -> switched from openssl to gnutls

Signed-off-by: Radu Moisan <radu.moisan@intel.com>
---
 .../files/debian/add-icmp-return-codes.diff        |   43 --------------------
 .../iputils/files/debian/fix-arping-timeouts.diff  |   26 ------------
 .../files/debian/fix-dead-host-ping-stats.diff     |   16 --------
 .../iputils/files/debian/targets.diff              |   14 +++----
 .../iputils/files/debian/use_gethostbyname2.diff   |   36 ++++++++--------
 ...x-build-command-line-argument-with-gnutls.patch |   37 +++++++++++++++++
 .../{iputils_s20101006.bb => iputils_s20121221.bb} |   15 +++----
 7 files changed, 68 insertions(+), 119 deletions(-)
 delete mode 100644 meta/recipes-extended/iputils/files/debian/add-icmp-return-codes.diff
 delete mode 100644 meta/recipes-extended/iputils/files/debian/fix-arping-timeouts.diff
 delete mode 100644 meta/recipes-extended/iputils/files/debian/fix-dead-host-ping-stats.diff
 create mode 100644 meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch
 rename meta/recipes-extended/iputils/{iputils_s20101006.bb => iputils_s20121221.bb} (80%)

diff --git a/meta/recipes-extended/iputils/files/debian/add-icmp-return-codes.diff b/meta/recipes-extended/iputils/files/debian/add-icmp-return-codes.diff
deleted file mode 100644
index 40070c3..0000000
--- a/meta/recipes-extended/iputils/files/debian/add-icmp-return-codes.diff
+++ /dev/null
@@ -1,43 +0,0 @@
-Upstream-Status: Pending [from other distro Debian]
-
-Index: trunk/ping.c
-===================================================================
---- trunk.orig/ping.c	2010-05-07 23:13:54.000000000 -0700
-+++ trunk/ping.c	2010-05-07 23:23:22.000000000 -0700
-@@ -883,9 +883,36 @@
- 		case ICMP_SR_FAILED:
- 			printf("Source Route Failed\n");
- 			break;
-+		case ICMP_NET_UNKNOWN:
-+			printf("Destination Net Unknown\n");
-+			break;
-+		case ICMP_HOST_UNKNOWN:
-+			printf("Destination Host Unknown\n");
-+			break;
-+		case ICMP_HOST_ISOLATED:
-+			printf("Source Host Isolated\n");
-+			break;
-+		case ICMP_NET_ANO:
-+			printf("Destination Net Prohibited\n");
-+			break;
-+		case ICMP_HOST_ANO:
-+			printf("Destination Host Prohibited\n");
-+			break;
-+		case ICMP_NET_UNR_TOS:
-+			printf("Destination Net Unreachable for Type of Service\n");
-+			break;
-+		case ICMP_HOST_UNR_TOS:
-+			printf("Destination Host Unreachable for Type of Service\n");
-+			break;
- 		case ICMP_PKT_FILTERED:
- 			printf("Packet filtered\n");
- 			break;
-+		case ICMP_PREC_VIOLATION:
-+			printf("Precedence Violation\n");
-+			break;
-+		case ICMP_PREC_CUTOFF:
-+			printf("Precedence Cutoff\n");
-+			break;
- 		default:
- 			printf("Dest Unreachable, Bad Code: %d\n", code);
- 			break;
diff --git a/meta/recipes-extended/iputils/files/debian/fix-arping-timeouts.diff b/meta/recipes-extended/iputils/files/debian/fix-arping-timeouts.diff
deleted file mode 100644
index 3e34788..0000000
--- a/meta/recipes-extended/iputils/files/debian/fix-arping-timeouts.diff
+++ /dev/null
@@ -1,26 +0,0 @@
-Upstream-Status: Pending [from other distro Debian]
-
-Index: trunk/arping.c
-===================================================================
---- trunk.orig/arping.c	2010-05-07 23:13:52.000000000 -0700
-+++ trunk/arping.c	2010-05-07 23:41:16.000000000 -0700
-@@ -182,12 +182,17 @@
- 	if (start.tv_sec==0)
- 		start = tv;
- 
--	if (count-- == 0 || (timeout && MS_TDIFF(tv,start) > timeout*1000 + 500))
-+	if (timeout && MS_TDIFF(tv,start) > timeout*1000 + 500)
- 		finish();
- 
--	if (last.tv_sec==0 || MS_TDIFF(tv,last) > 500) {
-+	if ((!timeout) && (count == 0))
-+		finish();
-+
-+	if ( count!=0  && (last.tv_sec==0 || MS_TDIFF(tv,last) > 500 ) ) {
- 		send_pack(s, src, dst,
- 			  (struct sockaddr_ll *)&me, (struct sockaddr_ll *)&he);
-+		if (count >= 0)
-+		    count--;
- 		if (count == 0 && unsolicited)
- 			finish();
- 	}
diff --git a/meta/recipes-extended/iputils/files/debian/fix-dead-host-ping-stats.diff b/meta/recipes-extended/iputils/files/debian/fix-dead-host-ping-stats.diff
deleted file mode 100644
index fda42bf..0000000
--- a/meta/recipes-extended/iputils/files/debian/fix-dead-host-ping-stats.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-Upstream-Status: Pending [from other distro Debian]
-
-Index: trunk/ping_common.c
-===================================================================
---- trunk.orig/ping_common.c	2010-05-07 23:13:51.000000000 -0700
-+++ trunk/ping_common.c	2010-05-07 23:22:33.000000000 -0700
-@@ -872,7 +872,8 @@
- 		printf("%spipe %d", comma, pipesize);
- 		comma = ", ";
- 	}
--	if (ntransmitted > 1 && (!interval || (options&(F_FLOOD|F_ADAPTIVE)))) {
-+	if (ntransmitted > 1 && nreceived &&
-+		(!interval || (options&(F_FLOOD|F_ADAPTIVE)))) {
- 		int ipg = (1000000*(long long)tv.tv_sec+tv.tv_usec)/(ntransmitted-1);
- 		printf("%sipg/ewma %d.%03d/%d.%03d ms",
- 		       comma, ipg/1000, ipg%1000, rtt/8000, (rtt/8)%1000);
diff --git a/meta/recipes-extended/iputils/files/debian/targets.diff b/meta/recipes-extended/iputils/files/debian/targets.diff
index 6b899cb..2cb5576 100644
--- a/meta/recipes-extended/iputils/files/debian/targets.diff
+++ b/meta/recipes-extended/iputils/files/debian/targets.diff
@@ -1,15 +1,15 @@
 Upstream-Status: Inappropriate [disable feature]
 
-Index: trunk/Makefile
+Index: iputils-s20121221/Makefile
 ===================================================================
---- trunk.orig/Makefile	2010-05-07 23:43:00.000000000 -0700
-+++ trunk/Makefile	2010-05-07 23:47:10.000000000 -0700
-@@ -16,7 +16,7 @@
- CCOPT=-D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g
- CFLAGS=$(CCOPT) $(GLIBCFIX) $(DEFINES) 
+--- iputils-s20121221.orig/Makefile
++++ iputils-s20121221/Makefile
+@@ -106,7 +106,7 @@ endif
+ endif
  
+ # -------------------------------------
 -IPV4_TARGETS=tracepath ping clockdiff rdisc arping tftpd rarpd
-+IPV4_TARGETS=tracepath ping arping clockdiff
++IPV4_TARGETS=tracepath ping clockdiff arping
  IPV6_TARGETS=tracepath6 traceroute6 ping6
  TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
  
diff --git a/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff b/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff
index 1d01e15..d3b1886 100644
--- a/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff
+++ b/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff
@@ -1,31 +1,31 @@
 Upstream-Status: Pending [from other distro Debian]
 
-Index: trunk/tracepath.c
+Index: iputils-s20121221/tracepath.c
 ===================================================================
---- trunk.orig/tracepath.c	2010-05-07 23:13:52.000000000 -0700
-+++ trunk/tracepath.c	2010-05-07 23:24:09.000000000 -0700
-@@ -338,9 +338,9 @@
- 		base_port = atoi(p+1);
- 	} else
- 		base_port = 44444;
--	he = gethostbyname(argv[0]);
+--- iputils-s20121221.orig/tracepath.c
++++ iputils-s20121221/tracepath.c
+@@ -370,9 +370,9 @@ main(int argc, char **argv)
+ 	}
+ #endif
+ 
+-	he = gethostbyname(p);
 +	he = gethostbyname2(argv[0], AF_INET);
  	if (he == NULL) {
 -		herror("gethostbyname");
 +		herror("gethostbyname2");
  		exit(1);
  	}
- 	memcpy(&target.sin_addr, he->h_addr, 4);
-Index: trunk/ping.c
+ 
+Index: iputils-s20121221/ping.c
 ===================================================================
---- trunk.orig/ping.c	2010-05-07 23:23:22.000000000 -0700
-+++ trunk/ping.c	2010-05-07 23:24:09.000000000 -0700
-@@ -250,7 +250,7 @@
- 			if (argc == 1)
- 				options |= F_NUMERIC;
- 		} else {
--			hp = gethostbyname(target);
-+			hp = gethostbyname2(target, AF_INET);
+--- iputils-s20121221.orig/ping.c
++++ iputils-s20121221/ping.c
+@@ -279,7 +279,7 @@ main(int argc, char **argv)
+ #else
+ 			idn = target;
+ #endif
+-			hp = gethostbyname(idn);
++			hp = gethostbyname2(idn, AF_INET);
  			if (!hp) {
  				fprintf(stderr, "ping: unknown host %s\n", target);
  				exit(2);
diff --git a/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch b/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch
new file mode 100644
index 0000000..b9cd82e
--- /dev/null
+++ b/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch
@@ -0,0 +1,37 @@
+Upstream-Status: Backport
+
+From 568e990d30fc7e9416e0a6f8c74ea5013921eaec Mon Sep 17 00:00:00 2001
+From: Arjan van de Ven <arjanvandeven@gmail.com>
+Date: Wed, 16 Jan 2013 03:12:15 +0900
+Subject: [PATCH] ping6: Fix build command line argument with gnutls.
+
+The ping6 command can use either openssl or gnutls...
+and the Makefile has a bunch of setup for defining which of the two to use.
+
+Unfortunately, the final -D define on the commandline to enable gnutls
+inside the ping6.c file didn't actually make it onto the gcc
+commandline.
+This patch adds the $(DEF_CRYPTO) Makefile variable to fix this gap.
+
+Signed-off-by: Arjan van de Ven <arjanvandeven@gmail.com>
+Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
+---
+ Makefile |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index c62d9df..89249f5 100644
+--- a/Makefile
++++ b/Makefile
+@@ -149,7 +149,7 @@ LIB_clockdiff = $(LIB_CAP)
+ DEF_ping_common = $(DEF_CAP) $(DEF_IDN)
+ DEF_ping  = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS)
+ LIB_ping  = $(LIB_CAP) $(LIB_IDN)
+-DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR)
++DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) $(DEF_CRYPTO)
+ LIB_ping6 = $(LIB_CAP) $(LIB_IDN) $(LIB_RESOLV) $(LIB_CRYPTO)
+ 
+ ping: ping_common.o
+-- 
+1.7.2.5
+
diff --git a/meta/recipes-extended/iputils/iputils_s20101006.bb b/meta/recipes-extended/iputils/iputils_s20121221.bb
similarity index 80%
rename from meta/recipes-extended/iputils/iputils_s20101006.bb
rename to meta/recipes-extended/iputils/iputils_s20121221.bb
index 2c2766c..45108a4 100644
--- a/meta/recipes-extended/iputils/iputils_s20101006.bb
+++ b/meta/recipes-extended/iputils/iputils_s20121221.bb
@@ -8,25 +8,22 @@ LICENSE = "BSD & GPLv2+"
 
 LIC_FILES_CHKSUM = "file://ping.c;beginline=1;endline=35;md5=f9ceb201733e9a6cf8f00766dd278d82 \
                     file://tracepath.c;beginline=1;endline=10;md5=0ecea2bf60bff2f3d840096d87647f3d \
-                    file://arping.c;beginline=1;endline=10;md5=ada2a6d06acc90f943bddf40d15e0541 \
+                    file://arping.c;beginline=1;endline=11;md5=fe84301b5c2655c950f8b92a057fafa6 \
                     file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 "
 
-DEPENDS = "openssl docbook-utils-native sgmlspl-native"
+DEPENDS = "gnutls docbook-utils-native sgmlspl-native libcap"
 
-PR = "r6"
+PR = "r0"
 
 SRC_URI = "http://www.skbuff.net/iputils/${BPN}-${PV}.tar.bz2 \
-           file://debian/fix-dead-host-ping-stats.diff \
-           file://debian/add-icmp-return-codes.diff \
            file://debian/use_gethostbyname2.diff \
            file://debian/targets.diff \
-           file://debian/fix-arping-timeouts.diff \
            file://nsgmls-path-fix.patch \
-           file://arping-break-libsysfs-dependency.patch \
+           file://fix-build-command-line-argument-with-gnutls.patch \
           "
 
-SRC_URI[md5sum] = "a36c25e9ec17e48be514dc0485e7376c"
-SRC_URI[sha256sum] = "fd3af46c80ebb99607c2ca1f2a3608b6fe828e25bbec6e54f2afd25f6ddb6ee7"
+SRC_URI[md5sum] = "6072aef64205720dd1893b375e184171"
+SRC_URI[sha256sum] = "450f549fc5b620c23c5929aa6d54b7ddfc7ee1cb1e8efdc5e8bb21d8d0c5319f"
 
 do_compile () {
 	oe_runmake 'CC=${CC} -D_GNU_SOURCE' VPATH="${STAGING_LIBDIR}:${STAGING_DIR_HOST}/${base_libdir}" all man
-- 
1.7.9.5



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

* [PATCH 2/2] diffutils: Upgrade to v3.3
  2013-07-10 12:24 [PATCH 0/2] Package Upgrades Radu Moisan
  2013-07-10 12:24 ` [PATCH 1/2] iputils: Upgrade to v20121221 Radu Moisan
@ 2013-07-10 12:24 ` Radu Moisan
  1 sibling, 0 replies; 13+ messages in thread
From: Radu Moisan @ 2013-07-10 12:24 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Radu Moisan <radu.moisan@intel.com>
---
 .../diffutils-3.2/obsolete_automake_macros.patch   |   14 -------------
 .../diffutils/diffutils-3.2/remove-gets.patch      |   22 --------------------
 meta/recipes-extended/diffutils/diffutils.inc      |    4 ----
 meta/recipes-extended/diffutils/diffutils_2.8.1.bb |    7 ++++---
 .../{diffutils_3.2.bb => diffutils_3.3.bb}         |   12 ++++-------
 5 files changed, 8 insertions(+), 51 deletions(-)
 delete mode 100644 meta/recipes-extended/diffutils/diffutils-3.2/obsolete_automake_macros.patch
 delete mode 100644 meta/recipes-extended/diffutils/diffutils-3.2/remove-gets.patch
 rename meta/recipes-extended/diffutils/{diffutils_3.2.bb => diffutils_3.3.bb} (59%)

diff --git a/meta/recipes-extended/diffutils/diffutils-3.2/obsolete_automake_macros.patch b/meta/recipes-extended/diffutils/diffutils-3.2/obsolete_automake_macros.patch
deleted file mode 100644
index f47cc79..0000000
--- a/meta/recipes-extended/diffutils/diffutils-3.2/obsolete_automake_macros.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Upstream-Status: Backport
-
-Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
-diff -Nurd diffutils-3.2/configure.ac diffutils-3.2/configure.ac
---- diffutils-3.2/configure.ac	2011-08-11 18:17:54.000000000 +0300
-+++ diffutils-3.2/configure.ac	2013-02-08 08:13:28.271427213 +0200
-@@ -33,7 +33,6 @@
-
- AC_PROG_AWK
- AC_PROG_CC
--AM_PROG_CC_STDC
- AM_MISSING_PROG([HELP2MAN], [help2man])
- AC_PROG_RANLIB
- gl_EARLY
diff --git a/meta/recipes-extended/diffutils/diffutils-3.2/remove-gets.patch b/meta/recipes-extended/diffutils/diffutils-3.2/remove-gets.patch
deleted file mode 100644
index 58ed62d..0000000
--- a/meta/recipes-extended/diffutils/diffutils-3.2/remove-gets.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-check for gets before using it
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Upstream-Status: Pending
-Index: diffutils-3.2/lib/stdio.in.h
-===================================================================
---- diffutils-3.2.orig/lib/stdio.in.h	2011-08-28 04:57:28.000000000 -0700
-+++ diffutils-3.2/lib/stdio.in.h	2012-07-03 10:45:07.518322117 -0700
-@@ -693,11 +693,13 @@
- _GL_CXXALIAS_SYS (gets, char *, (char *s));
- #  undef gets
- # endif
-+# if defined gets
- _GL_CXXALIASWARN (gets);
- /* It is very rare that the developer ever has full control of stdin,
-    so any use of gets warrants an unconditional warning.  Assume it is
-    always declared, since it is required by C89.  */
- _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
-+# endif
- #endif
- 
- 
diff --git a/meta/recipes-extended/diffutils/diffutils.inc b/meta/recipes-extended/diffutils/diffutils.inc
index c90a3c9..c2ca417 100644
--- a/meta/recipes-extended/diffutils/diffutils.inc
+++ b/meta/recipes-extended/diffutils/diffutils.inc
@@ -4,10 +4,6 @@ sdiff, and cmp utilities. These programs are usually \
 used for creating patch files."
 SECTION = "base"
 
-INC_PR = "r7"
-
-SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz"
-
 inherit autotools update-alternatives gettext
 
 # diffutils assumes non-glibc compilation with uclibc and
diff --git a/meta/recipes-extended/diffutils/diffutils_2.8.1.bb b/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
index da6719d..bf425bb 100644
--- a/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
+++ b/meta/recipes-extended/diffutils/diffutils_2.8.1.bb
@@ -3,13 +3,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 require diffutils.inc
 
-PR = "${INC_PR}.0"
+PR = "r7.0"
 
-SRC_URI += "file://diffutils_fix_for_automake-1.12.patch"
+SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz \
+           file://diffutils_fix_for_automake-1.12.patch"
 
 SRC_URI[md5sum] = "71f9c5ae19b60608f6c7f162da86a428"
 SRC_URI[sha256sum] = "c5001748b069224dd98bf1bb9ee877321c7de8b332c8aad5af3e2a7372d23f5a"
 
 do_configure_prepend () {
 	chmod u+w ${S}/po/Makefile.in.in
-}
\ No newline at end of file
+}
diff --git a/meta/recipes-extended/diffutils/diffutils_3.2.bb b/meta/recipes-extended/diffutils/diffutils_3.3.bb
similarity index 59%
rename from meta/recipes-extended/diffutils/diffutils_3.2.bb
rename to meta/recipes-extended/diffutils/diffutils_3.3.bb
index ef400ef..7a95c1a 100644
--- a/meta/recipes-extended/diffutils/diffutils_3.2.bb
+++ b/meta/recipes-extended/diffutils/diffutils_3.3.bb
@@ -3,6 +3,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
 require diffutils.inc
 
+SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz"
+
 do_configure_prepend () {
 	# Need to remove gettext macros with weird mix of versions
 	for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do
@@ -10,11 +12,5 @@ do_configure_prepend () {
 	done
 }
 
-PR = "${INC_PR}.1"
-
-SRC_URI += "file://remove-gets.patch \
-            file://obsolete_automake_macros.patch \
-"
-
-SRC_URI[md5sum] = "22e4deef5d8949a727b159d6bc65c1cc"
-SRC_URI[sha256sum] = "2aaaebef615be7dc365306a14caa5d273a4fc174f9f10abca8b60e082c054ed3"
+SRC_URI[md5sum] = "99180208ec2a82ce71f55b0d7389f1b3"
+SRC_URI[sha256sum] = "a25e89a8ab65fded1731e4186be1bb25cda967834b6df973599cdcd5abdfc19c"
-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2014-05-06  8:26 Cristiana Voicu
  0 siblings, 0 replies; 13+ messages in thread
From: Cristiana Voicu @ 2014-05-06  8:26 UTC (permalink / raw)
  To: openembedded-core

The packages has been succesfully compiled for all major architectures.
Tested locally on a core-image-sato image.

The following changes since commit 7b78c364b7de901f97cd8dbe56d5e02f545bf3d3:

  cleanup-workdir: Fix crosssdk reference after addition of PN (2014-05-05 09:05:42 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib cvoicu/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=cvoicu/work

Cristiana Voicu (2):
  babeltrace: upgrade to 1.2.1
  rxvt-unicode: upgrade to 9.20

 ...-Support-out-of-tree-builds-in-babeltrace.patch |   17 +++++++++++++++++
 .../{babeltrace_1.1.1.bb => babeltrace_1.2.1.bb}   |    7 ++++---
 .../rxvt.desktop                                   |    0
 .../{rxvt-unicode-9.19 => rxvt-unicode}/rxvt.png   |  Bin 2847 -> 2847 bytes
 .../{rxvt-unicode-9.19 => rxvt-unicode}/xwc.patch  |    0
 .../{rxvt-unicode_9.19.bb => rxvt-unicode_9.20.bb} |    4 ++--
 6 files changed, 23 insertions(+), 5 deletions(-)
 create mode 100644 meta/recipes-kernel/lttng/babeltrace/0001-Fix-Support-out-of-tree-builds-in-babeltrace.patch
 rename meta/recipes-kernel/lttng/{babeltrace_1.1.1.bb => babeltrace_1.2.1.bb} (72%)
 rename meta/recipes-sato/rxvt-unicode/{rxvt-unicode-9.19 => rxvt-unicode}/rxvt.desktop (100%)
 rename meta/recipes-sato/rxvt-unicode/{rxvt-unicode-9.19 => rxvt-unicode}/rxvt.png (100%)
 rename meta/recipes-sato/rxvt-unicode/{rxvt-unicode-9.19 => rxvt-unicode}/xwc.patch (100%)
 rename meta/recipes-sato/rxvt-unicode/{rxvt-unicode_9.19.bb => rxvt-unicode_9.20.bb} (93%)

-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2014-02-24 11:42 Cristiana Voicu
  0 siblings, 0 replies; 13+ messages in thread
From: Cristiana Voicu @ 2014-02-24 11:42 UTC (permalink / raw)
  To: openembedded-core

The packages has been succesfully compiled for all major architectures.
Tested locally on a core-image-sato image.

The following changes since commit 54562006c1327c5b99daa4cc05a3ba7e38412da1:

  image_types.bbclass: Fix tar IMAGE_CMD to not change directories (2014-02-18 08:38:52 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib cvoicu/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=cvoicu/work

Cristiana Voicu (2):
  curl: upgrade to 7.35.0
  pango: upgrade to 1.36.2

 .../pango/{pango_1.36.1.bb => pango_1.36.2.bb}     |    4 ++--
 .../curl/{curl_7.34.0.bb => curl_7.35.0.bb}        |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-graphics/pango/{pango_1.36.1.bb => pango_1.36.2.bb} (56%)
 rename meta/recipes-support/curl/{curl_7.34.0.bb => curl_7.35.0.bb} (93%)

-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2014-01-08 13:08 Irina Patru
  0 siblings, 0 replies; 13+ messages in thread
From: Irina Patru @ 2014-01-08 13:08 UTC (permalink / raw)
  To: openembedded-core

The packages have been succesfully compiled for all major architectures.
Both packages were tested on a core-image-sato with midori browser on a nuc.

The following changes since commit e93a345fae7c21652547bec501fcb1f3b6c6427d:

  sstate: add do_package to the noexec list in setscene_depvalid (2014-01-07 13:58:32 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ipatru/upgrades
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ipatru/upgrades

Irina Patru (2):
  libtasn1: upgrade to 3.4
  libsoup-2.4: upgrade to 2.45.3

 .../gnutls/{libtasn1_3.3.bb => libtasn1_3.4.bb}    |    4 ++--
 ...libsoup-2.4_2.44.2.bb => libsoup-2.4_2.45.3.bb} |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-support/gnutls/{libtasn1_3.3.bb => libtasn1_3.4.bb} (82%)
 rename meta/recipes-support/libsoup/{libsoup-2.4_2.44.2.bb => libsoup-2.4_2.45.3.bb} (85%)

-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2013-11-18 15:03 Cristiana Voicu
  0 siblings, 0 replies; 13+ messages in thread
From: Cristiana Voicu @ 2013-11-18 15:03 UTC (permalink / raw)
  To: openembedded-core

Hi,

Tests done:
 * build tested on local AB running following nightlies: build-appliance, x86, x86_64, ppc, mips, arm;
 * checked with rpm if the packages were installed and their version on a sato image; 
basic functionality for lttng for liburcu; checked /usr/lib/at-spi2-core for at-spi2-core pkg

Thanks,
Cristiana

The following changes since commit b0281b3a190dec6502b4abc6a5b14ae46243f913:

  pybootchartgui: Add option --minutes to show time in minutes (2013-11-18 12:44:56 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib cvoicu/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=cvoicu/work

Cristiana Voicu (2):
  at-spi2-core: upgrade to 2.10.2
  liburcu: upgrade to 0.8.1

 ...-spi2-core_2.10.0.bb => at-spi2-core_2.10.2.bb} |    4 ++--
 meta/recipes-support/liburcu/files/fixCCflag.patch |   20 --------------------
 .../liburcu/{files => liburcu}/fixsepbuild.patch   |    0
 .../liburcu/{liburcu_0.8.0.bb => liburcu_0.8.1.bb} |    7 +++----
 4 files changed, 5 insertions(+), 26 deletions(-)
 rename meta/recipes-support/atk/{at-spi2-core_2.10.0.bb => at-spi2-core_2.10.2.bb} (77%)
 delete mode 100644 meta/recipes-support/liburcu/files/fixCCflag.patch
 rename meta/recipes-support/liburcu/{files => liburcu}/fixsepbuild.patch (100%)
 rename meta/recipes-support/liburcu/{liburcu_0.8.0.bb => liburcu_0.8.1.bb} (75%)

-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2013-08-16  8:29 Cristiana Voicu
  0 siblings, 0 replies; 13+ messages in thread
From: Cristiana Voicu @ 2013-08-16  8:29 UTC (permalink / raw)
  To: openembedded-core

Hi,

Tests done:
 * build tested on AB running following nightlies: build-appliance, x86, x86_64, ppc, mips, arm;
 * checked with rpm if the packages were installed and their version; basic functionality for
sudo and crond

Thanks,
Cristiana

The following changes since commit ff10f72abda52315b892c64f711096772d9a4c1c:

  meta-skeleton: Add busybox config fragment example (2013-08-13 23:06:04 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib cvoicu/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=cvoicu/work

Cristiana Voicu (2):
  cronie: upgrade to 1.4.11
  sudo: upgrade to 1.8.7

 .../cronie/{cronie_1.4.9.bb => cronie_1.4.11.bb}   |    8 ++--
 meta/recipes-extended/sudo/files/libtool.patch     |   42 --------------------
 meta/recipes-extended/sudo/sudo.inc                |    4 +-
 .../sudo/{sudo_1.8.6p8.bb => sudo_1.8.7.bb}        |    7 +---
 4 files changed, 7 insertions(+), 54 deletions(-)
 rename meta/recipes-extended/cronie/{cronie_1.4.9.bb => cronie_1.4.11.bb} (92%)
 delete mode 100644 meta/recipes-extended/sudo/files/libtool.patch
 rename meta/recipes-extended/sudo/{sudo_1.8.6p8.bb => sudo_1.8.7.bb} (79%)

-- 
1.7.9.5



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

* [PATCH 0/2] Package upgrades
@ 2013-08-02 15:40 Ionut Radu
  0 siblings, 0 replies; 13+ messages in thread
From: Ionut Radu @ 2013-08-02 15:40 UTC (permalink / raw)
  To: openembedded-core

freetype: tested on core-image-sato on all architectures (x86, x86-64, arm, ppc, mips)
gdk-pixbuf: tested on core-image-sato on all architectures (x86, x86-64, arm, ppc, mips)

The following changes since commit 9de0ad47462c13ac4a2d73e12e92be6c1b4e0415:

  genericx86: ship all the driver firmware by default (2013-07-31 07:00:00 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ionutx/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ionutx/work

Ionut Radu (2):
  freetype: upgrade to 2.5.0.1
  gdk-pixbuf: upgrade to 2.28.2

 .../gdk-pixbuf/{gdk-pixbuf_2.28.1.bb => gdk-pixbuf_2.28.2.bb}    |    4 ++--
 .../freetype/{freetype_2.4.12.bb => freetype_2.5.0.1.bb}         |    6 ++----
 2 files changed, 4 insertions(+), 6 deletions(-)
 rename meta/recipes-gnome/gdk-pixbuf/{gdk-pixbuf_2.28.1.bb => gdk-pixbuf_2.28.2.bb} (94%)
 rename meta/recipes-graphics/freetype/{freetype_2.4.12.bb => freetype_2.5.0.1.bb} (90%)

-- 
1.7.10.4



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

* [PATCH 0/2] Package upgrades
@ 2013-07-31 13:58 Ionut Radu
  0 siblings, 0 replies; 13+ messages in thread
From: Ionut Radu @ 2013-07-31 13:58 UTC (permalink / raw)
  To: openembedded-core

* apt
Tested on core-image-minimal on all architectures
makerace.patch: adapted to the new version

The following changes since commit 9de0ad47462c13ac4a2d73e12e92be6c1b4e0415:

  genericx86: ship all the driver firmware by default (2013-07-31 07:00:00 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ionutx/work
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ionutx/work

Ionut Radu (2):
  freetype: Upgrade from 2.4.12 to 2.5.0
  apt: Upgrade from 0.9.8.2 to 0.9.9.4

 .../disable-configure-in-makefile.patch                    |    0
 .../fix-gcc-4.6-null-not-defined.patch                     |    0
 .../apt/{apt-0.9.8.2 => apt-0.9.9.4}/makerace.patch        |   12 ++++++------
 .../{apt-0.9.8.2 => apt-0.9.9.4}/no-ko-translation.patch   |    0
 .../apt/{apt-0.9.8.2 => apt-0.9.9.4}/no-nls-dpkg.patch     |    0
 .../apt/{apt-0.9.8.2 => apt-0.9.9.4}/noconfigure.patch     |    0
 .../apt/{apt-0.9.8.2 => apt-0.9.9.4}/nodoc.patch           |    0
 .../{apt-0.9.8.2 => apt-0.9.9.4}/truncate-filename.patch   |    0
 .../apt/{apt-0.9.8.2 => apt-0.9.9.4}/use-host.patch        |    0
 .../apt/{apt-native_0.9.8.2.bb => apt-native_0.9.9.4.bb}   |    0
 .../apt/{apt_0.9.8.2.bb => apt_0.9.9.4.bb}                 |    4 ++--
 .../freetype/{freetype_2.4.12.bb => freetype_2.5.0.bb}     |    9 +++------
 12 files changed, 11 insertions(+), 14 deletions(-)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/disable-configure-in-makefile.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/fix-gcc-4.6-null-not-defined.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/makerace.patch (66%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/no-ko-translation.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/no-nls-dpkg.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/noconfigure.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/nodoc.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/truncate-filename.patch (100%)
 rename meta/recipes-devtools/apt/{apt-0.9.8.2 => apt-0.9.9.4}/use-host.patch (100%)
 rename meta/recipes-devtools/apt/{apt-native_0.9.8.2.bb => apt-native_0.9.9.4.bb} (100%)
 rename meta/recipes-devtools/apt/{apt_0.9.8.2.bb => apt_0.9.9.4.bb} (74%)
 rename meta/recipes-graphics/freetype/{freetype_2.4.12.bb => freetype_2.5.0.bb} (90%)

-- 
1.7.10.4



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

* [PATCH 0/2] Package upgrades
@ 2013-02-18 15:20 Laurentiu Palcu
  0 siblings, 0 replies; 13+ messages in thread
From: Laurentiu Palcu @ 2013-02-18 15:20 UTC (permalink / raw)
  To: openembedded-core

These 2 upgrades compiled fine on all architectures and were tested in
qemu.

Thanks,
Laurentiu

Laurentiu Palcu (2):
  xrandr: upgrade to 1.4.0
  xvinfo: upgrade to 1.1.2

 meta/recipes-graphics/xorg-app/xrandr_1.3.5.bb |   16 ----------------
 meta/recipes-graphics/xorg-app/xrandr_1.4.0.bb |   16 ++++++++++++++++
 meta/recipes-graphics/xorg-app/xvinfo_1.1.1.bb |   15 ---------------
 meta/recipes-graphics/xorg-app/xvinfo_1.1.2.bb |   15 +++++++++++++++
 4 files changed, 31 insertions(+), 31 deletions(-)
 delete mode 100644 meta/recipes-graphics/xorg-app/xrandr_1.3.5.bb
 create mode 100644 meta/recipes-graphics/xorg-app/xrandr_1.4.0.bb
 delete mode 100644 meta/recipes-graphics/xorg-app/xvinfo_1.1.1.bb
 create mode 100644 meta/recipes-graphics/xorg-app/xvinfo_1.1.2.bb

-- 
1.7.9.5




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

* [PATCH 0/2] package upgrades
@ 2012-12-17 14:41 Laurentiu Palcu
  0 siblings, 0 replies; 13+ messages in thread
From: Laurentiu Palcu @ 2012-12-17 14:41 UTC (permalink / raw)
  To: openembedded-core

Hi,

This patchset contains 2 package upgrades.

Tests done:
 * xserver-xorg was compiled successfully for all architectures;
 * xf86-video-intel compiled successfully for x86 and x86-64;
 * functionality tests were done on an atom based ideapad netbook and in qemu;

Thanks,
Laurentiu

Laurentiu Palcu (2):
  xserver-xorg: upgrade to 1.13.1
  xf86-video-intel: upgrade to 2.20.16

 ...ntel_2.20.12.bb => xf86-video-intel_2.20.16.bb} |    4 ++--
 .../crosscompile.patch                             |    0
 .../fix_open_max_preprocessor_error.patch          |    0
 .../macro_tweak.patch                              |    0
 .../mips64-compiler.patch                          |    0
 ...erver-xorg_1.13.0.bb => xserver-xorg_1.13.1.bb} |    4 ++--
 6 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-graphics/xorg-driver/{xf86-video-intel_2.20.12.bb => xf86-video-intel_2.20.16.bb} (86%)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg-1.13.0 => xserver-xorg-1.13.1}/crosscompile.patch (100%)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg-1.13.0 => xserver-xorg-1.13.1}/fix_open_max_preprocessor_error.patch (100%)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg-1.13.0 => xserver-xorg-1.13.1}/macro_tweak.patch (100%)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg-1.13.0 => xserver-xorg-1.13.1}/mips64-compiler.patch (100%)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_1.13.0.bb => xserver-xorg_1.13.1.bb} (88%)

-- 
1.7.9.5




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

* [PATCH 0/2] Package upgrades
@ 2012-08-17 15:46 Constantin Musca
  0 siblings, 0 replies; 13+ messages in thread
From: Constantin Musca @ 2012-08-17 15:46 UTC (permalink / raw)
  To: openembedded-core; +Cc: Constantin Musca

This is another set of package upgrades compiled on all architectures
and tested using core-image-sato-sdk. Nothing significant changed
in the gst-fluendo-mp3 license file.

Constantin Musca (2):
  gst-fluendo-mp3: upgrade to 0.10.19
  gst-fluendo-mpegdemux: upgrade to 0.10.71

 ...o-mp3_0.10.16.bb => gst-fluendo-mp3_0.10.19.bb} |    6 +++---
 ...0.10.70.bb => gst-fluendo-mpegdemux_0.10.71.bb} |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gst-fluendo-mp3_0.10.16.bb => gst-fluendo-mp3_0.10.19.bb} (46%)
 rename meta/recipes-multimedia/gstreamer/{gst-fluendo-mpegdemux_0.10.70.bb => gst-fluendo-mpegdemux_0.10.71.bb} (71%)

-- 
1.7.9.5




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

end of thread, other threads:[~2014-05-06  8:34 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-10 12:24 [PATCH 0/2] Package Upgrades Radu Moisan
2013-07-10 12:24 ` [PATCH 1/2] iputils: Upgrade to v20121221 Radu Moisan
2013-07-10 12:24 ` [PATCH 2/2] diffutils: Upgrade to v3.3 Radu Moisan
  -- strict thread matches above, loose matches on Subject: below --
2014-05-06  8:26 [PATCH 0/2] Package upgrades Cristiana Voicu
2014-02-24 11:42 Cristiana Voicu
2014-01-08 13:08 Irina Patru
2013-11-18 15:03 Cristiana Voicu
2013-08-16  8:29 Cristiana Voicu
2013-08-02 15:40 Ionut Radu
2013-07-31 13:58 Ionut Radu
2013-02-18 15:20 Laurentiu Palcu
2012-12-17 14:41 [PATCH 0/2] package upgrades Laurentiu Palcu
2012-08-17 15:46 [PATCH 0/2] Package upgrades Constantin Musca

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.