summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-21Revert "Freeze python version"buildpackagevarac
This reverts commit caf70a17fee96610e2b7038056a84aa3f1d421e4.
2017-03-21Re-add dh_installvarac
2017-03-21Freeze python versionvarac
2017-03-21Dont try to install missing initfilevarac
2017-03-21Fix postinst return codes so we can run with -eMicah Anderson
2017-03-21fix path to manpageMicah Anderson
2017-03-21Always publish artifactvarac
2017-03-21add dh_installman reference for manpageMicah Anderson
2017-03-21add skeleton man page for create-user-dbMicah Anderson
2017-03-21Add missing #DEBHELPER# token to postinst.Micah Anderson
W: soledad source: maintainer-script-lacks-debhelper-token debian/soledad-server.postinst N: N: This package is built using debhelper commands that may modify N: maintainer scripts, but the maintainer scripts do not contain the N: "#DEBHELPER#" token debhelper uses to modify them. N: N: Adding the token to the scripts is recommended.
2017-03-21Set exit-on-error for soledad-server.postinstvarac
2017-03-21Remove empty soledad-server.postrmvarac
2017-03-21Depend on adduser packagevarac
2017-03-21Add Uploaders and increase Standardsvarac
2017-03-21Package for jessie/amd64varac
2017-03-21[pkg] update debian changelogdrebs
2017-03-21[pkg] add systemd service file to debian packagedrebs
2017-03-21[pkg] unify and fix override_dh_auto_cleandrebs
2017-03-21[pkg] add soledad to the ssl-cert groupdrebs
Now that uid an gid of the application are changed earlier by systemd (instead of twistd), soledad will fail to start if it doesn't have permission to read the ssl certificate with the new uid/gid. This commit adds soledad to the ssl-cert group, which is the group of the certificate as set by the platform.
2017-03-21[pkg] use systemd in debian packagedrebs
2017-03-21[pkg] switch to systemd-style initdrebs
2017-03-21[pkg] add empty debian postrm file for soledad-serverdrebs
Seems that this file was removed in the process of packaging different versions of soledad. The missing file caused dh_installinit to create a standard debhelper file that violated lintian. See the following issue for more details: https://leap.se/code/issues/8701
2017-03-21[pkg] update debian changelogdrebs
2017-03-21update debian changelogdrebs
2017-03-21[pkg] update debian changelogdrebs
2017-03-21[pkg] improve speed of *.pyc files removaldrebs
2017-03-21[pkg] update debian dependencies versionsdrebs
2017-03-21[pkg] add debian directory for 0.8.1drebs
2017-03-17[docs] add tulio to authors0.9.5Kali Kaneko
2017-03-17[docs] add efkin to authors, changelog entry for py3 testsKali Kaneko
2017-03-17[test] Fix Shared Runner configefkin
2017-03-17[refactor] Improve python3 compatibilityefkin
With this commit all tests on py34 tox environment are collected.
2017-03-17[test] Prepare tests for python3 compatibilityefkin
2017-03-17[test] Prepare new tox environmentefkin
At this point tests are not yet collectable in the new environment. But no regressions observed.
2017-03-17[docs] Define in details the testing environmentefkin
On debian stable the `python3-tox` and `python-tox` packages come with a really old version of `pip` and `setup_tools`. This makes unusable PEP496 that comes handy when dependencies are "py-version-related". As a workaround we can "inject" an upgraded version of `pip` just before running `tox`.
2017-03-17[docs] changelog for 0.9.4Kali Kaneko
2017-03-13[pkg] write changelog for 0.9.3Kali Kaneko
2017-03-13[docs] explain sync bypass due lack of tokenVictor Shyba
2017-03-13[feat] make database creation appear in logsdrebs
2017-03-13[bug] remove offline flagdrebs
The offline flag is not needed and rendered the soledad client prone to bugs because it would need to be toggled and that is succeptible to timing problems.
2017-03-13[bug] fix raising of invalid auth token errordrebs
2017-03-09[bug] secrets version defaults to v1Tulio Casagrande
2017-03-09[bug] add default version when decrypting secretsTulio Casagrande
Resolves: https://0xacab.org/leap/soledad/issues/8788
2017-03-02[test] add comments explaining behaviour of upload/download benchmarkdrebs
2017-03-02[test] improve twistd startup and terminationdrebs
- use subprocess.check_call() to ensure any errors during twistd startup will properly show up on test reports. - use SIGTERM instead of SIGKILL to gracefully terminate twistd.
2017-03-02[test] mark benchmark tests using their group namesdrebs
2017-03-02[test] bugfix: actually use an empty local db in download benchmarksdrebs
We were previously not using an empty local db for download benchmark tests, so there was actually nothing to sync. This commit fixes that by adding a way to force an empty local db on soledad client instantiation.
2017-03-02[test] use new way of indicating the tcp port for twisted webdrebs
2017-03-02[test] fix test_sync_target for error handlingVictor Shyba
It needs a defer.Deferred
2017-03-02[bug] handle error onceVictor Shyba
Handle it only if self.deferred wasnt called yet, otherwise that's just an out-of-sync call from a scheduled deferred. Since it was already logged, it's ok to ignore.