Gentoo Archives: gentoo-commits

From: "Aaron Swenson (titanofold)" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/postgresql/files: postgresql-9.1-no-server.patch postgresql-9.2-no-server.patch postgresql-9.0-no-server.patch pg_ctl-exit-status.patch postgresql-9.3-no-server.patch postgresql-9.4-no-server.patch postgresql-9.5-no-server.patch
Date: Sat, 01 Nov 2014 11:29:09
Message-Id: 20141101112906.32C819344@oystercatcher.gentoo.org
1 titanofold 14/11/01 11:29:06
2
3 Added: postgresql-9.1-no-server.patch
4 postgresql-9.2-no-server.patch
5 postgresql-9.0-no-server.patch
6 pg_ctl-exit-status.patch
7 postgresql-9.3-no-server.patch
8 postgresql-9.4-no-server.patch
9 postgresql-9.5-no-server.patch
10 Log:
11 Removed source dependency on patch collection now that the majority only
12 require their respective no-server.patch if the server isn't going to be
13 built. Removed ebuilds with conditionals that always evaluate to false in
14 src_test() and pkg_prerm().
15
16 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0)
17
18 Revision Changes Path
19 1.1 dev-db/postgresql/files/postgresql-9.1-no-server.patch
20
21 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.1-no-server.patch?rev=1.1&view=markup
22 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.1-no-server.patch?rev=1.1&content-type=text/plain
23
24 Index: postgresql-9.1-no-server.patch
25 ===================================================================
26 diff -Naur a/contrib/Makefile b/contrib/Makefile
27 --- a/contrib/Makefile 2011-09-08 17:13:27.000000000 -0400
28 +++ b/contrib/Makefile 2011-09-16 21:58:34.080579316 -0400
29 @@ -5,56 +5,10 @@
30 include $(top_builddir)/src/Makefile.global
31
32 SUBDIRS = \
33 - adminpack \
34 - auth_delay \
35 - auto_explain \
36 - btree_gin \
37 - btree_gist \
38 - chkpass \
39 - citext \
40 - cube \
41 - dblink \
42 - dict_int \
43 - dict_xsyn \
44 - dummy_seclabel \
45 - earthdistance \
46 - file_fdw \
47 - fuzzystrmatch \
48 - hstore \
49 - intagg \
50 - intarray \
51 - isn \
52 - lo \
53 - ltree \
54 oid2name \
55 - pageinspect \
56 - passwordcheck \
57 - pg_archivecleanup \
58 - pg_buffercache \
59 - pg_freespacemap \
60 - pg_standby \
61 - pg_stat_statements \
62 - pg_test_fsync \
63 - pg_trgm \
64 - pg_upgrade \
65 - pg_upgrade_support \
66 pgbench \
67 - pgcrypto \
68 - pgrowlocks \
69 - pgstattuple \
70 - seg \
71 - spi \
72 - tablefunc \
73 - test_parser \
74 - tsearch2 \
75 - unaccent \
76 vacuumlo
77
78 -ifeq ($(with_openssl),yes)
79 -SUBDIRS += sslinfo
80 -else
81 -ALWAYS_SUBDIRS += sslinfo
82 -endif
83
84 ifeq ($(with_ossp_uuid),yes)
85 SUBDIRS += uuid-ossp
86 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
87 --- a/src/backend/Makefile 2011-09-08 17:13:27.000000000 -0400
88 +++ b/src/backend/Makefile 2011-09-16 22:01:48.400579314 -0400
89 @@ -45,7 +45,7 @@
90
91 ##########################################################################
92
93 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
94 +all: someheaders
95
96 ifneq ($(PORTNAME), cygwin)
97 ifneq ($(PORTNAME), win32)
98 @@ -114,7 +114,7 @@
99 endif # aix
100
101 # Update the commonly used headers before building the subdirectories
102 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
103 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
104
105 # run this unconditionally to avoid needing to know its dependencies here:
106 submake-schemapg:
107 @@ -206,23 +206,7 @@
108
109 ##########################################################################
110
111 -install: all installdirs install-bin
112 -ifeq ($(PORTNAME), cygwin)
113 -ifeq ($(MAKE_DLL), true)
114 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
115 -endif
116 -endif
117 -ifeq ($(PORTNAME), win32)
118 -ifeq ($(MAKE_DLL), true)
119 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
120 -endif
121 -endif
122 - $(MAKE) -C catalog install-data
123 - $(MAKE) -C tsearch install-data
124 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
125 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
126 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
127 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
128 +install:
129
130 install-bin: postgres $(POSTGRES_IMP) installdirs
131 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
132 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
133 --- a/src/bin/Makefile 2011-09-08 17:13:27.000000000 -0400
134 +++ b/src/bin/Makefile 2011-09-16 22:03:48.250579314 -0400
135 @@ -13,8 +13,7 @@
136 top_builddir = ../..
137 include $(top_builddir)/src/Makefile.global
138
139 -SUBDIRS = initdb pg_ctl pg_dump \
140 - psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
141 +SUBDIRS = pg_dump psql scripts pg_config
142
143 ifeq ($(PORTNAME), win32)
144 SUBDIRS += pgevent
145 diff -Naur a/src/Makefile b/src/Makefile
146 --- a/src/Makefile 2011-09-08 17:13:27.000000000 -0400
147 +++ b/src/Makefile 2011-09-16 22:29:17.650579302 -0400
148 @@ -14,17 +14,11 @@
149
150 SUBDIRS = \
151 port \
152 - timezone \
153 backend \
154 - backend/utils/mb/conversion_procs \
155 - backend/snowball \
156 include \
157 interfaces \
158 - backend/replication/libpqwalreceiver \
159 bin \
160 - pl \
161 - makefiles \
162 - test/regress
163 + makefiles
164
165 # There are too many interdependencies between the subdirectories, so
166 # don't attempt parallel make here.
167
168
169
170 1.1 dev-db/postgresql/files/postgresql-9.2-no-server.patch
171
172 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.2-no-server.patch?rev=1.1&view=markup
173 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.2-no-server.patch?rev=1.1&content-type=text/plain
174
175 Index: postgresql-9.2-no-server.patch
176 ===================================================================
177 diff -Naur a/contrib/Makefile b/contrib/Makefile
178 --- a/contrib/Makefile 2012-05-10 18:35:09.000000000 -0400
179 +++ b/contrib/Makefile 2012-05-20 09:33:47.892622992 -0400
180 @@ -5,58 +5,10 @@
181 include $(top_builddir)/src/Makefile.global
182
183 SUBDIRS = \
184 - adminpack \
185 - auth_delay \
186 - auto_explain \
187 - btree_gin \
188 - btree_gist \
189 - chkpass \
190 - citext \
191 - cube \
192 - dblink \
193 - dict_int \
194 - dict_xsyn \
195 - dummy_seclabel \
196 - earthdistance \
197 - file_fdw \
198 - fuzzystrmatch \
199 - hstore \
200 - intagg \
201 - intarray \
202 - isn \
203 - lo \
204 - ltree \
205 oid2name \
206 - pageinspect \
207 - passwordcheck \
208 - pg_archivecleanup \
209 - pg_buffercache \
210 - pg_freespacemap \
211 - pg_standby \
212 - pg_stat_statements \
213 - pg_test_fsync \
214 - pg_test_timing \
215 - pg_trgm \
216 - pg_upgrade \
217 - pg_upgrade_support \
218 pgbench \
219 - pgcrypto \
220 - pgrowlocks \
221 - pgstattuple \
222 - seg \
223 - spi \
224 - tablefunc \
225 - tcn \
226 - test_parser \
227 - tsearch2 \
228 - unaccent \
229 vacuumlo
230
231 -ifeq ($(with_openssl),yes)
232 -SUBDIRS += sslinfo
233 -else
234 -ALWAYS_SUBDIRS += sslinfo
235 -endif
236
237 ifeq ($(with_ossp_uuid),yes)
238 SUBDIRS += uuid-ossp
239 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
240 --- a/src/backend/Makefile 2012-05-10 18:35:09.000000000 -0400
241 +++ b/src/backend/Makefile 2012-05-20 09:36:24.446654842 -0400
242 @@ -45,7 +45,7 @@
243
244 ##########################################################################
245
246 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
247 +all: someheaders
248
249 ifneq ($(PORTNAME), cygwin)
250 ifneq ($(PORTNAME), win32)
251 @@ -114,7 +114,7 @@
252 endif # aix
253
254 # Update the commonly used headers before building the subdirectories
255 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
256 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
257
258 # run this unconditionally to avoid needing to know its dependencies here:
259 submake-schemapg:
260 @@ -207,23 +207,7 @@
261
262 ##########################################################################
263
264 -install: all installdirs install-bin
265 -ifeq ($(PORTNAME), cygwin)
266 -ifeq ($(MAKE_DLL), true)
267 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
268 -endif
269 -endif
270 -ifeq ($(PORTNAME), win32)
271 -ifeq ($(MAKE_DLL), true)
272 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
273 -endif
274 -endif
275 - $(MAKE) -C catalog install-data
276 - $(MAKE) -C tsearch install-data
277 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
278 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
279 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
280 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
281 +install:
282
283 install-bin: postgres $(POSTGRES_IMP) installdirs
284 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
285 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
286 --- a/src/bin/Makefile 2012-05-10 18:35:09.000000000 -0400
287 +++ b/src/bin/Makefile 2012-05-20 09:41:18.489958216 -0400
288 @@ -13,8 +13,7 @@
289 top_builddir = ../..
290 include $(top_builddir)/src/Makefile.global
291
292 -SUBDIRS = initdb pg_ctl pg_dump \
293 - psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
294 +SUBDIRS = pg_dump psql scripts pg_config
295
296 ifeq ($(PORTNAME), win32)
297 SUBDIRS += pgevent
298 diff -Naur a/src/Makefile b/src/Makefile
299 --- a/src/Makefile 2012-05-10 18:35:09.000000000 -0400
300 +++ b/src/Makefile 2012-05-20 09:40:13.532774840 -0400
301 @@ -14,17 +14,11 @@
302
303 SUBDIRS = \
304 port \
305 - timezone \
306 backend \
307 - backend/utils/mb/conversion_procs \
308 - backend/snowball \
309 include \
310 interfaces \
311 - backend/replication/libpqwalreceiver \
312 bin \
313 - pl \
314 - makefiles \
315 - test/regress
316 + makefiles
317
318 # There are too many interdependencies between the subdirectories, so
319 # don't attempt parallel make here.
320
321
322
323 1.1 dev-db/postgresql/files/postgresql-9.0-no-server.patch
324
325 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.0-no-server.patch?rev=1.1&view=markup
326 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.0-no-server.patch?rev=1.1&content-type=text/plain
327
328 Index: postgresql-9.0-no-server.patch
329 ===================================================================
330 diff -Naur a/contrib/Makefile b/contrib/Makefile
331 --- a/contrib/Makefile 2011-02-02 07:37:16.654175660 -0500
332 +++ b/contrib/Makefile 2011-02-08 05:54:00.145582001 -0500
333 @@ -5,51 +5,10 @@
334 include $(top_builddir)/src/Makefile.global
335
336 SUBDIRS = \
337 - adminpack \
338 - auto_explain \
339 - btree_gin \
340 - btree_gist \
341 - chkpass \
342 - citext \
343 - cube \
344 - dblink \
345 - dict_int \
346 - dict_xsyn \
347 - earthdistance \
348 - fuzzystrmatch \
349 - hstore \
350 - intagg \
351 - intarray \
352 - isn \
353 - lo \
354 - ltree \
355 oid2name \
356 - pageinspect \
357 - passwordcheck \
358 - pg_archivecleanup \
359 - pg_buffercache \
360 - pg_freespacemap \
361 - pg_standby \
362 - pg_stat_statements \
363 - pg_trgm \
364 - pg_upgrade \
365 - pg_upgrade_support \
366 pgbench \
367 - pgcrypto \
368 - pgrowlocks \
369 - pgstattuple \
370 - seg \
371 - spi \
372 - tablefunc \
373 - test_parser \
374 - tsearch2 \
375 - unaccent \
376 vacuumlo
377
378 -ifeq ($(with_openssl),yes)
379 -SUBDIRS += sslinfo
380 -endif
381 -
382 ifeq ($(with_ossp_uuid),yes)
383 SUBDIRS += uuid-ossp
384 endif
385 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
386 --- a/src/backend/Makefile 2011-02-02 07:37:56.403870592 -0500
387 +++ b/src/backend/Makefile 2011-02-08 05:57:26.078497002 -0500
388 @@ -45,7 +45,7 @@
389
390 ##########################################################################
391
392 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
393 +all: someheaders
394
395 ifneq ($(PORTNAME), cygwin)
396 ifneq ($(PORTNAME), win32)
397 @@ -114,7 +114,7 @@
398 endif # aix
399
400 # Update the commonly used headers before building the subdirectories
401 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
402 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
403
404 # run this unconditionally to avoid needing to know its dependencies here:
405 submake-schemapg:
406 @@ -191,23 +191,7 @@
407
408 ##########################################################################
409
410 -install: all installdirs install-bin
411 -ifeq ($(PORTNAME), cygwin)
412 -ifeq ($(MAKE_DLL), true)
413 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
414 -endif
415 -endif
416 -ifeq ($(PORTNAME), win32)
417 -ifeq ($(MAKE_DLL), true)
418 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
419 -endif
420 -endif
421 - $(MAKE) -C catalog install-data
422 - $(MAKE) -C tsearch install-data
423 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
424 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
425 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
426 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
427 +install:
428
429 install-bin: postgres $(POSTGRES_IMP) installdirs
430 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
431 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
432 --- a/src/bin/Makefile 2011-02-02 07:38:35.133570047 -0500
433 +++ b/src/bin/Makefile 2011-02-08 05:58:48.819847001 -0500
434 @@ -13,8 +13,7 @@
435 top_builddir = ../..
436 include $(top_builddir)/src/Makefile.global
437
438 -SUBDIRS = initdb pg_ctl pg_dump \
439 - psql scripts pg_config pg_controldata pg_resetxlog
440 +SUBDIRS = pg_dump psql scripts pg_config
441 ifeq ($(PORTNAME), win32)
442 SUBDIRS+=pgevent
443 endif
444 diff -Naur a/src/Makefile b/src/Makefile
445 --- a/src/Makefile 2011-02-02 07:37:56.283870942 -0500
446 +++ b/src/Makefile 2011-02-08 06:00:51.591202002 -0500
447 @@ -15,17 +15,11 @@
448
449 all install installdirs uninstall distprep:
450 $(MAKE) -C port $@
451 - $(MAKE) -C timezone $@
452 $(MAKE) -C backend $@
453 - $(MAKE) -C backend/utils/mb/conversion_procs $@
454 - $(MAKE) -C backend/snowball $@
455 $(MAKE) -C include $@
456 $(MAKE) -C interfaces $@
457 - $(MAKE) -C backend/replication/libpqwalreceiver $@
458 $(MAKE) -C bin $@
459 - $(MAKE) -C pl $@
460 $(MAKE) -C makefiles $@
461 - $(MAKE) -C test/regress $@
462
463 install: install-local
464
465
466
467
468 1.1 dev-db/postgresql/files/pg_ctl-exit-status.patch
469
470 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/pg_ctl-exit-status.patch?rev=1.1&view=markup
471 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/pg_ctl-exit-status.patch?rev=1.1&content-type=text/plain
472
473 Index: pg_ctl-exit-status.patch
474 ===================================================================
475 diff -Naur a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
476 --- a/src/bin/pg_ctl/pg_ctl.c 2011-04-14 23:18:15 -0400
477 +++ b/src/bin/pg_ctl/pg_ctl.c 2011-08-01 19:44:54 -0400
478 @@ -975,7 +975,7 @@
479 }
480 }
481 printf(_("%s: no server running\n"), progname);
482 - exit(1);
483 + exit(3);
484 }
485
486
487
488
489
490 1.1 dev-db/postgresql/files/postgresql-9.3-no-server.patch
491
492 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.3-no-server.patch?rev=1.1&view=markup
493 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.3-no-server.patch?rev=1.1&content-type=text/plain
494
495 Index: postgresql-9.3-no-server.patch
496 ===================================================================
497 diff -Naur a/contrib/Makefile b/contrib/Makefile
498 --- a/contrib/Makefile 2013-05-06 20:57:06.000000000 +0000
499 +++ b/contrib/Makefile 2013-06-09 01:48:22.351874929 +0000
500 @@ -5,61 +5,10 @@
501 include $(top_builddir)/src/Makefile.global
502
503 SUBDIRS = \
504 - adminpack \
505 - auth_delay \
506 - auto_explain \
507 - btree_gin \
508 - btree_gist \
509 - chkpass \
510 - citext \
511 - cube \
512 - dblink \
513 - dict_int \
514 - dict_xsyn \
515 - dummy_seclabel \
516 - earthdistance \
517 - file_fdw \
518 - fuzzystrmatch \
519 - hstore \
520 - intagg \
521 - intarray \
522 - isn \
523 - lo \
524 - ltree \
525 oid2name \
526 - pageinspect \
527 - passwordcheck \
528 - pg_archivecleanup \
529 - pg_buffercache \
530 - pg_freespacemap \
531 - pg_standby \
532 - pg_stat_statements \
533 - pg_test_fsync \
534 - pg_test_timing \
535 - pg_trgm \
536 - pg_upgrade \
537 - pg_upgrade_support \
538 pgbench \
539 - pgcrypto \
540 - pgrowlocks \
541 - pgstattuple \
542 - pg_xlogdump \
543 - postgres_fdw \
544 - seg \
545 - spi \
546 - tablefunc \
547 - tcn \
548 - test_parser \
549 - tsearch2 \
550 - unaccent \
551 - vacuumlo \
552 - worker_spi
553 + vacuumlo
554
555 -ifeq ($(with_openssl),yes)
556 -SUBDIRS += sslinfo
557 -else
558 -ALWAYS_SUBDIRS += sslinfo
559 -endif
560
561 ifeq ($(with_ossp_uuid),yes)
562 SUBDIRS += uuid-ossp
563 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
564 --- a/src/backend/Makefile 2013-05-06 20:57:06.000000000 +0000
565 +++ b/src/backend/Makefile 2013-06-09 01:50:19.655864258 +0000
566 @@ -47,7 +47,7 @@
567
568 ##########################################################################
569
570 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
571 +all: someheaders
572
573 ifneq ($(PORTNAME), cygwin)
574 ifneq ($(PORTNAME), win32)
575 @@ -116,7 +116,7 @@
576 endif # aix
577
578 # Update the commonly used headers before building the subdirectories
579 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
580 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
581
582 # run this unconditionally to avoid needing to know its dependencies here:
583 submake-schemapg:
584 @@ -209,23 +209,8 @@
585
586 ##########################################################################
587
588 -install: all installdirs install-bin
589 -ifeq ($(PORTNAME), cygwin)
590 -ifeq ($(MAKE_DLL), true)
591 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
592 -endif
593 -endif
594 -ifeq ($(PORTNAME), win32)
595 -ifeq ($(MAKE_DLL), true)
596 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
597 -endif
598 -endif
599 - $(MAKE) -C catalog install-data
600 - $(MAKE) -C tsearch install-data
601 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
602 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
603 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
604 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
605 +install:
606 +
607
608 install-bin: postgres $(POSTGRES_IMP) installdirs
609 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
610 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
611 --- a/src/bin/Makefile 2013-05-06 20:57:06.000000000 +0000
612 +++ b/src/bin/Makefile 2013-06-09 01:51:56.143824442 +0000
613 @@ -13,8 +13,7 @@
614 top_builddir = ../..
615 include $(top_builddir)/src/Makefile.global
616
617 -SUBDIRS = initdb pg_ctl pg_dump \
618 - psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
619 +SUBDIRS = pg_dump psql scripts pg_config
620
621 ifeq ($(PORTNAME), win32)
622 SUBDIRS += pgevent
623 diff -Naur a/src/Makefile b/src/Makefile
624 --- a/src/Makefile 2013-05-06 20:57:06.000000000 +0000
625 +++ b/src/Makefile 2013-06-09 01:54:30.479704228 +0000
626 @@ -15,17 +15,11 @@
627 SUBDIRS = \
628 common \
629 port \
630 - timezone \
631 backend \
632 - backend/utils/mb/conversion_procs \
633 - backend/snowball \
634 include \
635 interfaces \
636 - backend/replication/libpqwalreceiver \
637 bin \
638 - pl \
639 - makefiles \
640 - test/regress
641 + makefiles
642
643 # There are too many interdependencies between the subdirectories, so
644 # don't attempt parallel make here.
645
646
647
648 1.1 dev-db/postgresql/files/postgresql-9.4-no-server.patch
649
650 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.4-no-server.patch?rev=1.1&view=markup
651 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.4-no-server.patch?rev=1.1&content-type=text/plain
652
653 Index: postgresql-9.4-no-server.patch
654 ===================================================================
655 diff -Naur a/contrib/Makefile b/contrib/Makefile
656 --- a/contrib/Makefile 2013-05-06 20:57:06.000000000 +0000
657 +++ b/contrib/Makefile 2013-06-09 01:48:22.351874929 +0000
658 @@ -5,64 +5,10 @@
659 include $(top_builddir)/src/Makefile.global
660
661 SUBDIRS = \
662 - adminpack \
663 - auth_delay \
664 - auto_explain \
665 - btree_gin \
666 - btree_gist \
667 - chkpass \
668 - citext \
669 - cube \
670 - dblink \
671 - dict_int \
672 - dict_xsyn \
673 - dummy_seclabel \
674 - earthdistance \
675 - file_fdw \
676 - fuzzystrmatch \
677 - hstore \
678 - intagg \
679 - intarray \
680 - isn \
681 - lo \
682 - ltree \
683 oid2name \
684 - pageinspect \
685 - passwordcheck \
686 - pg_archivecleanup \
687 - pg_buffercache \
688 - pg_freespacemap \
689 - pg_prewarm \
690 - pg_standby \
691 - pg_stat_statements \
692 - pg_test_fsync \
693 - pg_test_timing \
694 - pg_trgm \
695 - pg_upgrade \
696 - pg_upgrade_support \
697 pgbench \
698 - pgcrypto \
699 - pgrowlocks \
700 - pgstattuple \
701 - pg_xlogdump \
702 - postgres_fdw \
703 - seg \
704 - spi \
705 - tablefunc \
706 - tcn \
707 - test_decoding \
708 - test_parser \
709 - test_shm_mq \
710 - tsearch2 \
711 - unaccent \
712 - vacuumlo \
713 - worker_spi
714 + vacuumlo
715
716 -ifeq ($(with_openssl),yes)
717 -SUBDIRS += sslinfo
718 -else
719 -ALWAYS_SUBDIRS += sslinfo
720 -endif
721
722 ifeq ($(with_ossp_uuid),yes)
723 SUBDIRS += uuid-ossp
724 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
725 --- a/src/backend/Makefile 2013-05-06 20:57:06.000000000 +0000
726 +++ b/src/backend/Makefile 2013-06-09 01:50:19.655864258 +0000
727 @@ -47,7 +47,7 @@
728
729 ##########################################################################
730
731 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
732 +all: someheaders
733
734 ifneq ($(PORTNAME), cygwin)
735 ifneq ($(PORTNAME), win32)
736 @@ -116,7 +116,7 @@
737 endif # aix
738
739 # Update the commonly used headers before building the subdirectories
740 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
741 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
742
743 # run this unconditionally to avoid needing to know its dependencies here:
744 submake-schemapg:
745 @@ -209,23 +209,8 @@
746
747 ##########################################################################
748
749 -install: all installdirs install-bin
750 -ifeq ($(PORTNAME), cygwin)
751 -ifeq ($(MAKE_DLL), true)
752 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
753 -endif
754 -endif
755 -ifeq ($(PORTNAME), win32)
756 -ifeq ($(MAKE_DLL), true)
757 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
758 -endif
759 -endif
760 - $(MAKE) -C catalog install-data
761 - $(MAKE) -C tsearch install-data
762 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
763 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
764 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
765 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
766 +install:
767 +
768
769 install-bin: postgres $(POSTGRES_IMP) installdirs
770 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
771 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
772 --- a/src/bin/Makefile 2013-05-06 20:57:06.000000000 +0000
773 +++ b/src/bin/Makefile 2013-06-09 01:51:56.143824442 +0000
774 @@ -13,8 +13,7 @@
775 top_builddir = ../..
776 include $(top_builddir)/src/Makefile.global
777
778 -SUBDIRS = initdb pg_ctl pg_dump \
779 - psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
780 +SUBDIRS = pg_dump psql scripts pg_config
781
782 ifeq ($(PORTNAME), win32)
783 SUBDIRS += pgevent
784 diff -Naur a/src/Makefile b/src/Makefile
785 --- a/src/Makefile 2013-05-06 20:57:06.000000000 +0000
786 +++ b/src/Makefile 2013-06-09 01:54:30.479704228 +0000
787 @@ -15,17 +15,11 @@
788 SUBDIRS = \
789 common \
790 port \
791 - timezone \
792 backend \
793 - backend/utils/mb/conversion_procs \
794 - backend/snowball \
795 include \
796 interfaces \
797 - backend/replication/libpqwalreceiver \
798 bin \
799 - pl \
800 - makefiles \
801 - test/regress
802 + makefiles
803
804 # There are too many interdependencies between the subdirectories, so
805 # don't attempt parallel make here.
806
807
808
809 1.1 dev-db/postgresql/files/postgresql-9.5-no-server.patch
810
811 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.5-no-server.patch?rev=1.1&view=markup
812 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/postgresql/files/postgresql-9.5-no-server.patch?rev=1.1&content-type=text/plain
813
814 Index: postgresql-9.5-no-server.patch
815 ===================================================================
816 diff --git a/contrib/Makefile b/contrib/Makefile
817 index b37d0dd..b56fbf6 100644
818 --- a/contrib/Makefile
819 +++ b/contrib/Makefile
820 @@ -5,64 +5,9 @@ top_builddir = ..
821 include $(top_builddir)/src/Makefile.global
822
823 SUBDIRS = \
824 - adminpack \
825 - auth_delay \
826 - auto_explain \
827 - btree_gin \
828 - btree_gist \
829 - chkpass \
830 - citext \
831 - cube \
832 - dblink \
833 - dict_int \
834 - dict_xsyn \
835 - dummy_seclabel \
836 - earthdistance \
837 - file_fdw \
838 - fuzzystrmatch \
839 - hstore \
840 - intagg \
841 - intarray \
842 - isn \
843 - lo \
844 - ltree \
845 oid2name \
846 - pageinspect \
847 - passwordcheck \
848 - pg_archivecleanup \
849 - pg_buffercache \
850 - pg_freespacemap \
851 - pg_prewarm \
852 - pg_standby \
853 - pg_stat_statements \
854 - pg_test_fsync \
855 - pg_test_timing \
856 - pg_trgm \
857 - pg_upgrade \
858 - pg_upgrade_support \
859 pgbench \
860 - pgcrypto \
861 - pgrowlocks \
862 - pgstattuple \
863 - pg_xlogdump \
864 - postgres_fdw \
865 - seg \
866 - spi \
867 - tablefunc \
868 - tcn \
869 - test_decoding \
870 - test_parser \
871 - test_shm_mq \
872 - tsearch2 \
873 - unaccent \
874 - vacuumlo \
875 - worker_spi
876 -
877 -ifeq ($(with_openssl),yes)
878 -SUBDIRS += sslinfo
879 -else
880 -ALWAYS_SUBDIRS += sslinfo
881 -endif
882 + vacuumlo
883
884 ifneq ($(with_uuid),no)
885 SUBDIRS += uuid-ossp
886 diff -Naur a/src/backend/Makefile b/src/backend/Makefile
887 --- a/src/backend/Makefile 2013-05-06 20:57:06.000000000 +0000
888 +++ b/src/backend/Makefile 2013-06-09 01:50:19.655864258 +0000
889 @@ -47,7 +47,7 @@
890
891 ##########################################################################
892
893 -all: submake-libpgport submake-schemapg postgres $(POSTGRES_IMP)
894 +all: someheaders
895
896 ifneq ($(PORTNAME), cygwin)
897 ifneq ($(PORTNAME), win32)
898 @@ -116,7 +116,7 @@
899 endif # aix
900
901 # Update the commonly used headers before building the subdirectories
902 -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
903 +someheaders $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h
904
905 # run this unconditionally to avoid needing to know its dependencies here:
906 submake-schemapg:
907 @@ -209,23 +209,8 @@
908
909 ##########################################################################
910
911 -install: all installdirs install-bin
912 -ifeq ($(PORTNAME), cygwin)
913 -ifeq ($(MAKE_DLL), true)
914 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
915 -endif
916 -endif
917 -ifeq ($(PORTNAME), win32)
918 -ifeq ($(MAKE_DLL), true)
919 - $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
920 -endif
921 -endif
922 - $(MAKE) -C catalog install-data
923 - $(MAKE) -C tsearch install-data
924 - $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample '$(DESTDIR)$(datadir)/pg_hba.conf.sample'
925 - $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample '$(DESTDIR)$(datadir)/pg_ident.conf.sample'
926 - $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample '$(DESTDIR)$(datadir)/postgresql.conf.sample'
927 - $(INSTALL_DATA) $(srcdir)/access/transam/recovery.conf.sample '$(DESTDIR)$(datadir)/recovery.conf.sample'
928 +install:
929 +
930
931 install-bin: postgres $(POSTGRES_IMP) installdirs
932 $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
933 diff -Naur a/src/bin/Makefile b/src/bin/Makefile
934 --- a/src/bin/Makefile 2013-05-06 20:57:06.000000000 +0000
935 +++ b/src/bin/Makefile 2013-06-09 01:51:56.143824442 +0000
936 @@ -13,8 +13,7 @@
937 top_builddir = ../..
938 include $(top_builddir)/src/Makefile.global
939
940 -SUBDIRS = initdb pg_ctl pg_dump \
941 - psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
942 +SUBDIRS = pg_dump psql scripts pg_config
943
944 ifeq ($(PORTNAME), win32)
945 SUBDIRS += pgevent
946 diff -Naur a/src/Makefile b/src/Makefile
947 --- a/src/Makefile 2013-05-06 20:57:06.000000000 +0000
948 +++ b/src/Makefile 2013-06-09 01:54:30.479704228 +0000
949 @@ -15,17 +15,11 @@
950 SUBDIRS = \
951 common \
952 port \
953 - timezone \
954 backend \
955 - backend/utils/mb/conversion_procs \
956 - backend/snowball \
957 include \
958 interfaces \
959 - backend/replication/libpqwalreceiver \
960 bin \
961 - pl \
962 - makefiles \
963 - test/regress
964 + makefiles
965
966 # There are too many interdependencies between the subdirectories, so
967 # don't attempt parallel make here.