nixpkgs-suyu/pkgs/tools/networking
Robin Gloster 6b05651c20
Revert "postgresql: Add dev output"
Firstly this creates a cycle in 9.6 .out <-> .dev after fixing the PGXS
path.

Secondly this breaks extension handling and the pg_config as it
resolves a lot of paths relatively resulting in the following bogus
output:

BINDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/bin
DOCDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/doc
HTMLDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/doc
INCLUDEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include
PKGINCLUDEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include
INCLUDEDIR-SERVER = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include/server
LIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
PKGLIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
LOCALEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/locale
MANDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/man
SHAREDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share
SYSCONFDIR = /etc/postgresql
PGXS = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--prefix=/nix/store/irqqq4g173g9xrk1mh12kxv0s1d8dbyh-postgresql-9.5.9' '--with-openssl' '--with-libxml' '--sysconfdir=/etc' '--libdir=/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib' '--with-ossp-uuid' 'CC=gcc'
CC = gcc
CPPFLAGS = -D_GNU_SOURCE -I/nix/store/z6r0j2b4bcdfw3pck2x6ay0vvx0qzb92-libxml2-2.9.5-dev/include/libxml2
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -O2
CFLAGS_SL = -fPIC
LDFLAGS = -L../../../src/common -L/nix/store/ighspl5sa3qi1zy7nkih0c9p73xjfqa6-libxml2-2.9.5/lib -Wl,--as-needed -Wl,-rpath,'/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib',--enable-new-dtags
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgcommon -lpgport -lxml2 -lssl -lcrypto -lz -lreadline -lrt -lcrypt -ldl -lm
VERSION = PostgreSQL 9.5.9

This can probably only be properly fixed by rewriting pg_config in large
parts as it does not in any way respect splitting the postgres tree and
assumes it can simply resolve paths relative to its location. This does
not even handle symlinks:

$ result-dev/bin/pg_config
BINDIR = /home/robin/dev/nixpkgs-upstream/result-dev/bin
DOCDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/doc
HTMLDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/doc
INCLUDEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/include
PKGINCLUDEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/include
INCLUDEDIR-SERVER = /home/robin/dev/nixpkgs-upstream/result-dev/include/server
LIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
PKGLIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
LOCALEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/locale
MANDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/man
SHAREDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share
SYSCONFDIR = /etc/postgresql
PGXS = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--prefix=/nix/store/irqqq4g173g9xrk1mh12kxv0s1d8dbyh-postgresql-9.5.9' '--with-openssl' '--with-libxml' '--sysconfdir=/etc' '--libdir=/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib' '--with-ossp-uuid' 'CC=gcc'
CC = gcc
CPPFLAGS = -D_GNU_SOURCE -I/nix/store/z6r0j2b4bcdfw3pck2x6ay0vvx0qzb92-libxml2-2.9.5-dev/include/libxml2
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -O2
CFLAGS_SL = -fPIC
LDFLAGS = -L../../../src/common -L/nix/store/ighspl5sa3qi1zy7nkih0c9p73xjfqa6-libxml2-2.9.5/lib -Wl,--as-needed -Wl,-rpath,'/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib',--enable-new-dtags
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgcommon -lpgport -lxml2 -lssl -lcrypto -lz -lreadline -lrt -lcrypt -ldl -lm
VERSION = PostgreSQL 9.5.9

cc @edolstra

Revert "bacula: fix after postgresql output splitting"

This reverts commit 13c9cbacdd.

Revert "postgresql: fix pgxs dir in pg_config"

This reverts commit 21998d597b.

Revert "rubyGems.pg: fix postgresql path"

This reverts commit e253ae7d3a.

Revert "kea: fix path to pg_config"

This reverts commit 086c636eb7.

Revert "php: fix build wrt. new postgres.dev build output"

This reverts commit 2f23a83920.

Revert "gdal: fix path to pg_config"

This reverts commit 032c50d45b.

Revert "postgresql: Add dev output"

