bump to gbs 0.13
authorZhang Qiang <qiang.z.zhang@intel.com>
Fri, 18 Jan 2013 22:07:35 +0000 (17:07 -0500)
committerZhang Qiang <qiang.z.zhang@intel.com>
Thu, 24 Jan 2013 12:32:39 +0000 (07:32 -0500)
Update dependency:
     git-buildpackage-rpm (>= 0.6.0git20121124-tizen20130123),
     depanneur (>= 0.4),

Update changelog

Change-Id: I49404cf5e3db13783f8c021eec713517819ba9a9

debian/changelog
debian/control
distfiles/gbs.spec
docs/RELEASE_NOTES
gitbuildsys/__init__.py
packaging/gbs.changes
packaging/gbs.dsc

index 238683a6584519564aacfc4e5935da4292477d5b..ce73f209025536631d544ae9cb5ff8967590fd2c 100644 (file)
@@ -1,3 +1,26 @@
+gbs (0.13-1) unstable; urgency=high
+  * upgrade to gbs v0.13, which contains the following bug fixing & features:
+    * tab completion support
+    * five new import options support:
+      * --filters: files to filter out during import
+      * --allow-same-version: allow to import already imported version
+      * --native: A dist native package, no separate upstream
+      * --upstream-vcs-tag: upstream VCS tag add to the merge commit
+    * --no-patch-export support for export/remotebuild/build modules
+    * Re-orgnize and group gbs help information
+    * supported arches clean up
+    * new subcommands 'clone/pull' added, which can be used for developers
+      to clone tizen source code, and upstream/pristine-tar branches can be
+      tracked automatically
+    * add --tag option for submit module to support group submission
+    * bug fix:
+      - traceback occurs if specified outdir has no write permission
+      - fix misleading error handling while no spec file found
+      - break link structure if package is a link in OBS
+      - crash if specify a non-exist specfile with --spec option
+
+ -- Qiang Zhang <qiang.z.zhang@intel.com>  Fri, 18 Jan 2013 10:56:15 +0800
+
 gbs (0.12) unstable; urgency=high
   * upgrade to gbs v0.12, which contains the following bug fixing & features:
     * support build rpm packages for incremental build
index c5d207cad645f6896fae81eccf0051e2654b5b0f..e0e0d2a2958310ea59d8bafcba6b1df66472a329 100644 (file)
@@ -14,8 +14,8 @@ Depends: ${misc:Depends}, ${python:Depends},
  git-core,
  sudo,
  osc (>= 0.136.0),
- git-buildpackage-rpm (>= 0.6.0git20120822-tizen20121123),
- depanneur (>= 0.3),
+ git-buildpackage-rpm (>= 0.6.0git20121124-tizen20130123),
+ depanneur (>= 0.4),
  pristine-tar
 Description: The command line tools for Tizen package developers
   The command line tools for Tizen package developers will
index dad3112b1cbed9b140b4614443010af691fa38bb..de51a3201d0cd997d5daa1b9e060c5596b0bd590 100644 (file)
@@ -1,7 +1,7 @@
 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 Name:       gbs
 Summary:    The command line tools for Tizen package developers
-Version:    0.12
+Version:    0.13
 Release:    1
 Group:      Development/Tools
 License:    GPLv2
@@ -13,8 +13,8 @@ Requires:   python-pycurl
 Requires:   git-core
 Requires:   sudo
 Requires:   osc >= 0.136.0
-Requires:   tizen-gbp-rpm >= 20121123
-Requires:   depanneur >= 0.3
+Requires:   tizen-gbp-rpm >= 20130123
+Requires:   depanneur >= 0.4
 Requires:   pristine-tar
 
 BuildRequires:  python-devel
