The Mer Wiki now uses your Mer user account and password (create account on https://bugs.merproject.org/)


Packaging/SDL

From Mer Wiki
Revision as of 09:41, 21 April 2014 by Thp (Talk | contribs)

Jump to: navigation, search

Packaging of SDL2 and related libraries. We use tar_git for packaging.

Contents

Current approach

Packaging new upstream releases

  1. Clone upstream: git clone hg::https://hg.libsdl.org/SDL/
  2. cd SDL
  3. Add nemo remote: git remote add nemo git@github.com:nemomobile-packages/libsdl.git
  4. Checkout the "nemo" branch: git checkout nemo
  5. Merge a new upstream release: git merge release-2.x.y (potentially drop local patches merged upstream)
  6. Update version in rpm/*.spec, reset release to 1
  7. Run a test build: mb2 build
  8. Commit spec file changes, message: [nemo] New upstream release 2.x.y
  9. Push changes: git push nemo nemo
  10. Tag as nemo/VERSION-RELEASE (e.g. nemo/2.0.0-1)
  11. Push tag: git push nemo nemo/2.0.0-1

Packaging local changes / patches

  1. Clone nemo: git clone git@github.com:nemomobile-packages/libsdl.git
  2. cd libsdl
  3. Checkout the "nemo" branch: git checkout nemo
  4. Make changes
  5. Run a test build: mb2 build
  6. Increment release number in rpm/*.spec
  7. Commit with message [nemo] DESCRIPTION OF CHANGES
  8. Push changes: git push nemo nemo
  9. Tag as nemo/VERSION-RELEASE (e.g. nemo/2.0.0-2)
  10. Push tag: git push nemo nemo/2.0.0-2

Previously

  • Using hg-fast-export for importing from hg to git
  • Branch is rpm
  • Token is nemo
Personal tools