summaryrefslogtreecommitdiffstats
path: root/src/vmime.mk
Commit message (Collapse)AuthorAgeFilesLines
* package vmime: expand filename in urlTony Theodore2013-07-221-1/+1
| | | | The filename isn't actually used, but we'll keep it consistent.
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* update package vmimeMark Brand2013-07-011-1/+1
|
* update package vmimeMark Brand2013-06-251-1/+1
|
* update package vmimeMark Brand2013-06-221-1/+1
|
* update package vmimeMark Brand2013-06-201-1/+1
|
* update package vmimeMark Brand2013-06-141-1/+1
|
* package vmime: correct checksumMark Brand2013-06-091-1/+1
|
* update package vmimeMark Brand2013-06-071-1/+1
|
* package vmime: disable experimental mlang detectionTony Theodore2013-06-021-0/+1
|
* package vmime: enable w64 buildsMark Brand2013-06-011-3/+0
|
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-0/+3
|
* update package vmimeNiels Kristian Bech Jensen2013-05-241-1/+1
|
* update package vmimeMark Brand2013-05-151-1/+1
|
* update package vmimeMark Brand2013-05-141-1/+1
|
* update package vmimeMark Brand2013-04-271-1/+1
|
* update package vmimeMark Brand2013-04-181-1/+1
|
* update package vmimeMark Brand2013-04-161-1/+1
|
* update package vmimeMark Brand2013-04-031-1/+1
|
* update package vmimeMark Brand2013-03-261-1/+1
|
* update package vmimeMark Brand2013-03-241-3/+3
|
* update package vmimeMark Brand2013-03-241-1/+1
|
* update package vmimeMark Brand2013-03-231-1/+1
|
* update package vmimeMark Brand2013-03-161-1/+1
|
* update package vmimeMark Brand2013-03-111-1/+1
|
* package vmime: fixes for pkg-configMark Brand2013-03-061-0/+1
|
* update package vmimeMark Brand2013-03-061-1/+1
|
* update package vmimeMark Brand2013-03-061-6/+1
|
* update package vmimeMark Brand2013-03-011-1/+3
|
* update package vmimeMark Brand2013-02-281-1/+1
|
* update package vmimeMark Brand2013-02-251-1/+1
|
* update package vmimeMark Brand2013-02-241-1/+1
|
* update package vmimeMark Brand2013-02-051-1/+1
|
* update package vmimeMark Brand2013-02-041-1/+1
|
* update package vmimeMark Brand2012-12-271-1/+1
|
* update package vmimeMark Brand2012-12-241-1/+2
|
* package vmime: disable sendmailTony Theodore2012-12-091-0/+1
|
* update package vmimeMark Brand2012-12-061-1/+1
|
* update package vmimeMark Brand2012-12-011-1/+1
|
* update package vmimeMark Brand2012-11-301-1/+1
|
* update package vmimeMark Brand2012-11-131-1/+1
|
* update package vmimeMark Brand2012-11-121-20/+8
| | | | build system changed to cmake
* package vmime: use github tarballMark Brand2012-11-121-7/+7
| | | | | This seems like a much better idea than applying our own copy of the patches to the 0.9.1 tarball.
* package vmime: take upstream fixesMark Brand2012-06-101-6/+3
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* package vmime: fix and use .pc fileMark Brand2011-03-171-3/+1
|