remove the unnecessary protocol parameters

It's not necessary to specify the protocol parameter when it's the
default protocol for the fetcher, e.g. the default protocol for
git fetcher it git, "protocol=git" isn't needed.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Jackie Huang
2013-09-02 02:54:11 +00:00
committed by Martin Jansa
parent 9e4b28aa92
commit b79176adb3
43 changed files with 43 additions and 43 deletions

View File

@@ -70,7 +70,7 @@ SRCREV = "a7b3a9339106aaba72195b693dfeaa98f194e0d5"
GIT_REPO = "gnuradio.git"
GIT_BRANCH = "master"
SRC_URI = "git://git.gnuradio.org/${GIT_REPO};branch=${GIT_BRANCH};protocol=git \
SRC_URI = "git://git.gnuradio.org/${GIT_REPO};branch=${GIT_BRANCH} \
file://0001-gr-trellis-Kill-docs-hard.patch \
"

View File

@@ -2,7 +2,7 @@ DESCRIPTION = "This small package provides a few command line tools for Linux Ph
HOMEPAGE = ""
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
SRC_URI = "git://gitorious.org/meego-cellular/phonet-utils.git;branch=master;protocol=git"
SRC_URI = "git://gitorious.org/meego-cellular/phonet-utils.git;branch=master"
PR = "r2"
S = "${WORKDIR}/git"
SRCREV = "4acfa720fd37d178a048fc2be17180137d4a70ea"

View File

@@ -9,7 +9,7 @@ PV = "0.1.3+gitr${SRCPV}"
PR = "r1"
SRCREV = "a1dab25e73896c90c98227ac8055f227b830d512"
SRC_URI = "git://home.horsten.com/soft66;protocol=git \
SRC_URI = "git://home.horsten.com/soft66 \
file://fix-ar.patch"
S = "${WORKDIR}/git"

View File

@@ -3,7 +3,7 @@ require uhd.inc
PV = "3.5.3"
PR = "${INC_PR}.0"
SRC_URI = "git://ettus.sourcerepo.com/ettus/uhd.git;branch=maint;protocol=git \
SRC_URI = "git://ettus.sourcerepo.com/ettus/uhd.git;branch=maint \
file://0001-use-uint8_t-from-boost-namespace.patch;striplevel=2 \
"
S = "${WORKDIR}/git/host"

View File

