All of lore.kernel.org
 help / color / mirror / Atom feed
From: <jackie.huang@windriver.com>
To: <meta-virtualization@yoctoproject.org>
Subject: [PATCH 00/14] clients: version upgrades and add a helper meta data
Date: Wed, 15 Apr 2015 13:58:23 +0800	[thread overview]
Message-ID: <cover.1429074850.git.jackie.huang@windriver.com> (raw)

From: Jackie Huang <jackie.huang@windriver.com>

Tested with:
1) git clone git://git.yoctoproject.org/auto-upgrade-helper

2) Add maintainers.inc
$ cat conf/maintainers.inc 
RECIPE_MAINTAINER = "Jackie Huang <jackie.huang@windriver.com>"

3) Add upgrade-helper.conf
$ cat upgrade-helper.conf
[maintainer_override]

[settings]
smtp=smtp-na.wrs.com
from=upgrade.helper@wrs.com
status_recipients=jackie.huang@windriver.com
clean_sstate=yes
clean_tmp=yes
drop_previous_commits=yes
machines=qemux86 qemux86-64 qemuarm qemumips qemuppc

4) Add the following into local.conf:
INHERIT =+ "distrodata"
require conf/distro/include/recipe_color.inc
require conf/distro/include/distro_alias.inc
require conf/maintainers.inc
require conf/distro/include/upstream_tracking.inc
require conf/distro/include/package_regex_openstack.inc

5) run the script upgradehelper.py:
$ for i in `cat all_client.txt`; do echo "== $i =="; \
  /path/to/upgradehelper.py -a -c upgrade-helper.conf $i; \
done
--
The following changes since commit 274cf835e275e8ec2f1a4260bd4437b5cdcaed92:

  python-oslotest: correct the SRC_URI and add bash to rdepends (2015-04-08 10:36:55 -0400)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/r_update_op_clients_150415_2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/r_update_op_clients_150415_2

Jackie Huang (14):
  Add helper meta data to find upstream versions correctly
  rest-client: upgrade to 1.7.3
  python-barbicanclient: upgrade to 3.0.3
  python-ceilometerclient: fix the version to 1.0.13
  python-cephclient: upgrade to 0.1.0.5
  python-glanceclient: upgrade to 0.17.0
  python-heatclient: upgrade to 0.4.0
  python-keystoneclient: upgrade to 1.3.0
  python-novaclient: upgrade to 2.23.0
  python-neutronclient: upgrade to 2.4.0
  python-openstackclient: upgrade to 1.0.3
  python-saharaclient: upgrade to 0.8.0
  python-swiftclient: upgrade to 2.4.0
  python-troveclient: upgrade to 1.0.9

 .../distro/include/package_regex_openstack.inc     | 42 ++++++++++++++++++++++
 .../python/python-barbicanclient_git.bb            |  4 +--
 .../python/python-ceilometerclient_git.bb          |  4 +--
 ...ent_0.1.0.4.bb => python-cephclient_0.1.0.5.bb} |  6 ++--
 .../python/python-glanceclient_git.bb              |  4 +--
 .../python/python-heatclient_git.bb                |  4 +--
 .../python/python-keystoneclient_git.bb            |  4 +--
 .../python/python-neutronclient_git.bb             |  4 +--
 .../python/python-novaclient_git.bb                |  4 +--
 ...nt_1.0.2.bb => python-openstackclient_1.0.3.bb} |  5 ++-
 .../python/python-saharaclient_git.bb              |  4 +--
 .../python/python-swiftclient_git.bb               |  4 +--
 .../python/python-troveclient_git.bb               |  4 +--
 .../recipes-devtools/ruby/rest-client_git.bb       |  6 ++--
 14 files changed, 70 insertions(+), 29 deletions(-)
 create mode 100644 meta-openstack/conf/distro/include/package_regex_openstack.inc
 rename meta-openstack/recipes-devtools/python/{python-cephclient_0.1.0.4.bb => python-cephclient_0.1.0.5.bb} (78%)
 rename meta-openstack/recipes-devtools/python/{python-openstackclient_1.0.2.bb => python-openstackclient_1.0.3.bb} (73%)

-- 
1.9.1



             reply	other threads:[~2015-04-15  5:58 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-15  5:58 jackie.huang [this message]
2015-04-15  5:58 ` [PATCH 01/14] Add helper meta data to find upstream versions correctly jackie.huang
2015-04-15  5:58 ` [PATCH 02/14] rest-client: upgrade to 1.7.3 jackie.huang
2015-04-15  5:58 ` [PATCH 03/14] python-barbicanclient: upgrade to 3.0.3 jackie.huang
2015-04-15  5:58 ` [PATCH 04/14] python-ceilometerclient: fix the version to 1.0.13 jackie.huang
2015-04-15  5:58 ` [PATCH 05/14] python-cephclient: upgrade to 0.1.0.5 jackie.huang
2015-04-15  5:58 ` [PATCH 06/14] python-glanceclient: upgrade to 0.17.0 jackie.huang
2015-04-15  5:58 ` [PATCH 07/14] python-heatclient: upgrade to 0.4.0 jackie.huang
2015-04-15  5:58 ` [PATCH 08/14] python-keystoneclient: upgrade to 1.3.0 jackie.huang
2015-04-15  5:58 ` [PATCH 09/14] python-novaclient: upgrade to 2.23.0 jackie.huang
2015-04-15  6:01 ` [PATCH 10/14] python-neutronclient: upgrade to 2.4.0 jackie.huang
2015-04-15  6:01 ` [PATCH 11/14] python-openstackclient: upgrade to 1.0.3 jackie.huang
2015-04-15  6:01 ` [PATCH 12/14] python-saharaclient: upgrade to 0.8.0 jackie.huang
2015-04-15  6:01 ` [PATCH 13/14] python-swiftclient: upgrade to 2.4.0 jackie.huang
2015-04-15  6:01 ` [PATCH 14/14] python-troveclient: upgrade to 1.0.9 jackie.huang
2015-04-16 19:14 ` [PATCH 00/14] clients: version upgrades and add a helper meta data Bruce Ashfield

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.1429074850.git.jackie.huang@windriver.com \
    --to=jackie.huang@windriver.com \
    --cc=meta-virtualization@yoctoproject.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.