[buildd-tools-devel] [GIT] schroot branch master updated. debian/schroot-1.7.0-1-39-ge1baf55

Roger Leigh rleigh at alioth.debian.org
Sun Sep 29 15:46:35 UTC 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "schroot".

The branch, master has been updated
       via  e1baf55e6d7b16bc47f7fee78019cabe113e7ef7 (commit)
       via  6c10fdfd1b43f5a4e2ac12b04ca082517092fbcd (commit)
       via  a4093eeb57237c663ad2a4b6347d1b8820784678 (commit)
       via  79c796e02773b5131bf38157366039a799e3881b (commit)
       via  4a272b256ea0cae74cad442eca75363e9d8edb47 (commit)
      from  f71acb7a31d7932cf3d5f8aaa1682787c18b2127 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e1baf55e6d7b16bc47f7fee78019cabe113e7ef7
Merge: f71acb7 6c10fdf
Author: Roger Leigh <rleigh at debian.org>
Date:   Sun Sep 29 16:45:51 2013 +0100

    Merge branch 'cmake'

commit 6c10fdfd1b43f5a4e2ac12b04ca082517092fbcd
Author: Roger Leigh <rleigh at debian.org>
Date:   Sun Sep 29 15:58:08 2013 +0100

    NEWS: Document cmake and BitBucket

commit a4093eeb57237c663ad2a4b6347d1b8820784678
Author: Roger Leigh <rleigh at debian.org>
Date:   Mon Sep 23 22:04:06 2013 +0100

    debian: Build using cmake

commit 79c796e02773b5131bf38157366039a799e3881b
Author: Roger Leigh <rleigh at debian.org>
Date:   Sun Sep 15 18:08:30 2013 +0100

    po: Update translations

commit 4a272b256ea0cae74cad442eca75363e9d8edb47
Author: Roger Leigh <rleigh at debian.org>
Date:   Sun Sep 8 22:51:43 2013 +0100

    build: Add cmake build infrastructure
    
    This permits building using cmake rather than the existing
    autoconf/automake/libtool infrastructure.  The autotools-
    based build may be removed in future commits, but either
    may be used until that point.

-----------------------------------------------------------------------

Summary of changes:
 .gitattributes                                     |    2 +
 CMakeLists.txt                                     |  332 +++
 NEWS                                               |   20 +
 README                                             |   82 +-
 .../Makefile.am => bin/dchroot-dsa/CMakeLists.txt  |   22 +-
 .../Makefile.am => bin/dchroot/CMakeLists.txt      |   28 +-
 bin/schroot/CMakeLists.txt                         |   50 +
 cmake/GitRelease.cmake                             | 1009 +++++++++
 cmake/boost-checks.cmake                           |   87 +
 cmake/regex-checks.cmake                           |   61 +
 config.h.cmake                                     |  168 ++
 configure.ac                                       |   13 +
 debian/control                                     |   14 +-
 debian/libsbuild-1.7.0.install.in                  |    1 -
 debian/libsbuild-1.7.1.install.in                  |    1 +
 debian/rules                                       |   51 +-
 doc/CMakeLists.txt                                 |   42 +
 doc/{sbuild.dox.in => sbuild.dox.cmake}            |   16 +-
 doc/{schroot.dox.in => schroot.dox.cmake}          |   28 +-
 etc/CMakeLists.txt                                 |   73 +
 .../{Makefile.am => CMakeLists.txt}                |    7 +-
 .../Makefile.am => pam/CMakeLists.txt}             |    8 +-
 .../Makefile.am => etc/setup.d/CMakeLists.txt      |   35 +-
 .../Makefile.am => bin-common/CMakeLists.txt}      |   17 +-
 lib/bin-common/run.h                               |    2 +-
 .../dchroot-common/CMakeLists.txt                  |   15 +-
 lib/sbuild/CMakeLists.txt                          |  252 +++
 lib/sbuild/{config.h.in => config.h.cmake}         |   56 +-
 lib/sbuild/config.h.in                             |    9 +-
 lib/sbuild/i18n.h                                  |    8 +-
 lib/sbuild/sbuild.pc.cmake                         |   10 +
 lib/sbuild/session.cc                              |   10 +
 .../schroot-common/CMakeLists.txt                  |   14 +-
 lib/test/{Makefile.am => CMakeLists.txt}           |   13 +-
 .../listmounts/CMakeLists.txt                      |   16 +-
 .../Makefile.am => libexec/mount/CMakeLists.txt    |   18 +-
 man/CMakeLists.txt                                 |  217 ++
 man/Makefile.am                                    |    2 +-
 man/config.man.cmake                               |   17 +
 man/po/de.po                                       | 2271 +++++++++++---------
 man/po/fr.po                                       | 1966 ++++++++---------
 man/po/schroot-man.pot                             | 1348 ++++++------
 man/po4a.cfg                                       |   24 +-
 po/CMakeLists.txt                                  |   93 +
 po/schroot.pot                                     |    2 +-
 scripts/global.mk                                  |    3 +-
 test/CMakeLists.txt                                |  144 ++
 test/sbuild/chroot/config.cc                       |    2 +
 test/sbuild/keyfile.cc                             |    2 +
 test/sbuild/lock.cc                                |    2 +
 test/sbuild/run-parts.cc                           |    2 +
 51 files changed, 5807 insertions(+), 2878 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 CMakeLists.txt
 copy etc/pam/Makefile.am => bin/dchroot-dsa/CMakeLists.txt (53%)
 copy libexec/mount/Makefile.am => bin/dchroot/CMakeLists.txt (54%)
 create mode 100644 bin/schroot/CMakeLists.txt
 create mode 100644 cmake/GitRelease.cmake
 create mode 100644 cmake/boost-checks.cmake
 create mode 100644 cmake/regex-checks.cmake
 create mode 100644 config.h.cmake
 delete mode 100644 debian/libsbuild-1.7.0.install.in
 create mode 100644 debian/libsbuild-1.7.1.install.in
 create mode 100644 doc/CMakeLists.txt
 copy doc/{sbuild.dox.in => sbuild.dox.cmake} (99%)
 copy doc/{schroot.dox.in => schroot.dox.cmake} (98%)
 create mode 100644 etc/CMakeLists.txt
 copy etc/bash_completion/{Makefile.am => CMakeLists.txt} (86%)
 copy etc/{bash_completion/Makefile.am => pam/CMakeLists.txt} (87%)
 copy libexec/mount/Makefile.am => etc/setup.d/CMakeLists.txt (56%)
 copy lib/{test/Makefile.am => bin-common/CMakeLists.txt} (74%)
 copy contrib/setup.d/Makefile.am => lib/dchroot-common/CMakeLists.txt (80%)
 create mode 100644 lib/sbuild/CMakeLists.txt
 copy lib/sbuild/{config.h.in => config.h.cmake} (54%)
 create mode 100644 lib/sbuild/sbuild.pc.cmake
 copy contrib/setup.d/Makefile.am => lib/schroot-common/CMakeLists.txt (80%)
 copy lib/test/{Makefile.am => CMakeLists.txt} (78%)
 copy lib/test/Makefile.am => libexec/listmounts/CMakeLists.txt (73%)
 copy contrib/setup.d/Makefile.am => libexec/mount/CMakeLists.txt (68%)
 create mode 100644 man/CMakeLists.txt
 create mode 100644 man/config.man.cmake
 create mode 100644 po/CMakeLists.txt
 create mode 100644 test/CMakeLists.txt


hooks/post-receive
-- 
schroot



More information about the Buildd-tools-devel mailing list