This reverts commit b0280f598e.
2017-09-27 21:58:44 +02:00
..
ahcpd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
aircrack-ng
airfield
altermime altermime: 0.3.10 -> 0.3.11 2017-08-01 12:34:12 +02:00
argus
argus-clients
aria2
assh assh: add openssh to PATH 2017-09-21 23:03:55 +01:00
asynk
atftp
autossh
axel axel: 2.13.1 -> 2.14.1 2017-09-23 00:32:04 +02:00
babeld pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
badvpn
biosdevname biosdevname: Broken on aarch64 2017-06-11 04:37:24 +03:00
bsd-finger
bud
bully
burpsuite pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
bwm-ng pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
cadaver
carddav-util
ccnet seafile-client: 5.0.7 -> 6.1.0 2017-08-09 19:53:05 +02:00
chrony chrony: 3.0 -> 3.1 2017-06-20 03:45:42 +02:00
cjdns darwin: Disable yet another bunch of packages never having built successfully 2017-09-22 21:16:39 +03:00
cksfv
cmst pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
cntlm
connect
connman connman: 1.34 -> 1.35 2017-09-05 11:58:58 +02:00
connman-gtk
connman-notify
connman_dmenu treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
connmanui pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
corkscrew
curl curl: 7.55.0 -> 7.55.1 2017-08-14 19:21:47 +02:00
curl-unix-socket
cutter
darkstat
davix
dd-agent dd-agent: use https for homepage 2017-08-17 14:56:10 -07:00
ddclient ddclient: minor packaging cleanups 2017-08-13 21:56:48 +08:00
dhcp
dhcpcd Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
dhcpdump
dhcping
dibbler dibbler: fix darwin build 2017-09-09 15:23:17 +02:00
dirb pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
djbdns djbdns: init at 1.05 2017-09-16 21:14:36 -04:00
dnscrypt-proxy dnscrypt-proxy: enable parallel building 2017-08-06 23:38:13 +02:00
dnscrypt-wrapper dnscrypt-wrapper: 0.2.2 -> 0.3 2017-08-29 21:35:20 +02:00
dnsmasq dnsmasq: 2.76 -> 2.77 2017-06-20 03:45:43 +02:00
dnsperf treewide: Add man & info outputs where necessary (instead of doc) 2017-08-11 21:32:54 +03:00
dnstop
driftnet
dropbear pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
easyrsa
eggdrop treewide: Use *Platform.extensions 2017-09-13 11:16:10 -04:00
email Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
envoy Merge remote-tracking branch 'upstream/master' into HEAD 2017-09-10 08:56:39 +02:00
fakeroute
fastd
fdm pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ferm ferm: 2.3.1 -> 2.4.1 2017-09-22 18:42:38 +02:00
filegive
flannel
flvstreamer
fping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
gandi-cli
getmail pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
gftp
gmvault gmvault: fix build 2017-09-07 09:28:03 +02:00
gupnp-tools
gvpe
hans
haproxy haproxy: 1.7.8 -> 1.7.9 2017-09-09 17:53:20 +08:00
horst
hping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
hss
htpdate
http-prompt http-prompt: 0.9.1 -> 0.10.2 2017-08-15 14:53:17 +02:00
httpie Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
httping
httplab
httpstat
httptunnel
hue-cli hue-cli: init at 0.1.4 2017-07-20 04:20:07 +02:00
hyenae Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
i2p i2p: wrapper: Fix 64bit build 2017-06-17 16:25:17 +02:00
i2pd i2pd: 2.14.0 -> 2.15.0 2017-09-12 10:13:49 +02:00
ifstat-legacy ifstat-legacy: init at 1.1 2017-09-18 18:25:54 +08:00
iftop
imapproxy
imapsync
inadyn inadyn: 2.0 -> 2.1, fix build with libite 1.9 2017-08-01 06:16:03 +02:00
inetutils
iodine
iouyap iouyap: init at 0.97 2017-09-11 19:21:49 +02:00
ip2location
ipcalc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
iperf Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
ipv6calc ipv6calc: 0.99.1 -> 0.99.2 2017-06-20 03:56:39 +02:00
isync isyncUnstable: 20170329 -> 20170514 2017-07-12 09:52:48 -05:00
jnettop jnettop: add patch for 64bit counters (#27283) 2017-07-10 20:02:07 +02:00
jwhois
kea Revert "postgresql: Add dev output" 2017-09-27 21:58:44 +02:00
keepalived keepalived: 1.3.5 -> 1.3.6 2017-08-15 14:50:31 +02:00
lftp lftp: fix build on darwin 2017-09-01 12:58:32 +09:30
libreswan pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
linkchecker pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
lldpd lldpd: 0.9.7 -> 0.9.8 2017-08-27 02:33:32 +02:00
logmein-hamachi pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
lsh
maildrop
mailsend pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
mailutils mailutils: clean up and fix last test 2017-07-26 13:32:59 +02:00
maphosts
mcrcon
megatools
minidlna minidlna: 1.1.5 -> 1.2.1 2017-09-09 09:17:36 +02:00
minio-client
minissdpd
miniupnpc miniupnpc: fix on darwin 2017-08-09 13:10:23 -07:00
miniupnpd
miredo
mitmproxy protobuf: remove old versions 2017-09-09 05:54:43 +03:00
modemmanager
mosh mosh: 1.3.0 -> 1.3.2 2017-07-30 20:58:24 +02:00
mpack
mtr mtr: 0.87 -> 0.92 2017-09-14 18:14:19 +08:00
mu pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
nbd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ncftp
ndisc6 ndisc6: change meta.homepage to https 2017-07-12 20:32:56 +02:00
ndjbdns
netalyzr netalyzr: init at 57861 2017-09-05 08:12:40 +08:00
netboot
netcat-gnu
netcat-openbsd netcat-openbsd: 1.105 -> 1.130 2017-08-29 16:45:20 +02:00
nethogs
netkit/tftp pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
netmask netmask: use autoreconfHook 2017-08-31 20:14:35 +01:00
netrw pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
netselect netselect: Fix attempt to use unsupported permissions on files in store 2017-06-28 14:31:44 -05:00
netsniff-ng
network-manager Merge pull request #29685 from eqyiel/networkmanager_openvpn-1.8.0 2017-09-26 01:07:29 +02:00
network-manager-applet network-manager-applet: Don't depend on webkitgtk by default 2017-09-27 12:08:33 +02:00
networkmanager_dmenu networkmanager_dmenu: unstable-2017-05-28 -> 1.1 2017-08-10 08:38:52 +02:00
nfdump
ngrep
ngrok-1 ngrok: use proper attribute names 2017-08-27 23:53:42 +01:00
ngrok-2 ngrok: use proper attribute names 2017-08-27 23:53:42 +01:00
noip
nss-mdns
nss-pam-ldapd
ntopng
ntp
nuttcp
nylon
nzbget nzbget: 18.1 -> 19.0 2017-07-01 10:06:10 +02:00
ocproxy
offlineimap offlineimap: 7.1.1 -> 7.1.2 2017-09-08 18:27:03 +02:00
olsrd
openconnect Add some dev outputs 2017-09-25 16:05:10 +02:00
openfortivpn openfortivpn: 1.2.0 -> 1.5.0 2017-09-20 09:21:42 +01:00
openntpd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
openresolv
openssh openssh: update gssapi patch 2017-09-12 14:28:33 +01:00
openvpn pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
p2p rtorrent: update to current git HEAD to avoid build errors with recent cppunit 2017-09-20 16:53:03 +02:00
packetdrill darwin: Disable yet another bunch of packages never having built successfully 2017-09-22 21:16:39 +03:00
par2cmdline par2cmdline: 0.6.13 -> 0.7.3 2017-08-06 14:50:15 +02:00
pcapc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
pcapfix pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
pdnsd
pdsh pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
philter
pingtcp
pirate-get pirate-get: 0.2.10 -> 0.2.12 2017-09-12 13:59:36 +02:00
pixiewps
polygraph polygraph: 4.3.2 -> 4.11.0 2017-08-30 01:21:10 +02:00
polysh
ppp ppp: fix invalid use of substituteInPlace 2017-07-21 15:45:24 -05:00
pptp
pptpd
privoxy privoxy: fix weird use of STRIP in the Makefile 2017-08-03 23:19:41 +02:00
proxychains
pssh
pwnat
quicktun treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
radsecproxy radsecproxy: fix license 2017-09-23 15:37:28 +02:00
radvd radvd: 2.16 -> 2.17 2017-07-31 12:47:37 +02:00
ratools treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
reaver-wps
reaver-wps-t6x
redir pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
redsocks darwin: Disable some packages that have never built successfully 2017-09-22 17:25:38 +03:00
ripmime
rp-pppoe
s3cmd
s3gof3r
s6-dns
s6-networking
samplicator
shadowsocks-libev
shncpd
siege
simpleproxy
sipcalc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
sipsak
slimrat
smbldaptools
smokeping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
snabb
socat
speedtest-cli speedtest-cli: 1.0.4 -> 1.0.6 2017-08-01 08:36:38 +02:00
spiped
srelay
ssh-ident
sshpass
ssldump
ssmtp
sstp
statsd
strongswan strongswan: 5.5.3 -> 5.6.0 2017-08-25 22:10:36 +01:00
stun
stunnel
surfraw pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
swaks pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
swec
tcpdump tcpdump: 4.9.1 -> 4.9.2 2017-09-06 16:42:43 +02:00
tcpflow
tcpreplay
tcptraceroute
telepresence pkgs/telepresence: init at 0.65 2017-09-14 17:32:32 +02:00
telnet
tftp-hpa Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
tgt
tinc tinc: 1.0.31 -> 1.0.32 2017-09-24 11:42:00 +02:00
tlspool tlspool: don't create unused directories 2017-08-11 22:40:12 +02:00
toxvpn toxvpn: 20161230 -> 2017-06-25 2017-06-25 20:17:20 -03:00
tracebox
traceroute
trickle
ua pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ucspi-tcp ucspi-tcp: remove setuid from install script 2017-07-04 11:02:36 +02:00
udptunnel
uget uget: 2.0.8 -> 2.0.10 2017-09-01 11:22:28 -03:00
unbound unbound: 1.6.5 -> 1.6.6 2017-09-20 22:23:05 +02:00
urlwatch
uwimap
vde2
vlan
vpnc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
vtun
wakelan
wavemon wavemon: 0.7.6.20151001 -> 0.8.1 2017-08-01 08:36:38 +02:00
wbox pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
webalizer
weighttp
wget
whois whois: 5.2.17 -> 5.2.18 2017-08-24 21:20:03 +02:00
wicd
wol
wolfebin
wrk
wuzz
x11-ssh-askpass pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
xl2tpd xl2tpd: 1.3.7 -> 1.3.10 2017-08-28 00:54:42 +02:00
zap pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
zerotierone