Age | Commit message (Collapse) | Author | Files | Lines |
|
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
|
|
until proven otherwise.
|
|
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.
Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.
Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.
Whitespace cleanups and other nits corrected, where necessary.
|
|
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
|
|
are called p5-*.
I hope that's all of them.
|
|
|
|
|
|
systems, it would not be negative otherwise.
clearsilver-base is destdir ready, mark it so. clearsilver itself is
a meta package, mark it so.
|
|
changed runtime dependencies now.
|
|
Changes:
- GCC printf attributes for all printf like functions for better
compiler time warnings (Nikolai Kondrashov)
- Better support for other compilers for handling CPP variable
argument macros (Raphaƫl HUCK)
- Fix for some symlinking/hdf_get_obj bugs (Nikolai Kondrashov)
- Performance improvements to Perl wrapper (Sergey Skvortsov)
- New url_validate Clearsilver method (Mugdha Bendre @ Google)
- Quick Hello World example for using with FastCGI (Mike Tsao @ Google)
- Updates to the Ruby wrapper (Dan Janowski)
- Updates to the Java wrapper (Joe Walnes @ Google)
- Add support to Java wrapper for hooking the file loader
- Add string.crc builtin-function
- Make it easier to write XSS free clearsilver code
- Ability to setup file load hooks for cs and hdf files
- fix for non-thread safe nerr_init call (causes java jni wrapper to
core dump when server is started under heavy load)
- python egg support (if you have the egg version of distutils
installed)
- some parser edge case fixes.
- some cleanups to cgiwrap that make it easier to use with
fastcgi. fastcgi wrapper to come in the future.
|
|
then automatically generate a PLIST that says "${PKGNAME} has no files".
* If PLIST_SRC and GENERATE_PLIST are not set in a package Makefile,
and no PLIST files exist, then fail during the package build with
PKG_FAIL_REASON.
* Remove "intentionally empty" PLISTs again.
Now, the easy way to say that a package installs no files is to just
add the following to the package Makefile:
PLIST_SRC= # empty
|
|
|
|
|
|
in this package has split into py-clearsilver and clearsilver-base.
Release Notes for Clearsilver 0.9.13 11/24/2004
-------------------------------------
bugfix release
- one incompatible change: semi-public function cgi_html_ws_strip now
takes a second argument to set the level of stripping
- white space stripper now has two levels: 1 is the old debug level
(which doesn't strip whitespace at the beginning of a line) and the
second strips all duplicate whitespace
- make java/perl/python/ruby wrappers for CS include the html strfuncs
(ie, filters)
- make hdf destroy less recursive (so we don't blow the stack on
really large data sets)
Release Notes for Clearsilver 0.9.12 09/29/2004
-------------------------------------
bugfix release
- fix bugs in Java wrapper and add white space stripper option
- fix some allocation bugs in cs parser
- add single quotes to the list of characters to escape in url_escape
- fix core dump in find_context (hit during parse error in evar)
- fix some operator precedence bug and some bad expression handling of
empty strings
Release Notes for Clearsilver 0.9.11 08/03/2004
-------------------------------------
bugfix release
- fix bugs in Java wrapper
- update copyright notice
- fixes to get rid of gcc3 warnings
- fix bug in cgi/html.c
Release Notes for Clearsilver 0.9.10 06/02/2004
-------------------------------------
bugfix release
- Parenthesis in the wrong place in the last patch
- fix some memory leaks in template parsing and rendering
Release Notes for Clearsilver 0.9.9 05/14/2004
-------------------------------------
A small release.
INCOMPATIBLE CHANGE - The convert_text_html_alloc_options()
HTML_CONVERT_OPTS struct now has another member, link_name, which (if
not NULL) will be used instead of the link as the title of the link
which gets created. If you don't zero out your HTML_CONVERT_OPTS
struct (using either memset or calloc, for instance), you'll need to
initialize the link_name member (probably to NULL). Users of the
older convert_text_html_alloc() function or the python wrapped version
don't have to worry about this.
Also, added a ne_file_read_len() for loading binary files since it
returns the length of the loaded data.
Release Notes for Clearsilver 0.9.8 04/22/2004
-------------------------------------
A bit more than a bugfix release, we have some new features and
abilities.
New Features
- Internal functions in ClearSilver can now take multiple arguments.
This includes support for the comma ',' operator in CS, which works
like the comma operator in C.
- added string.slice function as an example of a multiple argument
function.
- added string.length function to replace old len function
- added subcount function to replace bad len function overloading
- added gettext support from Gerald Dachs <gda at gmx.de>
- INCOMPATIBLE CHANGE: added secure flag to cgi_cookie_set function
- Add new allocating sprintf routines which take the char * as an
argument and return the size of the allocated string
- Dave added a bunch of my public python code to the python example
code (we need to define a real package for this stuff at some point)
- support for sqlite in odb, and various odb improvements
Bug fixes
- gzip compression was broken, thanks to the guys at OmniWeb for
pointing out my mistake.
- handle redirects when using https correctly
- handle invalid form data without erroring out (or segfaulting)
|
|
|
|
Buildlink files: RECOMMENDED version changed to current version.
|
|
* Disable apache, perl, ruby, java, and C# bindings.
* Don't pass -Wall to cc.
|
|
gets built.
Should fix hubertf's bulk build.
|
|
|
|
Clearsilver is a fast, powerful, and language-neutral HTML template
system. In both static content sites and dynamic HTML applications,
it provides a separation between presentation code and application
logic which makes working with your project easier.
|