GBS.rst 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632
  1. ===
  2. GBS
  3. ===
  4. ----------------
  5. git build system
  6. ----------------
  7. :Date: 2013-10-23
  8. :Copyright: GPLv2
  9. :Version: 0.19
  10. :Manual section: 1
  11. :Manual group: System
  12. Git Build System
  13. ================
  14. **GBS** (git-build-system) is a developer command line tool that supports Tizen package development. It's used to generate tarballs based on Git repositories, to do local test buildings, and to submit code to OBS (Tizen's main build service).
  15. This section contains more detailed GBS information. We recommend reading the `Setup Development Environment </documentation/developer-guide/environment-setup/>`_ pages first.
  16. - `Installation or Upgrade </documentation/developer-guide/environment-setup>`_: How to install or upgrade the tools
  17. - `Configuration File </documentation/reference/git-build-system/configuration-file>`_: How to modify the configuration for GBS
  18. - `Upstream package management </documentation/reference/git-build-system/upstream-tarball-and-patch-generation-support>`_: Describes how to manage native and non-native packages in a more proper way
  19. - `GBS Usage </documentation/reference/git-build-system/usage>`_: Describes, in more detail, how to use GBS
  20. - `FAQ </documentation/reference/git-build-system/faqs>`_: Frequently Asked Questions
  21. GBS Configuration File
  22. ======================
  23. Configuration File Overview
  24. ---------------------------
  25. GBS's configuration files are all simple INI-style files that record various choices and settings used by many GBS commands. Some settings represent purely personal preferences, others are vital to a build functioning correctly, and still others tweak command behavior a bit.
  26. **Note:** ".conf" is a common extension for an INI file, an informal standard for configuration files. INI files are simple text files with basic structure composed of sections and properties. Like many tools, GBS supports a hierarchy of configuration files, which are shown below in decreasing precedence:
  27. * **$PWD/.gbs.conf:** project-specific configuration settings that affect only the specific project in the specified working directory. These settings have the highest precedence.
  28. * **/home/<user>/.gbs.conf:** user-specific configuration settings that affect only the specified user.
  29. * **/etc/gbs.conf:** system-wide configuration settings that affect the entire system. These settings have the lowest precedence.
  30. When specifying the configuration file by using -c (--config) option, one of the above files is loaded and applied by GBS. If no configuration file can be found, GBS automatically generates ~/.gbs.conf. Here's an example of specifying one configuration file among a hierarchy of configuration files:
  31. ::
  32. $ gbs -c ~/gbs-my.conf build -A ...
  33. 2 Profile Oriented Style of Configuration
  34. -----------------------------------------
  35. This section provides information about the profile oriented style in a GBS configuration file.
  36. 2.1 Basic Structure
  37. ```````````````````
  38. The basic structure of a configuration file is composed of properties and sections.
  39. 2.1.1 Properties
  40. ''''''''''''''''
  41. The basic element contained in a configuration file is the property. Every property has a name and a value, delimited by an equal sign (=). The name appears to the left of the equal sign.
  42. 2.1.2 Sections
  43. ''''''''''''''
  44. Properties may be grouped into various sections, named according to the naming conventions specified in Section 2.2. The section name appears on a line by itself in square brackets ([ ]). All the properties after the section declaration are associated with that section. No explicit "end of section" delimiter is needed. Sections end at the next section declaration or the end of the file. Possible sections include:
  45. * **General section**
  46. The default profile is defined in the general section and has impacts on GBS behaviors on a general basis. That is, upon the modification of the general section, all GBS behaviors will be changed accordingly. Supported properties include tmpdir, upstream_branch, upstreamtag, buildroot, and packaging_dir.
  47. * **Profile section**
  48. It is recommended that you set common authentication information in the profile level, instead of repeating identical configurations in various sections. These settings can be automatically passed to OBS and repository sections. Add authentication information to a specific repository or OBS section only when it is unique to the corresponding OBS or repository. In addition, multiple profile sections can exist in one configuration file, enabling the manipulation of GBS behaviors aimed at different devices (for example, mobile phone, IVI) in a central configuration file. For more information, refer to Section 3.2. Supported properties include user, passwd, repos, and obs.
  49. * **OBS section**
  50. The OBS section specifies the configurations of the remote build server for remote build. Supported properties include url, user, and password.
  51. * **Repository section**
  52. As with the profile section, multiple repository sections can exist in one configuration file, so, various repositories can be manipulated in "batch". Properties supported include url, user, and password. User and password can be omitted if the corresponding repository does not need authentication information.
  53. 2.2 Naming Conventions
  54. ``````````````````````
  55. The section names must follow these naming conventions:
  56. * Name the general section exactly as "[general]".
  57. * Start the profile section name with "profile.". For example, [profile.tizen], [profile.IVI].
  58. * Start the OBS section name with "obs.". For example, [obs.tizen].
  59. * Start the repository section name with "repo.".
  60. Here's an example of configuration file:
  61. ::
  62. [general]
  63. #Current profile name which should match a profile section name
  64. tmpdir = /var/tmp
  65. editor =
  66. packaging_branch = master
  67. upstream_branch = upstream
  68. upstream_tag = upstream/${upstreamversion}
  69. packaging_dir = packaging
  70. profile = profile.tizen
  71. buildroot = ~/GBS-ROOT/
  72. work_dir = .
  73. [profile.tizen]
  74. obs = obs.tizen
  75. repos = repo.tizen_latest
  76. # If no buildroot for profile, the buildroot in general section will be used
  77. buildroot = ~/GBS-ROOT-profile.tizen/
  78. # Specify build conf for a specific profile by using shell-style variable references
  79. buildconf = ${work_dir}/tizen-conf/build.conf
  80. # Common authentication information
  81. user = xxxxx
  82. passwd = xxxxxx
  83. [obs.tizen]
  84. url = https://api.tizen.org
  85. user = xxxx
  86. passwd = xxxx
  87. # set default base_prj for this obs
  88. #base_prj=Tizen:Main
  89. # set default target prj for this obs, default is home:<user>:gbs:<base_prj>
  90. #target_prj=<specify target project>
  91. [repo.tizen_latest]
  92. url = http://download.tizen.org/releases/trunk/daily/ivi/latest/
  93. #Optional user and password, set if differ from profile's user and password
  94. #user =
  95. #passwd =
  96. 3 Configuration Specification
  97. -----------------------------
  98. This section provides information about the configuration specification.
  99. 3.1 Configuring Common Properties
  100. `````````````````````````````````
  101. Typical common properties include buildroot, user, and password. To configure the buildroot to override the default value "~/GBS-ROOT", use this assignment equation:
  102. ::
  103. buildroot=<New_Build_Root>
  104. The reason we need to configure the "passwd" property is because the password line will be automatically converted to an encoded version after running the GBS, as shown in this example:
  105. ::
  106. passwdx = QlpoOTFBWSZTWVyCeo8AAAKIAHJAIAAhhoGaAlNOLuSKcKEguQT1
  107. To reset the password, delete the "passwdx" line above and add this assignment equation:
  108. ::
  109. passwd=<New_Password>
  110. 3.2 Configuring Multiple Profiles
  111. `````````````````````````````````
  112. By adding configuration specifications of multiple profiles aimed at various devices in one configuration file, the GBS behaviors oriented for a variety of devices can be manipulated by using a central configuration file. Here's an example of configuring multiple profiles:
  113. ::
  114. [general]
  115. profile = profile.ivi
  116. [profile.mobile]
  117. ...
  118. [profile.ivi]
  119. ...
  120. When specifying the profile section by using -P (--profile) option, the specified profile configurations are applied by GBS. Here are examples of specifying one profile among multiple profiles:
  121. ::
  122. $ gbs build --profile=profile.mobile -A i586
  123. $ gbs remotebuild --profile=mobile
  124. 3.3 Configuring Repository
  125. ``````````````````````````
  126. This section describes how to configure the repository to adapt the GBS build. The repository configuration specification starts with the section declaration named "[repo.<customized_name>]", and followed by various properties, including:
  127. * url
  128. The url property specifies the URL of a remote repository, or the full path of a local or remote repository. That is, the following two types of remote repositories are supported:
  129. - a standard RPM repository that has a repodata/ subdirectory under the /repos/ directory.
  130. - a Tizen repository that has a builddata/ subdirectory, for example, http://download.tizen.org/releases/daily/2.0alpha/common/latest/
  131. **Note:** To guarantee the quality of the GBS build, the release folder must be used, instead the snapshot folder.
  132. * user
  133. * passwd
  134. Here's an example of repository configuration specification:
  135. ::
  136. [repo.tizen_latest]
  137. url = http://download.tizen.org/releases/trunk/daily/ivi/latest/
  138. user = xxx
  139. passwd = xxx
  140. [repo.my_local]
  141. #local repo must be an absolute path
  142. url = <Full_Path_of_Local_Repository>
  143. 3.4 Shell-Style Variable References
  144. ```````````````````````````````````
  145. Properties defined in [general] section can be directly used in other sections by using shell-style variable references in GBS 0.17 and later versions.
  146. Here's an example:
  147. ::
  148. [general]
  149. tmpdir=/var/tmp
  150. work_dir=~/test
  151. [profile.tizen]
  152. buildconf=${work_dir}/tizen.conf
  153. buildroot=${tmpdir}/profile.tizen/
  154. Upstream tarball and patch-generation support
  155. =============================================
  156. This section describes how to manage packages more properly with GBS. "More properly" here meaning, if we (Tizen) are not the upstream of the package:
  157. - the source archive of the package (orig tarball) contains pristine upstream sources, not polluted with any local changes
  158. - local changes are presented as a series of patches, applied on top of the (pristine) orig archive
  159. Starting from version 0.11, GBS fully supports this package maintenance model.
  160. Native and non-native packages
  161. ------------------------------
  162. General concepts
  163. ````````````````
  164. From the package maintenance point of view, we can divide the packages into two categories:
  165. - **Native**: packages where we/you/Tizen is the upstream and controls the source code repository. An example in the context of Tizen could be power-manager. For native packages, we control the versioning and releasing, so package maintenance is simpler. We can release a new version basically whenever we want.
  166. - **Non-native(or upstream)**: packages for which we/you/Tizen is not the upstream. For example, the Linux kernel or zlib. For these packages, we need to follow the releasing process and schedule of the upstream project. For example, from a developer and legal point of view, it is very beneficial to clearly track the local modifications (that is, separate upstream and local changes) both in the source code repository and on the packaging level.
  167. Also GBS divides packages into these two categories. GBS determines a package as non-native, if the git repository has an `upstream` branch. The actual name of the upstream branch can be configured using the 'upstream_branch' in option in the .gbs.conf file or with `--upstream-branch` command line option.
  168. GBS build, remotebuild, and export commands behave differently for native and non-native packages. Namely, the preparation of the packaging files for building differs.
  169. **GBS and native packages**
  170. GBS simply creates a monolithic source tarball from the HEAD of the current branch. Packaging files, from the packaging directory, are copied as is. No patch generation is done. This is the 'old' model GBS has used for all packages until now.
  171. **GBS and non-native packages**
  172. For non-native packages, GBS applies the new maintenance model. It tries to create a (real) upstream source tarball, generate patches from the local changes, and update the spec file accordingly.
  173. The logic is the following:
  174. - Generate patches
  175. - Create patches between `upstream-tag..HEAD`, remove possible old patches
  176. - Update the spec file: remove old 'Patch:' tags and '%patch' macros and replace them with ones that correspond with the newly generated patches.
  177. - Create upstream tarball if patch-generation was successful
  178. - If the git repository has `pristine-tar` branch (and you have the pristine-tar tool installed), GBS tries to checkout the source tarball with pristine-tar
  179. - If the previous step fails, GBS tries to create a source tarball from the correct `upstream tag`, matching the version taken from the .spec file.
  180. - If source tarball or patch generation fails GBS reverts back to the old method (that is, treats the package as native), creating just one monolithic tarball without patch generation.
  181. You shouldn't have any pre-existing patches in the packaging directory or spec file. Otherwise, GBS refuses to create patches. Please see `Advanced usage/Manually maintained patches` section for manually maintained patches.
  182. Building using upstream tarball and patch generation
  183. ----------------------------------------------------
  184. This is pretty straightforward and easy to use. To enable upstream source tarball and patch generation you should:
  185. 1. have `upstream branch` in the git repository, with untouched upstream sources
  186. 2. have `upstream tag` format configured correctly in the package specific .gbs.conf, default is upstream/${upstreamversion}
  187. 3. have your `development branch` be based on the upstream version (indicated in .spec)
  188. 4. all your local manually maintained patches (in packaging dir) applied in to your development branch and removed from the packaging directory
  189. Additionally, you may have:
  190. 5. `pristine-tar branch` in the git repository for generating the upstream tarball with the pristine-tar tool
  191. You can do development just like before. Just edit/commit/build on your development branch. GBS handles the tarball and patch generation, plus updating the spec file. Running gbs should look something like this (using gbs export as an example here for the shorted output):
  192. ::
  193. $ gbs export -o export
  194. info: Generating patches from git (v1.2.7..HEAD)
  195. info: Didn't find any old '%patch' macros, adding new patches after the last '%setup' macro at line %s
  196. info: Didn't find any old 'Patch' tags, adding new patches after the last 'Source' tag.
  197. info: zlib-1.2.7.tar.bz2 does not exist, creating from 'v1.2.7'
  198. info: package files have been exported to:
  199. /home/test/src/zlib/export/zlib-1.2.7-0
  200. When trying out the patch generation for the first time, you might want to export first and examine the auto-updated spec file (in the export directory) to see that GBS updated it correctly. Please see `Advanced usage/Manually maintained patches` section for manually maintained patches.
  201. Reasons for the upstream tarball and/or patch generation failure may be e.g.
  202. - upstream tag was not found
  203. * version is not present in your git repository
  204. * tag format is configured incorrectly
  205. - current branch is not a descendant of the upstream version that it claims to be derived from
  206. Managing upstream sources
  207. -------------------------
  208. This section is only of interest to the package maintainers.
  209. To maintain packages using the model described above, you need to keep unmodified upstream sources in a separate branch in your git repository.
  210. GBS supports two models for this.
  211. Import upstream source archive to git
  212. `````````````````````````````````````
  213. In this model, you import source tarballs (or zip files) from the upstream release to your git repository using the `gbs import` command. GBS commits the sources in the upstream branch and creates a tag for the upstream release. An example of starting from scratch, that is importing to an empty repo:
  214. ::
  215. $ mkdir zlib && cd zlib && git init
  216. $ gbs import ../zlib-1.2.6.tar.gz
  217. ...
  218. $ git branch
  219. * master
  220. upstream
  221. $ git tag
  222. upstream/1.2.6
  223. Now you could start development just by adding packaging files to the master branch. When you need to update to a newer upstream version, just use `gbs import` again:
  224. ::
  225. $ gbs import ../zlib-1.2.7.tar.gz
  226. $ git tag
  227. upstream/1.2.6
  228. upstream/1.2.7
  229. **Note** Currently, GBS automatically merges the new upstream version to your master branch. Thus, you need to update the version number in your spec file accordingly.
  230. Tracking remote git
  231. ```````````````````
  232. In this model, you directly track a remote (git) repository. You shouldn't use GBS import at all.
  233. GBS needs to know only the name of the upstream branch and the format of the upstream release tags.
  234. These are package dependent information so you should configure them in a package-specific .gbs.conf
  235. in the master branch. An example for starting a package from scratch, again:
  236. ::
  237. $ git clone git://github.com/madler/zlib.git && cd zlib
  238. $ git branch -m master origin # to keep origin tracking the upstream
  239. $ git checkout -b master
  240. $ vim .gbs.conf
  241. $ git add .gbs.conf && git commit -m"Add gbs.conf"
  242. The example configuration file would be:
  243. ::
  244. [general]
  245. upstream_branch = origin
  246. upstream_tag = v${upstreamversion}
  247. Pristine-tar support
  248. ````````````````````
  249. Optionally (but highly recommended!), you can use pristine-tar for storing/checking out the upstream tarballs (see http://joeyh.name/code/pristine-tar/). You can install it from the Tizen tools repository. Pristine-tar guarantees that the tarball generated by GBS is bit-identical to the real upstream release source tarball. GBS uses pristine-tar automatically if you have pristine-tar installed in your system. If you use GBS import to manage the upstream sources everything works out-of-the box: GBS import automatically commits new tarballs to the `pristine-tar branch`.
  250. However, if you track a remote upstream repository directly, you need to commit the upstream source tarballs to pristine-tar branch manually. So, like in our zlib example:
  251. ::
  252. $ cd zlib
  253. $ git branch
  254. * master
  255. origin
  256. $ pristine-tar commit ../zlib-1.2.7.tar.gz v1.2.7
  257. $ git branch
  258. * master
  259. origin
  260. pristine-tar
  261. Converting existing repository to the new model
  262. -----------------------------------------------
  263. 1. You need an `upstream branch`
  264. a. If you are already tracking the upstream, just configure the upstream branch name and tag format in the package-specific .gbp.conf.
  265. b. If not, import upstream source tarball with `gbs import` or add the upstream remote to your repo and start tracking that.
  266. 2. Recommended: If you're tracking the upstream git directly, you may want to do 'pristine-tar commit <tarball> <upstream-tag>'
  267. 3. Rebase your current development branch on the correct upstream version (that is, rebase on the upstream tag)
  268. 4. Remove all local patches: apply and commit them on top of your development branch and then remove the patches from the packaging directory and preferably from the spec file, too.
  269. Advanced usage
  270. --------------
  271. Manually maintained patches
  272. ```````````````````````````
  273. GBS supports manually maintaining patches, that is, outside the automatic patch generation. This may be needed
  274. for architecture-dependent patches, for example, as GBS patch generation does not yet support conditional patches.
  275. Another example could be patches that are applied on top of a secondary source tree, whose sources are not maintained
  276. in your git tree, but only as a tarball in your packaging directory.
  277. To use this feature, you need to have your patch(es) in the packaging directory and listed in the spec. In addition, you need to mark the patch to be ignored by the patch generation/importing by putting `# Gbp-Ignore-Patches: <patch numbers>` into the spec file. This will make GBS ignore the 'Patch:' tags and '%patch' macros of the listed patches when importing or generating patches. An excerpt of an example spec file:
  278. ::
  279. ...
  280. Source0: %{name}-%{version}.tar.bz2
  281. # Gbp-Ignore-Patches: 0
  282. Patch0: my.patch
  283. %description
  284. ...
  285. Actually, you can have this special marker anywhere in the spec file. And, it is case-insensitive, so you might use `GBP-IGNORE-PATCHES:`, for example, if you like it better. The reason for the GBP prefix is that GBS uses git-buildpackage (gbp) as the backend for patch generation.
  286. **Note:** In addition, pay attention to patch generation when building or exporting. Also `gbs import` will ignore patches
  287. marked for manual maintenance when importing source rpms.
  288. Patch macro location
  289. ````````````````````
  290. GBS tries to automatically find the correct location to add the '%patch' macros in the spec file when updating it with the newly generated patches. This usually works fine, but GBS can also guess wrong. You can manually mark the location for auto-generated '%patch' macros by adding a `# Gbp-Patch-Macros` marker line into the spec file. An excerpt of an example spec file:
  291. ::
  292. ...
  293. %prep
  294. %setup
  295. # do things here...
  296. # Gbp-Patch-Macros
  297. # do more things here...
  298. %build
  299. ...
  300. GBS will put the new '%patch' macros after the marker line. This marker is case-insensitive, similar to `# Gbp-Ignore-Patches`.
  301. Squashing commits
  302. `````````````````
  303. When generating patches, GBS supports squashing a range of commits into one monolithic diff.
  304. Currently, one can only squash from `upstream-tag` up to a given commit-ish.
  305. An example use case could be squashing commits from an upstream release up to a stable update
  306. into a single diff (commits on top of the stable generate one patches normally).
  307. You can enable this with the 'squash_patches_until' config file option or with the
  308. '--squash-patches-until' command line option: the format for the option is <commit-ish>[:<filename-base>].
  309. An example:
  310. ::
  311. $ git branch
  312. * master
  313. stable
  314. upstream
  315. $ gbs export --squash-patches-until=stable:stable-update
  316. info: Generating patches from git (upstream/0.1.2..HEAD)
  317. info: Squashing commits a2a7d82..9c0f5ba into one monolithic 'stable-update.diff'
  318. info: Didn't find any old 'Patch' tags, adding new patches after the last 'Source' tag.
  319. info: Didn't find any old '%patch' macros, adding new patches after the last '%setup' macro
  320. info: mypackage-0.1.2.tar.gz does not exist, creating from 'upstream/0.1.2'
  321. info: package files have been exported to:
  322. /home/user/src/mypackage/packaging/mypackage-0.1.2-1.21
  323. **Note!** If you're planning to use this, it is highly recommended that you configure it in the package-specific .gbs.conf file. This way, all users (including the automatic build machinery) build/export the package in a similar way.
  324. GBS Usage
  325. =========
  326. This section provides more details about GBS usage. You can also use `$ gbs --help` or `$ gbs <subcmd> --help` to get the help message.
  327. To get help:
  328. - For global options and the command list
  329. ::
  330. $ gbs -h | --help
  331. - For each sub-command:
  332. ::
  333. $ gbs <sub-command> --help
  334. GBS provides several subcommands, including:
  335. - `gbs clone </documentation/reference/git-build-system/usage/gbs-clone>`_: clone a git repository representing a package managed with gbs
  336. - `gbs pull </documentation/reference/git-build-system/usage/gbs-pull>`_: update a git repository representing a package managed with gbs
  337. - `gbs build </documentation/reference/git-build-system/usage/gbs-build>`_: build rpm package from git repositories at the local development environment
  338. - `gbs remotebuild </documentation/reference/git-build-system/usage/gbs-remotebuild>`_: generate tarballs based on Git repositories, and upload to remote OBS to build rpm packages
  339. - `gbs submit </documentation/reference/git-build-system/usage/gbs-submit>`_: create/push annotate tag to Gerrit and trigger code submission to remote OBS
  340. - `gbs chroot </documentation/reference/git-build-system/usage/gbs-chroot>`_: chroot to build root
  341. - `gbs import </documentation/reference/git-build-system/usage/gbs-import/>`_: import source code to git repository, supporting these formats: source rpm, specfile, and tarball
  342. - `gbs export </documentation/reference/git-build-system/usage/gbs-export>`_: export files and prepare for building package, the spec file defines the format of tarball
  343. - `gbs changelog </documentation/reference/git-build-system/usage/gbs-changelog>`_: update the changelog file with git commits message
  344. GBS clone
  345. ---------
  346. The `gbs clone` command makes it more convenient for a developer to clone a git repository being maintained with gbs. The benefit of using `gbs clone` (instead of `git clone`) is that it automatically starts to track all relevant branches, the upstream and pristine-tar branches in the case of non-native packages. The clone subcommand also sets up local copies of all these branches.
  347. For instructions on using the clone subcommand, type:
  348. ::
  349. $ gbs clone --help
  350. Example: clone a tizen package using gbs clone
  351. ::
  352. $ gbs clone tizen:toolchains/zlib.git
  353. info: cloning tizen:toolchains/zlib.git
  354. .......
  355. info: finished
  356. $ cd zlib/
  357. $ git branch
  358. * master
  359. $
  360. Special options
  361. ```````````````
  362. The `--all` option can be used to track and create a local copy of all remote branches. Example:
  363. ::
  364. $ gbs clone --all tizen:toolchains/zlib.git
  365. info: cloning tizen:toolchains/zlib.git
  366. .......
  367. Branch 1.0_post set up to track remote branch 1.0_post from origin.
  368. Branch 2.0alpha set up to track remote branch 2.0alpha from origin.
  369. info: finished
  370. $ cd zlib/
  371. $ git branch
  372. 1.0_post
  373. 2.0alpha
  374. * master
  375. You can use the `--depth` command line option to create shallow clones of the remote repository. This can be used to preserve space and potentially greatly speed up the clone operation if you're only interested in the most recent changes of a project.
  376. GBS pull
  377. --------
  378. The `pull` command makes it more convenient for a developer to update from a remote git repository being maintained with gbs. The benefit of using gbs pull is that it automatically updates all relevant branches, the upstream and pristine-tar branches in the case of non-native packages.
  379. The `pull` subcommand will update all local branch HEADs that can be fast-forwarded. It will print a warning for branches that could not be fast-forwarded. See the `--force` option below to override this. It is recommended to always do your local development on feature/development brances, and keep the master/upstream branches untouched and always in sync with the remote by using the gbs pull command.
  380. For instructions on using the pull subcommand, type:
  381. ::
  382. $ gbs pull --help
  383. Example: update a tizen package repo using gbs pull
  384. ::
  385. $ gbs pull
  386. info: updating from remote
  387. .....
  388. info: Updating 'master'
  389. Updating 30e59a6..7ae7fc7
  390. Fast-forward
  391. info: finished
  392. Special options
  393. ```````````````
  394. The `--all` option can be used to update all remote branches. Using this will update all remote-tracking branches that have identical name in the remote repository.
  395. Using the `--depth` one can deepen shallow clones, that is, fetch deeper history from the remote.
  396. With the --force option the developer can force update the local branch HEADs to match the remote repo.
  397. **WARNING**: Use the `--force` option with care. It will discard all local changes to the updated branches! This effectively does a `git reset --hard` for the local branches. Example:
  398. ::
  399. $ gbs pull --all
  400. info: updating from remote
  401. .....
  402. info: Branch '1.0_post' is already up to date.
  403. warning: Skipping non-fast forward of '2.0alpha' - use --force or update manually
  404. info: Updating 'master'
  405. Updating 30e59a6..7ae7fc7
  406. Fast-forward
  407. error: Failed to update some of the branches!
  408. $ gbs pull --all --force
  409. info: updating from remote
  410. ......
  411. info: Branch '1.0_post' is already up to date.
  412. info: Checking out clean copy of '2.0alpha' due to --force=clean
  413. info: Updating '2.0alpha'
  414. info: Branch 'master' is already up to date.
  415. info: finished
  416. GBS build
  417. ---------
  418. By using 'gbs build', the developer can build the source code and generate rpm packages locally.
  419. For instructions on using the `build` subcommand, use this command: `gbs build --help`
  420. ::
  421. $ gbs build -h
  422. gbs build workflow
  423. ``````````````````
  424. Input of gbs build
  425. ''''''''''''''''''
  426. Below is the input for gbs build:
  427. - git project(s) which contains rpm packaging files
  428. - binary rpm repositories (remote or local)
  429. - project build configurations (macros, flags, etc)
  430. The binary rpm repositories contain all the binary rpm packages which are used to create the chroot environment and build packages, which can be remote, like tizen release or snapshot repositories, or local repository. Local repository supports two types:
  431. - A standard repository with repodata exists
  432. - A normal directory contains RPM packages. GBS will find all RPM packages under this directory.
  433. Please refer to `Configuration File </documentation/reference/git-build-system/configuration-file>`_ part to configure a repository.
  434. Build workflow
  435. ''''''''''''''
  436. The input and output of gbs build are all repositories.
  437. **Note**: All the rpm packages under the output repository (by default, ~/GBS-ROOT/local/repos/<VERSION>/) will be used when building packages. That is, all the packages under the output repository will be applied to the build environment, so make sure the output repository is clean if you don't want this behavior.
  438. Here's the basic gbs build workflow
  439. ::
  440. ____________________
  441. | | ___________
  442. | Source Code (GIT) |---->| | _________________________
  443. |____________________| | | | |
  444. | | | Local repository of |
  445. ____________________ | GBS Build |---->| build RPM packages |
  446. | | | | |(~/GBS-ROOT/local/repos/)|
  447. |Binary repositories | | | |_________________________|
  448. |in GBS conf |---->|___________| |
  449. |(Remote or Local) | ^ |
  450. |____________________| |________________________|
  451. From the above diagram, we can see the input and input are all repositories and the output repository located at '~/GBS-ROOT/locals/repos/' by default. You can change the repo path by using '--buildroot' to specify a different build root.
  452. Local repos in gbs build root ('~/GBS-ROOT' by default) will affect build results, so you must make sure that repos don't contains old or unnecessary RPM packages. While running gbs build, you can specify '--clean-repos' to clean up local repos, which gbs created, before building. We recommend that gbs users set different gbs build root directories for different profiles. There are several ways:
  453. - By default, the GBS build will put all output files under ~/GBS-ROOT/.
  454. - If the environment variable TIZEN_BUILD_ROOT exists, ${TIZEN_BUILD_ROOT} will be used as output top dir
  455. - If -B option is specified, then the specified directory is used, even if ${TIZEN_BUILD_ROOT} exists
  456. Output of gbs build
  457. '''''''''''''''''''
  458. Structure of a GBS build root directory
  459. ::
  460. gbs output top dir
  461. |-- local
  462. | |-- cache # repodata and RPMs from remote repositories
  463. | |-- repos # generated local repo top directory
  464. | | |-- tizen # distro one: tizen
  465. | | | |-- armv7l # store armv7l RPM packages
  466. | | | |-- i586 # store x86 RPM packages
  467. | | `-- tizen2.0 # build for distro two: tizen2.0
  468. | | `-- i586 # the same as above
  469. | |-- scratch.armv7l.0 # first build root for arm build
  470. | |-- scratch.i586.0 # second build root for x86 build
  471. | |-- scratch.i586.1 # third build root for x86 build
  472. | |-- scratch.i586.2 # fourth build root for x86 build
  473. | |-- scratch.i586.3 # fifth build root for x86 build
  474. | | # The above build root dir can be used by gbs chroot <build root dir>
  475. | `-- sources # sources generated for build, including tarball, spec, patches, etc.
  476. | |-- tizen
  477. | `-- tizen2.0
  478. `-- meta # meta data used by gbs
  479. GBS Build Examples (Basic Usage)
  480. ````````````````````````````````
  481. 1. Build a single package.
  482. ::
  483. $ cd package1
  484. $ gbs build -A i586
  485. 2. Build the package for a different architecture.
  486. ::
  487. $ gbs build -A armv7l #build package for armv7l
  488. $ gbs build -A i586 #build package for i586
  489. 3. Make a clean build by deleting the old build root. This option must be specified if the repo has been changed, for example, changed to another release.
  490. ::
  491. $ gbs build -A armv7l --clean
  492. 4. Build the package with a specific commit.
  493. ::
  494. $ gbs build -A armv7l --commit=<COMMIT_ID>
  495. 5. Use `--overwrite` to trigger a rebuild.
  496. If you have already built before, and want to rebuild, `--overwrite` should be specified, or the packages will be skipped.
  497. ::
  498. $ gbs build -A i586 --overwrite
  499. If you change the commit or specify `--include-all` option, it will always rebuild, so `--overwrite` is not needed.
  500. 6. Output the debug info.
  501. ::
  502. $ gbs build -A i586 --debug
  503. 7. Build against a local repository. You can config the local repo at .gbs.conf file or through the command line.
  504. ::
  505. $ gbs build -R /path/to/repo/dir/ -A i586
  506. 8. Use `--noinit` to build package in offline mode
  507. `--noinit` option can only be used if build root is ready. With `--noinit` option, gbs will not connect the remote repo, and skip parsing & checking repo and initialize build environment. `rpmbuild` will be used to build the package directly. Here's an example:
  508. ::
  509. $ gbs build -A i586 # build first and create build environment
  510. $ gbs build -A i586 --noinit # use --noinit to start building directly
  511. 9. Build with all uncommitted changes using `--include-all`.
  512. For example, the git tree contains one modified file and two extra files:
  513. ::
  514. $ git status -s
  515. M ail.pc.in
  516. ?? base.repo
  517. ?? main.repo
  518. - Build without the `--include-all` option
  519. Builds committed files only. All the modified files, which are not committed nor added, will NOT be built:
  520. ::
  521. $ gbs build -A i586
  522. warning: the following untracked files would NOT be included: base.repo main.repo
  523. warning: the following uncommitted changes would NOT be included: ail.pc.in
  524. warning: you can specify '--include-all' option to include these uncommitted and untracked files.
  525. ....
  526. info: Binaries RPM packages can be found here:
  527. /home/test/GBS-ROOT/local/scratch.i586.0/home/abuild/rpmbuild/RPMS/
  528. info: Done
  529. - Build with the `--include-all` option builds all the files:
  530. ::
  531. $ gbs build -A i586 --include-all
  532. info: the following untracked files would be included: base.repo main.repo
  533. info: the following un-committed changes would be included: ail.pc.in
  534. info: export tar ball and packaging files
  535. ...
  536. ...
  537. [build finished]
  538. - Use .gitignore to ignore specific files, when using the `--include-all` option. If you want to ignore some files types, you can update your .gitignore. For example:
  539. ::
  540. $ cat .gitignore
  541. .*
  542. */.*
  543. *.pyc
  544. *.patch*
  545. Incremental build
  546. `````````````````
  547. Incremental Concept
  548. '''''''''''''''''''
  549. Starting from gbs 0.10, the gbs build subcommand supports building incrementally, which can be enabled by specifying the '--incremental' option.
  550. This mode is designed for development and verification of single packages. It is not intended to replace the standard mode. Only one package can be built at a time using this mode.
  551. This mode will set up the build environment in multiple steps, finishing by mounting the local Git tree of a package in the chroot build environment.
  552. **Note**: Because gbs will mount your git tree to the build root, be very careful when you remove your build root. You need to make sure you've already umounted the source tree manually before you remove it.
  553. This has the following benefits:
  554. 1. The build environment uses the latest source code and changes to source do not trigger a new build environment (in the chroot).
  555. 2. The Git source tree becomes the source of the builds. Any change made in the Git repository followed by invocation of the build script will build the changed sources
  556. 3. If the build fails for some reason, the build script will continue from the spot where it has failed, once the code has been changed to fix the problem causing the failure.
  557. This mode is, in many ways, similar to traditional code development, where changes are made to sources, followed by running `make` to test and compile the changes. However, it enables development using the build environment of the target, instead of the host OS.
  558. This method has some limitations, mostly related to packaging and how the sources are maintained. Among others, it depends on how the RPM spec file is composed:
  559. 1. It does not support patches in the spec file. All source has to be maintained as part of the Git tree
  560. 2. It requires a clean packaging workflow. Exotic workflows in the spec files might not work well, because this mode expects the following model:
  561. a. Code preparation (%prep)
  562. b. Code building (%build)
  563. c. Code installation (%install)
  564. 3. Because we run the %build section every time, if the %build script has configuration scripts (auto-tools), binaries might be regenerated, causing a complete build every time. To avoid this, you are encouraged to use the following macros, which can be overridden using the `--no-configure` option:
  565. a. %configure: runs the configure script with pre-defined paths and options.
  566. b. %reconfigure: regenerates the scripts and runs %configure
  567. c. %autogen: runs the autogen script
  568. Example
  569. '''''''
  570. In this example, we use `dlog` source code. First, we need to build with --incremental, then just modify one source file, and trigger the incremental build again. We will see that only modified source code has been compiled during the incremental build.
  571. ::
  572. $ cd dlog
  573. # first build:
  574. $ gbs build -A i586 --incremental
  575. $ vim log.c # change code
  576. # second build:
  577. $ gbs build -A i586 --incremental
  578. info: generate repositories ...
  579. info: build conf has been downloaded at:
  580. /var/tmp/test-gbs/tizen.conf
  581. info: Start building packages from: /home/test/packages/dlog (git)
  582. info: Prepare sources...
  583. info: Retrieving repo metadata...
  584. info: Parsing package data...
  585. info: *** overwriting dlog-0.4.1-5.1 i586 ***
  586. info: Next pass:
  587. dlog
  588. info: *** building dlog-0.4.1-5.1 i586 tizen (worker: 0) ***
  589. info: Doing incremental build
  590. [ 0s] Memory limit set to 10854336KB
  591. [ 0s] Using BUILD_ROOT=/home/test/GBS-ROOT/local/scratch.i586.0
  592. [ 0s] Using BUILD_ARCH=i686:i586:i486:i386:noarch
  593. [ 0s] test-desktop started "build dlog.spec" at Thu Sep 13 07:36:14 UTC 2012.
  594. [ 0s] -----------------------------------------------------------------
  595. [ 0s] ----- building dlog.spec (user abuild)
  596. [ 0s] -----------------------------------------------------------------
  597. [ 0s] -----------------------------------------------------------------
  598. [ 0s] + rpmbuild --short-circuit -bc /home/abuild/rpmbuild/SOURCES/dlog.spec
  599. [ 0s] Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.XLz8je
  600. [ 0s] + umask 022
  601. [ 0s] + export LD_AS_NEEDED
  602. [ 4s] + make -j4
  603. [ 4s] make all-am
  604. [ 4s] make[1]: Entering directory /home/abuild/rpmbuild/BUILD/dlog-0.4.1
  605. [ 4s] /bin/sh ./libtool --tag=CC --mode=compile gcc -c -o log.lo log.c
  606. [ 4s] mv -f .deps/log.Tpo .deps/log.Plo
  607. [ 4s] /bin/sh ./libtool --tag=CC --mode=link gcc -o libdlog.la /usr/lib log.lo
  608. [ 4s] libtool: link: gcc -shared .libs/log.o -o .libs/libdlog.so.0.0.0
  609. [ 4s] libtool: link: ar cru .libs/libdlog.a log.o
  610. [ 4s] libtool: link: ranlib .libs/libdlog.a
  611. [ 4s] make[1]: Leaving directory /home/abuild/rpmbuild/BUILD/dlog-0.4.1
  612. [ 4s] + exit 0
  613. [ 4s] finished "build dlog.spec" at Thu Sep 13 07:36:18 UTC 2012.
  614. [ 4s]
  615. info: finished incremental building dlog
  616. info: Local repo can be found here:
  617. /home/test/GBS-ROOT/local/repos/tizen/
  618. info: Done
  619. From the buildlog, we can see that only log.c has been re-compiled. That's the incremental build behavior.
  620. `--noinit` option can be used together with `--incremental` to make a build more quickly, like:
  621. ::
  622. $ gbs build --incremental --noinit
  623. Limitations of Incremental Build
  624. ''''''''''''''''''''''''''''''''
  625. Incremental build doesn't support all packages. Here are some limitations:
  626. - Incremental build currently supports building only a single package. It doesn't support building multiple packages in parallel
  627. - The tarball's name in the spec file should be %{name}-%{version}.{tar.gz|tar.bz2|zip|...}, otherwise GBS can't mount source code to build the root correctly
  628. - %prep section should only contains %setup macro to unpack tarball, and should not contains other source code related operations, such as unpack another source, apply patches, etc.
  629. Multiple packages build (dependency build)
  630. ``````````````````````````````````````````
  631. Multiple package build has been supported since gbs 0.10. If packages have dependencies on each other, gbs will build packages in the correct order calculated by dependency relationship. Previously built out RPMs will be used to build the following packages that depend on them, which is the dependency build.
  632. **Examples**:
  633. 1. Build all packages under a specified package directory
  634. ::
  635. $ mkdir tizen-packages
  636. $ cp package1 package2 package3 ... tizen-packages/
  637. $ gbs build -A i586 tizen-packages # build all packages under tizen-packages
  638. 2. Build multiple packages in parallel with `--threads`
  639. ::
  640. # current directory have multiple packages, --threads can be used to set the max build worker at the same time
  641. $ gbs build -A armv7l --threads=4
  642. 3. Select a group of packages to be built
  643. The --binary-from-file option specifies a text file that contains a name list of RPM packages to be built. The format in the text file is one package per line.
  644. The --binary-list option specifies a list in which the package names are separated by comma.
  645. When the number of packages is small, thus the packages can be clearly presented in command line, it is recommended to use the --binary-list option for simplicity.
  646. ::
  647. $ gbs build -A i586 --binary-from-file=/path/to/packages.list
  648. $ gbs build -A i586 --binary-list=<pkg1>,<pkg2>
  649. 4. Exclude certain packages.
  650. The --exclude option specifies a list in which the names of packages to be ignored are separated by comma.
  651. The --exclude-from-file option specifies a text file that contains a name list of packages to be ignored.
  652. ::
  653. $ gbs build -A i586 tizen-packages --exclude=<pkg1>
  654. $ gbs build -A i586 tizen-packages --exclude=<pkg1>,<pkg2>
  655. $ gbs build -A i586 tizen-packages --exclude-from-file=/path/to/packages.list
  656. 5. Build packages based on dependencies.
  657. The --deps option enables GBS to build specific packages, together with all the related packages on which they depend.The --rdep option enables GBS to build specific packages, together with all the related packages that depend on them.
  658. The specific packages can be included by the --binary-from-file option or the --binary-list option, and be excluded by the --exclude option or the --exclude-from-file option.
  659. These two options are compatible. When added at the same time, besides the specific packages, GBS will build not only the related packages on which they depend, but also all the related packages that depend on them.
  660. ::
  661. $ gbs build -A i586 --binary-list=<pkg1>,<pkg2> --deps
  662. $ gbs build -A i586 --binary-list=<pkg1>,<pkg2> --rdeps
  663. $ gbs build -A i586 --binary-list=<pkg1>,<pkg2> --deps --rdeps
  664. Other useful options
  665. ````````````````````
  666. Install extra packages to build root
  667. ''''''''''''''''''''''''''''''''''''
  668. `--extra-packs=<pkgs list sep by comma>` can be used to install extra packages:
  669. ::
  670. $ gbs build --extra-packs=vim,zypper,gcc,gdb ...
  671. Keep all packages in build root
  672. '''''''''''''''''''''''''''''''
  673. Generally, `gbs build` will remove unnecessary packages in build root. While transferring to build another package, you can use `--keep-packs` to keep all unnecessary packages, and just install missing build required packages. This option can be used to speed up build multiple packages.
  674. ::
  675. $ gbs build --keep-packs
  676. `--keep-packs` can be used to create one build root for building multiple packages. Once the build root is ready, you can use --noinit to build these packages quickly.
  677. ::
  678. $ gbs build pkg1/ --keep-packs -A i586
  679. $ gbs build pkg2/ --keep-packs -A i586
  680. $ gbs build pkg3/ --keep-packs -A i586
  681. Now, the build root (~/GBS-ROOT/local/scratch.i586.0) is ready for building pkg1, pkg2, and pkg3. You can use --noinit to build them offline, and don't need waste time to check repo updates and build root.
  682. ::
  683. $ gbs build pkg1 --noinit
  684. $ gbs build pkg2 --noinit
  685. $ gbs build pkg3 --noinit
  686. Fetch the project build conf and customize build root (for Advanced Users)
  687. ``````````````````````````````````````````````````````````````````````````
  688. Project build conf describes the project build configurations for the project, including pre-defined macros/packages/flags in the build environment. In Tizen releases, the build conf is released together with the released repo. You can find an example at: http://download.tizen.org/releases/daily/trunk/ivi/latest/builddata/xxx-build.conf
  689. - gbs build will fetch the build conf automatically
  690. Starting from gbs 0.7.1, by default, gbs will fetch the build conf from a remote repo, if you specify the remote Tizen repo, and then store it in your temp environment. Here's the build log:
  691. ::
  692. $ gbs build -A i586
  693. info: generate repositories ...
  694. info: build conf has been downloaded at:
  695. /var/tmp/<user>-gbs/tizen2.0.conf
  696. info: generate tar ball: packaging/acpid-2.0.14.tar.bz2
  697. [sudo] password for <user>:
  698. - build the package using your own project build conf, using the -D option
  699. You can save it and modify it, and then use it for your purposes:
  700. ::
  701. cp /var/tmp/<user>-gbs/tizen2.0.conf ~/tizen2.0.conf
  702. $ gbs build -A i586 -D ~/tizen2.0.conf
  703. If you need to customize the build config, refer to: http://en.opensuse.org/openSUSE:Build_Service_prjconf
  704. GBS remotebuild
  705. ---------------
  706. Use the `remotebuild` subcommand to push local git code to the remote OBS build server
  707. to build. For instructions on using the `remotebuild` subcommand, use this command:
  708. ::
  709. $ gbs remotebuild --help
  710. Before running gbs remotebuild, you need to prepare a git repository package. The packaging directory must exist and have a spec file in it. GBS uses the package name, version, and source tarball format defined in this spec file.
  711. When it's ready, go to the top directory of git repository, and run gbs remotebuild, here's some examples
  712. ::
  713. $ gbs remotebuild
  714. $ gbs remotebuild -B Tizen:Main
  715. $ gbs remotebuild -B Tizen:Main -T home:<userid>:gbs
  716. $ gbs remotebuild -B Tizen:Main --status
  717. $ gbs remotebuild -B Tizen:Main --buildlog -R <repo> -A <arch>
  718. $ gbs remotebuild -B Tizen:Main --include-all
  719. check build log and build status
  720. gbs supports the developer checking the build log and build status using the `--buildlog` and `--status` options during gbs remotebuild. For example:
  721. Step 1: Submit the changes to the remote OBS using `gbs remotebuild`. For example:
  722. Submit package to `home:user:gbs:Tizen:Main`, build against Tizen:Main
  723. ::
  724. test@test-desktop:~/ail$ gbs remotebuild -B Tizen:Main --include-all
  725. info: Creating (native) source archive ail-0.2.29.tar.gz from 'c7309adbc60eae08782b51470c20aef6fdafccc0'
  726. info: checking status of obs project: home:test:gbs:Tizen:Main ...
  727. info: commit packaging files to build server ...
  728. info: local changes submitted to build server successfully
  729. info: follow the link to monitor the build progress:
  730. https://build.tizendev.org/package/show?package=ail&project=home:test:gbs:Tizen:Main
  731. Step 2: Check the build status, example:
  732. ::
  733. # -B or -T options is needed if your target project is not home:user:gbs:Tizen:Main
  734. test@test-desktop:~/ail$ gbs remotebuild --status
  735. info: build results from build server:
  736. standard i586 building
  737. standard armv7el building
  738. The first column is repo name and the second column is arch. repo/arch can be used to get buildlog.
  739. Step 3: Check the build log for special repo/arch
  740. ::
  741. test@test-desktop:~/ail$ gbs remotebuild --buildlog
  742. error: please specify arch(-A) and repository(-R)
  743. test@test-desktop:~/ail$ gbs remotebuild --buildlog -A i586 -R standard
  744. info: build log for home:test:gbs:Tizen:Main/ail/standard/i586
  745. ....
  746. GBS submit
  747. ----------
  748. gbs submit can help the user create/push tags to gerrit, which would trigger pushing code from gerrit to OBS.
  749. You can get the usage of subcommand `submit` by:
  750. ::
  751. $ gbs submit --help
  752. Examples
  753. ````````
  754. 1) Create a tag on a current working branch and submit it directly.
  755. ::
  756. $ gbs submit -m 'release for 0.1'
  757. GBS would create an annotated tag named 'submit/${cur_branch_name}'/${date}.${time} on 'HEAD' commit, then submit it directly.
  758. 2) Use `-c` option to submit specified commit
  759. ::
  760. $ gbs submit -c <commit_ID> -m 'release for 0.2'
  761. 3) Use '--target' option to specify the target version to submit
  762. ::
  763. $ gbs submit --target=trunk -m 'release for 0.2.1'
  764. **Note**: `--target` allows the user to specify the target version. By default, it is 'trunk'. The valid value of `--target` should be matched with the remote branch name. The backend service would use this branch info to create the SR and submit it to the correct OBS project.
  765. 4) use `-r` to specify remote gerrit server to submit. By default '-r' is 'origin'.
  766. ::
  767. $ gbs submit -r tizen:public/base/gcc -m 'release for 0.4'
  768. 5) If your gpg key has been set, you can use '-s' to create a signed tag.
  769. ::
  770. $ gbs submit -m 'release for 0.3' -s
  771. GBS chroot
  772. ----------
  773. The subcommand 'chroot' allows users to chroot to the buildroot directory, which is generated by `gbs build`. You can get the basic usage of gbs chroot using:
  774. ::
  775. $ gbs chroot --help
  776. **Note**: The default location of the build root is located at: ~/GBS-ROOT/local/scratch.{arch}.*, which will be different if the -B option is specified while running gbs build
  777. Examples:
  778. - Create build root with more extra packages to the build root
  779. ::
  780. $ gbs build --extra-packs=zypper,vim -A i586 # install zypper,vim to build root
  781. For more gbs build options, please refer to gbs build page.
  782. - Chroot to buildroot, example: chroot to ~/GBS-ROOT/local/scratch.i586.0/
  783. ::
  784. $ gbs chroot ~/GBS-ROOT/local/scratch.i586.0/
  785. - Chroot as 'root' user
  786. ::
  787. $ gbs chroot -r ~/GBS-ROOT/local/scratch.i586.0/
  788. If gbs chroot failed with error:'su: user root does not exist', which is caused by tizen pacakge: `login`, which should be fixed from repository. Currently, you can add root user manually by:
  789. ::
  790. $sudo echo "root:x:0:0:root:/root:/bin/bash" >>path/to/buildroot/etc/passwd
  791. $sudo echo "root:x:0:" >>path/to/buildroot/etc/group
  792. With this update, gbs chroot should work.
  793. - Chroot and install more extra packages into buildroot directory for development purposes
  794. ::
  795. chroot as 'root':
  796. $ gbs chroot -r ~/GBS-ROOT/local/scratch.i586.0/
  797. Configure tizen repo in the chroot env:
  798. # zypper ar http://user:passwd@download.tizen.org/releases/daily/<release_id>/repos/main/ia32/packages tizen-main
  799. # zypper ar http://user:passwd@download.tizen.org/releases/daily/<release_id>/repos/base/ia32/packages tizen-base
  800. Install extra packages, for example, install gdb.
  801. # zypper refresh
  802. # zypper -n install gdb gcc
  803. For https repositories, you need to specify 'ssl_verify=no'. For example:
  804. ::
  805. # zypper ar https://user:passwd@tizen.org/releases/daily/<release_id>/repos/main/ia32/packages/?ssl_verify=no tizen-main
  806. Notes:
  807. - If you want to use as 'root', you need specify '-r' option, then zypper can be used to install/remove packages
  808. - If you want to install packages in the build root env, you need specify the '-n' option, such as: zypper -n install gdb
  809. GBS import
  810. ----------
  811. The subcommand will help to import source code or existing source rpm packages into the git repository. Most of the time, it is used for initializing a git repository or for upgrading packages. It supports these formats: source rpm, specfile, and tarball.
  812. For instructions on using the `import` subcommand, use this command: `gbs import --help`
  813. ::
  814. $ gbs import --help
  815. Importing source packages
  816. `````````````````````````
  817. Import from a source rpm
  818. ''''''''''''''''''''''''
  819. ::
  820. $ gbs import sed-4.1.5-1/sed-4.1.5-1.src.rpm
  821. info: No git repository found, creating one.
  822. Initialized empty Git repository in /home/test/sed/.git/
  823. info: Tag upstream/4.1.5 not found, importing Upstream upstream sources
  824. info: Will create missing branch 'upstream'
  825. pristine-tar: committed sed-4.1.5.tar.gz.delta to branch pristine-tar
  826. info: Importing packaging files
  827. info: Will create missing branch 'master'
  828. info: Version '4.1.5-1' imported under 'sed'
  829. info: done.
  830. $ git tag
  831. upstream/4.1.5
  832. vendor/4.1.5-1
  833. $ cd sed && git branch
  834. * master
  835. pristine-tar
  836. upstream
  837. Import from spec file
  838. '''''''''''''''''''''
  839. ::
  840. $ gbs import sed-4.1.5-1/sed.spec
  841. info: No git repository found, creating one.
  842. Initialized empty Git repository in /home/test/sed/.git/
  843. info: Tag upstream/4.1.5 not found, importing Upstream upstream sources
  844. info: Will create missing branch 'upstream'
  845. pristine-tar: committed sed-4.1.5.tar.gz.delta to branch pristine-tar
  846. info: Importing packaging files
  847. info: Will create missing branch 'master'
  848. info: Version '4.1.5-1' imported under 'sed'
  849. info: done.
  850. $ cd sed && git branch
  851. * master
  852. pristine-tar
  853. upstream
  854. $ git tag
  855. upstream/4.1.5
  856. vendor/4.1.5-1
  857. Special options for importing source packages
  858. '''''''''''''''''''''''''''''''''''''''''''''
  859. If the source package contains patches, gbs will try to apply patches on top of master branch:
  860. ::
  861. $ cat sed-patch/sed.spec
  862. ...
  863. URL: http://sed.sourceforge.net/
  864. Source0: ftp://ftp.gnu.org/pub/gnu/sed/sed-%{version}.tar.gz
  865. Source1001: packaging/sed.manifest
  866. Patch0: 0001-hello.patch
  867. %description
  868. ...
  869. $ gbs import sed-patch/sed.spec
  870. info: No git repository found, creating one.
  871. Initialized empty Git repository in /home/test/sed/.git/
  872. info: Tag upstream/4.1.5 not found, importing Upstream upstream sources
  873. info: Will create missing branch 'upstream'
  874. pristine-tar: committed sed-4.1.5.tar.gz.delta to branch pristine-tar
  875. info: Importing packaging files
  876. info: Will create missing branch 'master'
  877. info: Importing patches to 'master' branch
  878. info: Removing imported patch files from spec and packaging dir
  879. info: Version '4.1.5-1' imported under 'sed'
  880. info: done.
  881. $ cd sed && git log --oneline
  882. d94118f Autoremove imported patches from packaging
  883. 5d1333f hello
  884. 3a452d7 Imported vendor release 4.1.5-1
  885. 12104af Imported Upstream version 4.1.5
  886. $ cat packaging/sed.spec
  887. ...
  888. URL: http://sed.sourceforge.net/
  889. Source0: ftp://ftp.gnu.org/pub/gnu/sed/sed-%{version}.tar.gz
  890. Source1001: packaging/sed.manifest
  891. %description
  892. ...
  893. The `--no-patch-import` option disabled automatic patch import, i.e. gbs does not try to apply patches on top of the master branch. You should apply patches manually or mark them as manually maintained (see `manually maintained patches </documentation/reference/git-build-system/upstream-tarball-and-patch-generation-support>`_)
  894. With `--native` command line option you can specify the package as a native package, with no separate upstream. No upstream git branch is created and it is assumed that all content, including packaging files are found in the source tarball inside the source package.
  895. Using the `--allow-same-version` option you can re-import an already imported version of the package. This will not re-import the upstream sources, it'll only re-import the packaging files to the master branch.
  896. You can use the `--packaging-dir` option to define the directory for packaging files, i.e. some other than the default 'packaging/'. This may be needed e.g. if the upstream source sources already have a directory named 'packaging'. If you use this option you sould also define this setting in the package-specific .gbs.conf file (in all relevant branches) so that the remote repository and all other users get the correct setting, too.
  897. Importing upstream sources
  898. ``````````````````````````
  899. Importing source tarball can be used to upgrade a package. `gbs import` can only work if `upstream` branch exists. Once `gbs import` succeeded, new tarball will be unpacked and import to `upstream` branch. If `pristine-tar` branch exists, tarball is also be imported to pristine-tar branch.
  900. ::
  901. $ gbs import ../sed-4.2.0-1/sed-4.2.0.tar.gz
  902. What is the upstream version? [4.2.0]
  903. info: Importing '/home/test/sed-4.2.0-1/sed-4.2.0.tar.gz' to branch 'upstream'...
  904. info: Source package is sed
  905. info: Upstream version is 4.2.0
  906. pristine-tar: committed sed-4.2.0.tar.gz.delta to branch pristine-tar
  907. info: Successfully imported version 4.2.0 of /home/test/sed-4.2.0-1/sed-4.2.0.tar.gz
  908. info: done.
  909. test@test-desktop:~/sed$ git tag
  910. upstream/4.1.5
  911. upstream/4.2.0
  912. $ git log --oneline
  913. d3d25a7 Imported vendor release 4.1.5-1
  914. 1f6acaa Imported Upstream version 4.1.5
  915. $ git checkout upstream && git log --oneline
  916. Switched to branch 'upstream'
  917. 23220e6 Imported Upstream version 4.2.0
  918. 1f6acaa Imported Upstream version 4.1.5
  919. $ git checkout pristine-tar && git log --oneline
  920. Switched to branch 'pristine-tar'
  921. 7d44dad pristine-tar data for sed-4.2.0.tar.gz
  922. 71ee336 pristine-tar data for sed-4.1.5.tar.gz
  923. Special options for importing upstream sources
  924. ''''''''''''''''''''''''''''''''''''''''''''''
  925. If you want to merge imported upstream branch to master automatically, `--merge` can be used:
  926. ::
  927. $ gbs import --merge ../sed-4.2.0-1/sed-4.2.0.tar.gz
  928. What is the upstream version? [4.2.0]
  929. info: Importing '/home/test/sed-4.2.0-1/sed-4.2.0.tar.gz' to branch 'upstream'...
  930. info: Source package is sed
  931. info: Upstream version is 4.2.0
  932. pristine-tar: committed sed-4.2.0.tar.gz.delta to branch pristine-tar
  933. info: Merging to 'master'
  934. Merge made by recursive.
  935. info: Successfully imported version 4.2.0 of /home/test/sed-4.2.0-1/sed-4.2.0.tar.gz
  936. info: done.
  937. $ git log --oneline
  938. cc58b4c Merge commit 'upstream/4.2.0'
  939. 1f157c3 Imported Upstream version 4.2.0
  940. 482ef23 Imported vendor release 4.1.5-1
  941. fc76416 Imported Upstream version 4.1.5
  942. You can use the `--upstream-vcs-tag` option in case you track upstream git directly, but still want to import the official release tarballs. Using this option, you get the complete git history of the upstream git in to your upstream branch. And, the diff between the real upstream git tag and the release tarball (e.g. added autotools macros) is shown as one commit on top of the real upstream git tag.
  943. Common options for importing source packages and upstream sources
  944. `````````````````````````````````````````````````````````````````
  945. This section describes the advanced command line options that are applicable for importing both source packages and upstream source archives.
  946. The `--upstream-branch` option may be used to define the upstream branch name. If you do this, you sould also define that in the package-specific .gbs.conf file (in all relevant branches), similarly to the '--packaging-dir' option.
  947. The `--no-pristine-tar` option disables the use of the pristine-tar tool. That is, gbs will not import the upstream
  948. source tarball to pristine-tar branch.
  949. With the `--filter` option one can filter out files from the upstream source archive. For example, you may need to filter out the .git directory from the upstream tarball (with `--filter=.git`). This option can be given multiple times.
  950. GBS Export
  951. ----------
  952. Use 'gbs export' to export git tree to tarball and spec file. You can see how to use the `export` subcommand by using this command:
  953. ::
  954. $ gbs export --help
  955. Examples:
  956. - export source code to default packaging directory
  957. ::
  958. $ gbs export
  959. info: Generating patches from git (upstream/4.1.5..HEAD)
  960. info: Didn't find any old 'Patch' tags, adding new patches after the last 'Source' tag.
  961. info: Didn't find any old '%patch' macros, adding new patches after the last '%setup' macro
  962. pristine-tar: successfully generated /var/tmp/.gbs_export_UJn0nS/sed-4.1.5.tar.gz
  963. info: package files have been exported to:
  964. /home/test/sed/packaging/sed-4.1.5-1
  965. $ diff packaging/sed.spec packaging/sed-4.1.5-1/sed.spec
  966. 11a12,13
  967. > # Patches auto-generated by git-buildpackage:
  968. > Patch0: 0001-hello.patch
  969. 25a28,29
  970. > # 0001-hello.patch
  971. > %patch0 -p1
  972. From the log we can see patches has been generated, and tarball is created from `pristine-tar` branch. `--no-patch-export` option can be used to disable this feature, and tarball will be generated from current branch directly.
  973. - Use -o option to generate packaging files to specified path
  974. ::
  975. $ gbs export -o ~/
  976. - Using `--source-rpm` option to generate source RPM package:
  977. ::
  978. $ gbs export -o ~/ --source-rpm
  979. - Using `--spec` option, if there are multiple spec files
  980. ::
  981. $ gbs export --spec=dlog.spec
  982. `--spec` only accept file name should not contains any path info. gbs will prefix `packaging` dir automatically.
  983. GBS Changelog
  984. -------------
  985. Subcommand `changelog` is used to generate changelog file in ./packaging dir. It is mostly used for creating a changelog before submitting code.
  986. You can get the usage of subcommand `changelog` by using '$ gbs changelog --help'
  987. $ gbs changelog --help
  988. Examples:
  989. ::
  990. test@test-desktop:~/acpid$ gbs ch --since=bed424ad5ddf74f907de0c19043e486f36e594b9
  991. info: Change log has been updated.
  992. test@test-desktop:~/acpid$ head packaging/acpid.changes
  993. * Wed May 30 2012 xxxx <xxxx@example.com> 2.0.14@5c5f459
  994. - cleanup specfile for packaging
  995. * Wed May 30 2012 - xxxx <xxxx@example.com> - 2.0.10
  996. FAQ
  997. ===
  998. This section contains frequently asked questions.
  999. Installation Related Issues
  1000. ---------------------------
  1001. Q: On openSUSE, with correct proxy setting, zypper refresh/install does not work with http://download.tizen.org/tools/latest-release/openSUSE_{version}.
  1002. A: This may be caused by the proxy server. Try running the commands below to clean the cache:
  1003. ::
  1004. # clean the cache from proxy server or remote http server.
  1005. $ wget --no-cache http://download.tizen.org/tools/latest-release/openSUSE_{version}/repodata/repomd.xml
  1006. $ zypper refresh
  1007. $ zypper install gbs
  1008. Q: I installed gbs from the official repo, but it is trying to use source code from /usr/local/lib/python*.
  1009. A: This may be because you have installed GBS from source code before. Please remove it and re-install.
  1010. Q: How do I update GBS and its dependencies?
  1011. Refer to `Installing Development Tools`_.
  1012. gbs build Related Issues
  1013. ------------------------
  1014. Q: How can I make my local repo have higher priority than the remote repo?
  1015. A: It depends on the order of repos, the first repo will have the highest priority. In v0.10 and higher, GBS automatically puts local repos before remote repos.
  1016. Q: 'gbs build' report build expansion error: nothing provides X needed by Y.
  1017. A: The package you are trying to build is missing a dependency in the repo you specified. You may need to configure/add an additional repository. Try using the release repo, instead of the snapshot repo.
  1018. Q: 'gbs build' exits unexpectedly when installing packages to create build root.
  1019. A: This may be caused by a remote repo having been changed. You can specify `--clean` while running gbs build, like:
  1020. ::
  1021. $ gbs build -A <arch> --clean ...
  1022. Q: 'gbs build' exits unexpectedly with errors: file XXXX from install of YYYYY conflicts with file from package ZZZZZ.
  1023. A: This may be caused by a remote repo having been changed. You can specify `--clean` while running gbs build, like:
  1024. ::
  1025. $ gbs build -A <arch> --clean ...
  1026. Q: 'gbs build' exits with errors: have choice for `XXXX` needed by packagename: package1 package2.
  1027. A: This may be caused by a remote repo having two packages provide `XXXX`, and gbs don't know which one to use. In this case, you need download the build config and add one line like this:
  1028. ::
  1029. Prefer: package1
  1030. or
  1031. ::
  1032. Prefer: package2
  1033. To see how to download and customize build config, please refer to the gbs build usage page.
  1034. gbs Remote build Related Issues
  1035. -------------------------------
  1036. Q: I cannot access the remote build server (OBS) during a remote build
  1037. A: This requires that you have an username and passwd and that you set them correctly in the configuration file. Also, make sure the build server api and proxy settings are correct for your environment.
  1038. Proxy Related Issues
  1039. Q: export no_proxy="localhost; 127.0.0.1; .company.com" does not work on Ubuntu
  1040. A: Please set no_proxy as ".company.com" directly, and try again.
  1041. Q: 'gbs build' returns '500 Can't connect to xxx'
  1042. A: The proxy environment variable may have a trailing '/'. Remove the '/' from whatever is setting your environment variables and it should work. This is a known bug in the perl library. This issue is fixed in gbs 0.11.
  1043. Q: 'gbs build' returns '500 SSL negotiation failed error'
  1044. A: This is caused by the proxy server setting. The proxy you specified cannot forward SSL correctly. Try using another proxy.
  1045. gbs chroot Related Issues
  1046. -------------------------------
  1047. Q: 'gbs chroot -r <build_root>' report error: 'su: user root does not exist'.
  1048. A: This is caused by missing `login` package while creating build root. You can fix by updating /etc/passwd and /etc/group to add `root` user:
  1049. ::
  1050. $ echo "root:x:0:0:root:/root:/bin/bash" >>path/to/buildroot/etc/passwd
  1051. $ echo "root:x:0:" >>path/to/buildroot/etc/group
  1052. Others
  1053. ------
  1054. Q: [Fedora] gbs show error: "<user> is not in the sudoers file. This incident will be reported".
  1055. A: Update /etc/sudoers to give <user> sudo permission.
  1056. Reporting issues
  1057. ================
  1058. Please report bugs or feature requests at `JIRA <http://en.wikipedia.org/wiki/JIRA>`_: https://bugs.tizen.org.
  1059. Detailed steps:
  1060. - Click "create issue"
  1061. - Select Projects: "Development Tools"
  1062. - Select Components: "GBS"
  1063. Source Code
  1064. ===========
  1065. The source code is tracked at: https://github.com/01org/gbs
  1066. License
  1067. =======
  1068. ::
  1069. Copyright (c) 2012 Intel, Inc.
  1070. This program is free software; you can redistribute it and/or modify it
  1071. under the terms of the GNU General Public License as published by the Free
  1072. Software Foundation; version 2 of the License
  1073. This program is distributed in the hope that it will be useful, but
  1074. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  1075. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  1076. for more details.
  1077. You should have received a copy of the GNU General Public License along
  1078. with this program; if not, write to the Free Software Foundation, Inc., 59
  1079. Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  1080. .. _`Setting up Development Environment`: https://source.tizen.org/documentation/developer-guide/environment-setup
  1081. .. _`Installing Development Tools`: https://source.tizen.org/documentation/developer-guide/installing-development-tools