Commit Graph

71 Commits

Author SHA1 Message Date
Mark Brand 84f722e1ff update package sqlite 2014-06-04 20:25:03 +02:00
Mark Brand b06d382dff update package sqlite 2014-04-03 20:36:58 +02:00
Mark Brand 7e84b41929 update package sqlite 2014-03-26 20:59:10 +01:00
Mark Brand 06c18cb483 update package sqlite 2014-03-12 11:32:25 +01:00
Mark Brand e84eadbb28 package sqlite: omit debugging symbols 2014-03-10 22:06:08 +01:00
Mark Brand 5d42a366cc update package sqlite 2014-03-10 21:33:03 +01:00
Mark Brand 5bf7353ebb update package sqlite 2014-02-11 22:02:30 +01:00
Tony Theodore 57fa8e075e package qt4 and dependencies: enable shared builds 2014-02-09 23:29:51 +11:00
Mark Brand 854118298b update package sqlite 2014-02-04 09:29:40 +01:00
Mark Brand ca680fb18d package sqlite: do not disable thread safety
This was disabled in 9ff1828308 due to
buggy pthread support, but this this option does not induce sqlite
to use multiple threads. Instead, it builds sqlite with the
necessary mutexes to make the library thread safe.

https://sqlite.org/threadsafe.html
2013-12-16 13:18:34 +01:00
Mark Brand 215e523c2d update package sqlite 2013-12-06 16:35:22 +01:00
Mark Brand efdf9dda7b update package sqlite 2013-10-17 17:00:09 +02:00
Mark Brand 659e6f529e update package sqlite 2013-09-05 20:51:44 +02:00
Mark Brand 2ec8555f59 update package sqlite 2013-08-30 00:22:01 +02:00
Martin Müllenhaupt bff8a2bc18 package sqlite: fix checksum 2013-08-28 14:25:11 +02:00
Mark Brand 3bdd0be663 update package sqlite 2013-08-26 20:12:30 +02: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
Mark Brand 3895c7292b update package sqlite 2013-05-20 13:15:57 +02:00
Mark Brand bcf022f685 update package sqlite 2013-04-13 09:39:06 +02:00
Mark Brand 004e8600e6 update package sqlite 2013-03-29 15:23:32 +01:00
Mark Brand c284b08f57 update package sqlite 2013-03-18 20:47:48 +01:00
Mark Brand 9475864149 update package sqlite 2013-01-09 17:24:50 +01:00
Mark Brand 19b1afc07f update package sqlite 2012-12-20 08:00:26 +01:00
Mark Brand cd4e931212 update package sqlite 2012-12-13 00:21:34 +01:00
Mark Brand 315ba54250 package sqlite: install sqlite3.exe 2012-10-11 21:02:50 +02:00
Mark Brand a2c2343f0d update package sqlite 2012-10-04 22:52:41 +02:00
Mark Brand 8ad0277b2e update package sqlite 2012-09-04 09:14:47 +02:00
Mark Brand 8aa2fcedbd update package sqlite 2012-06-11 12:15:27 +02:00
Mark Brand 46df151e98 update package sqlite 2012-05-22 14:29:06 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Mark Brand 3ffd5d5a29 update package sqlite 2012-05-14 20:43:57 +02: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 2a8c9045d2 update package sqlite 2012-03-20 16:29:23 +01:00
Mark Brand 9b985a8b07 update package sqlite 2012-01-16 17:26:21 +01:00
Mark Brand 9aa0a31c7c upgrade package sqlite 2011-11-01 17:29:22 +01:00
Mark Brand 46c0d4431d update package sqlite 2011-09-19 21:49:30 +02:00
Mark Brand e3316c85fb update package sqlite 2011-06-29 09:20:22 +02:00
Mark Brand 555aaec973 update package sqlite 2011-06-24 13:16:10 +02:00
Mark Brand 21d02040b6 update package sqlite 2011-05-20 09:05:11 +02:00
Mark Brand 04ed165a09 update package sqlite 2011-04-17 23:16:47 +02:00
Mark Brand ff0bc6becc update package sqlite 2011-04-13 22:02:18 +02:00
Mark Brand 0dd982c960 update package sqlite 2011-04-12 15:19:29 +02:00
Mark Brand 9a1bc8f0d7 upgrade package sqlite 2011-02-01 10:07:56 +01:00
Mark Brand 0d20234f54 remove $($PKG)_SUBDIR) from FILE and URL defintions
For now this means a bit of duplication, but if the remaining
references to SUBDIR can be dealt with, we should be able
to get rid of the SUBDIR defintion altogether.
2010-12-12 01:16:13 +01:00
Volker Grabsch 314b9640f5 fixed package sqlite 2010-12-11 23:19:47 +01:00