@@ -8,7 +8,7 @@ PR = "r1"
ASNEEDED_pn-dbus-daemon-proxy = ""
SRC_URI = "git://git.collabora.co.uk/git/user/alban/dbus-daemon-proxy;protocol=git"
SRC_URI = "git://git.collabora.co.uk/git/user/alban/dbus-daemon-proxy"
S = "${WORKDIR}/git"
do_compile() {

View File

@@ -9,7 +9,7 @@ SECTION = "base"
SRCREV = "900d203aa9e41288545368ea40da0bee89f7907f"
LIC_FILES_CHKSUM = "file://LICENSE;md5=f12611e65e064515ce264249b2bdea98"
SRC_URI = "git://git.concurrencykit.org/ck.git;protocol=git \
SRC_URI = "git://git.concurrencykit.org/ck.git \
file://cross.patch \
"

View File

@@ -15,7 +15,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
SRCREV = "5fba3d42f126ce13333fb7d0412d729b753ee5a4"
BRANCH ?= "master"
SRC_URI = "git://arago-project.org/git/projects/test-automation/ltp-ddt.git;protocol=git;branch=${BRANCH}"
SRC_URI = "git://arago-project.org/git/projects/test-automation/ltp-ddt.git;branch=${BRANCH}"
S = "${WORKDIR}/git"

View File

@@ -5,5 +5,5 @@ DEFAULT_PREFERENCE = "-1"
SRCREV = "53d56816a4154e3467f07bd22f4e27d166e3e3f3"
PV = "0.4.0+gitr${SRCPV}"
SRC_URI = "${FREESMARTPHONE_GIT}/vala-dbus-binding-tool.git;protocol=git;branch=master"
SRC_URI = "${FREESMARTPHONE_GIT}/vala-dbus-binding-tool.git;branch=master"
S = "${WORKDIR}/git"

View File

@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "libsocketcan"
TAG = "canutils-${PV}"
SRC_URI = "git://git.pengutronix.de/git/tools/canutils.git;protocol=git;tag=${TAG} \
SRC_URI = "git://git.pengutronix.de/git/tools/canutils.git;tag=${TAG} \
"
S = "${WORKDIR}/git"

View File

@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://src/libsocketcan.c;beginline=3;endline=17;md5=97e38ad
SRCREV = "3a2cec63a4e6212cc63d21008453bd799cfe8774"
SRC_URI = "git://git.pengutronix.de/git/tools/libsocketcan.git;protocol=git \
SRC_URI = "git://git.pengutronix.de/git/tools/libsocketcan.git \
"
S = "${WORKDIR}/git"

View File

@@ -8,7 +8,7 @@ PV = "0.3"
PR = "r1"
SRCREV = "3098e4ad8aa07ad90b2a4413c0abeb6dcd8f1233"
SRC_URI = "git://github.com/lucasdemarchi/dietsplash.git;protocol=git"
SRC_URI = "git://github.com/lucasdemarchi/dietsplash.git"
inherit autotools

View File

@@ -3,7 +3,7 @@ HOMEPAGE = "http://blog.lxde.org/?p=531"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
SRC_URI = " \
git://lxde.git.sourceforge.net/gitroot/lxde/${BPN};protocol=git;branch=master \
git://lxde.git.sourceforge.net/gitroot/lxde/${BPN};branch=master \
file://lxdm.conf \
file://lxdm-pam \
file://lxdm-pam-debug \

View File

@@ -8,7 +8,7 @@ SRCREV = "21e6e2de1f0062f949fcc52d0b4559dfa3246e0e"
PV = "0.1+gitr${SRCPV}"
PR = "r3"
SRC_URI = "git://github.com/android/platform_frameworks_base.git;protocol=git;branch=master"
SRC_URI = "git://github.com/android/platform_frameworks_base.git;branch=master"
S = "${WORKDIR}/git/data/fonts"

View File

@@ -9,7 +9,7 @@ PE = "2"
PV = "1.0.0+gitr${SRCPV}"
PR = "${INC_PR}.4"
SRC_URI = "git://git.openmoko.org/git/xf86-video-glamo.git;protocol=git;branch=master \
SRC_URI = "git://git.openmoko.org/git/xf86-video-glamo.git;branch=master \
file://0001-glamo-kms-driver-drop-unused-xf86_config.patch \
file://0001-fix-build-with-KMS-disabled.patch \
file://0003-glamo-driver-adapt-to-xserver-0.13-video-API.patch \

View File

@@ -13,7 +13,7 @@ RCONFLICTS_${PN} = "mplayer"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504"
SRC_URI = "git://repo.or.cz/mplayer.git;protocol=git;branch=master \
SRC_URI = "git://repo.or.cz/mplayer.git;branch=master \
file://cross.compile.codec-cfg.patch \
"

View File

@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=d749e86a105281d7a44c2328acebc4b0"
DEPENDS = "linux-libc-headers"
SRC_URI = "git://git.ideasonboard.org/media-ctl.git;protocol=git"
SRC_URI = "git://git.ideasonboard.org/media-ctl.git"
SRCREV = "a6ec4a37028952ffd6e62eb52648cf66248eb519"
PV = "0.0.1"

View File

@@ -12,7 +12,7 @@ inherit autotools gettext
# libv4l was absorbed into this, let OE know that
PROVIDES = "libv4l"
SRC_URI = "git://linuxtv.org/v4l-utils.git;protocol=git \
SRC_URI = "git://linuxtv.org/v4l-utils.git \
file://openat.patch \
"
# 54f16ca8183dd8ae8bf4ccc07949795aff0301f5 -> v0.8.8 tag

View File

@@ -2,7 +2,7 @@ DESCRIPTION = "Yet Another V4L2 Test Application"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
SRC_URI = "git://git.ideasonboard.org/yavta.git;protocol=git \
SRC_URI = "git://git.ideasonboard.org/yavta.git \
file://0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch"
SRCREV = "82ff2efdb9787737b9f21b6f4759f077c827b238"

View File

@@ -14,5 +14,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
file://src/main.c;beginline=1;endline=25;md5=3fe64e27e61b289b77383a54a982cbdd \
file://gypsy/gypsy-time.h;beginline=1;endline=24;md5=06432ea19a7b6607428d04d9dadc37fd"
SRC_URI = "git://anongit.freedesktop.org/gypsy;protocol=git \
SRC_URI = "git://anongit.freedesktop.org/gypsy \
file://fixups.patch"

View File

@@ -7,6 +7,6 @@ PV = "1.7.3+git${SRCPV}"
inherit autotools
SRCREV = "93788682a4749d8b577ce6549d6d3dd6df166ba4"
SRC_URI = "git://github.com/bmc/daemonize.git;protocol=git"
SRC_URI = "git://github.com/bmc/daemonize.git"
S = "${WORKDIR}/git"

View File

@@ -9,7 +9,7 @@ PR = "r3"
# The github repository provides a cmake and pkg-config integration
SRCREV = "7a43a3655ceffa9f0f7fd68262d8d478c6d0d0af"
SRC_URI = "git://github.com/OSSystems/inih.git;protocol=git"
SRC_URI = "git://github.com/OSSystems/inih.git"
S = "${WORKDIR}/git"

View File

@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1"
DEPENDS = "udev"
SRCREV = "de6258940960443038b4c1651dfda3620075e870"
SRC_URI = "git://git.0pointer.de/libatasmart.git;protocol=git"
SRC_URI = "git://git.0pointer.de/libatasmart.git"
S = "${WORKDIR}/git"

View File

@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM="file://COPYING;md5=4fbd65380cdd255951079008b364516c"
PV = "1.0.3+git${SRCPV}"
SRCREV = "16b899645d32012cc94cc9232f64d4ddaaf0b795"
SRC_URI = "git://anonscm.debian.org/lockdev/lockdev.git;protocol=git"
SRC_URI = "git://anonscm.debian.org/lockdev/lockdev.git"
S = "${WORKDIR}/git"

View File

@@ -7,7 +7,7 @@ SRCREV = "00dbec2636ae0385ad028587e20e446272ff97ec"
PV = "1.1+gitr${SRCPV}"
PR = "r0"
SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia;protocol=git"
SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia"
S = "${WORKDIR}/git/tools/serial_forward"
inherit autotools native

View File

@@ -7,7 +7,7 @@ SRCREV = "00dbec2636ae0385ad028587e20e446272ff97ec"
PV = "1.1+gitr${SRCPV}"
PR = "r0"
SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia;protocol=git"
SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia"
S = "${WORKDIR}/git/tools/serial_forward"
inherit autotools

View File

@@ -10,7 +10,7 @@ PR = "r1"
inherit autotools perlnative vala
SRC_URI = "${FREESMARTPHONE_GIT}/vala-terminal.git;protocol=git;branch=master"
SRC_URI = "${FREESMARTPHONE_GIT}/vala-terminal.git;branch=master"
S = "${WORKDIR}/git"
RDEPENDS_${PN} = "ttf-liberation-mono"