index 1a146c0c12b367d3be69dd7d91edcc895392a80a..aeed0026f91b0c40616eee3461940220a79157cc 100644 (file)
@@ -1,3 +1,44 @@
+Release notes for gbs 0.13
+==========================
+
+- Release Date: 2013-01-30
+
+- new features added:
+    - add --tag option for submit module to support group submission
+    - tab completion support
+    - five new import options support:
+      * --filters: files to filter out during import
+      * --allow-same-version: allow to import already imported version
+      * --native: A dist native package, no separate upstream
+      * --upstream-vcs-tag: upstream VCS tag add to the merge commit
+    - --no-patch-export support for export/remotebuild/build modules
+    - Re-orgnize and group gbs help information
+    - supported arches clean up
+    - new subcommands 'clone/pull' added, which can be used for developers
+      to clone tizen source code, and upstream/pristine-tar branches can be
+      tracked automatically
+
+- bug fixes:
+    - traceback occurs if specified outdir has no write permission
+    - fix misleading error handling while no spec file found
+    - break link structure if package is a link in OBS
+    - crash if specify a non-exist specfile with --spec option
+
+- 5 other changes:
+  1. add --merge option to replace --no-merge for gbs import, and not-merging is the default behavior
+  2. modify changelog order to follow default order of git log
+  3. show correct RPM/SRPM output directory for gbs build
+  4. give warning if build arch not compatible
+  5. add reST format document: docs/GBS.rst, which can be converted to html, man, and pdf formats.
+
+- Dependencies
+  - git-core
+  - python >= 2.7
+  - depanneur >= 0.4
+  - osc >= 0.136.0
+  - pristine-tar
+  - git-buildpackage
+
 Release notes for gbs 0.12
 ==========================
 
index 044343ac17901e4bc976332b929b4383f48db31a..dfd3979cd65fdabf4f7b2cb78c6132e786486426 100644 (file)
@@ -20,4 +20,4 @@
 module for gbs tool
 """
 
-__version__ = "0.12"
+__version__ = "0.13"
index 400db3b218cfe35e4da1d3168747d7362fade684..5382a41befa159da78135484d44493f2a6d02568 100644 (file)
@@ -1,3 +1,24 @@
+* Wed Jan 23 2013 Qiang Zhang  <qiang.z.zhang@intel.com> - 0.13
+  * upgrade to gbs v0.13, which contains the following bug fixing & features:
+    * tab completion support
+    * five new import options support:
+      * --filters: files to filter out during import
+      * --allow-same-version: allow to import already imported version
+      * --native: A dist native package, no separate upstream
+      * --upstream-vcs-tag: upstream VCS tag add to the merge commit
+    * --no-patch-export support for export/remotebuild/build modules
+    * Re-orgnize and group gbs help information
+    * supported arches clean up
+    * new subcommands 'clone/pull' added, which can be used for developers
+      to clone tizen source code, and upstream/pristine-tar branches can be
+      tracked automatically
+    * add --tag option for submit module to support group submission
+    * bug fix:
+      - traceback occurs if specified outdir has no write permission
+      - fix misleading error handling while no spec file found
+      - break link structure if package is a link in OBS
+      - crash if specify a non-exist specfile with --spec option
+
 * Mon Nov 26 12 2012 Qiang Zhang  <qiang.z.zhang@intel.com> - 0.12
   * upgrade to gbs v0.12, which contains the following bug fixing & features:
     * support build rpm packages for incremental build
index c8acec1f035c82d3b0c455840f899f2acb643607..502cfbdf365e04b6dc824b08cbf154b8492dfda3 100644 (file)
@@ -1,10 +1,10 @@
 Format: 1.0
 Source: gbs
-Version: 0.12
+Version: 0.13
 Binary: gbs
 Maintainer: Jian-feng Ding <jian-feng.ding@intel.com>
 Architecture: all
 Standards-Version: 3.7.1
 Build-Depends: debhelper (>= 4.0.0), python-dev
 Files:
- 574996dfeeb001e70f20239a0e621daf 2457861 gbs_0.12.tar.gz
+ 574996dfeeb001e70f20239a0e621daf 2457861 gbs_0.13.tar.gz