Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 21:03:44 UTC Now

2011-03-08 21:30:43 UTC MAIN commitmail json YAML

Updated sysutils/fabric to 1.0.0

(gls)

2011-03-08 21:29:34 UTC MAIN commitmail json YAML

Update sysutils/fabric to 1.0.0

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.

(gls)

2011-03-08 21:21:35 UTC MAIN commitmail json YAML

Update to version 2.2.23.

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

(reed)

2011-03-08 19:27:27 UTC MAIN commitmail json YAML

2011-03-08 19:21:45 UTC MAIN commitmail json YAML

2011-03-08 19:20:58 UTC MAIN commitmail json YAML

Import tex-wasysym-doc-2.0 as fonts/tex-wasysym-doc.

This is documentation for tex-wasysym.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:20:42 UTC MAIN commitmail json YAML

Import tex-wasysym-2.0 as fonts/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.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:05:06 UTC MAIN commitmail json YAML

Add tex-collection-fontsrecommended{,-doc}.

(minskim)

2011-03-08 19:03:55 UTC MAIN commitmail json YAML

Import tex-collection-fontsrecommended-doc-2010 as
fonts/tex-collection-fontsrecommended-doc.

This is documentation for tex-collection-fontsrecommended.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:03:38 UTC MAIN commitmail json YAML

Import tex-collection-fontsrecommended-2010 as
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.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:38:34 UTC MAIN commitmail json YAML

2011-03-08 18:37:35 UTC MAIN commitmail json YAML

Import tex-utopia-doc-2010 as fonts/tex-utopia-doc.

This is documentation for tex-utopia.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:37:26 UTC MAIN commitmail json YAML

Import tex-utopia-2010 as fonts/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.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:34:48 UTC MAIN commitmail json YAML

2011-03-08 18:33:51 UTC MAIN commitmail json YAML

Import tex-tex-gyre-doc-2.004 as fonts/tex-tex-gyre-doc.

This is documentation for tex-tex-gyre.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:33:42 UTC MAIN commitmail json YAML

Import tex-tex-gyre-2.004 as fonts/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.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 17:13:34 UTC MAIN commitmail json YAML

adopt evince/patch-ba to fix 2 possible buffer overflows in AFM file
parsing (SA43491), bump PKGREV

(drochner)

2011-03-08 17:09:25 UTC MAIN commitmail json YAML

update to 0.8
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)

(drochner)

2011-03-08 17:05:17 UTC MAIN commitmail json YAML

Testing for OPSYS can only happen _after_ the inclusion
of bsd.prefs.mk.

(wiz)

2011-03-08 16:15:54 UTC MAIN commitmail json YAML

Updated audio/gqmpeg-skins to 20030712nb6

(wiz)

2011-03-08 16:15:38 UTC MAIN commitmail json YAML

Depend on gqmpeg-devel instead of gqmpeg.

(wiz)

2011-03-08 16:13:40 UTC MAIN commitmail json YAML

Removed audio/gqmpeg-skins

(wiz)

2011-03-08 15:59:04 UTC MAIN commitmail json YAML

2011-03-08 15:57:48 UTC MAIN commitmail json YAML

Updated print/lilypond to 2.12.3nb2

(ryoon)

2011-03-08 15:55:46 UTC MAIN commitmail json YAML

Fix PR pkg/44693
* Update HOMEPAGE.
* Remove dependency to ec-fonts-mftraced and mftrace.
* Works fine with python26, delete PYTHON_VERSIONS_ACCEPTED.
* Bump PKGREVISION.

(ryoon)

2011-03-08 15:34:34 UTC MAIN commitmail json YAML

Note update of textproc/ruby-itex2MML package to 1.4.5.

(taca)

2011-03-08 15:33:49 UTC MAIN commitmail json YAML

Update to ruby-itex2MML to 1.4.5 and should be fix PR pkg/44454.

* 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

(taca)

2011-03-08 15:25:56 UTC MAIN commitmail json YAML

Fix build failure on FreeBSD.

(hiramatsu)

2011-03-08 15:08:27 UTC MAIN commitmail json YAML

Comment the patch to note that it uses more generic names than the original
file and ensures that rpath information is included in the installed library.

(brook)

2011-03-08 14:12:40 UTC MAIN commitmail json YAML

Note update of www/contao29 package to 2.9.4.

(taca)

2011-03-08 14:11:56 UTC MAIN commitmail json YAML

Update contao29 pacakge to 2.9.4.

2.9.4 (2011-03-08)

