- Jun 03, 2020
-
-
Richard van der Hoff authored
Upstream have merged our changes (https://github.com/spotify/dh-virtualenv/pull/300), so let's switch back to it instead of using our fork.
-
- May 22, 2020
-
-
Richard van der Hoff authored
When we tried to build debs for 1.13.0, the build failed because docker used a base docker image which had a stale apt cache. Fixes: #7540
-
- May 19, 2020
-
-
Richard van der Hoff authored
-
- Jul 29, 2019
-
-
Erik Johnston authored
* Fix debian packages for sid being called buster. I don't know why the sid images return buster as its codename in `lsb_release` but it does, so lets just grab the codename from the distro we pass into dockerfile * Newsfile
-
- Jul 17, 2019
-
-
Richard van der Hoff authored
This is basically a contrived way of adding a `Recommends` on `libpq5`, to fix #5653. The way this is supposed to happen in debhelper is to run `dh_shlibdeps`, which in turn runs `dpkg-shlibdeps`, which spits things out into `debian/<package>.substvars` whence they can later be included by `control`. Previously, we had disabled `dh_shlibdeps`, mostly because `dpkg-shlibdeps` gets confused about PIL's interdependent objects, but that's not really the right thing to do and there is another way to work around that. Since we don't always use postgres, we don't necessarily want a hard Depends on libpq5, so I've actually ended up adding an explicit invocation of `dpkg-shlibdeps` for `psycopg2`. I've also updated the build-depends list for the package, which was missing a couple of entries.
-
- May 03, 2019
-
-
Richard van der Hoff authored
psycopg 2.8 is now out, which means that the C library gets built from source, so we now need libpq-dev when building. Turns out the need for this package is already documented in docs/postgres.rst.
-
- Apr 16, 2019
-
-
Silke Hofstra authored
Using systemd-python allows for logging to the systemd journal, as is documented in: `synapse/contrib/systemd/log_config.yaml`. Signed-off-by:
Silke Hofstra <silke@slxh.eu>
-
- Feb 14, 2019
-
-
Richard van der Hoff authored
Make sure it refreshes the apt cache before trying to install stuff
-
- Jan 02, 2019
-
-
Richard van der Hoff authored
since #4298, the optional dependencies are no longer installed with a simple `pip install .`, which meant that they were not being included in the debian package. The easy fix to that is dh_virtualenv --extras, but that needs dh_virtualenv 1.1...
-
- Dec 20, 2018
-
-
Richard van der Hoff authored
-