Commit Graph

65 Commits

Author SHA1 Message Date
Mark Brand e69081f70f openssl: update 2018-03-06 21:31:04 +11:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Boris Nagaev d2d244a9ea fix typos found by misspell tool 2017-09-24 16:37:34 +02:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Mark Brand 713c5ecad7 Revert "upgrade to postgresql 9.6.2"
The upgrade was merged automatically but unintentionally.
It is not ready.

This reverts commit e4fef6b0ef.
2017-02-16 21:04:41 +01:00
Mark Brand e4fef6b0ef upgrade to postgresql 9.6.2 2017-02-12 14:24:46 +01:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
The following script was applied:

    sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')

    sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
        $(git grep -l 'part of MXE.*See index.html')

    before='This file is part of MXE. See index.html for further information.'
    after='This file is part of MXE. See LICENSE.md for licensing information.'
    sed "s/$before/$after/" -i $(git grep -l 'part of MXE')

Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.

See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
2016-08-27 12:31:29 +03:00
Tony Theodore 4a362f335e postgresql: always use mingw-w64 pthreads 2016-08-17 04:48:11 +10:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore ac7344aaef many packages: cleanup deps ordering 2015-09-23 17:41:16 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Timothy Gu 4dd67224dc postgresql: fix shared lib install path
Also adds a patch that makes the `shlib= haslibarule=no` unnecessary.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-07-01 15:09:20 -07:00
Tony Theodore 57fa8e075e package qt4 and dependencies: enable shared builds 2014-02-09 23:29:51 +11:00
Tony Theodore 69eefd6a89 package postgresql: install additional libpq headers 2013-12-26 16:29:24 +11:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Mark Brand b2892f1012 remove explicit configure option --libdir
Unsetting CONFIG_SITE was the right way to solve the problem that
--libdir was working around.

This reverts commit 0b3240f9d8.
This reverts commit 3653eb6ec1.
This reverts commit 593ab5a706.
2013-06-02 19:40:12 +02:00
Mark Brand 3653eb6ec1 use --libdir to avoid <prefix>/<target>/lib64 confusion (more)
follow-up to commit 593ab5a706
2013-06-02 12:27:10 +02:00
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore 6188de2ed3 various packages: remove grep workarounds for version sorting 2013-05-22 19:33:04 +10:00
Mark Brand f37808a546 update package postgresql 2013-04-05 14:39:58 +02:00
Mark Brand 5436cee47d update package postgresql 2013-02-07 11:49:44 +01:00
Mark Brand 28385072ef update package postgresql 2012-12-06 15:13:18 +01:00
Mark Brand 98f0e978cc update package postgresql 2012-09-26 15:56:53 +02:00
Mark Brand e520e08a9f update package postgresql 2012-09-11 02:30:25 +02:00
Mark Brand fbf48ee9b5 update package postgresql 2012-08-17 14:10:08 +02:00
Mark Brand 513528ccbf update package postgresql 2012-06-04 22:33:51 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Mark Brand 2ecf5de9cc update package postgresql 2012-02-27 14:23:10 +01:00
Mark Brand 2c80474413 update package postgresql 2011-12-06 13:14:08 +01:00
Tony Theodore f57837e79c package postgresql: use $(TARGET) instead of i686-pc-mingw32 2011-11-27 06:34:29 +11:00
Mark Brand d31b6ec92d package postgresql: replace sed with patch 2011-10-24 17:47:39 +02:00
Mark Brand 2b8e11d6b4 update package postgresql 2011-09-26 15:44:20 +02:00
Mark Brand 74dc68f459 update packages: imagemagick pixman postgresql x264 2011-09-11 11:13:00 +02:00
Tony Theodore 62ec2e653e package postgresql: force symlink creation 2011-08-07 18:26:54 +10:00
Tony Theodore 56938b3c61 package postgresql: fix native pg_config 2011-08-04 22:58:35 +10:00
Mark Brand 9520e717f7 upgrade package postgresql 2011-04-17 13:27:52 +02:00
Mark Brand f1c709abfa upgrade package postgresql 2011-02-01 11:30:24 +01:00
Mark Brand 64592d2a95 package postgresql: fix update macro 2010-12-23 02:42:24 +01:00
Mark Brand 322d0adc8f upgrade package postgresql 2010-12-23 02:33:05 +01:00
Tony Theodore 97e321ab34 avoid double unpacking in package postgresql 2010-12-12 13:26:38 +11:00
Volker Grabsch 44fb1f071d fix dummy permissions (664 -> 644) 2010-11-17 03:56:10 +01:00
Mark Brand 6d9c4d5ac4 upgrade package postgresql and fix UPDATE macro 2010-11-07 11:49:22 +01:00
Mark Brand 9626875397 upgrade package postgresql 2010-09-20 01:36:28 +02:00
Mark Brand f9e4048264 upgrade package postgresql 2010-05-16 19:53:58 +02:00
Mark Brand e555c3b9d2 upgrade packages gnutls, libgsasl and postgresql 2010-04-19 11:52:11 +02:00