* Added: pass the number of comments to the template (#2753)
* Added: added methods to the Template class to read and write the template
  name (#2694)
* Added: add support for __isset() to module, element and template classes
  (#2897)
* Added: added a "compileDefinition" and a "createDefinition" hook (#2883)
* Fixed: wrong sorting values when copying multiple elements (#2433)
* Fixed: correct invalid XHTML in the extension catalog (#2651)
* Fixed: textual publication dates in RSS feeds were not translated (#2760)
* Fixed: the description of the newsletter offset was wrong (#2824)
* Fixed: remove insert tags in page names from title attributes (#2853)
* Fixed: do not generate RSS feeds of protected archives/calendars (#2699)
* Fixed: the CSS classes of image galleries with pagination were not set
  correctly (#2803)
* Fixed: remove shy-entities from the page title tag (#2709)
* Fixed: assign unique IDs to search box elements in case multiple boxes are
  used (#2829)
* Fixed: adjust the file paths in style sheets and modules during theme import
  (#2882)
* Fixed: support PNGs and JPGs in the toggleVisibility() function (#2854)
* Fixed: the style sheet importer still did not support some CSS3 selectors
  (#2781)
* Fixed: check the target page and article status in the article teaser
  element (#2714)
* Fixed: do not send lost password mails if an account is not active (#2685)
* Fixed: the wizard labels can conflict with the field labels (#2860)
* Fixed: allow multiple editArea instances on one page in "edit all" mode
  (#2783)
* Fixed some minor issues

(taca)

2011-03-08 14:08:18 UTC MAIN commitmail json YAML

Note update of mysql51-{client,server} package to 5.1.56.

(taca)

2011-03-08 14:06:44 UTC MAIN commitmail json YAML

Update MySQL package to 5.1.56.

Functionality added or changed:

* mysqldump --xml now displays comments from column definitions. (Bug #13618)

Bugs fixed:

* InnoDB Storage Engine: InnoDB returned values for “rows examined”
  in the query plan that were higher than expected. NULL values were
  treated in an inconsistent way. The inaccurate statistics could
  trigger “false positives” in combination with the MAX_JOIN_SIZE
  setting, because the queries did not really examine as many rows as
  reported. (Bug #30423)

* Partitioning: Trying to use the same column more than once in the
  partitioning key when partitioning a table by KEY caused mysqld to
  crash. Such duplication of key columns is now expressly disallowed,
  and fails with an appropriate error. (Bug #53354, Bug #57924)

* Replication: When using the statement-based logging format, INSERT
  ON DUPLICATE KEY UPDATE and INSERT IGNORE statements affecting
  transactional tables that did not fail were not written to the
  binary log if they did not insert any rows. (With statement-based
  logging, all successful statements should be logged, whether they do
  or do not cause any rows to be changed.) (Bug #59338)

* Replication: Formerly, STOP SLAVE stopped the slave I/O thread first
  and then stopped the slave SQL thread; thus, it was possible for the
  I/O thread to stop after replicating only part of a transaction
  which the SQL thread was executing, in wich case―if the transaction
  could not be rolled back safely―the SQL thread could hang.

  Now, STOP SLAVE stops the slave SQL thread first and then stops the
  I/O thread; this guarantees that the I/O thread can fetch any
  remaining events in the transaction that the SQL thread is
  executing, so that the SQL thread can finish the transaction if it
  cannot be rolled back safely. (Bug #58546)

* A query of the following form returned an incorrect result, where
  the values for col_name in the result set were entirely replaced
  with NULL values:

  SELECT DISTINCT col_name ... ORDER BY col_name DESC;
  (Bug #59308, Bug #11766241)

* DELETE or UPDATE statements could fail if they used DATE or DATETIME
  values with a year, month, or day part of zero. (Bug #59173)

* The ESCAPE clause for the LIKE operator allows only expressions that
  evaluate to a constant at execution time, but aggregrate functions
  were not being rejected. (Bug #59149)

* Memory leaks detected by Valgrind, some of which could cause
  incorrect query results, were corrected. (Bug #59110, Bug #11766075)

  mysqlslap failed to check for a NULL return from mysql_store_result()
  and crashed trying to process the result set. (Bug #59109)

* In debug builds, SUBSTRING_INDEX(FORMAT(...), FORMAT(...)) could
  cause a server crash. (Bug #58371)

* When mysqldadmin was run with the --sleep and --count options, it
  went into an infinite loop executing the specified command. (Bug
  #58221)

* Some string manipulating SQL functions use a shared string object
  intended to contain an immutable empty string. This object was used
  by the SQL function SUBSTRING_INDEX() to return an empty string when
  one argument was of the wrong datatype. If the string object was
  then modified by the SQL function INSERT(), undefined behavior
  ensued. (Bug #58165, Bug #11765225)

* Parsing nested regular expressions could lead to recursion resulting
  in a stack overflow crash. (Bug #58026, Bug #11765099)

* The mysql client went into an infinite loop if the standard input
  was a directory. (Bug #57450)

* The expression const1 BETWEEN const2 AND field was optimized
  incorrectly and produced incorrect results. (Bug #57030, Bug
  #11764215)

* Some RPM installation scripts used a hardcoded value for the data
  directory, which could result in a failed installation for users who
  have a nonstandard data directory location. The same was true for
  other configuration values such as the PID file name. (Bug #56581,
  Bug #11763817)

* On FreeBSD and OpenBSD, the server incorrectly checked the range of
  the system date, causing legal values to be rejected. (Bug #55755,
  Bug #11763089)

* When using ExtractValue() or UpdateXML(), if the XML to be read
  contained an incomplete XML comment, MySQL read beyond the end of
  the XML string when processing, leading to a crash of the
  server. (Bug #44332)

(taca)

2011-03-08 12:10:01 UTC MAIN commitmail json YAML

user-destdir installation support.

(obache)

2011-03-08 12:00:15 UTC MAIN commitmail json YAML

user-destdir installation support.

(obache)

2011-03-08 11:42:01 UTC MAIN commitmail json YAML

Bump PKGREVISION for previous.

(wiz)

2011-03-08 11:33:35 UTC MAIN commitmail json YAML

user-dest installation support.

(obache)

2011-03-08 10:19:41 UTC MAIN commitmail json YAML

Adapt to option names.

(wiz)

2011-03-08 09:38:19 UTC MAIN commitmail json YAML

2011-03-08 09:27:54 UTC MAIN commitmail json YAML

2011-03-08 08:32:07 UTC MAIN commitmail json YAML

Updated net/samba35 to 3.5.8

(adam)

2011-03-08 08:30:08 UTC MAIN commitmail json YAML

Changes 3.5.8:
* Fix Winbind crash bug when no DC is available
* Fix finding users on domain members
* Fix memory leaks in Winbind
* Fix printing with Windows 7 clients

(adam)

2011-03-08 03:20:16 UTC MAIN commitmail json YAML

Add a comment to the patch to document use of the openssl SHA1 API.

(brook)

2011-03-08 03:05:08 UTC MAIN commitmail json YAML

Switch the license for databases/postgresql-uuid to isc per suggestion by
Thomas Klausner.  Although the two licenses are not word-for-word identical,
they are very close, use much of the same wording, and seem equivalent in
intent.  This prevents proliferation of yet another license in the collection.

(brook)

2011-03-07 23:28:38 UTC MAIN commitmail json YAML

2011-03-07 21:33:08 UTC MAIN commitmail json YAML

Updated www/moodle to 2.0.2

(gls)

2011-03-07 21:32:47 UTC MAIN commitmail json YAML

Update www/moodle to version 2.0.2

Mainly taken from PR pkg/44195 from maintainer Wen Heping.
Ok'd by maintainer.

pkgsrc changes:
- fix a couple hardcoded paths.

Upstream changes:

Many, many changes, too many to list here.
Includes a bunch of security fixes.

Please check:
http://docs.moodle.org/en/Moodle_1.9.10_release_notes
http://docs.moodle.org/en/Moodle_1.9.11_release_notes
http://docs.moodle.org/en/Moodle_2.0_release_notes
http://docs.moodle.org/en/Moodle_2.0.1_release_notes
http://docs.moodle.org/en/Moodle_2.0.2_release_notes

for the full list of changes.

(gls)

2011-03-07 20:52:22 UTC MAIN commitmail json YAML

Updated www/py-moin to 1.9.3nb1

(gls)

2011-03-07 20:51:41 UTC MAIN commitmail json YAML

2011-03-07 20:05:22 UTC MAIN commitmail json YAML

2011-03-07 20:04:35 UTC MAIN commitmail json YAML

Import tex-pxfonts-doc-2010 as fonts/tex-pxfonts-doc.

This is documentation for tex-pxfonts.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-07 20:04:28 UTC MAIN commitmail json YAML

Import tex-pxfonts-2010 as fonts/tex-pxfonts.

Pxfonts supplies virtual text roman fonts using Adobe Palatino (or
URWPalladioL) with some modified and additional text symbols in the OT1,
T1, and TS1 encodings; maths alphabets using Palatino/Palladio; maths
fonts providing all the symbols of the Computer Modern and AMS fonts,
including all the Greek capital letters from CMR; and additional maths
fonts of various other symbols. The set is complemented by a sans-serif
set of text fonts, based on Helvetica/NimbusSanL, and a monospace set
derived from the parallel TX font set. All the fonts are in Type 1
format (AFM and PFB files), and are supported by TeX metrics (VF and TFM
files) and macros for use with LaTeX.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-07 19:54:30 UTC MAIN commitmail json YAML

Add tex-ncntrsbk and tex-zapfchan.

(minskim)

2011-03-07 19:53:14 UTC MAIN commitmail json YAML

Import tex-zapfchan-2010 as fonts/tex-zapfchan.

Zapf Chancery is a family of script typefaces designed by the type
designer Hermann Zapf.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-07 19:52:58 UTC MAIN commitmail json YAML

Import tex-ncntrsbk-2010 as fonts/tex-ncntrsbk.

This package provides the New Century Schoolbook fonts.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-07 19:52:17 UTC MAIN commitmail json YAML

2011-03-07 19:33:47 UTC MAIN commitmail json YAML

Note update of tex-dvipdfmx-doc.

(minskim)

2011-03-07 19:33:18 UTC MAIN commitmail json YAML

2011-03-07 15:26:35 UTC MAIN commitmail json YAML

Note update of www/contao29-translations package to 20110307.

(taca)

2011-03-07 15:25:20 UTC MAIN commitmail json YAML

Update contao29-translations package to 20110307.

Japanese and Rhaeto-Romance languages files are updated.

(taca)

2011-03-07 13:46:15 UTC MAIN commitmail json YAML

Updated security/gnutls to 2.10.5

(adam)

2011-03-07 13:45:35 UTC MAIN commitmail json YAML

Changes 2.10.5:
* libgnutls: Corrected verification of finished messages.
* libgnutls: Corrected signature generation and verification in the Certificate
  Verify message when in TLS 1.2.
* pkg-config gnutls.pc improvements.
* API and ABI modifications: No changes since last version.

(adam)

2011-03-07 11:15:04 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-m17n to 1.3.2

(obache)

2011-03-07 11:14:39 UTC MAIN commitmail json YAML

Update ibus-m17n to 1.3.2.

* Release 1.3.2
* Add --with-gtk=2.0|3.0|no configure option.
* Fix build with ibus-1.4.
* Use minput_list() instead of mdatabase_list().
* Make class name parsing robuster.
* Add "~/.m17n.d/" to observed-paths.
* Use wildcard pattern in default.xml to set the default value.
* Lower the rank of si-samanala engine.
* Read default config from a file.
* Use gnome-autogen.sh to generate configure and Makefiles.
* Don't compile m17nutil.c twice for engine and setup.
* Use ibus_m17n_scan_engine_name() to simplify the code.
* Assign separate GType to each m17n engine to make config per-class.
* Clear errno to 0 before calling strtol/strtoul.
* Simplify AltGr handling.
* Give higher rank for all Indic engines.
* Use MInputContext::arg and remove the table for ic and engine.
* Don't init IBusBus in print_engines_xml().
* Fix bug in ibus_m17n_engine_reset.
* Add code coderview.settings.

(obache)

2011-03-07 09:36:09 UTC MAIN commitmail json YAML

Remove mp3blaster

(ryoon)

2011-03-07 09:35:40 UTC MAIN commitmail json YAML

Updated audio/mp3blaster to 3.2.5

(ryoon)

2011-03-07 09:34:33 UTC MAIN commitmail json YAML

Update to 3.2.5.

* Update MASTER_SITES.
* Add some options.

Changelog:
V3.2.5 2009/01/24
=================

* minor compilation fixes from freebsd ports maintainer Roman Bogorodskiy

V3.2.4 2009/01/18
=================

* Fixed bug in buffering code when using SDL as audio output; this fixes
  possible hickups in such cases.

* When changing back directories in the file browser, jump to the
  position in the file list the user came from.

* Reduced number of warnings using newer g++ versions

V3.2.3 2006/08/05
=================

* Fixed parallel build bug, make -j now works

* Fixed typos in CharsetMap documentation

* Implemented screen resizing

* Fixed a race condition which caused 100% CPU consumption at the end of
    each played song

V3.2.2 2006/01/29
=================

* Added support for audio playback using SDL (mixer is not supported (yet))

* Added Esound (Enlightened Sound Daemon) support

* Removed strict dependency on OSS support, now that there are alternatives

* Cleaned up code to allow compilation on MacOS X Tiger and Cygwin

* Fixed a couple of minor memory allocation bugs

* Fixed NAS playback (should work, but untested)

V3.2.1 2005/12/06
=================

* Made cursor follow the highlighted bar in playlist/filemanager, to aid
  blind people

* Fixed a bug in mpegsound library that could cause mp3blaster to crash.
  Thanks go to Serge van den Boom for reporting the problem.

(ryoon)

2011-03-07 08:52:46 UTC MAIN commitmail json YAML

2011-03-07 07:04:57 UTC MAIN commitmail json YAML

Added editors/qgoogletranslator version 1.2.1

(ryoon)

2011-03-07 07:04:03 UTC MAIN commitmail json YAML

Add qgoogletranslator

(ryoon)

2011-03-07 07:02:08 UTC MAIN commitmail json YAML

2011-03-07 05:58:35 UTC MAIN commitmail json YAML

marked as user-destdir installation ready.

(obache)

2011-03-07 05:37:42 UTC MAIN commitmail json YAML

2011-03-07 02:19:51 UTC MAIN commitmail json YAML

Add user-destdir installation support.

(obache)

2011-03-06 23:29:21 UTC MAIN commitmail json YAML

2011-03-06 23:28:17 UTC MAIN commitmail json YAML

Import tex-mathpazo-doc-1.003 as fonts/tex-mathpazo-doc.

This is documentation for tex-mathpazo.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 23:28:00 UTC MAIN commitmail json YAML

Import tex-mathpazo-1.003 as fonts/tex-mathpazo.

The Pazo Math fonts are a family of PostScript fonts suitable for
typesetting mathematics in combination with the Palatino family of text
fonts. The Pazo Math family is made up of five fonts provided in Adobe
Type 1 format (PazoMath, PazoMath- Italic, PazoMath-Bold,
PazoMath-BoldItalic, and PazoMathBlackboardBold). These contain, in
designs that match Palatino, glyphs that are usually not available in
Palatino and for which Computer Modern looks odd when combined with
Palatino. These glyphs include the uppercase Greek alphabet in upright
and slanted shapes in regular and bold weights, the lowercase Greek
alphabet in slanted shape in regular and bold weights, several
mathematical glyphs (partialdiff, summation, product, coproduct,
emptyset, infinity, and proportional) in regular and bold weights, other
glyphs (Euro and dotlessj) in upright and slanted shapes in regular and
bold weights, and the uppercase letters commonly used to represent
various number sets (C, I, N, Q, R, and Z) in blackboard bold. The set
also includes a set of 'true' small-caps fonts, also suitable for use
with Palatino (or one of its clones). LaTeX macro support (using package
mathpazo.sty) is provided in psnfss (a required part of any LaTeX
distribution).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 23:25:19 UTC MAIN commitmail json YAML

2011-03-06 23:24:04 UTC MAIN commitmail json YAML

Import tex-fpl-doc-1.002 as fonts/tex-fpl-doc.

This is documentation for tex-fpl.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 23:23:50 UTC MAIN commitmail json YAML

Import tex-fpl-1.002 as fonts/tex-fpl.

The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L which are
compatible with respect to metrics with the Palatino SC/OsF fonts from
Adobe. Note that it is not the aim to exactly reproduce the outlines of
the original Adobe fonts. The SC and OsF in the FPL Fonts were designed
with the glyphs from URW Palladio L as starting point. For some glyphs
(e.g. 'o') I got the best result by scaling and boldening. For others
(e.g. 'h') shifting selected portions of the character gave more
satisfying results. All this was done using the free font editor
FontForge. The kerning data in these fonts comes from Walter Schmidt's
improved Palatino metrics. LaTeX use is enabled by the mathpazo package,
which is part of the psnfss distribution.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 23:23:14 UTC MAIN commitmail json YAML

2011-03-06 23:22:16 UTC MAIN commitmail json YAML

Import tex-eurosans-doc-2.1 as fonts/tex-eurosans-doc.

This is documentation for tex-eurosans.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 23:22:09 UTC MAIN commitmail json YAML

Import tex-eurosans-2.1 as fonts/tex-eurosans.

Provides a convenient interface for using Adobe's freely available Type
1 Euro fonts. Loading the package defines a new command \euro which
typesets a Euro symbol. The symbol is always taken from the 'EuroSans'
family, with the weight (medium or boldface) and shape (normal or
oblique) varying according to the font currently selected. This Euro
symbol meets the official design and matches most font families well
enough, except for typewriter fonts. The fonts themselves are only
available from Adobe (though the fonts are free of charge, the licence
conditions prevent CTAN from distributing them). Metrics and maps for
using the fonts (at all) are available via the adobe-euro package.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 22:31:04 UTC MAIN commitmail json YAML

Note PKGREVISION bump of tex-dvipdfm{,-doc}.

(minskim)

2011-03-06 22:30:17 UTC MAIN commitmail json YAML

Update tex-dvipdfm to TeX Live r21369.

Changes:
- Font map updates for PT* and raw-*.
- Man page update.

(minskim)

2011-03-06 21:49:58 UTC MAIN commitmail json YAML

2011-03-06 21:49:03 UTC MAIN commitmail json YAML

Import tex-bibtopic-doc-1.1a as print/tex-bibtopic-doc.

This is documentation for tex-bibtopic.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 21:48:55 UTC MAIN commitmail json YAML

Import tex-bibtopic-1.1a as print/tex-bibtopic.

The package allows the user to include several bibliographies covering
different 'topics' or bibliographic material into a document (e.g., one
bibliography for primary literature and one for secondary literature).
The package provides commands to include either all references from a
.bib file, only the references actually cited or those not cited in your
document. The user has to construct a separate .bib file for each
bibliographic 'topic', each of which will be processed separately by
BibTeX. If you want to have bibliographies specific to one part of a
document, see the packages bibunits or chapterbib.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 21:32:31 UTC MAIN commitmail json YAML

2011-03-06 21:30:32 UTC MAIN commitmail json YAML

Import tex-bezos-doc-2010 as print/tex-bezos-doc.

This is documentation for tex-bezos.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 21:30:25 UTC MAIN commitmail json YAML

Import tex-bezos-2010 as print/tex-bezos.

A set of packages that provide:
  - tools for maths accents
  - a tool that changes page-numbering in frontmatter to arabic
  - tools for dealing with some annoyances in babel
  - a tool for making end-environment checking more meaningful
  - tensorial indexes
  - support for multi-file documents
  - tools for easy entry of Spanish index entries
  - dotless i's and j's for maths fonts.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 21:14:29 UTC MAIN commitmail json YAML

2011-03-06 21:13:35 UTC MAIN commitmail json YAML

Import tex-eurofont-doc-1.1.3 as fonts/tex-eurofont-doc.

This is documentation for tex-eurofont.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 21:13:25 UTC MAIN commitmail json YAML

Import tex-eurofont-1.1.3 as fonts/tex-eurofont.

The particular symbol printed by \euro will in general change depending
on the font family, weight, and shape in use at the time. This symbol
can come from any source, and the package user has complete control over
which euro symbol is used in any given situation. The package is
pre-configured to behave sensibly with many common text fonts and
available euro symbols. The \euro command can print 'faked' euro symbols
from a C with two lines across it when no suitable real euro symbol is
available; the package also includes code for printing fake bold euro
symbols for use when no real bold symbol exists, as well as
pre-configured support for a faked italic version of the marvosym font.
Eurofont comes set up to use euro symbols from Adobe's Eurofonts, the
marvosym font, the Eurosym font, and any available Text Companion fonts.
The selection between these can be done using options passed to the
package. The eurofont package also 'knows' about the China2e font's euro
symbol, and can be configured to use it.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 20:52:40 UTC MAIN commitmail json YAML

2011-03-06 20:51:27 UTC MAIN commitmail json YAML

Import tex-bera-doc-2010 as fonts/tex-bera-doc.

This is documentation for tex-bera.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 20:51:17 UTC MAIN commitmail json YAML

Import tex-bera-2010 as fonts/tex-bera.

The package contains the Bera Type 1 fonts, and a zip archive containing
files to use the fonts with LaTeX. Bera is a set of three font families:
Bera Serif (a slab-serif Roman), Bera Sans (a Frutiger descendant), and
Bera Mono (monospaced/typewriter). Support for use in LaTeX is also
provided. The Bera family is a repackaging, for use with TeX, of the
Bitstream Vera family.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-06 19:35:07 UTC MAIN commitmail json YAML

Fix dates in my removal entries.

(wiz)

2011-03-06 19:06:58 UTC pkgsrc-2010Q4 commitmail json YAML

2011-03-06 19:04:10 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3379 - requested by tnn
mail/thunderbird: security update

Revisions pulled up:
- mail/thunderbird/Makefile                                    1.66 via patch
- mail/thunderbird/distinfo                                    1.78
- mail/thunderbird/patches/patch-directory_c-sdk_configure.in  1.2
- mail/thunderbird/patches/patch-directory_c-sdk_ldap_include_portable.h 1.3
- mail/thunderbird/patches/patch-directory_c-sdk_ldap_libraries_libldap_Makefile.in 1.2
- mail/thunderbird/patches/patch-mm                            1.4

---
  Module Name: pkgsrc
  Committed By: tnn
  Date: Sat Mar  5 13:09:36 UTC 2011

  Modified Files:
  pkgsrc/mail/thunderbird: Makefile distinfo
  pkgsrc/mail/thunderbird/patches: patch-directory_c-sdk_configure.in
      patch-directory_c-sdk_ldap_include_portable.h
      patch-directory_c-sdk_ldap_libraries_libldap_Makefile.in patch-mm

  Log Message:
  Stability and security update of thunderbird to 3.1.8.

  MFSA 2011-09 Crash caused by corrupted JPEG image
  MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome documents
  MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/ 1.9.1.17)

(tron)

2011-03-06 18:45:44 UTC MAIN commitmail json YAML

Updated pkgtools/pkgin to 0.4.2

(imil)

2011-03-06 18:44:59 UTC MAIN commitmail json YAML

pkgin 0.4.2

20110306
        Moving to SF.net
        Check for mark_as_automatic_installed() return code

20110301
        pkgin can now upgrade pkg_install with user's approval

20110228
        url_stat's size is declared as off_t, will be > SSIZE_MAX on
        32 bits systems. Added a fix for this.

20110227
        Added -P, print package version instead of globs in sd, srd, sfd
        Added warning for repositories with 0-lenght FILE_SIZE
        Added -V (verbosity) flag
        Moved integer flags to uint8_t

(imil)

2011-03-06 17:00:50 UTC MAIN commitmail json YAML

Use slightly more modern packages in example.

(wiz)

2011-03-06 16:47:51 UTC MAIN commitmail json YAML

Added audio/xmms-cdread version 0.14a

(wiz)

2011-03-06 16:47:42 UTC MAIN commitmail json YAML

Added audio/xmms-nas version 0.2

(wiz)

2011-03-06 16:47:30 UTC MAIN commitmail json YAML

+ xmms-nas, xmms-cdread.

(wiz)

2011-03-06 16:46:04 UTC MAIN commitmail json YAML

Initial import of xmms-cdread from wip, packaged by cheusov (same as xmms-nas).

xmms-cdread - plugin for xmms.

At the moment, the idea is to add /dev/cdrom to your playlist.
If you have multiple CDROM units (like a burner) you can add all
those devices to the playlist and it should work.

I know this exists already, but that's such an uugly hack I decided to
make my own version, which actually reads the audio data, and will also
not need the subdirectory trick to get the tracks into the playlist:
The tracks will be added and removed automatically as CDs are inserted
and removed.

It now has CDDB support, local database editing as well as server queries.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20110306

(wiz)

2011-03-06 16:45:08 UTC MAIN commitmail json YAML

2011-03-06 16:43:33 UTC MAIN commitmail json YAML

+ ImageMagick-6.6.8.0, JBidwatcher-2.1.4.1, Mesa-7.10.1,
  TeXmacs-1.0.7.10, akonadi-1.5.1, calibre-0.7.48, cdialog-1.1.20110302,
  dialog-1.1.20110302, digikam-1.9.0, fotoxx-11.03, frama-c-20110201,
  freeciv-2.2.5, gpredict-1.3, help2man-1.39.1, kde4-4.6.1,
  kipi-plugins-1.9.0, libXt-1.1.0, libidn-1.20, ltris-1.0.16,
  mono-addins-0.6, p5-PerlMagick-6.6.8.0, puppet-2.6.4,
  py-simplejson-2.1.3, rep-gtk-0.90.5, scilab-5.3.1, wine-devel-1.3.15,
  x264-devel-20110305, xf86-input-vmmouse-12.7.0, z26-2.14,
  zile-2.3.22.

(wiz)

2011-03-06 16:42:06 UTC MAIN commitmail json YAML

Note removal of some gtk1-using packages.

(wiz)

2011-03-06 16:39:38 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup #3381, requested by tnn

firefox-3.6.15 update and prerequisite commits.

pkgsrc/www/firefox/Makefile 1.82, 1.83
pkgsrc/devel/xulrunner/Makefile 1.46, 1.47, 1.48
pkgsrc/devel/xulrunner/dist.mk 1.18
pkgsrc/devel/xulrunner/distinfo 1.40
pkgsrc/devel/xulrunner/patches/patch-mm 1.4

  Module Name: pkgsrc
  Committed By: wiz
  Date: Thu Jan 13 13:40:12 UTC 2011

  Modified Files:
  pkgsrc/www/firefox: Makefile

  Log Message:
  png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.

  ---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Thu Jan 13 13:53:34 UTC 2011

  Modified Files:
  pkgsrc/devel/xulrunner: Makefile

  Log Message:
  png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.

  ---
  Module Name: pkgsrc
  Committed By: markd
  Date: Sun Jan 23 11:18:27 UTC 2011

  Modified Files:
  pkgsrc/devel/xulrunner: Makefile

  Log Message:
  set FREEBL_NO_DEPEND=0 in MAKE_ENV otherwise Linux2.6 defaults to
  FREEBL_NO_DEPEND=1 and files not in PLIST are installed.
  OKed by tnn.

  ---
  Module Name: pkgsrc
  Committed By: tnn
  Date: Sat Mar  5 11:57:17 UTC 2011

  Modified Files:
  pkgsrc/devel/xulrunner: Makefile dist.mk distinfo
  pkgsrc/devel/xulrunner/patches: patch-mm
  pkgsrc/www/firefox: Makefile

  Log Message:
  Stability & security update of firefox to 3.6.15.

  MFSA 2011-10 CSRF risk with plugins and 307 redirects
  MFSA 2011-09 Crash caused by corrupted JPEG image
  MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome documents
  MFSA 2011-07 Memory corruption during text run construction (Windows)
  MFSA 2011-06 Use-after-free error using Web Workers
  MFSA 2011-05 Buffer overflow in JavaScript atom map
  MFSA 2011-04 Buffer overflow in JavaScript upvarMap
  MFSA 2011-03 Use-after-free error in JSON.stringify
  MFSA 2011-02 Recursive eval call causes confirm dialogs to evaluate to true
  MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/ 1.9.1.17)

(schnoebe)

2011-03-06 16:36:50 UTC MAIN commitmail json YAML

Remove comments to avoid grep mismatches.

(wiz)

2011-03-06 16:33:04 UTC MAIN commitmail json YAML

Remove some comments against grep mismatches.

(wiz)

2011-03-06 16:20:03 UTC MAIN commitmail json YAML

2011-03-06 16:11:04 UTC MAIN commitmail json YAML

2011-03-06 16:10:26 UTC MAIN commitmail json YAML

Updated devel/libev to 4.04

(asau)

2011-03-06 16:10:22 UTC MAIN commitmail json YAML

Add "# used by x11/qt3-libs/Makefile" for pkglint.

(wiz)

2011-03-06 16:09:43 UTC MAIN commitmail json YAML

Update libev to version 4.04.
Provided by Oleksandr Kozachuk in PR pkg/44690

Changes:

4.04 Wed Feb 16 09:01:51 CET 2011
  - fix two problems in the native win32 backend, where reuse of fd's
    with different underlying handles caused handles not to be removed
    or added to the select set (analyzed and tested by Bert Belder).
  - do no rely on ceil() in ev_e?poll.c.
  - backport libev to HP-UX versions before 11 v3.
  - configure did not detect nanosleep and clock_gettime properly when
    they are available in the libc (as opposed to -lrt).

4.03 Tue Jan 11 14:37:25 CET 2011
  - officially support polling files with all backends.
  - support files, /dev/zero etc. the same way as select in the epoll
    backend, by generating events on our own.
  - ports backend: work around solaris bug 6874410 and many related ones
    (EINTR, maybe more), with no performance loss (note that the solaris
    bug report is actually wrong, reality is far more bizarre and broken
    than that).
  - define EV_READ/EV_WRITE as macros in event.h, as some programs use
    #ifdef to test for them.
  - new (experimental) function: ev_feed_signal.
  - new (to become default) EVFLAG_NOSIGMASK flag.
  - new EVBACKEND_MASK symbol.
  - updated COMMON IDIOMS SECTION.

(asau)

2011-03-06 16:04:33 UTC MAIN commitmail json YAML

2011-03-06 16:02:58 UTC MAIN commitmail json YAML

2011-03-06 13:23:21 UTC MAIN commitmail json YAML

2011-03-06 12:06:02 UTC pkgsrc-2010Q4 commitmail json YAML

2011-03-06 12:05:24 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3380 - requested by gls
chat/cgiirc: security update

Revisions pulled up:
- chat/cgiirc/Makefile 1.17
- chat/cgiirc/distinfo 1.7
---
Module Name: pkgsrc
Committed By: gls
Date: Wed Mar  2 20:24:40 UTC 2011

Modified Files:
pkgsrc/chat/cgiirc: Makefile distinfo

Log Message:
Update chat/cgiirc to 0.5.10

Upstream changes:

After ~5 years without a release 0.5.10 is now available. This is
actually just
0.5.9 with one security fix:
  CVE-2011-0050: XSS in R param in nonjs interface
Thanks to Michael Brooks (Sitewatch) for discovering this.

pkgsrc changes:
- Update MASTER_SITES and HOMEPAGE to point to cgiirc.org
- Add LICENSE

(tron)

2011-03-06 10:22:31 UTC MAIN commitmail json YAML

Fix "make package" failure.
Probably it's my mistake.

(ryoon)

2011-03-06 09:01:05 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 3.6.15

(obache)

2011-03-06 09:00:48 UTC MAIN commitmail json YAML

Update firefox-l10n to 3.6.15, sync with www/firefox.

(obache)

2011-03-06 07:36:58 UTC MAIN commitmail json YAML

Updated graphics/mypaint to 0.9.1

(ryoon)

2011-03-06 07:36:09 UTC MAIN commitmail json YAML

PKGREVISION is no longer needed.

(ryoon)

2011-03-06 07:33:53 UTC MAIN commitmail json YAML

Update to 0.9.1.

* Delete unnecessary SUBST line.
* patch-aa is already included in tar ball.

Changes:
This is a bugfix release without any new features. Several problems
with non-ASCII file names, directory names, and layer names have
been fixed, as well as a number of other minor issues. Integration
with the Windows platform has been improved.

(ryoon)

2011-03-06 06:29:02 UTC MAIN commitmail json YAML

Updated www/py-django-classy-tags to 0.3.3

(adam)

2011-03-06 06:27:26 UTC MAIN commitmail json YAML

2011-03-06 06:01:14 UTC MAIN commitmail json YAML

python25, mailagent, lesstif, irssi

(dholland)

2011-03-06 04:12:09 UTC MAIN commitmail json YAML

Make ipv6 option enabled by default, by request of PR 44689. PKGREVISION++.

(dholland)

2011-03-06 03:52:17 UTC MAIN commitmail json YAML

This exposes libXp, so add libXp to the bl3.
>From Taylor Campbell in PR 44668. PKGREVISION++.

(dholland)

2011-03-06 03:47:27 UTC MAIN commitmail json YAML

2011-03-06 03:29:02 UTC MAIN commitmail json YAML

Adjust openssl version number test; PR 44683 from Michael Roland.
Fixes broken build on DragonFly 2.8.2.

Someone please teach the openssl people about API stability.

(dholland)

2011-03-06 03:24:12 UTC MAIN commitmail json YAML

2011-03-06 02:23:33 UTC MAIN commitmail json YAML

- pass fullpath in argv[0] when pkg-scan spawns bmake so that
  the same gets inherited across a sub make.

(seanb)

2011-03-05 23:14:02 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup tickets #3376 and #3382.

(schnoebe)

2011-03-05 23:08:52 UTC pkgsrc-2010Q4 commitmail json YAML

pull up request 3382, requested by tnn@

Revisions pulled up:
+ pkgsrc/www/seamonkey/Makefile 1.46, 1.47
+ pkgsrc/www/seamonkey/distinfo 1.59

  Module Name:    pkgsrc
  Committed By:  wiz
  Date:          Thu Jan 13 13:53:34 UTC 2011

  Modified Files:
  pkgsrc/www/seamonkey: Makefile

  Log Message:
  png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.

  To generate a diff of this commit:
  cvs rdiff -u -r1.45 -r1.46 pkgsrc/www/seamonkey/Makefile

  Module Name:    pkgsrc
  Committed By:  tnn
  Date:          Sat Mar  5 14:48:21 UTC 2011

  Modified Files:
  pkgsrc/www/seamonkey: Makefile distinfo

  Log Message:
  Security and stability update of seamonkey to 2.0.12.

  MFSA 2011-10 CSRF risk with plugins and 307 redirects
  MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome
  documents MFSA 2011-07 Memory corruption during text run construction
  (Windows) MFSA 2011-06 Use-after-free error using Web Workers
  MFSA 2011-05 Buffer overflow in JavaScript atom map
  MFSA 2011-04 Buffer overflow in JavaScript upvarMap
  MFSA 2011-03 Use-after-free error in JSON.stringify
  MFSA 2011-02 Recursive eval call causes confirm dialogs to evaluate to
  true MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/
  1.9.1.17)

(schnoebe)

2011-03-05 23:06:05 UTC pkgsrc-2010Q4 commitmail json YAML

Pull up ticket 3376, requested by tron@

  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Tue Feb  8 07:56:09 UTC 2011

  Modified Files:
  pkgsrc/security/clamav: Makefile distinfo

  Log Message:
  Changes 0.97:
  ClamAV 0.97 brings many improvements, including complete Windows
  support (all major components compile out-of-box under Visual
  Studio), support for signatures based on SHA1 and SHA256, better
  error detection, as well as speed and memory optimizations. The
  complete list of changes is available in the ChangeLog file.

(schnoebe)

2011-03-05 22:48:57 UTC MAIN commitmail json YAML

Update chat/weechat to 0.3.4

(tonio)

2011-03-05 22:48:07 UTC MAIN commitmail json YAML

Update chat/weechat to 0.3.4
Fix for SA43543 and update kindly provided by gls@

This is a major release, with lot of bugs fixed and major new features.

Among the new features:
- 256 colors support, with unlimited number of nick colors
- irc proxy (relay plugin)
- redirection of IRC commands
- command /notify
- rmodifier plugin
- regular expressions for highlights
- color support for timestamp in chat buffer
- irc option to force color for some nicks
- share input line between buffers.

(tonio)

2011-03-05 21:19:58 UTC MAIN commitmail json YAML

Add msgfmt to USE_TOOLS.
Should fix build on DragonFly.

(gls)

2011-03-05 21:18:28 UTC MAIN commitmail json YAML

pkg-config is required for building.
Spotted by Justin Sherrill while running bulk builds on DragonFly.

(gls)

2011-03-05 20:32:13 UTC MAIN commitmail json YAML

Updated lang/sbcl to 1.0.46

(asau)

2011-03-05 20:30:49 UTC MAIN commitmail json YAML

Update to SBCL 1.0.46

Changes in sbcl-1.0.46 relative to sbcl-1.0.45:
  * enhancement: largefile support on Solaris.
  * enhancement: SB-PROFILE:REPORT now supports :LIMIT and :PRINT-NO-CALL-LIST
    arguments (lp#710017)
  * enhancement: SB-PCL:+SLOT-UNBOUND+ is exported, making it possible to
    distinguish unbound instance slots when using STANDARD-INSTANCE-ACCESS
    &co. (lp#718039)
  * optimization: ERROR and CERROR are approximately 5 times faster.
  * optimization: optimized constructors are used for MAKE-INSTANCE of classes
    with applicable non-standard (SETF SLOT-VALUE-USING-CLASS),
    SLOT-BOUNDP-USING-CLASS, and INITIALIZE-INSTANCE :AROUND methods, speeding
    up instance creation in those cases.
  * optimization: arithmetic operations with multiple constant arguments in now
    have them reduced at compile-time. (lp#676414)
  * optimization: determining current character position on string-streams for
    pretty-printing was overly slow.
  * bug fix: local tail calls to DYNAMIC-EXTENT functions can no longer cause
    lifetime analysis to overwrite closed-over variables (lp#681092).
  * bug fix: encoding errors from some multibyte external formats such as EUC-JP
    were not handled correctly (lp#713063).
  * bug fix: printing waitqueue objects without setting *PRINT-CIRCLE* to T is now
    safe (lp#673630).
  * bug fix: Solaris/x86-64 wasn't getting built with lutex support by
    mistake. (lp#667297).
  * bug fix: CONSTANTLY generated functions had bogus lambda-lists. (lp#713626)
  * bug fix: RUN-PROGRAM :PTY option was racy on OpenBSD. (lp#669485)
  * bug fix: UNINTERN takes a symbol, not a symbol designator -- could previously
    unintern the wrong symbol with the same name. (lp#693796)
  * bug fix: COPY-PPRINT-DISPATCH always has access to a pristine table,
    making it possible to restore the initial table if it has been messed up.
    (lp#678409)

(asau)

2011-03-05 19:47:05 UTC pkgsrc-2010Q4 commitmail json YAML

2011-03-05 19:44:54 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3378 - requested by tron
devel/pango: security fix

Revisions pulled up:
- devel/pango/Makefile 1.152
- devel/pango/distinfo 1.88

Files added:
devel/pango/patches/patch-CVE-2011-0064-1
devel/pango/patches/patch-CVE-2011-0064-2
devel/pango/patches/patch-CVE-2011-0064-3

---------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Sat Mar  5 13:37:20 UTC 2011

  Modified Files:
  pkgsrc/devel/pango: Makefile distinfo
  Added Files:
  pkgsrc/devel/pango/patches: patch-CVE-2011-0064-1 patch-CVE-2011-0064-2
      patch-CVE-2011-0064-3

  Log Message:
  Add openSUSE's fix for the DoS vulnerability remoted in CVE-2011-0064.

(spz)

2011-03-05 19:19:54 UTC MAIN commitmail json YAML

Remove liberation-ttf

(ryoon)

2011-03-05 19:19:26 UTC MAIN commitmail json YAML

Updated fonts/liberation-ttf to 1.06.0.20100721

(ryoon)

2011-03-05 19:16:46 UTC MAIN commitmail json YAML

Update to 1.06.0.20100721.

Changelog:
* Wed Jul 21 2010 Pravin Satpute <psatpute@redhat.com>
- Update for New Release 1.06
- Added New Family Narrow (Contribution from Herbert Duerr <herbert.duerr@oracle.com>)
- updated version of fonts

* Mon 10 May 2010 Caius 'kaio' Chance <me at kaio.net>
- Fixed Romanian glyphs, U+021A, 021B, 0218, 0219, 0162, 0163, 015E, 015F,
  2010, 2011. (rhbz#440992)
- Fixed height of arrows U+2190, 2192, 2194. (Issue #2)

* Thu 06 May 2010 Caius 'kaio' Chance <me at kaio.net>
- Cleaned up points and auto-instructed hinting of 'u', 'v', 'w', 'y'.
(rhbz#463036)
- Created the first project icon. (Issue #5)

* Wed May 05 2010 Caius 'kaio' Chance <k at kaio.net>
- Incorrect cent sign glyph (U+00A2) in Sans and Mono
style in Liberation fonts. (rhbz#474522)

* Wed 28 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
- rhbz#510174: Corrected version number of all SFD files.
- Corrected license exceptions to GPLv2.
- Updated README file.

* Tue 27 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
- Renamed Narrow Fonts.
- Updated list of contributors.
- Released version 1.05.3.

* Thu 22 Apr 2010 Herbert Duerr <duerr at sun.com>
- Contributed Liberation Sans Narrow Fonts.

* Fri 12 Mar 2010 Caius 'kaio' Chance <me at kaio.me>
- Migrated to Google Code.
- Updated AUTHORS.
- Upgraded license to GPLv3+exceptions.

* Sun 27 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Fixed ttf pack preparation error.

* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Fixed 'wrongly encoded glyphs after U+10000' (rhbz#525498),
  provided by Denis Jacquerye <moyogo at gmail.com>.

* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Fixed fontforge script sfd2ttf.pe.
- Include traditional kern table for Sans and Serif.

* Tue 14 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Generated TTFs with tradition kern table, with fontforge ver 20090408.
- Added make target alias dist-src as dist-sfd.

* Mon 13 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Updated for generation of traditional kern table via scripts.

* Mon 06 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
- Reconverted SFDs from original TTFs with traditional kern table.
- Updated "clean" target in Makefile.

* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
- Reconverted SFDs from original TTFs with traditional kern table.
- Updated "clean" target in Makefile.

* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
- Generated cleaner SFD from original TTFs.
- Include Makefile in sources tarball.

* Wed 24 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
- Makefile: pack SFD files as source tarball.
- Makefile: pack TTF files as ttf packs.
- Tidy up repository.
- Updated documents.

* Mon 12 Jan 2009 Caius Chance <cchance at redhat.com>
- Fixed copyright holder name typo for Sans Regular font (rhbz#479521).

* Tue 09 Dec 2008 Caius Chance <cchance at redhat.com>
- Changed cent sign glyph (U+00A2) to be coressed in Sans and Mono
  (rhbz#474522).

* Wed 03 Dec 2008 Caius Chance <cchance at redhat.com>
- Started 1.04.93.devel.
- Fixed blurriness of U+03BC for Sans Regular font (rhbz#473481).
- Fixed src tarball mis-inclusion of dist files in Makefile.

* Fri 28 Nov 2008 Caius Chance <cchance at redhat.com>
- Corrected version number in Makefile.
- Fixed make target of source tarball.
- Uploaded 1.04.92 source tarball to release area.

* Wed 15 Oct 2008 Caius Chance <cchance at redhat.com>
- Fixed blurred 'u' and 'W' for Sans Bold font (rhbz#463036).
- Released as version 1.04.92

* Wed 17 Sep 2008 Caius Chance <cchance at redhat.com>
- Fixed missing hinting instructions for all Mono fonts (rhbz#460090).
- Fixed missing hinting instructions for all Sans fonts (rhbz#460090).
- Fixed missing hinting instructions for all Serif fonts (rhbz#460090).
- Released as version 1.04.91

* Tue 09 Sep 2008 Caius Chance <cchance at redhat.com>
- Backed up all released files in ./dist directory.

* Fri 05 Sep 2008 Caius Chance <cchance at redhat.com>
- Fixed incorrect glyph points and missing hinting instructions for:
  Mono Bold Italic (up to U+2012) (rhbz#460090).

* Mon 25 Aug 2008 Caius Chance <cchance at redhat.com>
- Fixed incorrect glyph points and missing hinting instructions for:
  U+0079, U+03BC, U+0431, U+2010..2012, U+1114117 (rhbz#458592).
- Released as version 1.04.90.

(ryoon)

2011-03-05 18:21:49 UTC MAIN commitmail json YAML

Added databases/postgresql{83,84,90}-uuid version 1.0.2

(brook)

2011-03-05 18:09:39 UTC MAIN commitmail json YAML

Add databases/postgresql{,83,84,90}-uuid.

(brook)

2011-03-05 17:58:14 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3377 - requested by tron
devel/pango: security update

Revisions pulled up:
- devel/pango/Makefile 1.151
- devel/pango/distinfo 1.87
- devel/pango/patches/patch-ac 1.15
- devel/pango/patches/patch-ad 1.12

----------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: drochner
  Date: Thu Jan 27 14:04:51 UTC 2011

  Modified Files:
  pkgsrc/devel/pango: Makefile distinfo
  Added Files:
  pkgsrc/devel/pango/patches: patch-ac patch-ad

  Log Message:
  -add patch from https://bugzilla.gnome.org/show_bug.cgi?id=3D639882 to fix
    possible heap corruption when parsing a corrupt font (CVE-2011-0020)
  -being here, add a patch from upstream to fix a scaling inconsistency
  bump PKGREV

(spz)

2011-03-05 17:54:35 UTC MAIN commitmail json YAML

Initial import of the uuid v1.0.2 package from pgfoundry.org.

The ``uuid'' PostgreSQL package implements creation of Universally
Unique Identifiers (UUIDs), also referred to as Globally Unique
Identifiers (GUIDs).  Although PostgreSQL supports storing UUIDs as a
native datatype, it does not provide any mechanism for creating them.
This package wraps openssl-supplied md5 and sha1 functions to create
UUIDs within PostgreSQL.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(brook)

2011-03-05 17:54:17 UTC MAIN commitmail json YAML

Apply patches from debian:
- Bug fix: "Disconnect after an hour and loops trying to reconnect"
- Additional vpnc functionality (resolvconf, Target Networks,
  DNSUpdate options)

Bump revision
Forgot to 'cvs add' the new files before. Sorry.

(cegger)

2011-03-05 17:46:41 UTC MAIN commitmail json YAML

Apply patches from debian:
- Bug fix: "Disconnect after an hour and loops trying to reconnect"
- Additional vpnc functionality (resolvconf, Target Networks,
  DNSUpdate options)

Bump revision

(cegger)

2011-03-05 14:51:26 UTC MAIN commitmail json YAML

note mozilla updates

(tnn)

2011-03-05 14:48:21 UTC MAIN commitmail json YAML

Security and stability update of seamonkey to 2.0.12.

MFSA 2011-10 CSRF risk with plugins and 307 redirects
MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome documents
MFSA 2011-07 Memory corruption during text run construction (Windows)
MFSA 2011-06 Use-after-free error using Web Workers
MFSA 2011-05 Buffer overflow in JavaScript atom map
MFSA 2011-04 Buffer overflow in JavaScript upvarMap
MFSA 2011-03 Use-after-free error in JSON.stringify
MFSA 2011-02 Recursive eval call causes confirm dialogs to evaluate to true
MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/ 1.9.1.17)

(tnn)

2011-03-05 14:24:33 UTC MAIN commitmail json YAML

2011-03-05 13:49:57 UTC MAIN commitmail json YAML

regen patch so that line numbers are not 1000 lines off.

(wiz)

2011-03-05 13:37:33 UTC MAIN commitmail json YAML

Note update of the "pango" package to version 1.28.3nb3.

(tron)

2011-03-05 13:37:20 UTC MAIN commitmail json YAML

2011-03-05 13:09:36 UTC MAIN commitmail json YAML

Stability and security update of thunderbird to 3.1.8.

MFSA 2011-09 Crash caused by corrupted JPEG image
MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome documents
MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/ 1.9.1.17)

(tnn)

2011-03-05 12:36:39 UTC MAIN commitmail json YAML

Note that i386 mode is the default, and point to tron@'s 2009 tech-pkg
post that explained the issues clearly.

Caution that 10.4 support is on even thinner ice with 10.7 due out.

(gdt)

2011-03-05 11:57:17 UTC MAIN commitmail json YAML

Stability & security update of firefox to 3.6.15.

MFSA 2011-10 CSRF risk with plugins and 307 redirects
MFSA 2011-09 Crash caused by corrupted JPEG image
MFSA 2011-08 ParanoidFragmentSink allows javascript: URLs in chrome documents
MFSA 2011-07 Memory corruption during text run construction (Windows)
MFSA 2011-06 Use-after-free error using Web Workers
MFSA 2011-05 Buffer overflow in JavaScript atom map
MFSA 2011-04 Buffer overflow in JavaScript upvarMap
MFSA 2011-03 Use-after-free error in JSON.stringify
MFSA 2011-02 Recursive eval call causes confirm dialogs to evaluate to true
MFSA 2011-01 Miscellaneous memory safety hazards (rv:1.9.2.14/ 1.9.1.17)

(tnn)

2011-03-05 11:57:09 UTC MAIN commitmail json YAML

2011-03-05 11:49:12 UTC MAIN commitmail json YAML

2011-03-05 11:45:58 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3373, #3374 and #3375.

(tron)

2011-03-05 11:44:55 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3375 - requested by taca
www/typo3: dependence fix

Revisions pulled up:
- www/typo3/Makefile 1.32
---
Module Name: pkgsrc
Committed By: bouyer
Date: Wed Mar 2 19:06:09 UTC 2011

Modified Files:
pkgsrc/www/typo3: Makefile

Log Message:
This requires php-json

(tron)

2011-03-05 11:03:05 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3374 - requested by taca
www/mongrel: build fix

Revisions pulled up:
- www/mongrel/Makefile                                          1.14 via patch
- www/mongrel/files/gemspec                                    1.1
- www/mongrel/patches/patch-ac                                  0
---
Module Name: pkgsrc
Committed By: taca
Date: Mon Feb 28 15:46:39 UTC 2011

Modified Files:
pkgsrc/www/mongrel: Makefile
Added Files:
pkgsrc/www/mongrel/files: gemspec
Removed Files:
pkgsrc/www/mongrel/patches: patch-ac

Log Message:
Fix build problem with ruby18.

Give up to patch gemspec but use pre-generated one.

(tron)

2011-03-05 10:44:58 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3373 - requested by taca
FIXME: Please provide the list of changed packages and the reasons here.

Revisions pulled up:
- graphics/ruby-imlib2/Makefile                                1.25
- graphics/ruby-imlib2/distinfo                                1.7
- graphics/ruby-imlib2/files/gemspec                            1.1
- graphics/ruby-imlib2/patches/patch-aa                        0
---
Module Name: pkgsrc
Committed By: taca
Date: Mon Feb 28 15:46:08 UTC 2011

Modified Files:
pkgsrc/graphics/ruby-imlib2: Makefile distinfo
Added Files:
pkgsrc/graphics/ruby-imlib2/files: gemspec
Removed Files:
pkgsrc/graphics/ruby-imlib2/patches: patch-aa

Log Message:
Fix build problem with ruby18.

Give up to patch gemspec but use pre-generated one.

(tron)

2011-03-05 09:14:24 UTC MAIN commitmail json YAML

2011-03-05 08:36:54 UTC MAIN commitmail json YAML

Revert previous, the files were already there (in sort(1) order).

(wiz)

2011-03-05 02:55:00 UTC MAIN commitmail json YAML

add libX11-xcb.so* versions.

(mrg)

2011-03-04 19:56:51 UTC MAIN commitmail json YAML

chmod +w file copied into WRKDIR.

Don't assume sources are writeble.  Fixes build with CVSREAD=t.

(gdt)

2011-03-04 19:53:00 UTC MAIN commitmail json YAML

2011-03-04 19:52:01 UTC MAIN commitmail json YAML

Import tex-euro-ce-doc-2010 as fonts/tex-euro-ce-doc.

This is documentation for tex-euro-ce.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 19:51:53 UTC MAIN commitmail json YAML

Import tex-euro-ce-2010 as fonts/tex-euro-ce.

MetaFont source for the symbols in several variants, designed to fit
with Computer Modern-set text.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 19:14:36 UTC MAIN commitmail json YAML

2011-03-04 19:13:46 UTC MAIN commitmail json YAML

Import tex-euro-doc-1.1 as finance/tex-euro-doc.

This is documentation for tex-euro.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 19:11:11 UTC MAIN commitmail json YAML

Import tex-euro-1.1 as finance/tex-euro.

Converts arbitrary national currency amounts using the Euro as base
unit, and typesets monetary amounts in almost any desired way. Write,
e.g., \ATS{17.6} to get something like '17,60 oS (1,28 Euro)'
automatically. Conversion rates for the initial Euro-zone countries are
already built-in. Further rates can be added easily. The package uses
the fp package to do its sums.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 19:06:26 UTC MAIN commitmail json YAML

2011-03-04 19:05:30 UTC MAIN commitmail json YAML

Import tex-fp-doc-2010 as math/tex-fp-doc.

This is documentation for tex-fp.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 19:05:21 UTC MAIN commitmail json YAML

Import tex-fp-2010 as math/tex-fp.

An extensive collection of arithmetic operations for fixed point real
numbers of high precision.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-04 16:54:04 UTC MAIN commitmail json YAML

Note new p5-Net-INET6Glue package.

(tron)

2011-03-04 16:52:18 UTC MAIN commitmail json YAML

Add and enable p5-Net-INET6Glue.

(tron)

2011-03-04 16:41:00 UTC MAIN commitmail json YAML

Import Net-INET6Glue-0.5 as net/p5-Net-INET6Glue:
Net::INET6Glue is a hack to make more of Perl IPv6 able.
This is partly done by replacing IO::Socket::INET with IO::Socket::INET6
and by adding IPv6 Protocol functionality to Net::FTP.
Works for Net::SMTP, LWP, Net::FTP and probably others too.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(tron)

2011-03-04 15:57:16 UTC MAIN commitmail json YAML

Updated pkgtools/pkgdiff to 1.1

(wiz)

2011-03-04 15:57:07 UTC MAIN commitmail json YAML

Add "-D"/"-d dir" options to mkpatches and patchdiff.

-D provides the previous behaviour of creating patches in $WRKDIR/.newpatches
-d dir specifies the directory where the patches will be created.

Requested by Aleksey Cheusov for read-only pkgsrc checkouts.

Fix minor bugs while here.

Bump version.

(wiz)

2011-03-04 14:46:32 UTC MAIN commitmail json YAML

Fix PLIST when threads option is turned on.
>From Kozachuk Oleksandr <oleksandr@kozachuk.info> in private mail.

(wiz)

2011-03-04 14:26:23 UTC MAIN commitmail json YAML

2011-03-04 13:22:27 UTC MAIN commitmail json YAML

Note update ruby-gnome2 packages to 0.90.8.

(obache)

2011-03-04 13:14:07 UTC MAIN commitmail json YAML

Update ruby-gnome2 to 0.90.8.

== Ruby-GNOME2 0.90.8: 2011-03-04

NOTE: 0.90.x releases are for 1.0.0 major release.

A bug fix release of 0.90.7.

=== Changes

==== All

  * Fixes
    * 'make distclean' does not removed pkg-config files.

==== Ruby/GLib2

  * Fixes
    * fix non-gem rcairo detection. [#3178228]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/Atk

  * Fixes
    * fix 'make distclean' cleans needed a file.
      [Vincent Carmona]

==== Ruby/Pango

  * Fixes
    * fix 'make distclean' cleans needed a file.
      [Vincent Carmona]

==== Ruby/GTK2

  * Fixes
    * fix require order.
      [id:kenhys]
    * [#3046538] fix crash by GC at exit.
      [Vincent Carmona, Kouhei Sutou]
    * gtk-demo samples with ruby 1.9 (excepted cairo ones).
      [Vincent Carmona]

==== Ruby/GooCanvas

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/GStreamer

  * Improvements
    * improve missing message.
      [Vincent Carmona]
    * add Gst::InstallPlugins.
      [Vincent Carmona, Kouhei Sutou]

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]
    * don't use rbgprivate.h. [#3188442]
      [Mamoru Tasaka, Kouhei Sutou]

==== Ruby/GtkMozEmbed

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/GtkSourceView2

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]

(obache)

2011-03-04 13:10:16 UTC MAIN commitmail json YAML

Note update of www/contao29-translations pacakge to 20110304.

(taca)

2011-03-04 13:09:25 UTC MAIN commitmail json YAML

Update contao29-translatino package to 20110304.

Update Czech and Japanese language files.

(taca)

2011-03-04 13:03:48 UTC MAIN commitmail json YAML

Fix botch in patch-ej rev 1.1. PR pkg/44680
Also note about change in rev 1.2.

(tsutsui)

2011-03-04 11:57:21 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 3.6.13

(obache)

2011-03-04 11:57:04 UTC MAIN commitmail json YAML