summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner10-25/+27
(uses giflib now per default) bump PKGREV
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner4-8/+8
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner14-37/+37
(uses giflib now per default) bump PKGREV
2011-03-09Add a switch to choose between graphics/giflib and graphics/libungifdrochner1-0/+23
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".
2011-03-09sync dependency versionsdrochner5-10/+10
2011-03-09bump PKGREV for poppler shlib change (pulled in by default option)drochner1-1/+2
2011-03-09bump PKGREV for libpoppler shlib name changedrochner9-16/+18
2011-03-09reset PKGREV for base pkg updatedrochner1-2/+1
2011-03-09update to 0.16.3drochner4-6/+79
changes: -Increase precision in PS output device -bugfixes (shlib name changed)
2011-03-09Remove entries for updated packages.wiz1-34/+1
2011-03-09Remove more entries for removed packages.wiz1-6/+2
2011-03-09+ adobe-flash-plugin10.1-10.3, autogen-5.11.8, bftpd-3.2, bitlbee-3.0.2,wiz1-19/+17
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.
2011-03-09update to 2.24.1drochner3-17/+15
This switches to the new gtk-2.24 branch which is intended to help transition to glib/gtk3. Still binary compatible.
2011-03-09update to 2.28.2drochner7-57/+243
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.)
2011-03-09Add dependency to texi2html, fontforge, and t1utils.ryoon1-1/+4
2011-03-09fix installed pkgconfig .pc file: Don't refer to zlib.pc -- thisdrochner3-2/+24
fails with system libz. We propagate a dependency per bl3 file, this should be sufficient. bump PKGREV
2011-03-09update to 0.2.1.30, from Christian Sturm (the MAINTAINER) per PR pkg/44702drochner2-14/+13
changes: -fixes for less critical bugs -make TLS D-H parameters match those of Apache's mod_ssl pkgsrc changes: Makefile cleanup, appease plglint
2011-03-08Note update of www/contao29-translations package to 20110308.taca1-1/+2
2011-03-08Update contao29-translations package to 20110308.taca3-17/+17
Czech, Italian, Japanese and Swedish language files are updated to support contao 2.9.4.
2011-03-08Don't hardcode the location of the plugin. Make this work with Java 6.bad1-3/+7
2011-03-08Fix name of Sun jdk15 in PKG_JVM_ACCEPTED.bad1-2/+2
2011-03-08Updated sysutils/fabric to 1.0.0gls1-1/+2
2011-03-08Update sysutils/fabric to 1.0.0gls4-14/+29
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.
2011-03-08Update to version 2.2.23.reed3-7/+8
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
2011-03-08Fix paths to tex-wasysym{,-doc}.minskim2-4/+4
2011-03-08Add tex-wasysym{,-doc}.minskim2-2/+6
2011-03-08Import tex-wasysym-doc-2.0 as fonts/tex-wasysym-doc.minskim4-0/+21
This is documentation for tex-wasysym.
2011-03-08Import tex-wasysym-2.0 as fonts/tex-wasysym.minskim4-0/+28
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.
2011-03-08Add tex-collection-fontsrecommended{,-doc}.minskim2-2/+6
2011-03-08Import tex-collection-fontsrecommended-doc-2010 asminskim2-0/+48
fonts/tex-collection-fontsrecommended-doc. This is documentation for tex-collection-fontsrecommended.
2011-03-08Import tex-collection-fontsrecommended-2010 asminskim2-0/+50
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.
2011-03-08Add tex-utopia{,-doc}.minskim2-2/+6
2011-03-08Import tex-utopia-doc-2010 as fonts/tex-utopia-doc.minskim4-0/+20
This is documentation for tex-utopia.
2011-03-08Import tex-utopia-2010 as fonts/tex-utopia.minskim4-0/+79
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.
2011-03-08Add tex-tex-gyre{,-doc}.minskim2-2/+6
2011-03-08Import tex-tex-gyre-doc-2.004 as fonts/tex-tex-gyre-doc.minskim4-0/+101
This is documentation for tex-tex-gyre.
2011-03-08Import tex-tex-gyre-2.004 as fonts/tex-tex-gyre.minskim4-0/+865
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.
2011-03-08adopt evince/patch-ba to fix 2 possible buffer overflows in AFM filedrochner3-3/+26
parsing (SA43491), bump PKGREV
2011-03-08update to 0.8drochner6-57/+71
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)
2011-03-08Testing for OPSYS can only happen _after_ the inclusionwiz1-4/+5
of bsd.prefs.mk.
2011-03-08Updated audio/gqmpeg-skins to 20030712nb6wiz1-2/+2
2011-03-08Depend on gqmpeg-devel instead of gqmpeg.wiz1-3/+3
2011-03-08Removed audio/gqmpeg-skinswiz1-1/+2
2011-03-08Set LICENSE.ryoon1-1/+2
2011-03-08Updated print/lilypond to 2.12.3nb2ryoon1-1/+2
2011-03-08Fix PR pkg/44693ryoon1-9/+3
* Update HOMEPAGE. * Remove dependency to ec-fonts-mftraced and mftrace. * Works fine with python26, delete PYTHON_VERSIONS_ACCEPTED. * Bump PKGREVISION.
2011-03-08Note update of textproc/ruby-itex2MML package to 1.4.5.taca1-1/+2
2011-03-08Update to ruby-itex2MML to 1.4.5 and should be fix PR pkg/44454.taca3-12/+24
* 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
2011-03-08Fix build failure on FreeBSD.hiramatsu1-1/+4
2011-03-08Comment the patch to note that it uses more generic names than the originalbrook2-3/+6
file and ensures that rpath information is included in the installed library.