* [PATCH 01/14] opkg-utils: rebase on oe-core recipe
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 02/14] util-linux-ng: update SRC_URI to kernel.org valid URI Apelete Seketeli
` (13 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch updates SRC_URI as the svn.openmoko.org repository is now
down. The changes of this patch were picked from oe-core and brought
over.
This is the result of rebasing my patch 1ff63aa from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
---
.../opkg-utils/index-ignore-filenotfound.patch | 54 --------------------
recipes/opkg-utils/opkg-utils/mtime-int.patch | 27 ----------
.../{opkg-utils_svn.bb => opkg-utils_git.bb} | 19 +++----
3 files changed, 10 insertions(+), 90 deletions(-)
delete mode 100644 recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch
delete mode 100644 recipes/opkg-utils/opkg-utils/mtime-int.patch
rename recipes/opkg-utils/{opkg-utils_svn.bb => opkg-utils_git.bb} (44%)
diff --git a/recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch b/recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch
deleted file mode 100644
index e4a5481..0000000
--- a/recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-If we're building an image and some package rebuilds while this is happening
-some package can be removed/added to the ipk deploy directory. The image will
-not depend on this package so we can safely ignore these cases rather than
-error out.
-
-RP - 26/8/09
-
-Index: opkg-utils/opkg-make-index
-===================================================================
---- opkg-utils.orig/opkg-make-index 2009-08-26 17:21:26.000000000 +0100
-+++ opkg-utils/opkg-make-index 2009-08-27 16:11:22.000000000 +0100
-@@ -96,6 +96,7 @@
- files=glob(pkg_dir + '/*.ipk') + glob(pkg_dir + '/*.deb')
- files.sort()
- for filename in files:
-+ try:
- basename = os.path.basename(filename)
- pkg = None
- fnameStat = os.stat(filename)
-@@ -130,6 +131,12 @@
- to_morgue(basename)
- if opt_s:
- print filename
-+ except OSError:
-+ sys.stderr.write("Package %s disappeared on us!\n" % (filename))
-+ continue
-+ except IOError:
-+ sys.stderr.write("Package %s disappeared on us!\n" % (filename))
-+ continue
-
- pkgsStampsFile = open(stamplist_filename, "w")
- for f in pkgsStamps.keys():
-@@ -148,6 +155,7 @@
- names = packages.packages.keys()
- names.sort()
- for name in names:
-+ try:
- pkg = packages.packages[name]
- if locales_dir and pkg.depends:
- depends = string.split(pkg.depends, ',')
-@@ -165,6 +173,13 @@
- if (verbose):
- sys.stderr.write("Writing info for package %s\n" % (pkg.package,))
- print pkg
-+ except OSError:
-+ sys.stderr.write("Package %s disappeared on us!\n" % (name))
-+ continue
-+ except IOError:
-+ sys.stderr.write("Package %s disappeared on us!\n" % (name))
-+ continue
-+
- if packages_filename:
- sys.stdout.close()
- sys.stdout = old_stdout
diff --git a/recipes/opkg-utils/opkg-utils/mtime-int.patch b/recipes/opkg-utils/opkg-utils/mtime-int.patch
deleted file mode 100644
index efec3c0..0000000
--- a/recipes/opkg-utils/opkg-utils/mtime-int.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Convert mtime to int before comparing it
-
-The st_mtime attribute (which is a float) is compared against a value
-from the timestamp database, which was stored as an integer there.
-
-When working on a filesystem with precise timestamps the comparision
-will fail nearly everytime hence.
-
-Although it might be possible to enhance the database to store the
-fractional part too, this will complicate things more than we would
-gain by this change.
-
-Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
-
-Index: opkg-utils/opkg-make-index
-===================================================================
---- opkg-utils.orig/opkg-make-index
-+++ opkg-utils/opkg-make-index
-@@ -100,7 +100,7 @@ for filename in files:
- pkg = None
- fnameStat = os.stat(filename)
- if old_pkg_hash.has_key(basename):
-- if pkgsStamps.has_key(basename) and fnameStat.st_mtime == pkgsStamps[basename]:
-+ if pkgsStamps.has_key(basename) and int(fnameStat.st_mtime) == pkgsStamps[basename]:
- if (verbose):
- sys.stderr.write("Found %s in Packages\n" % (filename,))
- pkg = old_pkg_hash[basename]
diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_git.bb
similarity index 44%
rename from recipes/opkg-utils/opkg-utils_svn.bb
rename to recipes/opkg-utils/opkg-utils_git.bb
index 6b8d3ea..997b292 100644
--- a/recipes/opkg-utils/opkg-utils_svn.bb
+++ b/recipes/opkg-utils/opkg-utils_git.bb
@@ -1,24 +1,25 @@
DESCRIPTION = "OPKG Package Manager Utilities"
SECTION = "base"
HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
-PRIORITY = "optional"
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
+ file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083"
RDEPENDS_${PN} = "python"
RDEPENDS_${PN}_virtclass-native = ""
-SRCREV = "4747"
-PV = "0.1.8+svnr${SRCPV}"
-PR = "r6"
+SRCREV = "44df9dd3dc411ca1255cb4b23bde7eb71aed4778"
+PV = "0.1.8+git${SRCPV}"
+PR = "r1"
-SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
- file://index-ignore-filenotfound.patch \
- file://mtime-int.patch"
+SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
+ "
-S = "${WORKDIR}/opkg-utils"
+S = "${WORKDIR}/git"
# Avoid circular dependencies from package_ipk.bbclass
PACKAGES_virtclass-native = ""
do_install() {
- oe_runmake PREFIX=${prefix} DESTDIR=${D} install
+ oe_runmake PREFIX=${prefix} DESTDIR=${D} install
}
BBCLASSEXTEND = "native"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 02/14] util-linux-ng: update SRC_URI to kernel.org valid URI
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
2012-07-05 17:39 ` [PATCH 01/14] opkg-utils: rebase on oe-core recipe Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 03/14] libecj-bootstrap_3.6.1: Update SRC_URI to archive.eclipse.org Apelete Seketeli
` (12 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This updates SRC_URI as the former kernel.org URI was no longer valid.
This commit is the result of rebasing my patch 8007a4 from master.
Signed-off-by: Apelete Seketeli <apelete@seleteli.net>
Acked-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
---
recipes/util-linux-ng/util-linux-ng.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/util-linux-ng/util-linux-ng.inc b/recipes/util-linux-ng/util-linux-ng.inc
index 51f25b2..102c7d7 100644
--- a/recipes/util-linux-ng/util-linux-ng.inc
+++ b/recipes/util-linux-ng/util-linux-ng.inc
@@ -11,7 +11,7 @@ INC_PR = "r36"
# allows for a release candidate
RC ?= ""
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/util-linux-ng/v${PV}/util-linux-ng-${PV}${RC}.tar.bz2;name=archive"
+SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/util-linux/v${PV}/util-linux-ng-${PV}${RC}.tar.bz2;name=archive"
SRC_URI_append_chinook-compat = " file://chinook_libtool.patch "
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 03/14] libecj-bootstrap_3.6.1: Update SRC_URI to archive.eclipse.org
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
2012-07-05 17:39 ` [PATCH 01/14] opkg-utils: rebase on oe-core recipe Apelete Seketeli
2012-07-05 17:39 ` [PATCH 02/14] util-linux-ng: update SRC_URI to kernel.org valid URI Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 04/14] udev/acl_2.2.49: update recipe SRC_URI Apelete Seketeli
` (11 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This updates SRC_URI to archive.eclipse.org since mirrors.ibiblio.org
seems to be down.
This commit is the result of rebasing my patch f5ea9a from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
Acked-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
---
recipes/ecj/libecj-bootstrap_3.6.1.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/ecj/libecj-bootstrap_3.6.1.bb b/recipes/ecj/libecj-bootstrap_3.6.1.bb
index 66e3fc1..b3e4c26 100644
--- a/recipes/ecj/libecj-bootstrap_3.6.1.bb
+++ b/recipes/ecj/libecj-bootstrap_3.6.1.bb
@@ -3,7 +3,7 @@ require libecj-bootstrap.inc
PR = "r0"
SRC_URI = " \
- http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.6.1-201009090800/ecjsrc-${PV}.zip \
+ http://archive.eclipse.org/eclipse/downloads/drops/R-3.6.1-201009090800/ecjsrc-${PV}.zip \
"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 04/14] udev/acl_2.2.49: update recipe SRC_URI
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (2 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 03/14] libecj-bootstrap_3.6.1: Update SRC_URI to archive.eclipse.org Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 05/14] udev/attr_2.4.44: " Apelete Seketeli
` (10 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This updates the SRC_URI of the acl_2.2.49.bb recipe since
mirror.its.uidaho.edu seems to be down. Fetch acl package from
download.savannah.gnu.org from now on.
This commit is the result of rebasing my patch 6162ae from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/udev/acl_2.2.49.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/udev/acl_2.2.49.bb b/recipes/udev/acl_2.2.49.bb
index 7b68a12..12bad33 100644
--- a/recipes/udev/acl_2.2.49.bb
+++ b/recipes/udev/acl_2.2.49.bb
@@ -3,7 +3,7 @@ LICENSE = "GPLv2"
PR = "r5"
DEPENDS = "attr"
-SRC_URI = "http://mirror.its.uidaho.edu/pub/savannah/acl/acl-${PV}.src.tar.gz \
+SRC_URI = "http://download.savannah.gnu.org/releases/acl/acl-${PV}.src.tar.gz \
file://nolargefile.patch"
inherit autotools lib_package
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 05/14] udev/attr_2.4.44: update recipe SRC_URI
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (3 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 04/14] udev/acl_2.2.49: update recipe SRC_URI Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 06/14] udev: update SRC_URI of multiple recipes Apelete Seketeli
` (9 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This updates the SRC_URI of the attr_2.4.44.bb recipe since
mirrors.its.uidaho.edu seems down. Fetch attr package from
download.savannah.gnu.org from now on.
This commit is the result of rebasing my patch ba7351 from master.
Signed-off-by: Apelete Sekteli <apelete@seketeli.net>
---
recipes/udev/attr_2.4.44.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/udev/attr_2.4.44.bb b/recipes/udev/attr_2.4.44.bb
index 00aafce..1b95c58 100644
--- a/recipes/udev/attr_2.4.44.bb
+++ b/recipes/udev/attr_2.4.44.bb
@@ -3,7 +3,7 @@ LICENSE = "GPLv2"
PR = "r4"
-SRC_URI = "http://mirror.its.uidaho.edu/pub/savannah/attr/attr-${PV}.src.tar.gz"
+SRC_URI = "http://download.savannah.gnu.org/releases/attr/attr-${PV}.src.tar.gz"
inherit gettext autotools lib_package
EXTRA_OECONF = " --enable-gettext=yes \
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 06/14] udev: update SRC_URI of multiple recipes
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (4 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 05/14] udev/attr_2.4.44: " Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 07/14] task-muffinman: remove phoneme-advanced-foundation Apelete Seketeli
` (8 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch updates the SRC_URI of udev_151.bb, udev_154.bb,
udev_162.bb and udev_165.bb recipes to www.mirrorservice.org because
the corresponding source package is no longer available at kernel.org
This commit is the result of rebasing my patch 206155 from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/udev/udev_151.bb | 2 +-
recipes/udev/udev_154.bb | 2 +-
recipes/udev/udev_162.bb | 2 +-
recipes/udev/udev_165.bb | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb
index d31d99a..a5a94ec 100644
--- a/recipes/udev/udev_151.bb
+++ b/recipes/udev/udev_151.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
DEPENDS = "gperf-native usbutils acl glib-2.0"
RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://udev-replace-le16toh.patch \
file://udev-replace-lutimes.patch \
file://mount.blacklist \
diff --git a/recipes/udev/udev_154.bb b/recipes/udev/udev_154.bb
index 44d7b13..588b547 100644
--- a/recipes/udev/udev_154.bb
+++ b/recipes/udev/udev_154.bb
@@ -15,7 +15,7 @@ RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
SRC_URI[md5sum] = "4ee3bcc4e326e967167ccb6a6ba04514"
SRC_URI[sha256sum] = "29d66a5a8499cc6e4f2bcc7f79f2c6b44f4d720cecef2e552f0354d792e40a83"
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://mount.blacklist \
file://run.rules \
"
diff --git a/recipes/udev/udev_162.bb b/recipes/udev/udev_162.bb
index 2991b28..9795c06 100644
--- a/recipes/udev/udev_162.bb
+++ b/recipes/udev/udev_162.bb
@@ -15,7 +15,7 @@ RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
SRC_URI[md5sum] = "7c537de77442317ef1b93f9dba38fd4e"
SRC_URI[sha256sum] = "f536de7fc0ec231cb793aae9501c648763901d4360c27a864d1bdf3ed8aca00f"
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://mount.blacklist \
file://run.rules \
"
diff --git a/recipes/udev/udev_165.bb b/recipes/udev/udev_165.bb
index 63e62f1..f79e549 100644
--- a/recipes/udev/udev_165.bb
+++ b/recipes/udev/udev_165.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
DEPENDS = "gperf-native usbutils acl glib-2.0"
RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://mount.blacklist \
file://run.rules \
"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 07/14] task-muffinman: remove phoneme-advanced-foundation
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (5 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 06/14] udev: update SRC_URI of multiple recipes Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 08/14] bluez4_4.42: update checksum values Apelete Seketeli
` (7 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch remove phoneme-advanced-foundation from the
task-muffinman.bb recipe, since it is no longer supported.
This commit is the result of rebasing my patch 93984e from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/tasks/task-muffinman.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/tasks/task-muffinman.bb b/recipes/tasks/task-muffinman.bb
index 97ef1db..eef0abe 100644
--- a/recipes/tasks/task-muffinman.bb
+++ b/recipes/tasks/task-muffinman.bb
@@ -14,4 +14,4 @@ RDEPENDS_${PN} = "echinus ourico dzen2 matchbox-desktop net-tools xinit \
fileselector feh imlib2-loaders mupdf stppc2x mplayer \
gcalc psplash jlime-extras greq midpath-backend-sdl \
midpath-core midpath-cldc libxmlpull-java netsurf-fb \
- phoneme-advanced-foundation"
+ "
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 08/14] bluez4_4.42: update checksum values
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (6 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 07/14] task-muffinman: remove phoneme-advanced-foundation Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 09/14] gtk+: Rebase gtk+-2.20.1/no-demos.patch Apelete Seketeli
` (6 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch updates the md5 and sha256 checksum values reported in
recipes/bluez/bluez4_4.42.bb to match the ones of the source package
actually.
This commit is the result of rebasing my patch a2a3f3 from master.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/bluez/bluez4_4.42.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes/bluez/bluez4_4.42.bb b/recipes/bluez/bluez4_4.42.bb
index 0573d7a..5a73215 100644
--- a/recipes/bluez/bluez4_4.42.bb
+++ b/recipes/bluez/bluez4_4.42.bb
@@ -4,5 +4,5 @@ DEPENDS += "libsndfile1"
PR = "${INC_PR}.1"
-SRC_URI[md5sum] = "d24dfd3ca42847123e29f58b29af6948"
-SRC_URI[sha256sum] = "ed7631a6d22b456eb26b881bdbe46ea47f93d2f192da420408bad4bbc245f796"
+SRC_URI[md5sum] = "a44181c8cf79796a99b792a5372e602d"
+SRC_URI[sha256sum] = "a834f3a961449c6ae83ad26aa5d0b82a6cdd7e49f608aa71a2454a33c62cfb99"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 09/14] gtk+: Rebase gtk+-2.20.1/no-demos.patch
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (7 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 08/14] bluez4_4.42: update checksum values Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 10/14] gtk+: Add no-test-inline-pixbufs.patch to gtk+-2.20.1 Apelete Seketeli
` (5 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch rebases the recipes/gtk+/gtk+-2.20.1/no-demos.patch file
against the version of the files of gtk+-2.20.1.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/gtk+/gtk+-2.20.1/no-demos.patch | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/recipes/gtk+/gtk+-2.20.1/no-demos.patch b/recipes/gtk+/gtk+-2.20.1/no-demos.patch
index 0fc4c48..ac0730d 100644
--- a/recipes/gtk+/gtk+-2.20.1/no-demos.patch
+++ b/recipes/gtk+/gtk+-2.20.1/no-demos.patch
@@ -1,7 +1,8 @@
---- gtk+-2.10.1/Makefile.am.orig 2006-08-08 12:37:30.000000000 +0100
-+++ gtk+-2.10.1/Makefile.am 2006-08-08 12:37:48.000000000 +0100
-@@ -1,6 +1,6 @@
+--- gtk+-2.20.1/Makefile.am.orig 2012-06-18 22:40:19.348040648 +0200
++++ gtk+-2.20.1/Makefile.am 2012-06-18 22:40:41.272149318 +0200
+@@ -1,7 +1,7 @@
## Makefile.am for GTK+
+ include $(top_srcdir)/Makefile.decl
-SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests perf contrib
+SRC_SUBDIRS = gdk-pixbuf gdk gtk modules tests perf contrib
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 10/14] gtk+: Add no-test-inline-pixbufs.patch to gtk+-2.20.1
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (8 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 09/14] gtk+: Rebase gtk+-2.20.1/no-demos.patch Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 11/14] openssl_1.0.0e: fix build issue for hosts without ipv6 Apelete Seketeli
` (4 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch adds a patch to the gtk+-2.20.1 recipe that removes the
need to build test-inline-pixbufs.h in the demos/Makefile.am file of
the gtk+-2.20.1 upstream package.
It also removes all the demo programs that were dependant on
test-inline-pixbufs.h from demos/Makefile.am.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
.../gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch | 22 ++++++++++++++++++++
recipes/gtk+/gtk+_2.20.1.bb | 1 +
2 files changed, 23 insertions(+)
create mode 100644 recipes/gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch
diff --git a/recipes/gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch b/recipes/gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch
new file mode 100644
index 0000000..c1fcbd7
--- /dev/null
+++ b/recipes/gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch
@@ -0,0 +1,22 @@
+--- gtk+-2.20.1/demos/Makefile.am.orig 2012-06-18 21:53:07.365997572 +0200
++++ gtk+-2.20.1/demos/Makefile.am 2012-06-18 21:53:43.718177837 +0200
+@@ -23,18 +23,9 @@
+ $(GTK_DEP_LIBS) \
+ $(MATH_LIB)
+
+-noinst_PROGRAMS = \
+- testpixbuf-drawable \
+- testanimation \
+- testpixbuf-color \
+- testpixbuf-save \
+- testpixbuf-scale \
+- pixbuf-demo
+-
+ # Need to build test-inline-pixbufs.h for testpixbuf
+ if HAVE_PNG
+-noinst_PROGRAMS += testpixbuf
+-BUILT_SOURCES = test-inline-pixbufs.h
++BUILT_SOURCES =
+ endif
+
+ if CROSS_COMPILING
diff --git a/recipes/gtk+/gtk+_2.20.1.bb b/recipes/gtk+/gtk+_2.20.1.bb
index cd3a6d2..62f2f3c 100644
--- a/recipes/gtk+/gtk+_2.20.1.bb
+++ b/recipes/gtk+/gtk+_2.20.1.bb
@@ -7,6 +7,7 @@ SRC_URI_append_virtclass-native = " file://no-demos.patch \
SRC_URI_append = "file://gtk-dnd-grab-deadlock-fix.patch \
file://cross-nm.patch \
file://xkb-ifdef.patch \
+ file://no-test-inline-pixbufs.patch \
"
SRC_URI[gtk.md5sum] = "53e6f3a93bd22934878fc4a4a34c68aa"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 11/14] openssl_1.0.0e: fix build issue for hosts without ipv6
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (9 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 10/14] gtk+: Add no-test-inline-pixbufs.patch to gtk+-2.20.1 Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 12/14] xcursor-transparent-theme_0.1.1: update SRC_URI Apelete Seketeli
` (3 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch fixes an issue where some ipv6 code was injected into the
bss_dgram.c regardless of the ipv6 availability of the host.
The code is now injected only if the host is ipv6 enabled.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/openssl/openssl.inc | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 24b517d..06dcdae 100644
--- a/recipes/openssl/openssl.inc
+++ b/recipes/openssl/openssl.inc
@@ -100,7 +100,10 @@ do_configure () {
perl ./Configure ${EXTRA_OECONF} shared --prefix=$useprefix --openssldir=${libdir}/ssl $target
eval "${@base_contains('DISTRO_FEATURES', 'largefile', '', 'sed -i -e "/_FILE_OFFSET_BITS/,/#endif/d" ${S}/crypto/bio/bss_file.c', d)}"
- eval "${@base_contains('DISTRO_FEATURES', 'ipv6', '', 'sed -i -e "/AF_INET6/,/break/d" ${S}/crypto/bio/bss_dgram.c', d)}"
+ # inject ipv6 specific code if ipv6 is enabled on host
+ if [ `lsmod | grep -q ipv6; echo $?` -eq 0 ]; then
+ eval "${@base_contains('DISTRO_FEATURES', 'ipv6', '', 'sed -i -e "/AF_INET6/,/break/d" ${S}/crypto/bio/bss_dgram.c', d)}"
+ fi
}
do_compile () {
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 12/14] xcursor-transparent-theme_0.1.1: update SRC_URI
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (10 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 11/14] openssl_1.0.0e: fix build issue for hosts without ipv6 Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 13/14] echinus_0.4.3.2: " Apelete Seketeli
` (2 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
This patch updates the SRC_URI of xcursor-transparent-theme_0.1.1.bb
to projects.o-hand.com since the matchbox-project.org repository seems
to be down.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb b/recipes/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb
index ef746a8..aff7ccf 100644
--- a/recipes/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb
+++ b/recipes/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Transparent xcursor theme for handheld systems"
SECTION = "x11/base"
PR ="r2"
-SRC_URI = "http://matchbox-project.org/sources/utils/xcursor-transparent-theme-${PV}.tar.gz \
+SRC_URI = "http://projects.o-hand.com/matchbox/sources/utils/xcursor-transparent-theme-${PV}.tar.gz \
file://use-relative-symlinks.patch \
file://fix_watch_cursor.patch"
FILES_${PN} = "${datadir}/icons/xcursor-transparent/cursors/*"
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 13/14] echinus_0.4.3.2: update SRC_URI
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (11 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 12/14] xcursor-transparent-theme_0.1.1: update SRC_URI Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-05 17:39 ` [PATCH 14/14] psplash: convert from svn.o-hand.com to git.yoctoproject.org Apelete Seketeli
2012-07-10 9:29 ` [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Tom Rini
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
Update the SRC_URI of echinus_0.4.3.2.bb since the source tarball has
been moved to a different directory on the source repository.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
recipes/echinus/echinus_0.4.3.2.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/echinus/echinus_0.4.3.2.bb b/recipes/echinus/echinus_0.4.3.2.bb
index 60ad9cf..6608a7b 100644
--- a/recipes/echinus/echinus_0.4.3.2.bb
+++ b/recipes/echinus/echinus_0.4.3.2.bb
@@ -5,7 +5,7 @@ PR = "r2"
DEPENDS = "virtual/libx11 libxft libxrandr"
-SRC_URI = "http://plhk.ru/static/echinus/echinus-${PV}.tar.gz \
+SRC_URI = "http://plhk.ru/static/echinus/old/echinus-${PV}.tar.gz \
file://Makefile"
SRC_URI_append_jlime = " file://echinus-jlime.patch "
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 14/14] psplash: convert from svn.o-hand.com to git.yoctoproject.org
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (12 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 13/14] echinus_0.4.3.2: " Apelete Seketeli
@ 2012-07-05 17:39 ` Apelete Seketeli
2012-07-10 9:29 ` [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Tom Rini
14 siblings, 0 replies; 16+ messages in thread
From: Apelete Seketeli @ 2012-07-05 17:39 UTC (permalink / raw)
To: openembedded-devel
Convert all psplash recipes from svn.o-hand.com to
git.yoctoproject.org since svn.o-hand.com seems to be down.
Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
.../{psplash-angstrom_svn.bb => psplash-angstrom_git.bb} | 5 ++---
.../psplash/{psplash-kaeilos_svn.bb => psplash-kaeilos_git.bb} | 6 ++----
...psplash-omap3pandora_svn.bb => psplash-omap3pandora_git.bb} | 5 ++---
recipes/psplash/{psplash-ti_svn.bb => psplash-ti_git.bb} | 5 ++---
recipes/psplash/psplash.inc | 8 ++++----
recipes/psplash/{psplash_svn.bb => psplash_git.bb} | 5 ++---
6 files changed, 14 insertions(+), 20 deletions(-)
rename recipes/psplash/{psplash-angstrom_svn.bb => psplash-angstrom_git.bb} (85%)
rename recipes/psplash/{psplash-kaeilos_svn.bb => psplash-kaeilos_git.bb} (77%)
rename recipes/psplash/{psplash-omap3pandora_svn.bb => psplash-omap3pandora_git.bb} (85%)
rename recipes/psplash/{psplash-ti_svn.bb => psplash-ti_git.bb} (86%)
rename recipes/psplash/{psplash_svn.bb => psplash_git.bb} (84%)
diff --git a/recipes/psplash/psplash-angstrom_svn.bb b/recipes/psplash/psplash-angstrom_git.bb
similarity index 85%
rename from recipes/psplash/psplash-angstrom_svn.bb
rename to recipes/psplash/psplash-angstrom_git.bb
index 2667cc4..a68b957 100644
--- a/recipes/psplash/psplash-angstrom_svn.bb
+++ b/recipes/psplash/psplash-angstrom_git.bb
@@ -9,7 +9,7 @@ ALTERNATIVE_PRIORITY = "20"
# respectively psplash-bar-img.h (BAR) for the bar.
# You might also want to patch the colors (see patch)
-SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
+SRC_URI = "git://git.yoctoproject.org/psplash;protocol=git \
file://psplash-18bpp.patch \
file://logo-math.patch \
file://psplash-poky-img.h \
@@ -17,5 +17,4 @@ SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
file://psplash-default \
file://splashfuncs \
file://psplash-init"
-S = "${WORKDIR}/psplash"
-
+S = "${WORKDIR}/git"
diff --git a/recipes/psplash/psplash-kaeilos_svn.bb b/recipes/psplash/psplash-kaeilos_git.bb
similarity index 77%
rename from recipes/psplash/psplash-kaeilos_svn.bb
rename to recipes/psplash/psplash-kaeilos_git.bb
index 9a40cc7..6993aeb 100644
--- a/recipes/psplash/psplash-kaeilos_svn.bb
+++ b/recipes/psplash/psplash-kaeilos_git.bb
@@ -3,7 +3,7 @@ require psplash-ua.inc
ALTERNATIVE_PRIORITY = "20"
-SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
+SRC_URI = "git://git.yoctoproject.org/psplash;protocol=git \
file://logo-math.patch \
file://psplash-poky-img.h \
file://psplash-bar-img.h \
@@ -13,6 +13,4 @@ SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
file://psplash-18bpp.patch \
file://psplash-24bpp-BGR666.patch"
-S = "${WORKDIR}/psplash"
-
-
+S = "${WORKDIR}/git"
diff --git a/recipes/psplash/psplash-omap3pandora_svn.bb b/recipes/psplash/psplash-omap3pandora_git.bb
similarity index 85%
rename from recipes/psplash/psplash-omap3pandora_svn.bb
rename to recipes/psplash/psplash-omap3pandora_git.bb
index 120679b..c0e8610 100644
--- a/recipes/psplash/psplash-omap3pandora_svn.bb
+++ b/recipes/psplash/psplash-omap3pandora_git.bb
@@ -10,12 +10,11 @@ ALTERNATIVE_PRIORITY_omap3pandora = "5"
# respectively psplash-bar-img.h (BAR) for the bar.
# You might also want to patch the colors (see patch)
-SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
+SRC_URI = "git://git.yoctoproject.org/psplash;protocol=git \
file://logo-math.patch \
file://psplash-poky-img.h \
file://psplash-bar-img.h \
file://psplash-default \
file://splashfuncs \
file://psplash-init"
-S = "${WORKDIR}/psplash"
-
+S = "${WORKDIR}/git"
diff --git a/recipes/psplash/psplash-ti_svn.bb b/recipes/psplash/psplash-ti_git.bb
similarity index 86%
rename from recipes/psplash/psplash-ti_svn.bb
rename to recipes/psplash/psplash-ti_git.bb
index b754d09..9069daa 100644
--- a/recipes/psplash/psplash-ti_svn.bb
+++ b/recipes/psplash/psplash-ti_git.bb
@@ -9,7 +9,7 @@ ALTERNATIVE_PRIORITY = "20"
# respectively psplash-bar-img.h (BAR) for the bar.
# You might also want to patch the colors (see patch)
-SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
+SRC_URI = "git://git.yoctoproject.org/psplash;protocol=git \
file://psplash-18bpp.patch \
file://logo-math.patch \
file://0001-configurability-for-rev-422.patch \
@@ -18,5 +18,4 @@ SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
file://psplash-default \
file://splashfuncs \
file://psplash-init"
-S = "${WORKDIR}/psplash"
-
+S = "${WORKDIR}/git"
diff --git a/recipes/psplash/psplash.inc b/recipes/psplash/psplash.inc
index 2d999d1..1791edc 100644
--- a/recipes/psplash/psplash.inc
+++ b/recipes/psplash/psplash.inc
@@ -1,14 +1,14 @@
DESCRIPTION = "Userspace framebuffer boot logo based on usplash."
-HOMEPAGE = "http://projects.o-hand.com/psplash"
+HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/psplash"
SECTION = "base"
LICENSE = "GPLv2+"
PROVIDES = "virtual/psplash"
RPROVIDES_${PN} = "virtual-psplash"
RCONFLICTS_${PN} = "exquisite"
-SRCREV = "422"
-PV = "0.0+svnr${SRCPV}"
-PR = "r34"
+SRCREV = "d8ebee6f2b14d72b69bd37f1ea7e64e936a24695"
+PV = "0.1+git${SRCPV}"
+PR = "r0"
# You can create your own pslash-poky-img.h by doing
# ./make-image-header.sh <file>.png POKY
diff --git a/recipes/psplash/psplash_svn.bb b/recipes/psplash/psplash_git.bb
similarity index 84%
rename from recipes/psplash/psplash_svn.bb
rename to recipes/psplash/psplash_git.bb
index ea7a7b7..49e8e7e 100644
--- a/recipes/psplash/psplash_svn.bb
+++ b/recipes/psplash/psplash_git.bb
@@ -3,17 +3,16 @@ require psplash-ua.inc
ALTERNATIVE_PRIORITY = "10"
-SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
+SRC_URI = "git://git.yoctoproject.org/psplash;protocol=git \
file://psplash-poky-img.h \
file://psplash-bar-img.h \
file://psplash-default \
file://splashfuncs \
file://psplash-init"
-S = "${WORKDIR}/psplash"
+S = "${WORKDIR}/git"
# This really should be default, but due yo openmoko hack below, can't be easily
SRC_URI_append_angstrom = " file://logo-math.patch "
SRC_URI_append_jlime = " file://configurability.patch file://progress-color.patch "
SRC_URI_append_openmoko = " file://configurability.patch "
SRC_URI_append_boc01 = " file://psplash_grayscale.patch "
-
--
1.7.10
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 00/14][2011.03-maintenance] Pull request 20120705
2012-07-05 17:39 [PATCH 00/14][2011.03-maintenance] Pull request 20120705 Apelete Seketeli
` (13 preceding siblings ...)
2012-07-05 17:39 ` [PATCH 14/14] psplash: convert from svn.o-hand.com to git.yoctoproject.org Apelete Seketeli
@ 2012-07-10 9:29 ` Tom Rini
14 siblings, 0 replies; 16+ messages in thread
From: Tom Rini @ 2012-07-10 9:29 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 3876 bytes --]
On Thu, Jul 05, 2012 at 07:39:18PM +0200, Apelete Seketeli wrote:
> Hello,
>
> The patches that come as a follow-up of this message fix build issues
> for the muffinman-image recipe. This is the result of rebasing them
> from master and testing that the recipes still build.
> Please pull this commit into 2011.03-maintenance branch.
>
> The following changes since commit 19af5b608b3c69dcd73501402fdba3ca2d16e7b2:
>
> classes/mirrors.bbclass: update debian snapshot mirror url (2012-06-19 07:52:20 -0700)
>
> are available in the git repository at:
>
> git://seketeli.net/~apelete/oe.git muffinman-image-fix
>
> Apelete Seketeli (14):
> opkg-utils: rebase on oe-core recipe
> util-linux-ng: update SRC_URI to kernel.org valid URI
> libecj-bootstrap_3.6.1: Update SRC_URI to archive.eclipse.org
> udev/acl_2.2.49: update recipe SRC_URI
> udev/attr_2.4.44: update recipe SRC_URI
> udev: update SRC_URI of multiple recipes
> task-muffinman: remove phoneme-advanced-foundation
> bluez4_4.42: update checksum values
> gtk+: Rebase gtk+-2.20.1/no-demos.patch
> gtk+: Add no-test-inline-pixbufs.patch to gtk+-2.20.1
> openssl_1.0.0e: fix build issue for hosts without ipv6
> xcursor-transparent-theme_0.1.1: update SRC_URI
> echinus_0.4.3.2: update SRC_URI
> psplash: convert from svn.o-hand.com to git.yoctoproject.org
>
> recipes/bluez/bluez4_4.42.bb | 4 +-
> recipes/echinus/echinus_0.4.3.2.bb | 2 +-
> recipes/ecj/libecj-bootstrap_3.6.1.bb | 2 +-
> recipes/gtk+/gtk+-2.20.1/no-demos.patch | 7 +--
> .../gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch | 22 ++++++++
> recipes/gtk+/gtk+_2.20.1.bb | 1 +
> recipes/openssl/openssl.inc | 5 +-
> .../opkg-utils/index-ignore-filenotfound.patch | 54 --------------------
> recipes/opkg-utils/opkg-utils/mtime-int.patch | 27 ----------
> .../{opkg-utils_svn.bb => opkg-utils_git.bb} | 19 +++----
> ...ash-angstrom_svn.bb => psplash-angstrom_git.bb} | 5 +-
> ...plash-kaeilos_svn.bb => psplash-kaeilos_git.bb} | 6 +--
> ...3pandora_svn.bb => psplash-omap3pandora_git.bb} | 5 +-
> .../{psplash-ti_svn.bb => psplash-ti_git.bb} | 5 +-
> recipes/psplash/psplash.inc | 8 +--
> recipes/psplash/{psplash_svn.bb => psplash_git.bb} | 5 +-
> recipes/tasks/task-muffinman.bb | 2 +-
> recipes/udev/acl_2.2.49.bb | 2 +-
> recipes/udev/attr_2.4.44.bb | 2 +-
> recipes/udev/udev_151.bb | 2 +-
> recipes/udev/udev_154.bb | 2 +-
> recipes/udev/udev_162.bb | 2 +-
> recipes/udev/udev_165.bb | 2 +-
> recipes/util-linux-ng/util-linux-ng.inc | 2 +-
> .../xcursor-transparent-theme_0.1.1.bb | 2 +-
> 25 files changed, 68 insertions(+), 127 deletions(-)
> create mode 100644 recipes/gtk+/gtk+-2.20.1/no-test-inline-pixbufs.patch
> delete mode 100644 recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch
> delete mode 100644 recipes/opkg-utils/opkg-utils/mtime-int.patch
> rename recipes/opkg-utils/{opkg-utils_svn.bb => opkg-utils_git.bb} (44%)
> rename recipes/psplash/{psplash-angstrom_svn.bb => psplash-angstrom_git.bb} (85%)
> rename recipes/psplash/{psplash-kaeilos_svn.bb => psplash-kaeilos_git.bb} (77%)
> rename recipes/psplash/{psplash-omap3pandora_svn.bb => psplash-omap3pandora_git.bb} (85%)
> rename recipes/psplash/{psplash-ti_svn.bb => psplash-ti_git.bb} (86%)
> rename recipes/psplash/{psplash_svn.bb => psplash_git.bb} (84%)
Merged to 2011.03-maintenance, thanks!
--
Tom
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread