Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
* Removed the call to png_read_transform_info() when the system libpng
is being used, so it can be built with a system libpng.
Changes 1.7.19:
* pngcrush-1.7.18 failed to read interlaced PNGs. Reverted the change
from calling png_read_transform_info() to png_read_update_info().
Since png_read_transform_info() is not exported we again cannot build
with the system libpng15.
Changes 1.7.18:
* This version will work with either a "system" libpng14 or libpng15, or with
the embedded libpng15. The deprecated usage of libpng png_struct members
and unexported functions has been removed.
* Revised the format of the time report (all on one line so you can get
a nice compact report by piping the output to "grep coding").
|
|
Originally this was an attempt to upgrade version 5.0.0 to version
5.1-RELEASE or even 5.2-DEVELOPMENT, but it turns out that those
versions require a GNAT Ada compiler based on gcc 4.7, which hasn't
had its first release yet. This is mainly due to an change in the
project management API, but using the 4.7 source files fail to
compile due to the new SPARK restrictions. Therefore GPS must
remain at 5.0.x until such time as GNAT-AUX is based on gcc 4.7.
This is a bug fix release.
The list of bug fixes is unknown, but it's confirmed the bug on the
project dialog, library tab has been fixed and thus those patches
are removed.
The Makefile was updated to allow GPS users to take advantage of
the numerous Python scripts, the Python console, and the python-GTK
bindings. The option is present, but it has been removed from the
option list because the pkgsrc version of Python cause GPS to core
dump due to missing symbols in their dynamically-loaded libraries.
Version 2.6 and version 2.7 were both tested, and fail in different
ways. For comparison, the FreeBSD version of GPS builds and operates
fine with Python 2.7, although at times similar "undefined symbol"
messages appear it that error log. Once the issues with Python are
fixed, this new "python" option in options.mk will be re-enabled.
|
|
|
|
|
|
sakura is a terminal emulator based on GTK and VTE. It's a terminal
emulator with few dependencies, so you don't need a full GNOME desktop
installed to have a decent terminal emulator.
This terminal emulator supports tab function.
|
|
The majority of the documentation for gtkada was not getting built. It
turns out that the generation step was omitted from the vendor Makefile.
For the user guide, simply adding this to the top-level makefile fixes the
problem, but the reference manual is the reason it was omitted.
The RM requires Gnat Programming Studio built with Python to generate the
documentation. This created a circular dependency because GPS requires
gtkada to build and python is optional. Secondly, pkgsrc-built python
verions 26 and 27 both cause GPS to core dump. FreeBSD doesn't have this
issue, but it has a different python problem that prevents the documentation
from getting built manually on that system as well.
In the end, the latest generated RM was pulled from libre.adacore.com online
resources and packaged separately. This is not ideal because it represents
gtkada 2.24 which has a couple of API differences from 2.22, but it's the
only full html version of the RM that can be located.
Rebuilding gtkada will result in the gtkada User Guild and Reference
Manual showing up in the <help> menu of GPS. Currently the gtkada submenu
item has an empty submenu.
|
|
|
|
|
|
* accep PYTHON variants same as py-gtk2.
Bump PKGREVISION from default python dependency changes.
|
|
|
|
fixes PR pkg/45419
|
|
|
|
|
|
|
|
(accept any of python-2.x).
* 0.2.5
** Language:
- Make a very small attempt to parse C++ code, amounting to accepting
identifiers containing ::, tilde, and template invocations. Use the
option -c++. This is not likely to be very useful in practice.
- Added metavariable metavariable type.
- Add disjunctions on identifiers in some contexts
- Pretend that & indicates a pointer in -c++ mode
- Support for new and delete
- Allow arrays in smpl parameter declarations. Thanks to Jesper Louis
Andersen for pointing out the problem.
- Field list metavariables
- Add the ability to add __attributes__ (NB, no matching on attributes)
- Slightly improved the error message for transformation on multiple
variable declaration. Thanks to Jonathan Nieder for pointing out the
problem.
** Features:
- support transformations on variables (only) in declarations that declare
multiple variables
- allow #endif XXX in C code
- relax_include_path now applied to non local includes too, in which case
it tries to find a unique file with a suffix of the provided name.
this is useful for directories that are intended to be symbolic links.
- support matching and removing #undef
- support for iteration in ocaml, requires use of -no_show_diff
- calls to likely and unlikely propagate test expression status to their
arguments
- reuse typedefs and macros from complete parsing when reparsing the
transformed code
- better explanation when presenting glimpse tokens
- optimization for an if branch that is just { ... }
- spatch -control_flow_to_file file.c generates a file file.dot
- include files with names ending in .cpp if -c++ option is given
- removed use of the no longer supported sexplib function Conv.hashtbl_of_sexp
- add information about which Fedora packages are needed
** Bugfix:
- improved parsing of expressions to allow ... to the right of operators in
more places
- Fix check_config for Python 2.7 on Fedora 14 (Reported-by: Michael Stefaniuc)
- Check for ocamlfind in configure (Reported-by: Paul E. McKenney)
- Postpone use of ocamlfind at runtime to report fewer errors
- Add support for Python 2.4 binding with the provided pycaml library
- Allow '@' in script code. Thanks to Laurent Reveillere for noticing the
problem.
- Remove an optimization of x or true to true in asttoctl2 for the case
where x may make a modification, eg the case of -thing ?-thing
- Allow adding comments before a function.
- Introduction of newlines in function arguments needs to take into account
that the code added by SmPL can include newlines. Thanks to Thomas
Gleixner for finding the problem.
* 0.2.4
** Language:
- scripts now have names and can declare metavariables that are seen by
SmPL as identifier metavariables, see demos/{python,ocaml}tococci.cocci
- declaration (match variable declarations) and field (match structure
field declarations) metavariables
- matching of array initializations and of enum declarations
** Features:
- compatability with Python 2.7. Thanks to Richard W.M. Jones for pointing
out the problem
- python and ocaml string representations of parameter lists and expression
lists
- try simpler patterns on glimpse failure
- graceful and immediate failure when a virtual rule is defined on the
command line, but not in the rule
- spatch returns -1 when a virtual rule is requested that is not supported
- no transformation when using * with the option -no_show_diff
- expanded +++ file name for match output
- struct *^* and enum *^* metavariable types
- allow an assignment to match a variable initialization, even if multiple
variables are declared at the same time.
- add the option -recursive_includes
- added the option -use_idutils. The requires the previous use of the
script idutils_index.sh
** Bugfix:
- detect used after metavariables in simple statement metavariable match
- allow inheriting position variables over rules that make transformations
but depend on virtual rules that are not defined on the command line
- treat top-level tokens in decl visitor. Thanks to Peter Tummeltshammer
for noticing a resulting problem.
- improve typing of the result of an assignment expression
- eliminate some recursive calls in C code parsing to avoid stack overflows
- better pretty printing of #define when the whole line is removed
- better pretty printing of asm code containing
"::[input]"r"(&coherence_data[i])"
- allow pretty printing of C code with nameless bit fields
- avoid adding an error message to standard output if ocamlfind is not
found
- struct/union/enum-typed metavariables with a metavariable type name
- better management of whitespace between deleted lines. Thanks to
Andriy Gapon for noticing the problem.
- improved parsing recovery for badly parsed struct/enum typedefs
- drop expanded tokens in sgrep output. Thanks to Andriy Gapon for
noticing the problem.
- constant strings have array type, not pointer type. Thanks to Vasiliy
Kulikov for noticing the problem.
- improve indentation when adding code after a function call with indented
arguments.
- return type of sizeof converted to unsigned long. Thanks to Vasiliy
Kulikov for noticing the problem.
- improve spacing when adding structure initializers. Thanks to Vasiliy
Kulikov for noticing the problem.
|
|
|
|
o dri-7.8.2 [pkgsrc-wip]
o gl-7.8.2 [pkgsrc-wip]
imported to wip
o binutils-2.21.1 [pkgsrc-wip]
o modular-xorg-server-1.11.1 [pkgsrc-wip]
o showfont-1.0.3 [pkgsrc-wip]
----------------------------------------------------------------------
|
|
|
|
* using distutils.
* change example directory, not to conflict with python variants each other.
Bump PKGREVISION.
|
|
|
|
|
|
|
|
|
|
|
|
or pbulk vomits.
|
|
|
|
python24 (uses perl-style if syntax)
python25 (ImportError: No module named simplejson)
|
|
I don't see any obvious reason that they're doing so because the build
is finding tools it's not supposed to see or that need to be added to
its deps or anything like that. However, as this thing uses scons,
it's anyone's guess. For now, it's better to have it building than not
building.
|
|
|
|
|
|
textproc/p5-Template-Declare.
|
|
Changes from previous:
p5-Template-Declare-0.45
0.45 2011-04-15
* Added new HTML 5 elements to the HTML Tag set. (Theory)
0.44 2010-12-08
* Added support for $TAG_INDENTATION and $EOL (Marc Chantreux)
* Add a current_base_path() convenience function (trs)
|
|
Changes from previous:
==============================
2011-06-29 10:03:36 +0100 1.16
==============================
Resolve [rt.cpan.org #69175] "Test-POE-Server-TCP-1.14 stuck in test
on Strawberry Perl 5.12.3"
Made the explicit socket shutdown for 'cygwin' applicable to MSWin32
as well. I was able to reproduce the issue with:
This is perl 5, version 14, subversion 1 (v5.14.1) built for
MSWin32-x64-multi-thread
|
|
Changes from previous:
0.15
Show line and column number in diagostics (Mark Fowler)
0.14
Compatibility fix with perl 5.13.5
|
|
|
|
of code was raising warnings and failing to build. Changed to use 255 for
error conditions instead of -1, along with unsigned chars unconditionally.
|
|
|
|
This package still doesn't build, but it gets a bit further.
|
|
|
|
FIX: another problem with packages
having non-empty PKG_FAIL_REASON.
|
|
- check the result of malloc in the place we were crashing.
|
|
|
|
|
|
|
|
glade3-3.8.1 [GNOME 2.34], glproto-1.4.14 [pkg/45462], highlight-3.6,
horde-4.0.10, libraw-0.14.1, mkfontdir-1.0.6 [pkg/45461],
mkfontscale-1.0.9 [pkg/45460], nas-1.9.3 [pkg/45449], octave-3.4.3,
py-cups-1.9.60, subversion-1.7, wine-devel-1.3.30, xextproto-7.2.0
[pkg/45464], xproto-7.0.22 [pkg/45465], xterm-276.
|
|
a new version number. New DIST_SUBDIR, bump PKGREVISION to 2.
------
Relase notes for SZIP 2.1
July 14, 2010
Bug fixes:
-- None.
New features:
-- CMake support added, which allows for shared or static builds.
|
|
|