From: <jackie.huang@windriver.com>
To: <openembedded-devel@lists.openembedded.org>
Subject: [PATCH 0/1] remove the unnecessary protocol parameters
Date: Mon, 2 Sep 2013 10:54:10 +0800 [thread overview]
Message-ID: <cover.1378089935.git.jackie.huang@windriver.com> (raw)
From: Jackie Huang <jackie.huang@windriver.com>
What I did to remove these:
I checked that we should remove those using default protocol git for git fetcher:
$ find meta* \( -name *.bb -o -name *.inc -o -name *.bbclass \) -exec sed -n 's/.*"\(\w*:\/\/\).*\(;protocol=\w*\)/\1 \2/p' {} \; | sort | uniq
git:// ;protocol=git \
git:// ;protocol=git"
git:// ;protocol=git;branch=${BRANCH}"
git:// ;protocol=git;branch=gnome-2-32"
git:// ;protocol=git;branch=master \
git:// ;protocol=git;branch=master"
git:// ;protocol=git;tag=ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f \
git:// ;protocol=git;tag=${TAG} \
git:// ;protocol=http"
git:// ;protocol=http;branch=master \
git:// ;protocol=http;branch=master"
hg:// ;protocol=http"
hg:// ;protocol=https;module=vim"
svn:// ;protocol=http \
svn:// ;protocol=http"
svn:// ;protocol=https \
svn:// ;protocol=https"
svn:// ;protocol=https;module=trunk"
To remove:
$ find meta* \( -name *.bb -o -name *.inc -o -name *.bbclass \) -exec sed -i 's/;protocol=git//' {} \;
What left with protocol parameter after removal is:
$ find meta* \( -name *.bb -o -name *.inc -o -name *.bbclass \) -exec sed -n 's/.*"\(\w*:\/\/\).*\(;protocol=\w*\)/\1 \2/p' {} \; | sort | uniq
git:// ;protocol=http"
git:// ;protocol=http;branch=master \
git:// ;protocol=http;branch=master"
hg:// ;protocol=http"
hg:// ;protocol=https;module=vim"
svn:// ;protocol=http \
svn:// ;protocol=http"
svn:// ;protocol=https \
svn:// ;protocol=https"
svn:// ;protocol=https;module=trunk"
Martin will do the "bitbake world" test.
--
The following changes since commit 72e23c12296fbc77193898c38426add58d0c2d71:
mysql5: replace with mariadb 5.1.67 and tweak (2013-08-27 16:39:31 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib jhuang0/d_remove_protocol_0902_0
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/d_remove_protocol_0902_0
Jackie Huang (1):
remove the unnecessary protocol parameters
meta-efl/recipes-efl/e17/e-tasks_git.bb | 2 +-
.../recipes-filesystems/smbnetfs/smbnetfs_git.bb | 2 +-
.../recipes-utils/f2fs-tools/f2fs-tools_1.1.0.bb | 2 +-
.../recipes-gnome/eds/evolution-data-server_git.bb | 2 +-
.../gnome-settings-daemon_2.32.1.bb | 2 +-
meta-gnome/recipes-gnome/pimlico/contacts_git.bb | 2 +-
meta-gnome/recipes-gnome/pimlico/dates_git.bb | 2 +-
meta-gnome/recipes-gnome/pimlico/tasks_git.bb | 2 +-
.../recipes-bsp/kexecboot/kexecboot-klibc_git.bb | 2 +-
.../recipes-bsp/kexecboot/kexecboot_git.bb | 2 +-
meta-initramfs/recipes-devtools/klibc/klibc.inc | 2 +-
.../recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb | 2 +-
.../recipes-mediacentre/xbmc/xbmc_git.bb | 2 +-
.../dleyna/media-service-demo_git.bb | 2 +-
meta-networking/recipes-daemons/atftp/atftp_git.bb | 2 +-
.../recipes-connectivity/gnuradio/gnuradio_git.bb | 2 +-
.../phonet-utils/phonet-utils_git.bb | 2 +-
meta-oe/recipes-connectivity/soft66/soft66_git.bb | 2 +-
meta-oe/recipes-connectivity/uhd/uhd_git.bb | 2 +-
meta-oe/recipes-core/dbus/dbus-daemon-proxy_git.bb | 2 +-
.../concurrencykit/concurrencykit_git.bb | 2 +-
meta-oe/recipes-devtools/ltp-ddt/ltp-ddt_0.0.4.bb | 2 +-
.../vala-dbus-binding-tool_git.bb | 2 +-
.../recipes-extended/socketcan/canutils_4.0.6.bb | 2 +-
.../socketcan/libsocketcan_0.0.8.bb | 2 +-
.../recipes-graphics/dietsplash/dietsplash_git.bb | 2 +-
meta-oe/recipes-graphics/lxdm/lxdm_git.bb | 2 +-
.../recipes-graphics/ttf-fonts/ttf-droid_git.bb | 2 +-
.../xorg-driver/xf86-video-glamo_git.bb | 2 +-
meta-oe/recipes-multimedia/mplayer/mplayer2_git.bb | 2 +-
.../recipes-multimedia/v4l2apps/media-ctl_git.bb | 2 +-
.../recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb | 2 +-
meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb | 2 +-
meta-oe/recipes-navigation/gypsy/gypsy_git.bb | 2 +-
meta-oe/recipes-support/daemonize/daemonize_git.bb | 2 +-
meta-oe/recipes-support/inih/libinih_git.bb | 2 +-
.../libatasmart/libatasmart_0.19.bb | 2 +-
meta-oe/recipes-support/lockdev/lockdev_git.bb | 2 +-
.../serial-utils/pty-forward-native.bb | 2 +-
.../serial-utils/serial-forward_git.bb | 2 +-
.../vala-terminal/vala-terminal_git.bb | 2 +-
meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb | 2 +-
.../closebutton/xfce4-closebutton-plugin_git.bb | 2 +-
43 files changed, 43 insertions(+), 43 deletions(-)
--
1.7.4.1
next reply other threads:[~2013-09-02 2:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-02 2:54 jackie.huang [this message]
2013-09-02 2:54 ` [PATCH 1/1] remove the unnecessary protocol parameters jackie.huang
-- strict thread matches above, loose matches on Subject: below --
2013-08-30 1:56 [PATCH 0/1] " jackie.huang
2013-08-30 4:27 ` Randy MacLeod
2013-08-30 9:22 ` Martin Jansa
2013-09-02 2:01 ` jhuang0
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1378089935.git.jackie.huang@windriver.com \
--to=jackie.huang@windriver.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.