Update Readme for new release
authorZhang Qiang <qiang.z.zhang@intel.com>
Mon, 13 Feb 2012 08:11:49 +0000 (16:11 +0800)
committerZhang Qiang <qiang.z.zhang@intel.com>
Mon, 13 Feb 2012 08:17:06 +0000 (16:17 +0800)
Makefile
README.rst
distfiles/gbs.spec

index e5f472c..dd2b859 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
 VERSION = $(shell cat VERSION)
 TAGVER = $(shell cat VERSION | sed -e "s/\([0-9\.]*\).*/\1/")
+PKGNAME = gbs
 
 ifeq ($(VERSION), $(TAGVER))
        TAG = $(TAGVER)
@@ -17,13 +18,21 @@ all:
 tag:
        git tag $(VERSION)
 
-dist-bz2:
-       git archive --format=tar --prefix=gbs-$(TAGVER)/ $(TAG) | \
-               bzip2 > gbs-$(TAGVER).tar.bz2
+dist-common: man
+       git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | tar xpf -
+       git show $(TAG) --oneline | head -1 > $(PKGNAME)-$(TAGVER)/commit-id
+       mkdir $(PKGNAME)-$(TAGVER)/doc; mv mic.1 $(PKGNAME)-$(TAGVER)/doc
 
-dist-gz:
-       git archive --format=tar --prefix=gbs-$(TAGVER)/ $(TAG) | \
-               gzip > gbs-$(TAGVER).tar.gz
+dist-bz2: dist-common
+       tar jcpf $(PKGNAME)-$(TAGVER).tar.bz2 $(PKGNAME)-$(TAGVER)
+       rm -rf $(PKGNAME)-$(TAGVER)
+
+dist-gz: dist-common
+       tar zcpf $(PKGNAME)-$(TAGVER).tar.gz $(PKGNAME)-$(TAGVER)
+       rm -rf $(PKGNAME)-$(TAGVER)
+
+man: README.rst
+       rst2man $< >mic.1
 
 install: all
        python setup.py install --prefix=${PREFIX}
index b3899f7..233d521 100644 (file)
 gbs
 ===
 ---------------------------------------------------------------------
-git-build-system: the command line tools for Tizen package developers
+git build system
 ---------------------------------------------------------------------
 :Copyright: GPLv2
 :Manual section: 1
 
 Overview
 ========
