diff options
| author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2010-06-20 19:25:43 +0400 |
|---|---|---|
| committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2010-06-20 19:25:43 +0400 |
| commit | 22ff63fa0ea80d5afcddcf442bbf47c90e0468df (patch) | |
| tree | 320b1fb85a429c9be6b7b86130232c9ce9600ae7 /recipes | |
| parent | 982a1168dc24ca1bd36b068d60981a2c5cb2880d (diff) | |
| parent | c5955cfe486cb84ba27ad0692ceecdaab779bb99 (diff) | |
Merge branch 'org.openembedded.dev' of git://git.openembedded.org/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes')
89 files changed, 3376 insertions, 279 deletions
diff --git a/recipes/angstrom/angstrom-version.bb b/recipes/angstrom/angstrom-version.bb index 1728c0dff8..a2f1335f9d 100644 --- a/recipes/angstrom/angstrom-version.bb +++ b/recipes/angstrom/angstrom-version.bb @@ -1,9 +1,11 @@ LICENSE = "MIT" PV = "${DISTRO_VERSION}" -PR = "r3" +PR = "r4" PE = "1" +SRC_URI = "file://lsb_release" + PACKAGES = "${PN}" PACKAGE_ARCH = "${MACHINE_ARCH}" @@ -17,4 +19,7 @@ do_install() { echo "Built from branch: ${METADATA_BRANCH}" >> ${D}${sysconfdir}/angstrom-version echo "Revision: ${METADATA_REVISION}" >> ${D}${sysconfdir}/angstrom-version echo "Target system: ${TARGET_SYS}" >> ${D}${sysconfdir}/angstrom-version + + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/lsb_release ${D}${bindir}/ } diff --git a/recipes/angstrom/angstrom-version/lsb_release b/recipes/angstrom/angstrom-version/lsb_release new file mode 100755 index 0000000000..11b48141f5 --- /dev/null +++ b/recipes/angstrom/angstrom-version/lsb_release @@ -0,0 +1,43 @@ +#!/bin/sh +VERSION="$(cat /etc/angstrom-version | head -n1 | awk '{print $2}')" +CODENAME="foo" + +case $1 in +"-v") + echo "No LSB modules are available." + ;; +"-i") + echo "Distributor ID: Angstrom" + ;; +"-d") + echo "Description: Angstrom GNU/Linux $VERSION ($CODENAME)" + ;; +"-r") + echo "Release: $VERSION" + ;; +"-c") + echo "Codename: $CODENAME" + ;; +"-a") + echo "Distributor ID: Angstrom" + echo "Description: Angstrom GNU/Linux $VERSION ($CODENAME)" + echo "Release: $VERSION" + echo "Codename: $CODENAME" + ;; +"-s") + echo "No LSB modules are available." + ;; +*) + echo "Usage: lsb_release [options]" + echo "" + echo "Options:" + echo " -h, --help show this help message and exit" + echo " -v, --version show LSB modules this system supports" + echo " -i, --id show distributor ID" + echo " -d, --description show description of this distribution" + echo " -r, --release show release number of this distribution" + echo " -c, --codename show code name of this distribution" + echo " -a, --all show all of the above information" + echo " -s, --short show requested information in short format" +;; +esac diff --git a/recipes/bluez/bluez4_4.47.bb b/recipes/bluez/bluez4_4.47.bb index 33e69a284c..7d939abb97 100644 --- a/recipes/bluez/bluez4_4.47.bb +++ b/recipes/bluez/bluez4_4.47.bb @@ -1,7 +1,6 @@ require bluez4.inc DEFAULT_PREFERENCE = "-1" -DEFAULT_PREFERENCE_angstrom = "1" DEPENDS += "libsndfile1" PR = "${INC_PR}.1" diff --git a/recipes/bluez/bluez4_4.53.bb b/recipes/bluez/bluez4_4.53.bb index 3462b6eab1..97f7001252 100644 --- a/recipes/bluez/bluez4_4.53.bb +++ b/recipes/bluez/bluez4_4.53.bb @@ -1,7 +1,6 @@ require bluez4.inc DEFAULT_PREFERENCE = "-1" -DEFAULT_PREFERENCE_angstrom = "1" DEPENDS += "libsndfile1" diff --git a/recipes/bluez/bluez4_4.56.bb b/recipes/bluez/bluez4_4.56.bb index 15892a6985..26b32f511f 100644 --- a/recipes/bluez/bluez4_4.56.bb +++ b/recipes/bluez/bluez4_4.56.bb @@ -1,7 +1,6 @@ require bluez4.inc DEFAULT_PREFERENCE = "-1" -DEFAULT_PREFERENCE_angstrom = "1" DEFAULT_PREFERENCE_shr = "1" DEPENDS += "libsndfile1" diff --git a/recipes/bluez/bluez4_4.59.bb b/recipes/bluez/bluez4_4.59.bb index e1072e410c..98acf5c299 100644 --- a/recipes/bluez/bluez4_4.59.bb +++ b/recipes/bluez/bluez4_4.59.bb @@ -1,7 +1,6 @@ require bluez4.inc DEFAULT_PREFERENCE = "-1" -DEFAULT_PREFERENCE_angstrom = "1" DEFAULT_PREFERENCE_shr = "1" DEPENDS += "libsndfile1" diff --git a/recipes/bluez/bluez4_4.66.bb b/recipes/bluez/bluez4_4.66.bb new file mode 100644 index 0000000000..77e743f5bb --- /dev/null +++ b/recipes/bluez/bluez4_4.66.bb @@ -0,0 +1,17 @@ +require bluez4.inc + +SRC_URI[md5sum] = "3c82575778d5dcdd68ea961626b02109" +SRC_URI[sha256sum] = "c223cbb80df0b1f17f6ef4efd0be1fe35ae640bd979f852cfbcc452abc0a7ea5" + +DEFAULT_PREFERENCE = "-1" +DEFAULT_PREFERENCE_angstrom = "1" + +DEPENDS += "libnl libsndfile1" + +PR = "${INC_PR}.0" + +# Not all distros have a recent enough udev +BTUDEV = " --disable-udevrules" +BTUDEV_angstrom = " --enable-udevrules" +BTUDEV_shr = " --enable-udevrules" +EXTRA_OECONF += "${BTUDEV}" diff --git a/recipes/busybox/busybox_1.15.3.bb b/recipes/busybox/busybox_1.15.3.bb index 07103e855f..6f2e4ec076 100644 --- a/recipes/busybox/busybox_1.15.3.bb +++ b/recipes/busybox/busybox_1.15.3.bb @@ -1,5 +1,5 @@ require busybox.inc -PR = "${INC_PR}.1" +PR = "${INC_PR}.2" SRC_URI = "\ http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ @@ -29,6 +29,14 @@ SRC_URI = "\ SRC_URI[tarball.md5sum] = "6059ac9456de6fb18dc8ee4cd0ec9240" SRC_URI[tarball.sha256sum] = "d74020ad2cc5a4dcc5109c44dbd0e22582d6ce42954b0f1ff29763c8c0ff03cb" +# gcc 4.5 has this bug on thumb +# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44557 +# so add -fomit-frame-pointer +# this will be removed once the above bug is fixed. + + +CFLAGS_append = " -fomit-frame-pointer" + EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX}" do_configure_prepend () { diff --git a/recipes/e17/elmdentica_svn.bb b/recipes/e17/elmdentica_svn.bb index c6fb2847e7..566c6570a9 100644 --- a/recipes/e17/elmdentica_svn.bb +++ b/recipes/e17/elmdentica_svn.bb @@ -1,5 +1,5 @@ DESCRIPTION = "A indenti.ca client for E" -DEPENDS = "glib-2.0 gconf libxml2 curl elementary sqlite3-native" +DEPENDS = "glib-2.0 gconf curl elementary sqlite3-native libjson" LICENSE = "GPLv3+" SECTION = "e/apps" HOMEPAGE = "http://elmdentica.googlecode.com" @@ -7,5 +7,5 @@ AUTHOR = "seabra" inherit e -PV = "0.9.0+svnr${SRCPV}" +PV = "0.9.9+svnr${SRCPV}" SRCREV = "${EFL_SRCREV}" diff --git a/recipes/foxtrotgps/foxtrotgps.inc b/recipes/foxtrotgps/foxtrotgps.inc new file mode 100644 index 0000000000..752fa5b948 --- /dev/null +++ b/recipes/foxtrotgps/foxtrotgps.inc @@ -0,0 +1,14 @@ +DESCRIPTION = "FoxtrotGPS is a map and GPS application using OpenStreetMap" +AUTHOR = "Joshua Judson Rosen <rozzin@geekspace.com>" +HOMEPAGE = "http://www.foxtrotgps.org/" +SECTION = "x11/applications" +LICENSE = "GPLv2" +PRIORITY = "optional" +DEPENDS = "curl gtk+ gconf sqlite3 libexif" + +SRC_URI = "http://www.foxtrotgps.org/releases/${P}.tar.gz" + +inherit autotools pkgconfig + +RRECOMMENDS_${PN} = "gpsd" +RRECOMMENDS_${PN}_shr = "fso-gpsd" diff --git a/recipes/foxtrotgps/foxtrotgps_0.99.4.bb b/recipes/foxtrotgps/foxtrotgps_0.99.4.bb new file mode 100644 index 0000000000..61650443b2 --- /dev/null +++ b/recipes/foxtrotgps/foxtrotgps_0.99.4.bb @@ -0,0 +1,4 @@ +require foxtrotgps.inc + +SRC_URI[md5sum] = "73f03ba1ee1853dea077aa18518222f7" +SRC_URI[sha256sum] = "c7fffa0d45f59de0b858c84e57a6325af78f97f3492ef5e4bd75d5bf0c20d689" diff --git a/recipes/freesmartphone/cornucopia.inc b/recipes/freesmartphone/cornucopia.inc index 11cbdd3b78..83bba0bf6c 100644 --- a/recipes/freesmartphone/cornucopia.inc +++ b/recipes/freesmartphone/cornucopia.inc @@ -7,7 +7,7 @@ DEPENDS = "vala-native glib-2.0 dbus dbus-glib libfso-glib libgee" DEPENDS += "${@['libfsoframework', ''][(bb.data.getVar('PN', d, 1) in 'libfsoframework libfsobasics'.split())]}" PV = "invalid, please override" -FSO_CORNUCOPIA_SRCREV ?= "38d52c14a09dd7afc22048f2ed278e336f42a933" +FSO_CORNUCOPIA_SRCREV ?= "3dc9d7ebde32d8c29c901b52f7d3549b774b068b" INC_PR = "r2" SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia;protocol=git;branch=master" diff --git a/recipes/freesmartphone/frameworkd_git.bb b/recipes/freesmartphone/frameworkd_git.bb index 3d72d8f555..c1516d0f32 100644 --- a/recipes/freesmartphone/frameworkd_git.bb +++ b/recipes/freesmartphone/frameworkd_git.bb @@ -4,7 +4,7 @@ AUTHOR = "FreeSmartphone.Org Development Team" SECTION = "console/network" DEPENDS = "python-cython-native python-pyrex-native" LICENSE = "GPL" -SRCREV = "7ee718456af30a7ab1069c4fad0fd33be319c2c8" +SRCREV = "8f618948c4c74853f28b773cdc74ceefa1fb6899" PV = "0.9.5.9+gitr${SRCPV}" PR = "r4" PE = "1" diff --git a/recipes/freesmartphone/fso-specs_git.bb b/recipes/freesmartphone/fso-specs_git.bb index 345422a3e0..a607f03977 100644 --- a/recipes/freesmartphone/fso-specs_git.bb +++ b/recipes/freesmartphone/fso-specs_git.bb @@ -4,8 +4,8 @@ HOMEPAGE = "http://docs.freesmartphone.org" LICENSE = "BSD" DEPENDS = "libxslt-native" SECTION = "devel/specifications" -SRCREV = "5e5c9b52e7525085f0d8601861d712f05523ad0a" -PV = "2010.05.11.2+gitr${SRCPV}" +SRCREV = "6e6f1a6efc57f52987f0e6cdf86c78abe7c55f25" +PV = "2010.05.29.1+gitr${SRCPV}" PE = "1" PR = "r1" diff --git a/recipes/freesmartphone/libframeworkd-glib_git.bb b/recipes/freesmartphone/libframeworkd-glib_git.bb index 15ef006273..3dacc364d4 100644 --- a/recipes/freesmartphone/libframeworkd-glib_git.bb +++ b/recipes/freesmartphone/libframeworkd-glib_git.bb @@ -2,7 +2,7 @@ DESCRIPTION = "freesmartphone.org API glib wrapper" LICENSE = "LGPL" SECTION = "devel" DEPENDS = "dbus-glib" -SRCREV = "43f25d7343145111e70dceaa610decab84366cbb" +SRCREV = "95a266d3ffa17352792d59d16ff8671898d445a2" PV = "0.0.1+gitr${SRCPV}" PE = "1" PR = "r0" diff --git a/recipes/freesmartphone/libfso-glib_git.bb b/recipes/freesmartphone/libfso-glib_git.bb index ecfc9dcd34..31b6f4f07c 100644 --- a/recipes/freesmartphone/libfso-glib_git.bb +++ b/recipes/freesmartphone/libfso-glib_git.bb @@ -3,8 +3,8 @@ AUTHOR = "Didier 'Ptitjes" LICENSE = "LGPL" SECTION = "devel" DEPENDS = "vala-dbus-binding-tool-native dbus-glib glib-2.0 fso-specs" -SRCREV = "5cda3952855d6c4273929449339b04509387bdd2" -PV = "2010.05.11.2+gitr${SRCPV}" +SRCREV = "52d81d44133bf8fe07757e9076007db9e8d8d932" +PV = "2010.05.29.1+gitr${SRCPV}" PE = "1" PR = "r1" diff --git a/recipes/freesmartphone/libfsobasics_git.bb b/recipes/freesmartphone/libfsobasics_git.bb index 3512c13797..42b2ed7f48 100644 --- a/recipes/freesmartphone/libfsobasics_git.bb +++ b/recipes/freesmartphone/libfsobasics_git.bb @@ -3,6 +3,6 @@ require cornucopia.inc |
