[Pkg-owncloud-commits] [qtkeychain] branch master updated (1da8ea5 -> 0eeab73)

Sandro Knauß hefee at debian.org
Sat Jun 10 14:39:26 UTC 2017


This is an automated email from the git hooks/post-receive script.

hefee pushed a change to branch master
in repository qtkeychain.

      from  1da8ea5   release to ustable
       new  e6e49c2   Added gbp.conf
       new  612fbf9   Added option to make translations optional.
       new  6ed98a1   Added headerfiles to project; added .gitignore file
       new  0b509af   Adapted .gitignore to Linux and made it possible to find Qt5 in custom location.
       new  a291da0   Added qtkeychain_LIBRARIES to test program linker to make it work with static linkeage.
       new  0786ed6   Enabled static builds on Windows.
       new  75b8054   Merge pull request #70 from OpendTect/master
       new  83354ae   Merge branch '0.7'
       new  eae3ce6   Bump version for master
       new  5b6389b   OS X: Simplify string
       new  c2637a8   Whitespace fix
       new  c6bcd56   Fix export macro for static builds and export link libraries
       new  a3f7e52   Merge pull request #76 from TheOneRing/static
       new  0eaf3ad   Use find_dependency to find the dependencies
       new  8f42ff6   Merge pull request #78 from TheOneRing/depend
       new  d0b91f5   Fix osx usage
       new  7be9cef   Merge pull request #80 from TheOneRing/fix_osx
       new  2fe7d1a   Add appveyor ci support
       new  f7add16   Merge pull request #79 from TheOneRing/appvyor
       new  bb6b233   Add C++11 support checking and compiler switches when building with Qt >= 5.7
       new  d388400   Merge pull request #81 from d1vanov/master
       new  f5a7921   Silence compilation warnings in keychain_p.h.
       new  bdb0732   Merge pull request #83 from stinny/patch-1
       new  9eaef83   Fix compilation error on MSVC2015.
       new  ccb73ad   Merge pull request #84 from stinny/patch-2
       new  50f5378   Don't try to use DBus on Android
       new  895efaf   Merge pull request #86 from hasselmm/androidfixes
       new  bd936d6   Build fixes for disabled implicit string casts
       new  ddc4b8e   Add missing Q_OBJECT macro
       new  ce41cfb   Merge pull request #85 from hasselmm/nitpicks
       new  d077333   Extract PlainTextStore
       new  effb484   Merge pull request #87 from hasselmm/plaintextstore
       new  146524c   Add doxygen docs to Job class
       new  5331b6e   Add doxygen docs to WritePasswordJob class
       new  c9f5bb0   Add doxygen docs to ReadPasswordJob class
       new  d5d7639   Add doxygen docs to DeletePasswordJob class
       new  3cfac5f   Don't suggest to use local event loops
       new  860831d   Add documentation for Job's QSettings
       new  cd1cc46   Merge pull request #90 from aelog/master
       new  14f7df2   Added libsecret support.
       new  2426ebe   Added libsecret implementation.
       new  8d68e19   Fix initialization
       new  496979a   Fix build when disabling libsecret
       new  9b9cccc   Reintroduce minimal qmake support
       new  3722498   Merge pull request #95 from pasnox/master
       new  dbb12eb   Do not use QTDIR
       new  c1bf584   Do not manually play with -fPIC
       new  c750d74   Do not reset RPATH on installed libraries
       new  da69255   Merge pull request #94 from dangelog/various-fixes
       new  f7d6700   Add iOS support
       new  e1e94b6   Merge pull request #93 from hasselmm/ioskeystore
       new  e4a6fc9   Fix typo
       new  a349d9e   Use extra-cmake-modules to generate config files
       new  5e1227c   Generate pri file using exta-cmake-modules
       new  10b2a2b   Merge pull request #97 from TheOneRing/export
       new  13806b5   Update changelog, bump version for 0.8.0
       new  650e263   New upstream version 0.8.0
       new  cb0dc23   Merge tag 'upstream/0.8.0'
       new  5a3de5b   New upstream release
       new  ef19908   Updated copyright informations.
       new  d93fb03   Add new build dependencies.
       new  8e62c0d   Add patch: fix-qt4-build.patch
       new  0eeab73   Switch to Qt5 as default build.

The 63 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                              | 158 ++++++++----
 ChangeLog                                   |   7 +
 QtKeychainBuildTreeSettings.cmake.in        |   4 -
 QtKeychainConfig.cmake.in                   |  25 +-
 QtKeychainConfigVersion.cmake.in            |  11 -
 appveyor.yml                                |  31 +++
 appveyorHelp.psm1                           | 362 ++++++++++++++++++++++++++++
 cmake/Modules/ECMGeneratePriFile.cmake      | 197 +++++++++++++++
 cmake/Modules/ECMPackageConfigHelpers.cmake | 223 +++++++++++++++++
 cmake/Modules/ECMQueryQmake.cmake           |  32 +++
 cmake/Modules/ECMSetupVersion.cmake         | 223 +++++++++++++++++
 debian/changelog                            |  11 +
 debian/control                              |   2 +
 debian/copyright                            |  15 +-
 debian/gbp.conf                             |  38 +++
 debian/patches/fix-qt4-build.patch          |  19 ++
 debian/patches/series                       |   1 +
 debian/rules                                |  10 +-
 gnomekeyring.cpp                            |   2 +-
 gnomekeyring_p.h                            |   2 +
 keychain.cpp                                |   7 +-
 keychain.h                                  | 143 ++++++++++-
 keychain_ios.mm                             | 146 +++++++++++
 keychain_mac.cpp                            |   5 +-
 keychain_p.h                                |  21 +-
 keychain_unix.cpp                           |  96 ++++----
 keychain_win.cpp                            |  47 ++--
 libsecret.cpp                               | 336 ++++++++++++++++++++++++++
 libsecret_p.h                               |  33 +++
 plaintextstore.cpp                          | 110 +++++++++
 plaintextstore_p.h                          |  47 ++++
 qkeychain_export.h                          |  17 --
 qt5keychain.pri                             |  50 ++++
 33 files changed, 2235 insertions(+), 196 deletions(-)
 delete mode 100644 QtKeychainBuildTreeSettings.cmake.in
 delete mode 100644 QtKeychainConfigVersion.cmake.in
 create mode 100644 appveyor.yml
 create mode 100644 appveyorHelp.psm1
 create mode 100644 cmake/Modules/ECMGeneratePriFile.cmake
 create mode 100644 cmake/Modules/ECMPackageConfigHelpers.cmake
 create mode 100644 cmake/Modules/ECMQueryQmake.cmake
 create mode 100644 cmake/Modules/ECMSetupVersion.cmake
 create mode 100644 debian/gbp.conf
 create mode 100644 debian/patches/fix-qt4-build.patch
 create mode 100644 keychain_ios.mm
 create mode 100644 libsecret.cpp
 create mode 100644 libsecret_p.h
 create mode 100644 plaintextstore.cpp
 create mode 100644 plaintextstore_p.h
 delete mode 100644 qkeychain_export.h
 create mode 100644 qt5keychain.pri

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/qtkeychain.git



More information about the Pkg-owncloud-commits mailing list