-git-build-system: the command line tools for Tizen package developers
+git-build-system is a command line tools for Tizen package developers
+
+* gbs build : build rpm package from git repository on OBS
+* gbs local-build : build rpm package from git repository at local
+* gbs import : import source tarball or source rpm to git repository
+* gbs submit : maintain the changelogs file, sanity check etc.
+
+It supports native running in many mainstream Linux distributions, including:
+
+* Fedora (14 and above)
+* openSUSE (11.3 and above)
+* Ubuntu (10.04 and above)
+* Debian (5.0 and above)
+
+Installation
+============
+
+Repositories
+------------
+So far we support `gbs` binary rpms/debs for many popular Linux distributions,
+please see the following list:
+
+* Debian 6.0
+* Fedora 14
+* Fedora 15
+* Fedora 16
+* openSUSE 11.3
+* openSUSE 11.4
+* openSUSE 12.1
+* Ubuntu 10.04
+* Ubuntu 10.10
+* Ubuntu 11.04
+* Ubuntu 11.10
+
+And you can get the corresponding repository on
+
+ `<http://download.tizen.org/live/Tools:/Building:/Devel>`_
+
+If there is no the distribution you want in the list, please install it from
+source code.
+
+Binary Installation
+-------------------
+
+Fedora Installation
+~~~~~~~~~~~~~~~~~~~
+1. Add Tools Building repo:
+::
+
+  $ sudo cat <<REPO > /etc/yum.repos.d/tools-building.repo
+  > [tools-building]
+  > name=Tools for Fedora
+  > baseurl=http://download.tizen.org/live/Tools:/Building:/Devel/Fedora_<VERSION>
+  > enabled=1
+  > gpgcheck=0
+  > REPO
+
+2. Update repolist:
+::
+
+  $ sudo yum makecache
+
+3. Install gbs:
+::
+
+  $ sudo yum install gbs
+
+openSUSE Installation
+~~~~~~~~~~~~~~~~~~~~~
+1. Add Tools Building repo:
+::
+
+  $ sudo zypper addrepo http://download.tizen.org/live/Tools:/Building:/Devel/openSUSE_<VERSION>/ tools-building
+
+2. Update repolist:
+::
+
+  $ sudo zypper refresh
+
+3. Install gbs:
+::
+
+  $ sudo zypper install gbs
+
+Ubuntu/Debian Installation
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+1. Append repo source:
+::
+
+  $ sudo cat <<REPO >> /etc/apt-sources.list
+  > deb http://download.tizen.org/live/Tools:/Building:/Devel/<Ubuntu/Debian>_<VERSION>/ /
+  > REPO
+
+2. Update repolist:
+::
+
+  $ sudo apt-get update
+
+3. Install gbs:
+::
+
+  $ sudo apt-get install gbs
+
+Source Installation
+-------------------
+Gbs source code is managed by Gerrit in tizen staging zone(temporarily), you
+need an account to access it.
+
+Clone the source tree by:
+::
+
+  $ git clone ssh://<user_name>@review.stg.tizen.org:29418/gbs
+
+*Tips*: You need login the Gerrit and upload you public SSH key first
+and got your proxy setup.
+
+Then using the following commands to install gbs:
+::
+
+  $ cd gbs
+  $ sudo make install
+
+
+Configuration file
+==================
+At the first time to run the gbs, it will prompt you to input your user_name
+and password. Or edit the configuration file by yourself.  Just make sure it
+looks like as below:
+::
+
+  [general]
+  ; general settings
+  tmpdir = /var/tmp
+  [build]
+  ; settings for build subcommand
+  build_server = <OBS API URL>
+  user = <USER_NAME>
+  passwdx = <PASSWORD encoded in base64 string>
+
+In this configuration file, there are two sections: [common] is for general
+setting, and [build] is for the options of gbs build.
+
+In the [build] section, the following values can be specified:
+
+build_server
+    OBS API url, which point to remote OBS.
+user
+    OBS account user name
+passwdx
+    encoded OBS account user passwd
+
+Usages
+======
+It's recommended to use `--help` or `help <subcmd>` to get the help message,
+for the tool is more or less self-documented.
+
+Running 'gbs build'
+--------------------
+
+Subcommand `build` is used to push local git code to remote obs build server
+to build. The usage of subcommand `build` can be avaliable using `gbs build --help`
+::
+
+  build (bl): test building for current pkg
+
+  Usage:
+      gbs build [options] [OBS_project]
+
+  Options:
+      -h, --help          show this help message and exit
+      -B BASE_OBSPRJ, --base-obsprj=BASE_OBSPRJ
+                          Base OBS project being used to branch from, use
+                          "Trunk" if not specified
+      -T TARGET_OBSPRJ, --target-obsprj=TARGET_OBSPRJ
+                          OBS target project being used to build package, use
+                          "home:<userid>:gbs:Trunk" if not specified
+
+Before running gbs build, you need to prepare a package git repository first,
+then goto the root directory of git repository, run gbs build as follows:
+::
+
+  $ gbs build
+  $ gbs build -B Test
+  $ gbs build -B Test -T home:<userid>:gbs
index 77cd955..dd3b2bf 100644 (file)
@@ -42,6 +42,8 @@ rm -rf $RPM_BUILD_ROOT
 %{__python} setup.py install --root=$RPM_BUILD_ROOT -O1
 %endif
 
+mkdir -p %{buildroot}/%{_prefix}/share/man/man1
+install -m644 doc/mic.1 %{buildroot}/%{_prefix}/share/man/man1
 
 %files
 %defattr(-,root,root,-)