33
I Use This!
Activity Not Available

Commits : Listings

Analyzed 11 months ago. based on code collected 11 months ago.
Jan 18, 2023 — Jan 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Portability fixes and various cleanups in wrapper scripts: + Fix the tests at the header of wrappers. which(1) doesn't behave as expected on some systems. We should only assume that it's pretty widely available (for example, it's a builtin in csh) and we should only rely on its exit code by ignoring its output. + Replace 'echo -n' with 'printf' as the latter is recommended. + In markdown2pdf script, '--suffix' and '--backup' options of mv(1) appear to be GNU-ism. Apply a workaround. + Wrap some long lines to fit in an 80-column screen. + Remove spaces at the line ends. More... about 18 years ago
Made wrapper scripts sensitive to PANDOC_OPTS environment variable, which may contain command-line options to be passed to pandoc. + Changed the scripts themselves, including $PANDOC_OPTS after 'pandoc' + Added ENVIRONMENT to man pages for wrappers + Formatting changes to man files + Added description of PANDOC_OPTS to README More... about 18 years ago
Changes to OSX packaging: + Use $(NAME) instead of hard-coded 'Pandoc' for package and dmg names + Create dmg in .. (like debs) + Modified website target to get dmg from .. More... about 18 years ago
Use compiled executables directly from their build directory, without copying them to the top directory. More... about 18 years ago
Fix a serious bug in Makefile. 'make' should recompile when a source file has been modified. More... about 18 years ago
Fixed two small Haddock comment bugs in Shared.hs. More... about 18 years ago
Changed first two paragraphs of index.txt to match README. More... about 18 years ago
Remove signatures (and emails!) from changelog on web page. More... about 18 years ago
+ Changes to osx/Welcome: - removed hardcoded references to /usr/local - added title + Minor changes to website build process. More... about 18 years ago
Revisions to website target: + added link for OSX package + minor fixes More... about 18 years ago
Put all website commands into a subshell jail. If any command failed, we would end up with web_dest directory which would have to be removed manually for further attempts. If this looked ugly; as an alternative solution we could change 'website' target as follows: More... about 18 years ago
Changes for 'website': + Execute $(MAIN) in './' otherwise this would fail if $(MAIN) is not available in PATH. + Make echo off during file checking. + Copy $(deb_main) from parent directory. More... about 18 years ago
Changed install.html to INSTALL.html in website; replaced a reference to README.html to INSTALL.html. More... about 18 years ago
Added target for creation of website. 'web' directory contains source files for website, which is created in 'web/pandoc'. More... about 18 years ago
Removed INSTALL.html from build-doc target. More... about 18 years ago
Fixes from last review: + Add markdown2pdf to %.pdf dependencies. + Make build-all target explicitly depend on build-program, instead of 'all' which might be changed in future. + Add build-program to osx-pkg-prep for the sake of explicitness. + Generate INSTALL.html in build-doc. More... about 18 years ago
Modified INSTALL instructions; require "make build-all" before "make install-all". More... about 18 years ago
Attempt to fix a (long-standing) Makefile drawback which is documented in previous revisions as follows: More... about 18 years ago
Fix all the errors lintian(1) reported: + "SEE ALSO" sections of man files have paragraph fillings errors which groff(1) complains ("cannot adjust line"). This is because .BR line in "SEE ALSO" section is too long to break properly. Fix all man pages. While on it, move all AUTHORS section to the end of the files, this section should come last. + lintian(1) complains about the debian/changelog symlink: W: pandoc source: changelog-is-symlink N: N: The file debian/changelog is a symlink instead of a regular file. This N: is unnecessary and makes package checking and manipulation more N: difficult. If the changelog should be available in the source package N: under multiple names, make debian/changelog the real file and the N: other names symlinks to it. N: N: This problem may have prevented lintian from performing other checks, N: leading to undetected changelog errors. Reverse the source and targets in symlink to fix this warning. Now, the Debian packages can be cleanly built. More... about 18 years ago
Fix a bug in variable substitution. More... about 18 years ago
Older Cabal versions have no '--destdir' option. Detect the availability of this option and fallback to '--copy-prefix' (which is now deprecated, as of GHC 6.6). More... about 18 years ago
Remove some code comments from previous commit. More... about 18 years ago
More sanitizations in Makefile (needs testing): + Remove a bogus DOCS assignment line. + Cabal recreates pandoc executable by unnecessarily linking Main.o with library (it skips compiling *.hs files though). Since pandoc's time stamp is modified, it is copied from buildir to top directory, and also README.html is regenerated, each time a target which has a 'build' prerequisite is invoked. As a solution, now PHONY 'build' target depends on BUILDDIR/. + "THIS" variable has a confusing semantics and it is abusingly used in various targets. We in fact need it to specify package sub directories created during installation. Clarify this meaning by moving it to path variables section. + Create a new variable as MAIN which holds the main executable name. Sorry for my obsession to avoid simply using a magic "pandoc" name. :-) Modify all targets which (abusingly) refers to THIS and replace THIS with MAIN. Note that MAIN is derived from EXECS which in turn collects all executable names from Executable stanzas in cabal file. + As EXECS may hold more than one executable name, update EXECS target to reflect this semantic. + Rename BINS variable as PROGS and modify it so as to hold the names of all executables required to be installed. Remove bin_all local variable as PROGS can be used for the same purpose instead. + Modify DOCS variable so as to hold the names of all documents required to be installed. Remove doc_all local variable as DOCS can be used for the same purpose instead. + Remove DOCS target. README.html is already generated when needed. + Remove build-exec redundant prerequisite from osx_dest target. Make can find its way. + Set MAIN as the prerequisite of 'test' and 'test-markdown' to make things more clear. More... about 18 years ago
Sanitize Makefile: + Move $(BINS) target to a new PHONY 'build-exec' target. This should be used in all (non-build type) targets which refer BINS. Also, create a new 'build-program' target for user's convenience. + Update all targets so as to use build-exec (instead of BINS). + Use an explicit global DOCS variable which lists buildable documents; this makes our intention more clear. Also, for the sake of consistency, move BINS variable (which lists buildable executables) to a new section and create a redundant (for the moment, at least) EXECS variable. + Move all buildable target files in install-* targets to the related build-* targets. This mostly involves document files (e.g. README.hmtl). As a result, we now have a new build target 'build-doc' which builds main documents. This modification provides a clean separation between build and install type targets. More... about 18 years ago
Make osx-dmg target depend on $(osx_dmg_name), so that if the dmg file has already been built, it does not build it again. More... about 18 years ago
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. More... about 18 years ago
Changed version numbers to 0.3. More... about 18 years ago
Created new changelog, made debian/changelog a symlink to changelog in top-level. More... about 18 years ago
Removed check for presence of pandoc in uninstall-pandoc; if uninstall-pandoc is present, that means Pandoc is installed. More... about 18 years ago
Various changes in osx-* targets. + Exit 1 if permissions are not satisfied. + Make all targets PHONY. + Minor cosmetic fixes. More... about 18 years ago