John MacFarlane
d2464de2af
Use texmath 0.8.6.5. Closes #3040 .
2016-07-24 10:56:19 -07:00
John MacFarlane
e9c20314d0
Use cmark-0.5.3.1 in stack.yaml.
2016-07-16 08:49:46 -07:00
John MacFarlane
43740c5fdd
Added aeson-pretty to osx/stack.yaml.
2016-07-15 14:57:12 -07:00
John MacFarlane
c2bcefb39e
Use cmark-0.5.3 in stack.yaml.
2016-07-15 12:32:25 -07:00
John MacFarlane
75a9ba5dca
Use pandoc-citeproc-0.10.1 for packages.
2016-07-14 22:57:58 -07:00
John MacFarlane
6ea8ff19c3
Added http-client dependencies to stack.yaml files.
2016-07-04 10:24:28 -07:00
John MacFarlane
44ce21e134
stack.yaml: use 6.5 resolver.
2016-07-03 11:54:11 -07:00
John MacFarlane
97f8f4ad4b
Use pandoc-citeproc-0.10 in binary pkgs.
2016-06-04 15:42:07 -07:00
John MacFarlane
01f7d54119
Fixed osx packaging issues.
2016-06-04 08:08:33 -07:00
John MacFarlane
b4ea482660
osx build: use --local-bin-path.
2016-06-04 08:04:39 -07:00
John MacFarlane
ad669e486e
stack.yamls - make sure proper flags used for texmath, pandoc-citeproc.
2016-05-16 20:50:08 -07:00
John MacFarlane
128409f387
Don't hardcode pandoc version in osx/distribution.xml.
...
Instead, create it from a template, distribution.xml.in.
2016-03-19 18:53:43 -07:00
John MacFarlane
06bfac1095
Fixed version in osx/distribution.xml.
2016-03-19 18:32:39 -07:00
John MacFarlane
2e2298abf3
Fixed typo in deb, osx stack.yaml.
2016-03-19 15:33:18 -07:00
John MacFarlane
f939c210ea
Build vs pandoc-citeproc 0.9.1.1.
2016-03-19 14:55:48 -07:00
John MacFarlane
a2706ee075
Build pandoc-citeproc 0.9.1 for binary pkgs.
2016-03-19 14:51:17 -07:00
John MacFarlane
6a4c17642c
Build binary packages with with latest texmath.
2016-03-19 14:45:25 -07:00
John MacFarlane
33bad8de18
Depend on most recent aeson, highlighting-kate.
...
These aren't in stackage yet.
2016-03-19 14:19:13 -07:00
John MacFarlane
3dadc1b1bd
Use lts-5.8 resolver.
2016-03-19 14:16:08 -07:00
John MacFarlane
52794d8d52
Removed aeson extra-dep from stack.yaml.
2016-02-09 17:28:37 -08:00
John MacFarlane
1aaf4b8c83
Changed aeson version in stack.yaml to 0.11.0.0.
2016-02-09 14:08:51 -08:00
John MacFarlane
522f8f3b47
Updated to lts-5.2 resolver, aeson 0.11 in stack.yaml.
2016-02-09 09:34:51 -08:00
John MacFarlane
3004306c3d
Version to 1.16.0.2, updated changelog.
2016-01-12 23:48:06 -08:00
John MacFarlane
6936a6a4e7
osx package fixes: correct version, allow installation to any drive.
2016-01-10 16:48:46 -08:00
John MacFarlane
5eb80872af
Updated stack.yaml.
2016-01-09 13:54:36 -08:00
John MacFarlane
1cee48158e
Updated binary package stack.yamls to ensure pandoc-citeproc...
...
is built with embed_data_files. This fixes a problem with
the original 1.16 binary packages.
2016-01-03 20:52:59 -08:00
John MacFarlane
4edd1a7873
Updated stack.yaml files.
...
Use latest resolver.
Use latest pandoc-citeproc and pandoc-types release.
2016-01-02 12:37:23 -08:00
John MacFarlane
a2fa46065d
stack.yaml - use simpler extra-deps field.
2015-12-30 13:27:17 -08:00
John MacFarlane
b27783e2ec
Use cmark 0.5.
...
Closes #2605 .
2015-12-29 19:52:06 -08:00
John MacFarlane
ad6578f673
Use lts-3.16.
2015-12-01 22:55:42 -08:00
John MacFarlane
012110d62c
Use latest pandoc-citeproc in deb and osx packages.
2015-11-14 20:48:22 -08:00
John MacFarlane
0a9bb963d9
Use latest pandoc-citeproc in osx, deb packages.
2015-11-14 13:50:01 -08:00
John MacFarlane
ad321babca
Use current pandoc-citeproc for deb and osx packages.
2015-11-13 19:05:58 -08:00
John MacFarlane
d355163b7d
Changed path . to .. in deb/osx stack.yaml.
2015-10-24 21:17:05 -07:00
John MacFarlane
aafccdb0bd
Changes for deb and osx package generators.
...
- Use stack for make_deb.sh.
- Use osx/stack.yaml or deb/stack.yaml.
- deb/stack.yaml doesn't want the same ghc-options.
2015-10-24 21:12:43 -07:00
John MacFarlane
2b6e8f4c83
OSX installer improvements.
...
* Use new pkgbuild, productbuild instead of deprecated PackageMaker.
* Removed scripts, which are no longer needed.
* Added distribution.xml.
2014-08-15 00:46:01 -07:00
Daniel T. Staal
88d8f7428a
Code cleanup and debug.
...
Various cleanups:
- @pkg_info was never used. Removed.
- Simplified getting the list of files slightly.
- Used list form of system(). This prevents shell interpretation of command and arguments, preventing bugs. (And solves one.)
- Changed $! (OS_ERROR) to $? (CHILD_ERROR) after system() calls to get the error from the external program. (Note that $? is the numeric return code from the child program.)
- Allow script to continue after finding some of the files have been removed previously.
- Convert 'warn "…"; exit 1;' to 'die "…";', the more common equivalent idiom.
- Convert 'exit 0;' to 'exit;', to be more clear we are not exiting abnormally.
Signed-off-by: Daniel T. Staal <DStaal@usa.net>
2014-05-13 19:59:20 -04:00
John MacFarlane
dfcc32ac9f
Moved make_osx_package.sh back to root.
2014-05-12 20:05:16 -07:00
John MacFarlane
1e8cd2c277
Moved osx package stuff to osx directory; added uninstall script.
...
Thanks to Daniel T. Staal for an uninstall script from which this
one is modified.
2014-05-12 19:59:44 -07:00
fiddlosopher
71b70418f6
Removed osx-package specific files, and references to them
...
in Makefiles.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@906 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-08-26 15:46:44 +00:00
fiddlosopher
0c8ecceb97
Added note about installation of GMP.framework to Mac OSX
...
package.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@883 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-08-24 04:35:30 +00:00
fiddlosopher
5387ebd8db
Added 'hsmarkdown' wrapper, designed to be used as a drop-in
...
replacement for Markdown.pl. It calls pandoc with the options
'--from markdown --to html --strict' and disallows other options.
(Any command-line options will be interpreted as arguments.)
git-svn-id: https://pandoc.googlecode.com/svn/trunk@399 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-01-02 02:58:54 +00:00
fiddlosopher
c6bdfe8485
Revised uninstall-pandoc with new wrapper names.
...
git-svn-id: https://pandoc.googlecode.com/svn/trunk@310 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-12-29 19:32:54 +00:00
fiddlosopher
30734c8d60
+ Changes to osx/Welcome:
...
- removed hardcoded references to /usr/local
- added title
+ Minor changes to website build process.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@84 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-08 17:27:49 +00:00
fiddlosopher
309a15010c
Changes related to osx packaging:
...
+ Simplified osx-dmg target, which need not be built as root.
+ Made osx-pkg and osx-pkg-prep non-.PHONY, plus a few other minor
changes to make the dependencies work correctly.
+ Removed \< from the sed regex in cabalize; this is not support in
BSD sed.
+ Changed path information in osx/Welcome and message in uninstall-pandoc.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@67 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-02 03:30:47 +00:00
fiddlosopher
5044c1ffad
Removed check for presence of pandoc in uninstall-pandoc;
...
if uninstall-pandoc is present, that means Pandoc is installed.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@64 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-01 15:54:11 +00:00
fiddlosopher
b14874fe18
Added uninstall-pandoc script to Mac OS X package.
...
Added information about uninstalling to Welcome message.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@62 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-01 08:29:13 +00:00
fiddlosopher
7ccf149504
Added uninstall-pandoc script for Mac OS X package.
...
git-svn-id: https://pandoc.googlecode.com/svn/trunk@61 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-01 08:20:17 +00:00
fiddlosopher
51536ca888
Renamed OSX-Welcome as Welcome.
...
git-svn-id: https://pandoc.googlecode.com/svn/trunk@56 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-01 06:29:22 +00:00
fiddlosopher
de7ea8576d
Added osx directory for source files for Mac OS X package,
...
to reduce clutter at top level.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@54 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-11-01 06:27:47 +00:00