Mario Rodas
e89fc19b97
Merge pull request #58368 from marsam/update-timescaledb
...
timescaledb: 1.0.0 -> 1.2.2, timescaledb-parallel-copy: 2018-05-14 -> 0.2.0, timescaledb-tune: init at 0.5.0
2019-04-24 20:42:30 -05:00
Renaud
1154f7fe25
Merge pull request #58607 from marsam/update-plv8
...
postgresqlPackages.plv8: 2.3.8 -> 2.3.11
2019-04-24 22:26:14 +02:00
Mario Rodas
7bfe30917a
Merge pull request #59292 from steve-chavez/pgrouting
...
pgrouting: init at 2.6.2
2019-04-15 19:38:12 -05:00
steve-chavez
1f69a954e6
pgrouting: init at 2.6.2
...
* Remove configurePhase and gcc. Move perl dependency
* Shorten github rev
* Add $out/bin workaround
2019-04-15 18:24:45 -05:00
Mario Rodas
0b8d120d84
postgresqlPackages.pg_cron: 1.1.3 -> 1.1.4 ( #59396 )
2019-04-14 22:36:39 +02:00
Mario Rodas
3277aedf25
postgresqlPackages.postgis: 2.5.1 -> 2.5.2 ( #58605 )
2019-04-12 17:01:36 +02:00
Frederik Rietdijk
d108b49168
Merge master into staging-next
2019-04-09 16:38:35 +02:00
R. RyanTM
bc5c2f4c60
postgresqlPackages.postgis: 2.5.1 -> 2.5.2 ( #58756 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/postgis/versions
2019-04-08 23:58:39 +02:00
R. RyanTM
33a8155449
postgresqlPackages.pg_cron: 1.1.2 -> 1.1.3 ( #58747 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pg_cron/versions
2019-04-08 23:44:12 +02:00
John Ericson
4ccb74011f
Merge commit '18aa59b0f26fc707e7313f8467e67159e61600c2' from master into staging
...
There was one conflict in the NixOS manual; I checked that it still
built after resolving it.
2019-04-01 00:40:03 -04:00
Mario Rodas
f917e9d343
postgresqlPackages.plv8: 2.3.8 -> 2.3.11
2019-03-30 21:00:00 -05:00
Mario Rodas
d4d710c1ab
postgresqlPackages.pipelinedb: init at 1.0.0-13
2019-03-27 08:40:00 -05:00
Mario Rodas
42b75c6c38
timescaledb: 1.0.0 -> 1.2.2
2019-03-25 16:20:00 -05:00
Danylo Hlynskyi
40cc269561
Merge branch 'master' into postgresql-socket-in-run
2019-03-25 01:06:59 +02:00
Wael M. Nasreddine
5af0780492
Merge remote-tracking branch 'origin/master' into staging
...
* origin/master: (693 commits)
buildGoModule: use go_1_12 instead of go_1_11 (#58103 )
gitAndTools.lab: 0.15.2 -> 0.15.3 (#58091 )
signal-desktop: 1.22.0 -> 1.23.0
added missing semicolon to documentation
terminus_font_ttf: 4.46.0 -> 4.47.0
buildGoModule: remove SSL env vars in favor of cacert in buildInputs (#58071 )
dav1d: init at 0.2.1
dropbox-cli: 2018.11.28 -> 2019.02.14
atlassian-confluence: 6.14.1 -> 6.14.2
maintainers: update email for dywedir
python.pkgs.hglib: use patch to specify hg path (#57926 )
chkrootkit: 0.52 -> 0.53
radare2-cutter: 1.7.2 -> 1.8.0
autorandr: 1.7 -> 1.8
pythonPackages.pyhepmc: fix build
llvm-polly/clang-polly: use latest llvm
apulse: 0.1.11.1 -> 0.1.12, cleanup
factorio: experimental 0.17.14 → 0.17.16 (#58000 )
sequeler: 0.6.7 -> 0.6.8
nasc: 0.5.1 -> 0.5.2
...
2019-03-21 21:01:25 -07:00
aszlig
f5106019d3
postgresql: Only use /run/postgresql on Linux
...
We only have /run on modern GNU/Linux systems and it's not necessarily
the case for Mac OS X or *BSD, so let's add the patch only if
stdenv.isLinux.
Thanks to @danbst for catching this.
Signed-off-by: aszlig <aszlig@nix.build>
2019-03-16 12:34:00 +01:00
R. RyanTM
1670e35e2d
postgresqlPackages.pgroonga: 2.1.7 -> 2.1.8 ( #54746 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions
2019-03-15 20:36:40 +01:00
aszlig
ef553788d0
postgresql: Move socket dir to /run/postgresql
...
The default, which is /tmp, has a few issues associated with it:
One being that it makes it easy for users on the system to spoof a
PostgreSQL server if it's not running, causing applications to connect
to their provided sockets instead of just failing to connect.
Another one is that it makes sandboxing of PostgreSQL and other services
unnecessarily difficult. This is already the case if only PrivateTmp is
used in a systemd service, so in order for such a service to be able to
connect to PostgreSQL, a bind mount needs to be done from /tmp to some
other path, so the service can access it. This pretty much defeats the
whole purpose of PrivateTmp.
We regularily run into issues with this in the past already (one example
would be https://github.com/NixOS/nixpkgs/pull/24317 ) and with the new
systemd-confinement mode upcoming in
https://github.com/NixOS/nixpkgs/pull/57519 , it makes it even more
tedious to sandbox services.
I've tested this change against all the postgresql NixOS VM tests and
they still succeed and I also grepped through the source tree to replace
other occasions where we might have /tmp hardcoded. Luckily there were
very few occasions.
Signed-off-by: aszlig <aszlig@nix.build>
Cc: @ocharles, @thoughtpolice, @danbst
2019-03-15 04:52:35 +01:00
Steve Chávez
28d49431c0
tds_fdw: init a 1.0.8
...
* tds_fdw: init a 1.0.8
* Use pname
2019-03-12 19:38:58 -07:00
R. RyanTM
65898a4ddb
postgresqlPackages.pgtap: 0.99.0 -> 1.0.0 ( #57360 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgtap/versions
2019-03-13 00:58:12 +02:00
Lancelot SIX
a90cf49fa9
postgresql_10: 10.6 -> 10.7
...
See https://www.postgresql.org/about/news/1920/ for release information.
2019-02-25 15:43:07 +01:00
Lancelot SIX
70a31c2e00
postgresql_9_6: 9.6.11 -> 9.6.12
...
See https://www.postgresql.org/about/news/1920/ for release information.
2019-02-25 15:42:46 +01:00
Lancelot SIX
74c715e39c
postgresql_9_5: 9.5.15 -> 9.5.16
...
See https://www.postgresql.org/about/news/1920/ for release information.
2019-02-25 15:42:10 +01:00
Lancelot SIX
d1dd3a1f1a
postgresql_9_4: 9.4.20 -> 9.4.21
...
See https://www.postgresql.org/about/news/1920/ for release information.
2019-02-25 15:40:42 +01:00
Danylo Hlynskyi
d0d099266e
postgresql: fix regression in NixOS after update to 11.2 ( #56146 )
...
ryantm bot updates `psqlSchema` alongside with version: https://github.com/NixOS/nixpkgs/pull/50646 , https://github.com/NixOS/nixpkgs/pull/55860
but `psqlSchema` is used to generate `stateDir`. It shouldn't be updated.
Ideally it should be equal to postgresql major version for pg versions,
but we already have deployments in /var/lib/postgresql/11.1. Strange why
nobody complained when it was changed from 11.0 -> 11.1.
I propose do correct naming for PG12+, but status quo for current versions.
Fixes https://github.com/NixOS/nixpkgs/issues/56134
2019-02-21 19:21:08 +02:00
Shea Levy
bb52ff3df8
postgresql: Don't move libs unnecessarily out of $lib.
...
In particular, when static linking pkgconfig expects libpq.a in $lib
2019-02-18 20:31:09 -05:00
R. RyanTM
e9aeffdc0a
postgresql_11: 11.1 -> 11.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/postgresql/versions
2019-02-15 16:02:50 -08:00
John Ericson
c85a8a1fad
postgresql: No need to refer to super
...
self.callPackage works fine for now. If/when that changes, we have a
repo-wide thing to deal with so no reason to do anything now.
2019-02-02 15:56:52 -05:00
Mario Rodas
2981a7b0e3
pg_topn: 2.2.0 -> 2.2.2
2019-01-30 19:59:21 -05:00
Danylo Hlynskyi
4fb8bc8238
postgresql: cleanup postgis ( #54396 )
...
postgis: cleanup
Another part of https://github.com/NixOS/nixpkgs/pull/38698 , though I did cleanup even more.
Moving docs to separate output should save another 30MB.
I did pin poppler to 0.61 just to be sure GDAL doesn't break again next
time poppler changes internal APIs.
2019-01-26 21:15:43 +02:00
Danylo Hlynskyi
8e985dced0
postgresql: reorganize package and its extensions ( #54319 )
...
* postgresql: reorganize package and it's extensions
Extracts some useful parts of https://github.com/NixOS/nixpkgs/pull/38698 ,
in particular, it's vision that postgresql plugins should be namespaced.
2019-01-26 19:46:57 +02:00
Austin Seipp
8cbe6b9ce4
nixpkgs: reorganize the postgresql extensions
...
This is a backwards compatible change; it mostly puts all the extensions
for postgresql in a common directory to keep them isolated.
It also moves a few things that /were not/ extensions out into other parts of
the filesystem namespace; namely the postgresql_jdbc and psqlodbc libraries
were moved under development/java-modules and development/libraries,
respectively. Because these libraries use the libpq postgresql client drivers,
they're less sensitive to underlying version changes anyway (since the protocol
is relatively stable).
No attributes were renamed or harmed in the creation of this patch.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-19 17:33:32 -06:00
Austin Seipp
73f56ae191
nixpkgs: move postgresql patches into a common directory
...
This simply makes it easier to browse the PostgreSQL package directory. More to
come.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-19 17:33:32 -06:00
R. RyanTM
2b183a448c
pgroonga: 2.1.6 -> 2.1.7
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions
2019-01-13 09:48:03 +01:00
Lancelot SIX
ce235f70ca
postgresql_9_3: drop
...
Postgresql 9.3 reached end of life on november 11, 2018 (see
https://www.postgresql.org/about/news/1905/ )
(Rebase of #52052 . Closes #52052.)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-31 08:44:57 -06:00
Franz Pletz
61bd0e851e
postgresql: branch 9.3 is not maintained anymore
...
See https://www.postgresql.org/support/versioning/ .
2018-12-17 16:35:48 +01:00
Alexey Shmalko
ef966c1952
Merge pull request #51719 from marsam/postgresql-build-icu-support
...
postgresql: Build with icu support
2018-12-10 01:52:54 +02:00
Mario Rodas
acc45d8f4f
postgresql: Build with icu support
2018-12-08 00:33:39 -05:00
Frederik Rietdijk
9b81c7e455
Merge staging-next into staging
2018-11-29 09:18:35 +01:00
Frederik Rietdijk
9db2421d1f
Merge master into staging-next
2018-11-29 08:12:56 +01:00
Jack Kelly
5987c5c694
postgresql: Remove static libs using host platform extension
2018-11-28 10:49:13 -06:00
Alyssa Ross
c41c195dc5
postgresql: disable parallel building on Darwin
...
There have been multiple reports of this failing.
Fixes https://github.com/NixOS/nixpkgs/issues/51093 .
2018-11-27 20:13:23 +00:00
Domen Kožar
f31ea5a2d5
postgresql: conditionalize systemd (on darwin)
2018-11-27 19:38:54 +00:00
Domen Kožar
d04fedd715
postgresql: Enable systemd integration for 9.6+
...
This allows, finally, proper detection when postgresql is ready to
accept connections. Until now, it was possible that services depending
on postgresql would fail in a race condition trying to connect
to postgresql.
2018-11-27 19:16:21 +00:00
R. RyanTM
128a446c59
postgresql_11: 11.0 -> 11.1
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/postgresql/versions
2018-11-26 09:53:36 -06:00
Frederik Rietdijk
0d0d7dcd06
Merge staging-next into staging
2018-11-18 10:41:34 +01:00
Markus Kowalewski
41c619a191
pgtap: add license
2018-11-15 00:13:52 +01:00
Lancelot SIX
3cbc20e8c4
postgresql_11: 11.0 -> 11.1
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:45 +01:00
Lancelot SIX
575151eb08
postgresql_10: 10.5 -> 10.6
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:45 +01:00
Lancelot SIX
1670fd115d
postgresql_9_6: 9.6.10 -> 9.6.11
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:44 +01:00
Lancelot SIX
f703ea62a0
postgresql_9_5: 9.5.14 -> 9.5.15
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:44 +01:00
Lancelot SIX
882c3b529c
postgresql_9_4: 9.4.19 -> 9.4.20
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:44 +01:00
Lancelot SIX
5d37d63388
postgresql_9_3: 9.3.24 -> 9.3.25
...
See https://www.postgresql.org/about/news/1905/ for release information.
Fixes CVE-2018-16850
2018-11-09 09:42:37 +01:00
Austin Seipp
4569ee7d74
plv8: unbreak build, bump to version 2.3.8
...
ee58a5b30d
broke the plv8 build because it
upgraded the v8_6_x expression everywhere to the 6.9 branch, which came
with API changes. Notably, it seems plv8 only supports up-to v8 6.4.x at
this time.
This keeps a copy of the plv8_6_x expression inside the same directory
as the other v8 versions (so patches, etc are easy to apply), but it is
not exposed to the top-level of all-packages.nix.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-04 08:24:19 -06:00
Austin Seipp
b0f7c86094
timescaledb: fix license (Apache 2.0, not PostgreSQL)
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-04 07:30:23 -06:00
Austin Seipp
800184df21
tsearch_extras: 0.3 -> 0.4
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-03 19:53:52 -05:00
Austin Seipp
d8abcdc1de
pg_topn: 2.0.2 -> 2.2.0
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-03 19:53:46 -05:00
Austin Seipp
a713251348
timescaledb: 0.11.0 -> 1.0.0
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-03 19:49:00 -05:00
Austin Seipp
cecee87f39
pg_repack: reindent to 2-spaces
...
More or less all the Postgres code uses this, so it's nice to be
consistent.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-03 19:46:07 -05:00
Austin Seipp
b5be88c97a
pg_hll: 2.10.2-9af41684 -> 2.12
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-03 19:44:24 -05:00
Austin Seipp
648f4a2769
nixpkgs: tidy up pgjwt package
...
This makes pgjwt take a dummy 'postgresql' argument, which it does not *need*
in the buildInputs (it is purely a SQL extension with no C code). However, this
argument will be necessary for an upcoming change that will parameterize the
extensions over a particular PostgreSQL version.
It also does some tiny cleanup, setting a null build phase.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-02 13:52:48 -05:00
Austin Seipp
2266f2014b
nixos/postgresql: add myself as maintainer
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-02 13:52:33 -05:00
Alyssa Ross
91c746cacc
postgresql_11: init at 11.0
2018-10-30 14:33:35 +00:00
Alyssa Ross
c6c7d55790
postgresql*: use underscores in version numbers
2018-10-30 14:32:21 +00:00
Alyssa Ross
9594b59f13
postgresql10: rename from postgresql100
2018-10-30 12:40:20 +00:00
R. RyanTM
5fd8de8137
pgroonga: 2.1.3 -> 2.1.6 ( #49205 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions
2018-10-27 20:14:23 -04:00
R. RyanTM
d2a137abb5
pg_repack: 1.4.3 -> 1.4.4
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pg_repack/versions
2018-10-24 15:22:43 +02:00
Jörg Thalheim
7e5e9429d0
Merge pull request #48375 from r-ryantm/auto-update/pg_cron
...
pg_cron: 1.0.2 -> 1.1.2
2018-10-15 23:22:26 +01:00
Renaud
adf9c5080f
postgresql-jdbc: 42.2.2 -> 42.2.5
...
¤ set read-only permissions on .jar at install (mode 0444)
¤ license is now BSD 2-clause
2018-10-15 19:34:24 +02:00
R. RyanTM
170c6104b6
pg_cron: 1.0.2 -> 1.1.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pg_cron/versions
2018-10-13 21:36:56 -07:00
R. RyanTM
d1b8d73464
pgroonga: 2.0.9 -> 2.1.3 ( #46984 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions
2018-09-29 20:54:42 +02:00
R. RyanTM
d57b9eb6d6
pgtap: 0.98.0 -> 0.99.0 ( #46980 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgtap/versions
2018-09-23 15:09:37 +02:00
R. RyanTM
9064d9db00
cstore_fdw: 1.6.1 -> 1.6.2 ( #46291 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cstore_fdw/versions
2018-09-18 18:26:08 +02:00
John Ericson
440ac01e5a
postgresql: Fix cross compilation
...
b1548ce080
dropped the C compiler prefix
2018-08-20 10:12:18 +02:00
Vladimír Čunát
153a19df05
Merge branch 'master' into staging-next
...
Hydra: ?compare=1474536
2018-08-20 09:15:33 +02:00
R. RyanTM
7fa8623d11
pgroonga: 2.0.6 -> 2.0.9 ( #45167 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions .
2018-08-19 22:47:22 +02:00
Vladimír Čunát
b1548ce080
postgresql*: fixup build by a side-step
...
https://github.com/NixOS/nixpkgs/pull/44767#issuecomment-414066070
2018-08-19 09:07:00 +02:00
Orivej Desh
65663f883c
msgpack: rename from libmsgpack
...
The project does not use the name "libmsgpack". It variously uses "msgpack" and
"msgpack-c", and "msgpackc" for the name of the library.
2018-08-18 23:19:54 +00:00
Vladimír Čunát
c13bbda5b3
Merge #45146 into staging: postgresql security updates
2018-08-18 08:56:21 +02:00
Vladimír Čunát
cbabebcc2e
Merge branch 'master' into staging-next
...
Hydra: ?compare=1473892
2018-08-17 13:45:21 +02:00
Andreas Rammhold
5de601e0d2
postgresql93: 9.3.23 -> 9.3.24
...
Fixes CVE-2018-10915 & CVE-2018-10925
Release notes: https://www.postgresql.org/docs/current/static/release-9-3-24.html
2018-08-16 21:52:37 +02:00
Andreas Rammhold
2abb00e249
postgresql94: 9.4.18 -> 9.4.19
...
Fixes CVE-2018-10915 & CVE-2018-10925
Release notes: https://www.postgresql.org/docs/current/static/release-9-4-19.html
2018-08-16 21:52:37 +02:00
Andreas Rammhold
98d8db4c32
postgresql95: 9.5.13 -> 9.5.14
...
Fixes CVE-2018-10915 & CVE-2018-10925
Release notes: https://www.postgresql.org/docs/current/static/release-9-5-14.html
2018-08-16 21:52:30 +02:00
Andreas Rammhold
94c35894b0
postgresql96: 9.6.9 -> 9.6.10
...
Fixes CVE-2018-10915 & CVE-2018-10925
Release notes: https://www.postgresql.org/docs/current/static/release-9-6-10.html
2018-08-16 21:41:05 +02:00
Andreas Rammhold
1c4fc1dbd9
postgresql100: 10.4 -> 10.5
...
Fixes CVE-2018-10915 & CVE-2018-10925
Release notes: https://www.postgresql.org/docs/current/static/release-10-5.html
2018-08-16 21:38:29 +02:00
Timo Kaufmann
c0b9a7ec8b
Merge pull request #45132 from r-ryantm/auto-update/timescaledb
...
timescaledb: 0.10.1 -> 0.11.0
2018-08-16 20:54:29 +02:00
R. RyanTM
87db3da091
timescaledb: 0.10.1 -> 0.11.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/timescaledb/versions .
2018-08-16 11:35:39 -07:00
Christoph Hrdinka
72a35533e0
postgresql: fix tzdata path
...
Signed-off-by: Christoph Hrdinka <c.github@hrdinka.at>
2018-08-14 19:07:32 +01:00
Vladimír Čunát
5b0398dc36
Merge branch 'master' into staging-next
...
Conflicts: gobby and libinfinity - I took the hand-edited versions
instead of those resuting from the mass-replacement.
Hydra: ?compare=1473190
2018-08-13 20:43:59 +02:00
R. RyanTM
e0eb7d9ed7
cstore_fdw: 1.6.0 -> 1.6.1 ( #44792 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cstore_fdw/versions .
2018-08-13 14:35:53 +02:00
Tuomas Tynkkynen
008fd5fcf5
Merge remote-tracking branch 'upstream/master' into staging
2018-08-04 15:17:42 +03:00
John Ericson
db965063b3
treewide: Make configureFlags lists
2018-08-03 17:06:03 -04:00
John Ericson
f539c30095
postgresql: Fix nits after cross fixes
2018-08-02 18:48:06 -04:00
Ding Xiang Fei
003055a670
pass NIX_CFLAGS_COMPILE through mkDerivation instead
2018-07-31 11:23:17 +08:00
Ding Xiang Fei
c0ca3e36d6
be explicit on choice of uuid library
2018-07-30 15:47:10 +08:00
Ding Xiang Fei
e8682cafd6
always build against tzdata
2018-07-30 11:54:57 +08:00
Ding Xiang Fei
894705161c
use NIX_CFLAGS_COMPILE
2018-07-29 21:21:46 +08:00
Ding Xiang Fei
a998a49ee4
reduce diffs due to reordering
2018-07-27 14:19:05 +08:00
Ding Xiang Fei
b2104d93ff
point to the right libxml2 header folder
2018-07-27 14:12:25 +08:00
Ding Xiang Fei
5c7cfbc0f1
allow postgresql cross compiling
2018-07-25 16:32:42 +08:00
volth
dda95bae35
[bot] treewide: remove unused 'args@' in lambdas
2018-07-20 19:54:05 +00:00
Silvan Mosberger
446ec6df2d
postgresql100: 10.3 -> 10.4
...
Fixes CVE-2018-1115
Release notes: https://www.postgresql.org/docs/10/static/release-10-4.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
d066cecd7d
postgresql96: 9.6.8 -> 9.6.9
...
Fixes CVE-2018-1115
Release notes: https://www.postgresql.org/docs/10/static/release-9-6-9.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
ac5fdda5a6
postgresql95: 9.5.12 -> 9.5.13
...
Release notes: https://www.postgresql.org/docs/10/static/release-9-5-13.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
3d16732102
postgresql94: 9.4.17 -> 9.4.18
...
Release notes: https://www.postgresql.org/docs/10/static/release-9-4-18.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
73aaf63fb1
postgresql93: 9.3.22 -> 9.3.23
...
Release notes: https://www.postgresql.org/docs/10/static/release-9-3-23.html
2018-07-20 11:50:41 -05:00
Austin Seipp
6a1b65b606
timescaledb: 0.9.2 -> 0.10.1
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-14 12:53:36 -05:00
Austin Seipp
8f21a16861
timescaledb: create $out/bin in order to work around a stupid bug
...
See #22653 or #38469 . 'manveru' reported this on IRC again, but unfortunately a
real fix requires a bit more work. In the mean time, this plugs the leak with a
bit of duct tape.
'timescale' is an often desired extension and, in the mean time, this
workaround means you also do not have to install something like postgis (with a
large dependency set) into your closure to get things to work.
Ideally in the mean time, *all* postgresql extensions should have $out/bin
created for them... Doing this will require more ongoing work, or a proper
fix to the buildEnv nonsense going on.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-14 12:50:20 -05:00
Silvan Mosberger
57bccb3cb8
treewide: http -> https sources ( #42676 )
...
* treewide: http -> https sources
This updates the source urls of all top-level packages from http to
https where possible.
* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
Ryan Mulligan
fce8f26af6
treewide: http -> https ( #42665 )
2018-06-27 22:12:57 +02:00
John Ericson
18742471af
Merge remote-tracking branch 'upstream/master' into staging
...
Use newer vagrant from master
2018-05-23 09:40:37 -04:00
R. RyanTM
62f0d64640
pg_repack: 1.4.2 -> 1.4.3
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/pg_repack/versions .
These checks were done:
- built on NixOS
- /nix/store/08l7mgizcwhz3iiq7q53529mnj0z9apl-pg_repack-1.4.3/bin/pg_repack passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 1 of 1 passed binary check by having the new version present in output.
- found 1.4.3 with grep in /nix/store/08l7mgizcwhz3iiq7q53529mnj0z9apl-pg_repack-1.4.3
- directory tree listing: https://gist.github.com/98848a9a560aa1d4de3e164197944d32
- du listing: https://gist.github.com/cfef5141050a394c88b04b839ec17fdf
2018-05-22 21:06:52 -07:00
Vladimír Čunát
392e6de7d0
Merge branch 'master' into staging
2018-05-20 13:20:53 +02:00
R. RyanTM
2af45d94dd
pgroonga: 2.0.5 -> 2.0.6 ( #40646 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/pgroonga/versions .
These checks were done:
- built on NixOS
- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 2.0.6 with grep in /nix/store/nh4mqn37kx82q7l5fm6anycaw8iz7b8n-pgroonga-2.0.6
- directory tree listing: https://gist.github.com/14e8971d0a27517ef320553ce1e8d33c
- du listing: https://gist.github.com/c1f25e2851a59216d5fa9f88b6477927
2018-05-19 16:59:54 +02:00
John Ericson
ddbe9191ef
Merge remote-tracking branch 'upstream/master' into staging
...
Keep the dontCheck because the test suite fails, get rid of the LDFLAGS
hack because we don't need it!
2018-05-16 15:16:08 -04:00
R. RyanTM
e03acfe161
timescaledb: 0.9.1 -> 0.9.2 ( #40468 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/timescaledb/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.9.2 with grep in /nix/store/m28fll152hk6ik9fiz2jy66qccjxklq3-timescaledb-0.9.2
- directory tree listing: https://gist.github.com/a922008862652d9f3c6f2e2a678c4c71
- du listing: https://gist.github.com/8c5a0a1374fbb013168d4197d67ba214
2018-05-16 14:47:29 +02:00
John Ericson
2c5d915200
Merge commit '92b7a814f26ee1d37e989431c18518c67285a332' into staging
2018-05-13 01:02:09 -04:00
R. RyanTM
23d902a90f
tsearch_extras: 0.2 -> 0.3 ( #40057 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/tsearch-extras/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- directory tree listing: https://gist.github.com/4cc503c3c6f22711358d01e0ae7f7d76
2018-05-12 11:04:27 +02:00
Jan Malakhovski
7438083a4d
tree-wide: disable doCheck
and doInstallCheck
where it fails (the trivial part)
2018-04-25 04:18:46 +00:00
Jörg Thalheim
1330f66d3b
Merge pull request #39202 from r-ryantm/auto-update/pgroonga
...
pgroonga: 2.0.4 -> 2.0.5
2018-04-21 13:48:58 +01:00
Austin Seipp
7e21fd72ce
postgresql100: 10.2 -> 10.3
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-20 08:05:28 -05:00
Austin Seipp
371721a57b
postgresql96: 9.6.7 -> 9.6.8
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-20 08:05:28 -05:00
Austin Seipp
7c9f817abe
postgresql95: 9.5.11 -> 9.5.12
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-20 08:05:28 -05:00
Austin Seipp
1e3e134b04
postgresql94: 9.4.16 -> 9.4.17
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-20 08:05:28 -05:00
Austin Seipp
1617fa98c7
postgresql93: 9.3.21 -> 9.3.22
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-20 08:05:28 -05:00
R. RyanTM
fc7a9977f3
pgroonga: 2.0.4 -> 2.0.5
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/pgroonga/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.0.5 with grep in /nix/store/k3jk6bdh9z57nngzfi737j30y146msb2-pgroonga-2.0.5
- directory tree listing: https://gist.github.com/480386761e3d0a9251dceaf4f5707651
2018-04-20 01:05:46 -07:00
Yorick
0812b5c588
postgresql-jdbc: 9.3-1100 -> 42.2.2 ( #38854 )
2018-04-12 16:35:16 +01:00
Austin Seipp
5570fc1427
pg_repack: 1.4.0.1 -> 1.4.2
...
This allows pg_repack to be built against PostgreSQL 10.x.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-11 12:25:11 -05:00
Matthew Justin Bauer
7982b8c8a6
Merge pull request #38167 from r-ryantm/auto-update/pgroonga
...
pgroonga: 2.0.3 -> 2.0.4
2018-04-08 21:21:37 -05:00
Austin Seipp
33202137bf
pg_hll: init at 2.10.2-9af41684
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 15:30:46 -05:00
Austin Seipp
962e2553dc
pg_topn: init at 2.0.2
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 15:30:46 -05:00
Austin Seipp
030e90454e
cstore_fdw: init at 1.6.0
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 15:30:46 -05:00
Austin Seipp
f59ffb6e83
pg_cron: init at 1.0.2
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 15:28:37 -05:00
Austin Seipp
6ac2b11d13
timescaledb: 0.6.0 -> 0.9.1
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-02 03:36:07 -05:00
R. RyanTM
590109453f
pgroonga: 2.0.3 -> 2.0.4
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/pgroonga/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.0.4 with grep in /nix/store/hyp69cvzva8cqx4ra33mdvyi8jwl7lzr-pgroonga-2.0.4
- directory tree listing: https://gist.github.com/35ee8b9cab2a9568994e16e9555ce3ff
2018-03-30 20:54:47 -07:00
Gabriel Ebner
4fc0d90366
Merge pull request #37078 from ryantm/auto-update/pgroonga
...
pgroonga: 2.0.2 -> 2.0.3
2018-03-17 13:50:09 +01:00
Ryan Mulligan
07d69bb591
pgroonga: 2.0.2 -> 2.0.3
...
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.0.3 with grep in /nix/store/dqrb6v4lfppacrl4x3q7jhdfw344k733-pgroonga-2.0.3
- found 2.0.3 in filename of file in /nix/store/dqrb6v4lfppacrl4x3q7jhdfw344k733-pgroonga-2.0.3
2018-03-15 01:00:41 -07:00
Frederik Rietdijk
810dd0f984
Merge remote-tracking branch 'upstream/master' into HEAD
2018-03-01 20:00:42 +01:00
Ryan Mulligan
1d30efed48
pgroonga: 1.1.9 -> 2.0.2
...
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.0.2 with grep in /nix/store/6wff31scywzmgmv4hqab1jfj391vv95y-pgroonga-2.0.2
- found 2.0.2 in filename of file in /nix/store/6wff31scywzmgmv4hqab1jfj391vv95y-pgroonga-2.0.2
cc "@DerTim1"
2018-03-01 16:53:53 +01:00
Lancelot SIX
4080c2ae8b
postgresql100: 10.1 -> 10.2
...
See https://www.postgresql.org/docs/10/static/release-10-2.html for
release information
2018-02-23 11:02:55 +01:00
Lancelot SIX
67f892b08f
postgresql96: 9.6.6 -> 9.6.7
...
See https://www.postgresql.org/docs/9.6/static/release-9-6-7.html for
release information
2018-02-23 11:02:50 +01:00
Lancelot SIX
67e45dfd58
postgresql95: 9.5.10 -> 9.5.11
...
See https://www.postgresql.org/docs/9.5/static/release-9-5-11.html for
release information.
2018-02-23 11:02:44 +01:00
Lancelot SIX
10ef07fd62
postgresql94: 9.4.15 -> 9.4.16
...
See https://www.postgresql.org/docs/9.4/static/release-9-4-16.html for
release information
2018-02-23 11:02:36 +01:00
Lancelot SIX
104dfd6f85
postgresql93: 9.3.20 -> 9.3.21
...
See https://www.postgresql.org/docs/9.3/static/release-9-3-21.html for
release information
2018-02-23 11:02:24 +01:00
Will Dietz
81eef05f86
postgresql: don't try to use 'locale' if not building to run on glibc
2018-02-13 09:44:31 -06:00
Shea Levy
0578f07b91
postgresql: Respect dontDisableStatic
2018-01-11 09:19:46 -05:00
adisbladis
2d74fa62a8
postgresql100: 10.0 -> 10.1
2018-01-02 12:13:45 +01:00
adisbladis
71acd1f8a2
postgresql96: 9.6.5 -> 9.6.6
2018-01-02 12:13:45 +01:00
adisbladis
414dc6ba15
postgresql95: 9.5.9 -> 9.5.10
2018-01-02 12:13:44 +01:00
adisbladis
b7302ccb81
postgresql94: 9.4.14 -> 9.4.15
2018-01-02 12:13:43 +01:00