diff options
| -rw-r--r-- | bitbake/lib/bb/fetch/hg.py | 5 | ||||
| -rw-r--r-- | meta/packages/gaku/gaku_svn.bb | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch/hg.py b/bitbake/lib/bb/fetch/hg.py index c7d2e62c13..1cd5a8aa5c 100644 --- a/bitbake/lib/bb/fetch/hg.py +++ b/bitbake/lib/bb/fetch/hg.py | |||
| @@ -94,7 +94,10 @@ class Hg(Fetch): | |||
| 94 | if command is "fetch": | 94 | if command is "fetch": |
| 95 | cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module) | 95 | cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module) |
| 96 | elif command is "pull": | 96 | elif command is "pull": |
| 97 | cmd = "%s pull %s" % (basecmd, " ".join(options)) | 97 | # do not pass options list; limiting pull to rev causes the local |
| 98 | # repo not to contain it and immediately following "update" command | ||
| 99 | # will crash | ||
| 100 | cmd = "%s pull" % (basecmd) | ||
| 98 | elif command is "update": | 101 | elif command is "update": |
| 99 | cmd = "%s update -C %s" % (basecmd, " ".join(options)) | 102 | cmd = "%s update -C %s" % (basecmd, " ".join(options)) |
| 100 | else: | 103 | else: |
diff --git a/meta/packages/gaku/gaku_svn.bb b/meta/packages/gaku/gaku_svn.bb index 12fc545d74..66055f129b 100644 --- a/meta/packages/gaku/gaku_svn.bb +++ b/meta/packages/gaku/gaku_svn.bb | |||
| @@ -1,15 +1,20 @@ | |||
| 1 | DESCRIPTION = "Music player" | 1 | DESCRIPTION = "Music player" |
| 2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
| 3 | DEPENDS = "gtk+ gstreamer" | 3 | DEPENDS = "gtk+ gstreamer" |
| 4 | PV = "0.0+svnr${SRCREV}" | ||
| 5 | 4 | ||
| 6 | RDEPENDS = "gst-plugin-audioconvert \ | 5 | RDEPENDS = "gst-plugin-audioconvert \ |
| 7 | gst-plugin-audioresample \ | 6 | gst-plugin-audioresample \ |
| 8 | gst-plugin-alsa \ | ||
| 9 | gst-plugin-typefindfunctions \ | 7 | gst-plugin-typefindfunctions \ |
| 10 | gst-plugin-id3demux \ | ||
| 11 | gst-plugin-playbin" | 8 | gst-plugin-playbin" |
| 12 | RRECOMMENDS = "gst-plugin-mad gst-plugin-ivorbis gst-plugin-ogg" | 9 | |
| 10 | RRECOMMENDS = "gst-plugin-mad \ | ||
| 11 | gst-plugin-id3demux \ | ||
| 12 | gst-plugin-ivorbis \ | ||
| 13 | gst-plugin-alsa \ | ||
| 14 | gst-plugin-ogg" | ||
| 15 | |||
| 16 | PV = "0.0+svnr${SRCREV}" | ||
| 17 | PR = "r1" | ||
| 13 | 18 | ||
| 14 | S = "${WORKDIR}/${PN}" | 19 | S = "${WORKDIR}/${PN}" |
| 15 | 20 | ||
