Commits
Jyrki Wahlstedt authored 333be58ad26
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup select 1.0 |
5 5 | PortGroup compiler_blacklist_versions 1.0 |
6 6 | PortGroup muniversal 1.0 |
7 7 | |
8 8 | #remember to update the -doc and -server as well |
9 9 | name postgresql10 |
10 - | version 10.5 |
11 - | revision 1 |
10 + | version 10.6 |
12 11 | |
13 12 | categories databases |
14 13 | platforms darwin |
15 14 | maintainers {jwa @jyrkiwahlstedt} |
16 15 | license Permissive |
17 16 | description The most advanced open-source database available anywhere. |
18 17 | long_description PostgreSQL is Object-Relational Database Management System.\ |
19 18 | It supports almost all SQL constructs, including transactions, \ |
20 19 | subselects, and user-defined types and functions. Write-ahead \ |
21 20 | logging means increased performance while retaining data \ |
22 21 | integrity. |
23 22 | |
24 23 | homepage https://www.postgresql.org/ |
25 24 | master_sites http://ftp3.de.postgresql.org/pub/Mirrors/ftp.postgresql.org/source/v${version}/ \ |
26 25 | postgresql:source/v${version}/ |
27 26 | distname postgresql-${version} |
28 27 | |
29 - | checksums rmd160 2427223152e54ba048b3881380091530f4887b58 \ |
30 - | sha256 6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011 \ |
31 - | size 20284578 |
28 + | checksums rmd160 29ede591c228fb8c7f1bd0d33b0233dd879f3d74 \ |
29 + | sha256 68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b \ |
30 + | size 20350612 |
32 31 | |
33 32 | use_bzip2 yes |
34 33 | |
35 34 | # do not build man or html files (use postgresqlXY-doc instead) |
36 35 | patchfiles-append patch-no_doc.diff |
37 36 | |
38 37 | depends_lib port:readline path:lib/libssl.dylib:openssl port:zlib port:libxml2 port:libxslt |
39 38 | depends_build port:bison |
40 39 | depends_run port:postgresql_select |
41 40 | |