Age | Commit message (Collapse) | Author | Files | Lines |
|
(uses giflib now per default)
bump PKGREV
|
|
|
|
(uses giflib now per default)
bump PKGREV
|
|
as GIF implementation. They are src/binary compatible and mutually
exclusive, so this is a global choice.
Up to now, "libungif" is used by pkgs, due to patent problems. The
patents are said to be expired, and "giflib" gets somewhat better
maintainance upstream these days, so set the new default to "giflib".
|
|
|
|
|
|
|
|
|
|
changes:
-Increase precision in PS output device
-bugfixes
(shlib name changed)
|
|
|
|
|
|
clutter-1.6.8, fixesproto-5.0, gst-plugins0.10-good-0.10.28,
gtk3-3.0.2, lbreakout2-2.6.3, libXfixes-5.0, libsigc++-2.2.9,
py-gobject-2.28.0, samba35-3.5.8, tig-0.17, xf86-input-keyboard-1.6.0,
xpaint-2.9.8.2.
Remove some entries for removed packages.
|
|
This switches to the new gtk-2.24 branch which is intended to
help transition to glib/gtk3. Still binary compatible.
|
|
This switches to the new glib-2.28 branch which is intended to
help transition to glib/gtk3. Still binary compatible.
(The unix socket credential passing stuff needs work, but this
is new and thus no regression.)
|
|
|
|
fails with system libz. We propagate a dependency per bl3 file,
this should be sufficient.
bump PKGREV
|
|
changes:
-fixes for less critical bugs
-make TLS D-H parameters match those of Apache's mod_ssl
pkgsrc changes: Makefile cleanup, appease plglint
|
|
|
|
Czech, Italian, Japanese and Swedish language files are updated
to support contao 2.9.4.
|
|
|
|
|
|
|
|
Pkgsrc changes:
- Confirm it's working with python27
Upstream changes:
Changes in version 1.0
This page lists all changes made to Fabric in its 1.0.0 release.
Highlights
* #7: run/sudo now allow full interactivity with the remote end. You can
interact with remote prompts and similar interfaces, making certain tasks much
easier, and freeing you from the need to find noninteractive solutions if you
don't want to. See Interaction with remote programs for more on these changes.
* put and get received many updates, including but not limited to: recursion,
globbing, inline sudo capability, and increased control over local file paths.
See the individual ticket line-items below for details. Erich Heine (sophacles
on IRC) played a large part in implementing and/or collecting these changes and
deserves much of the credit.
* Added functionality for loading fabfiles which are Python packages
(directories) instead of just modules (single files). This allows for easier
organization of nontrivial fabfiles and paves the way for task namespacing in
the near future. See Fabfile discovery for details.
* #185: Mostly of interest to those contributing to Fabric itself, Fabric
now leverages Paramiko to provide a stub SSH and SFTP server for use during runs
of our test suite. This makes quick, configurable full-stack testing of Fabric
(and, to an extent, user fabfiles) possible.
Backwards-incompatible changes
The below changes are backwards incompatible and have the potential to break
your 0.9.x based fabfiles!
* contains and append previously had the filename argument in the second
position, whereas all other functions in the contrib.files module had filename
as the first argument. These two functions have been brought in line with the
rest of the module.
* sed now escapes single-quotes and parentheses in addition to forward
slashes, in its before and after kwargs. Related to, but not entirely contained
within, #159.
* The user and pty kwargs in sudo's signature have had their order swapped
around to more closely match run.
* As part of the changes made in #7, run and sudo have had the default value
of their pty kwargs changed from False to True. This, plus the addition of the
combine_stderr kwarg/env var, may result in significant behavioral changes in
remote programs which operate differently when attached to a tty.
* #61: put and get now honor the remote current-working-directory changes
applied by cd. Previously they would always treat relative remote paths as being
relative to the remote home directory.
* #79: get now allows increased control over local filenames when downloading
single or multiple files. This is backwards incompatible because the default
path/filename for downloaded files has changed. Thanks to Juha Mustonen, Erich
Heine and Max Arnold for brainstorming solutions.
* #88: local has changed the default value of its capture kwarg, from True
to False. This was changed in order to be more intuitive, at the cost of no
longer defaulting to the same rich return value as in run/sudo (which is still
available by specifying capture=True.)
* #121: put will no longer automatically attempt to mirror local file modes.
Instead, you?ll need to specify mirror_local_mode=True to get this behavior.
Thanks to Paul Smith for a patch covering part of this change.
* #172: append has changed the default value of its partial kwarg from True
to False in order to be safer/more intuitive.
* #221: runs_once now memoizes the wrapped task's return value and returns
that value on subsequent invocations, instead of returning None. Thanks to Jacob
Kaplan-Moss and Travis Swicegood for catch + patch.
Feature additions
* Prerelease versions of Fabric (starting with the 1.0 prereleases) will now
print the Git SHA1 hash of the current checkout, if the user is working off of a
Git clone of the Fabric source code repository.
* Added path context manager for modifying commands? effective $PATH.
* Added convenience .succeeded attribute to the return values of
run/sudo/local which is simply the opposite of the .failed attribute. (This
addition has also been backported to Fabric's 0.9 series.)
* Refactored SSH disconnection code out of the main fab loop into
disconnect_all, allowing library users to avoid problems with non-fabfile Python
scripts hanging after execution finishes.
* #2: Added use_sudo kwarg to put to allow uploading of files to privileged
locations. Thanks to Erich Heine and IRC user npmap for suggestions and patches.
* #23: Added prefix context manager for easier management of persistent state
across commands.
* #27: Added environment variable (always_use_pty) and command-line flag
(--no-pty) for global control over the run/sudo pty argument.
* #28: Allow shell-style globbing in get. Thanks to Erich Heine and Max Arnold.
* #55: run, sudo and local now provide access to their standard error (stderr)
as an attribute on the return value, alongside e.g. .failed.
* #148: local now returns the same 'rich' string object as run/sudo do, so
that it is a string containing the command's stdout (if capture=True) or the
empty string (if capture=False) which exposes the .failed and .return_code
attributes, and so forth.
* #151: Added a puts utility function, which allows greater control over
fabfile-generated (as opposed to Fabric-generated) output. Also added fastprint,
an alias to puts allowing for convenient unbuffered, non-newline-terminated
printing.
* #192: Added per-user/host password cache to assist in multi-connection
scenarios.
* #193: When requesting a remote pseudo-terminal, use the invoking terminal's
dimensions instead of going with the default.
* #217: get/put now accept file-like objects as well as local file paths for
their local_path arguments.
* #245: Added the lcd context manager for controlling local's current working
directory and put/get's local working directories.
* #274: put/get now have return values which may be iterated over to access
the paths of files uploaded remotely or downloaded locally, respectively. These
return values also allow access to .failed and .succeeded attributes, just like
run and friends. (In this case, .failed is actually a list itself containing any
paths which failed to transfer, which naturally acts as a boolean as well.)
Bugfixes
* N/A
Documentation updates
* API, tutorial and usage docs updated with the above new features.
* README now makes the Python 2.5+ requirement up front and explicit; some
folks were still assuming it would run on Python 2.4.
* Added a link to Python?s documentation for string interpolation in
upload_template's docstring.
Changes in version 0.9.5
The following changes were implemented in Fabric 0.9.5:
Bugfixes
* #264: Fix edge case in reboot by gracefully clearing connection cache.
* #268: Allow for @ symbols in usernames, which is valid on some systems.
Fabric's host-string parser now splits username and hostname at the last @
found instead of the first.
|
|
Copy and paste some from changelog:
Dailymotion.pm: Fix format support
Returned "default" for all videos nonetheless of -f arg.
Ported from quvi.
Youtube: Fix video ID parsing (#10)
- http://sourceforge.net/apps/trac/clive/ticket/10
Bump version to 2.2.23
|
|
|
|
|
|
This is documentation for tex-wasysym.
|
|
The WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs like
male and female symbols and astronomical symbols, as well as the
complete lasy font set and other odds and ends. The wasysym package
implements an easy to use interface for these symbols.
|
|
|
|
fonts/tex-collection-fontsrecommended-doc.
This is documentation for tex-collection-fontsrecommended.
|
|
fonts/tex-collection-fontsrecommended.
Recommended fonts, including the base 35 PostScript fonts, Latin
Modern, TeX Gyre, and T1 and other encoding support for Computer
Modern, in outline form.
|
|
|
|
This is documentation for tex-utopia.
|
|
The Adobe Standard Encoding set (upright and italic shapes, medium and
bold weights) of the Utopia font family, which Adobe donated to the X
Consortium. Macro support, and maths fonts that match the Utopia family,
are provided by the Fourier and the Mathdesign Utopia font packages.
|
|
|
|
This is documentation for tex-tex-gyre.
|
|
The TeX-GYRE bundle consists of six font families: TeX Gyre Adventor is
based on the URW Gothic L family of fonts (which is derived from ITC
Avant Garde Gothic, designed by Herb Lubalin and Tom Carnase). TeX Gyre
Bonum is based on the URW Bookman L family (from Bookman Old Style,
designed by Alexander Phemister). TeX Gyre Chorus is based on URW
Chancery L Medium Italic (from ITC Zapf Chancery, designed by Hermann
Zapf in 1979). TeX-Gyre Cursor is based on URW Nimbus Mono L (based on
Courier, designed by Howard G. Kettler in 1955, for IBM). TeX Gyre Heros
is based on URW Nimbus Sans L (from Helvetica, prepared by Max
Miedinger, with Eduard Hoffmann in 1957). TeX Gyre Pagella is based on
URW Palladio L (from Palation, designed by Hermann Zapf in the 1940s).
TeX Gyre Schola is based on the URW Century Schoolbook L family (which
was designed by Morris Fuller Benton for the American Type Founders).
TeX Gyre Termes is based on the URW Nimbus Roman No9 L family of fonts
(whose original, Times, was designed by Stanley Morison together with
Starling Burgess and Victor Lardent and first offered by Monotype). The
constituent standard faces of each family have been greatly extended,
and contain nearly 1200 glyphs each (though Chorus omits Greek support,
has no small-caps family and has approximately 900 glyphs). Each family
is available in Adobe Type 1 and Open Type formats, and LaTeX support
(for use with a variety of encodings) is provided. Vietnamese and
Cyrillic characters were added by Han The Thanh and Valek Filippov,
respectively.
|
|
parsing (SA43491), bump PKGREV
|
|
no changelog available, at least some security fixes were done:
-fix possible memory corruption due to malformed JPEG images
(was patched in pkgsrc)
-fix (at least) 2 cases of integer overflow in array allocation (SA42320)
|
|
of bsd.prefs.mk.
|
|
|
|
|
|
|
|
|
|
|
|
* Update HOMEPAGE.
* Remove dependency to ec-fonts-mftraced and mftrace.
* Works fine with python26, delete PYTHON_VERSIONS_ACCEPTED.
* Bump PKGREVISION.
|
|
|
|
* Now support Ruby 1.9.2.
* introduced Extensible Arrows support with version 1.4.0 and later.
Please refer full changes:
http://golem.ph.utexas.edu/~distler/code/itexToMML/changes
|
|
|
|
file and ensures that rpath information is included in the installed library.
|