Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/files/
Date: Fri, 30 Sep 2016 12:57:32
Message-Id: 1475240216.70762574356c7a66972afbff15283b8acda88f20.patrick@gentoo
1 commit: 70762574356c7a66972afbff15283b8acda88f20
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 12:56:56 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 12:56:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70762574
7
8 dev-db/postgresql: Add missing patch #595632
9
10 Package-Manager: portage-2.3.0
11
12 .../files/postgresql-9.6-no-server.patch | 110 +++++++++++++++++++++
13 1 file changed, 110 insertions(+)
14
15 diff --git a/dev-db/postgresql/files/postgresql-9.6-no-server.patch b/dev-db/postgresql/files/postgresql-9.6-no-server.patch
16 new file mode 100644
17 index 00000000..637e65e
18 --- /dev/null
19 +++ b/dev-db/postgresql/files/postgresql-9.6-no-server.patch
20 @@ -0,0 +1,110 @@
21 +vdiff -ru a/contrib/Makefile b/contrib/Makefile
22 +--- a/contrib/Makefile 2015-06-29 15:42:18.000000000 -0400
23 ++++ b/contrib/Makefile 2015-09-06 07:50:51.258463861 -0400
24 +@@ -5,58 +5,9 @@
25 + include $(top_builddir)/src/Makefile.global
26 +
27 + SUBDIRS = \
28 +- adminpack \
29 +- auth_delay \
30 +- auto_explain \
31 +- bloom \
32 +- btree_gin \
33 +- btree_gist \
34 +- chkpass \
35 +- citext \
36 +- cube \
37 +- dblink \
38 +- dict_int \
39 +- dict_xsyn \
40 +- earthdistance \
41 +- file_fdw \
42 +- fuzzystrmatch \
43 +- hstore \
44 +- intagg \
45 +- intarray \
46 +- isn \
47 +- lo \
48 +- ltree \
49 + oid2name \
50 +- pageinspect \
51 +- passwordcheck \
52 +- pg_buffercache \
53 +- pg_freespacemap \
54 +- pg_prewarm \
55 +- pg_standby \
56 +- pg_stat_statements \
57 +- pg_trgm \
58 +- pgcrypto \
59 +- pgrowlocks \
60 +- pgstattuple \
61 +- pg_visibility \
62 +- postgres_fdw \
63 +- seg \
64 +- spi \
65 +- tablefunc \
66 +- tcn \
67 +- test_decoding \
68 +- tsm_system_rows \
69 +- tsm_system_time \
70 +- tsearch2 \
71 +- unaccent \
72 + vacuumlo
73 +
74 +-ifeq ($(with_openssl),yes)
75 +-SUBDIRS += sslinfo
76 +-else
77 +-ALWAYS_SUBDIRS += sslinfo
78 +-endif
79 +-
80 + ifneq ($(with_uuid),no)
81 + SUBDIRS += uuid-ossp
82 + else
83 +diff -ru a/src/bin/Makefile b/src/bin/Makefile
84 +--- a/src/bin/Makefile 2015-06-29 15:42:18.000000000 -0400
85 ++++ b/src/bin/Makefile 2015-09-06 08:03:27.014847309 -0400
86 +@@ -14,20 +14,8 @@
87 + include $(top_builddir)/src/Makefile.global
88 +
89 + SUBDIRS = \
90 +- initdb \
91 +- pg_archivecleanup \
92 +- pg_basebackup \
93 + pg_config \
94 +- pg_controldata \
95 +- pg_ctl \
96 + pg_dump \
97 +- pg_resetxlog \
98 +- pg_rewind \
99 +- pg_test_fsync \
100 +- pg_test_timing \
101 +- pg_upgrade \
102 +- pg_xlogdump \
103 +- pgbench \
104 + psql \
105 + scripts
106 +
107 +diff -ru a/src/Makefile b/src/Makefile
108 +--- a/src/Makefile 2015-06-29 15:42:18.000000000 -0400
109 ++++ b/src/Makefile 2015-09-06 08:04:25.274568519 -0400
110 +@@ -15,19 +15,11 @@
111 + SUBDIRS = \
112 + common \
113 + port \
114 +- timezone \
115 + backend \
116 +- backend/utils/mb/conversion_procs \
117 +- backend/snowball \
118 + include \
119 + interfaces \
120 +- backend/replication/libpqwalreceiver \
121 +- fe_utils \
122 + bin \
123 +- pl \
124 +- makefiles \
125 +- test/regress \
126 +- test/perl
127 ++ makefiles
128 +
129 + # There are too many interdependencies between the subdirectories, so
130 + # don't attempt parallel make here.