Commit graph

177074 commits

Author SHA1 Message Date
gls
abcd774304 Updated graphics/shotwell to 0.11.5 2011-10-22 13:51:44 +00:00
gls
346346b1a0 Updated graphics/shotwell to 0.11.5
Upstream changes:

0.11.5:
-------
This release fixes an issue in
which Shotwell could crash when using the "Import from F-Spot" feature
for the subset of users who continued to experience this problem after
the 0.11.4 upgrade. We recommend that all users upgrade.

0.11.4;
-------
This release fixes two critical
issues present in all previous versions of Shotwell 0.11.x that could
cause Shotwell to crash when using the Import from F-Spot feature.
We recommend that all users upgrade.

0.11.3:
-------
This releases fixes two critical bugs, including:
   * Shotwell could crash at the end of photo imports where one or
more files failed to import correctly
   * Showell crashed when a new tag containing a slash (/) character
was created by context-clicking on the Tags item in the sidebar and
choosing  New
and improves error reporting in the publishing system.

0.11.2:
-------
  * Improved stability working with hierarchical tags
  * Importing hierarchical tags from F-Spot doesn't generate duplicate
top-level tags
  * Fixed "server redirect contained no session key" errors in the
Facebook Connector
  * Corrected problems with item counts over mixed media
2011-10-22 13:51:02 +00:00
gls
c62fc91c47 Updated graphics/libraw to 0.14.2 2011-10-22 13:44:45 +00:00
gls
bc52cfd384 Upgrade graphics/libraw to 0.14.2
Upstream changes:

LibRaw 0.14.2 (19-10-2011)

        Fixed bug in Canon 1D and 1Ds files decoding.
        New decoder information bit DECODER_HASRAWCURVE

LibRaw 0.14.1 (11-10-2011)

        Imported dcraw 9.11/1.445:
            Support for new cameras added: Fujifilm
	     F600EXR, Nikon P7100, Olympus E-PL3 and
	     E-PM1, Panasonic DMC-FZ150, Sony NEX-5N,
	      A65 and A77.
            Updated color data for: Olympus E-P3,
	     Panasonic G3 and GF3, PhaseOne H25, P40
	     and P65, Sony NEX-C3, NEX-5, NEX-3, A35 and A55.
            Support for dark frame extraction on Sony cameras.
        DCB demosaicing: reserving 6 pixels instead of 3 to suppress colored
	 image frame.

LibRaw 0.14.0 (21-09-2011)

        Multiple rendering (LibRaw::dcraw_process() calls) allowed without
 	 re-opening RAW file thrfough the sequence of open()/unpack() calls.
        You should be able to change any processing parameters (except
	 shot_select parameter) between dcraw_process() calls.
            New sample in samples/multirender_test.cpp: renders data 4 times:
	     in half and full modes with different white balance settings.
            Unprocessed RAW data is stored in separate data buffer: (2 bytes
	     per pixel for all Bayer-pattern images, 8 bytes per pixel for
	     Foveon, sRAW, and other full-color raw formats), so now LibRaw
	     uses 25% more memory for full processing of most common Bayer
	     images; while for just unpack memory is reduced 4 times.
	    New call LibRaw::raw2image() fills imgdata.image array with
	     fresh copy of data. There is no need to call raw2image()
	     separately if you use dcraw_process() or dcraw_document_mode_processing()
	     calls.
	    New call LibRaw::get_decoder_info() to determine raw data storage
	     layout. See samples/unprocessed_raw.cpp for an example of how to
	     use it.
    	    New call LibRaw::free_image(), deallocates imgdata.image buffer.
	     Use this call if current postprocessing results are not needed,
	     but it is to early to call recycle() because dcraw_process()
	     may be called later.
    	    New C-API calls libraw_raw2image() - C API for LibRaw::raw2image()
	     libraw_free_image() - C API for LibRaw::free_image()
	     libraw_get_decoder_info() - C API for LibRaw::get_decoder_info()

If your code uses usual open()/unpack()/dcraw_process() call sequence, then
 NOTHING CHANGED: your program should produce same results. For interactive
 programs you may skip open()/unpack() calls after adjusting processing parameters,
 so user should see image refreshed much faster.

If your code uses raw data (open+unpack calls), you need to call
 LibRaw::raw2image(), and imgdata.image will contain same bitmap as in LibRaw 0.13.x

If you code uses access to masked borders data, you need to rewrite it. See
 samples/unprocessed_raw.cpp as a sample.

Other changes:

    No separate imgdata.masked_pixels buffers, Bayer raw formats are read to
     buffer with borders. So, no ugly add_masked_border_to_bitmap() call.
    No filtering_mode parameter. Raw tone curve is applied at unpack() stage;
     zero pixels removed on postprocesing stage.
    unprocessed_raw and 4colors samples are adjusted to use new RAW data
     storage layout.
    OpenMP speedup of postprocessing steps (up to 50% for half mode and
     4-core machine)
    Most of LibRaw_datastream function bodies are moved to separate source file
    LibRaw_windows_datastream is merged to main source tree
    Imported dcraw 9.10 (1.444), support for new cameras added: ARRIRAW format,
     Canon SX30 IS, Leica D-LUX 5 and V-LUX2, Olympus E-P3, Panasonic G3 and GF3,
     Sony NEX-C3 and SLT-A35
    Support for RedOne digital movie cameras (R3D format). To enable this
     support you need to:
        install libjasper JPEG2000 support library
        compile LibRaw with -DUSE_JASPER compiler switch
         (./configure will do it for you)
        If you use own LibRaw_datastream implementation, you should implement
         make_jas_stream() call for your datastream. See bottom of
         src/libraw_cxx.cpp for implementations in datafile and mem-buffer LibRaw
         streams.

Bugfix: green matching is turned off if output image is shrinked due to wavelet
 filtering or aberration correction.
Removed imgdata.sizes.bottom_margin and right_margin data fields use
 imgdata.sizes.raw_width - width - left_margin to get right one, the same
 with bottom_margin.
Minor ./configure cleanup
Qmake files and Visual Studio Project files are updated.
New version check macroses.
Documentation changed to reflect 0.14 changes.
Removed LibRaw::rotate_fuji_raw() call and corresponding C-API call.
The LibRaw::adjust_sizes_info_only() call may be called repeated and mixed
 with dcraw_process() calls.
Postprocessing speedup and optimization, especially if cropping set.
Cropping works for FujiCCD raws. For the technical reasons, the position of
 top-left corner of crop area will be rounded to the nearest multiple of 4
 (the corner is shifted top-left).
New sample samples/postprocessing_benchmark.cpp This sample measures
 postprocessing speed. All demosaic methods, averaged white balance,
 median filtering, wavelet filtration, highlight recovery, and cropping
 are supported.

all client code should be recompiled due to internals change.
2011-10-22 13:44:12 +00:00
gls
55aa7f5142 Updated devel/libgee to 0.6.2.1 2011-10-22 11:36:00 +00:00
gls
4887525fc1 Update devel/libgee to 0.6.2.1
Upstream changes:

libgee 0.6.2.1
==============

 * Add check-news to AM_INIT_AUTOMAKE

 libgee 0.6.2
 ============

  * Fix adding second element to priority queue.
   * Fix problem with key used in range is freed.
2011-10-22 11:35:43 +00:00
gls
3d853139e1 Updated www/moodle to 2.1.2 2011-10-22 11:06:20 +00:00
gls
949e91d871 Upgrade www/moodle to 2.1.2.
Upstream changes:

Highlights

MDL-28729 - Numerous multi-lang fixes and improvements

Functional changes

MDL-28410 - Allow a single option in a Choice activity
MDL-29394 - HTML editor format option selector hidden when there is only one option
MDL-23520 - Option added to allow deleting of a wiki page

Security issues:
MSA-11-0027 to MSA-11-0035, MSA-11-0039 to MSA-11-0041.
Fixes SA46427

See http://docs.moodle.org/dev/Moodle_2.1.2_release_notes for complete
release notes.
2011-10-22 11:05:30 +00:00
adam
b09e4efd15 Updated databases/mysql55-{client,server} to 5.5.17 2011-10-22 10:33:53 +00:00
adam
04bd4ea6bc Changes 5.5.17:
* Replication: Previously, replication slaves could connect to the master
  server only through master accounts that use native authentication. Now
  replication slaves can also connect through master accounts that use
  nonnative authentication (except Windows native authentication) if the
  required client-side plugin is installed on the slave side in the directory
  named by the slave plugin_dir system variable.
* MEMORY table creation time is now available in the CREATE_TIME column of the
  INFORMATION_SCHEMA.TABLES table and the Create_time column of SHOW TABLE
  STATUS output.
* InnoDB Storage Engine: This fix improves the performance of instrumentation
  code for InnoDB buffer pool operations.
* InnoDB Storage Engine: Data from BLOB columns could be lost if the server
  crashed at a precise moment when other columns were being updated in an
  InnoDB table.
* InnoDB Storage Engine: Lookups using secondary indexes could give incorrect
  matches under a specific set of conditions. The conditions involve an index
  defined on a column prefix, for a BLOB or other long column stored outside
  the index page, with a table using the Barracuda file format.
* InnoDB Storage Engine: This fix corrects cases where the MySQL server could
  hang or abort with a long semaphore wait message. (This is a different issue
  than when these symptoms occurred during a CHECK TABLE statement.)
* Internal conversion of zero to binary and back could yield a result with
  incorrect precision.
* Valgrind warnings generated by filesort operations were fixed.
* mysqld_safe did not properly check for an already running instance of mysqld.
* The help message for mysql_install_db did not indicate that it supports the
  --defaults-file, --defaults-extra-file and --no-defaults options.
* An assertion designed to detect zero-length sort keys also was raised when
  the entire key set fit in memory.
* myisampack could create corrupt FULLTEXT indexes when compressing tables.
* A linking problem prevented the FEDERATED storage engine plugin from loading.
2011-10-22 10:32:37 +00:00
cheusov
43f7f86bab Updated devel/libmaa to 1.3.1 2011-10-22 10:01:15 +00:00
cheusov
6a5e488720 Update to 1.3.1
Build failure with gcc-4.6 was fixed.
  Thanks to Andrey N. Oktyabrski for the report.
2011-10-22 10:01:00 +00:00
ryoon
95ee1b1607 Updated fonts/liberation-ttf to 1.07.1 2011-10-22 08:52:13 +00:00
ryoon
d998481e44 Update to 1.07.1
Changelog:
* Wed Sep 21 2011 Pravin Satpute <psatpute@redhat.com>
- resolved bug 738264, corrected height of U+040D in Mono
- resolved bug 729989, corrected macron position on ā, ē, ī, ō, ū in Narrow fonts
- enabled embedding of font
- Added License link https://fedoraproject.org/wiki/Licensing/LiberationFontLicense
- New Release 1.07.1

* Mon May 30 2011 Pravin Satpute <psatpute@redhat.com>
- added U+045D and U+0450 in all fonts, bug 659214
- corrected characters U+0438 and U+0439, bug 708330
- resolved bug 708330, 707973
- New Release 1.07.0

* Wed Feb 23 2011 Pravin Satpute <psatpute@redhat.com>
- added U+0400 and U+040d in all fonts, bug 659214
- fixed for bug 620273, patch from Cody Boisclair <cody@zone38.net>
2011-10-22 08:50:18 +00:00
shattered
3dbc278c3f PR/39320 -- Don't override user-supplied rc.d *_flags variable. 2011-10-22 07:33:34 +00:00
taca
d239eb19a7 + mysql-client-5.5.17, mysql-server-5.5.17. 2011-10-22 02:08:31 +00:00
hiramatsu
9d3b6e2f6e Note update of devel/p5-Tie-Cache-LRU, www/p5-Tatsumaki and
mail/p5-Mail-ListDetector.
2011-10-22 01:41:27 +00:00
hiramatsu
498849c4e2 Update p5-Mail-ListDetector to 1.04.
Changes from previous:
1.02 14 Nov 2009
  - Fix CPAN RT bug 35320 - add missing dependency
  - Add Test::Kwalitee to ensure we always have kwalitee.
  - Add github repo http://github.com/mstevens/Mail--ListDetector

1.03 30 Jun 2010
  - Make license more explicit

1.04 19 Feb 2011
  - Fix pod warnings.
2011-10-22 01:40:28 +00:00
hiramatsu
fe388f08e2 Update p5-Tatsumaki to 0.1013.
Change from previous;
0.1013  Thu Jul  7 11:49:18 PDT 2011
        - Added $self->binary(1) in Handler classes to indicate binary responses (gbarr, mateu)
        - Allow $self->json to be set to customize the way JSON is encoded (ask)

0.1012  Sun Feb 13 20:01:46 PST 2011
        - No code changes. Updated terribly outdated Tatsumaki.pm POD

0.1011  Tue Dec 21 11:49:49 PST 2010
        - Fixed to use $r->parameters to make it work with newer Plack::Request
        - Fixed MessageQueue leak when long-poll client immediately reconnects after disconnection (mash)
2011-10-22 01:39:58 +00:00
hiramatsu
075eecf33d Update p5-Tie-Cache-LRU to 20110205.
Change from previous:
20110205  Sat, 05 Feb 2011 14:57:08 +1100
    Misc
    * Clarified the license
2011-10-22 01:39:30 +00:00
cheusov
8bc4c6491e Updated devel/mk-configure to 0.21.2 2011-10-21 23:30:47 +00:00
cheusov
8ebf4a5364 Update to 0.21.2
mkc_check_compiler has been reimplemented. This fixes problems
  on system with /bin/sh == bash (affected versions: 0.21.1)
  and makes it drammatically faster.
2011-10-21 23:30:31 +00:00
ryoon
91bba50f03 Added archivers/zutils version 0.9 2011-10-21 21:44:54 +00:00
ryoon
1b063fc87f Add zutils 2011-10-21 21:44:11 +00:00
ryoon
ea186d3a88 Conflict with lzip<1.12 2011-10-21 21:43:29 +00:00
ryoon
56cae2fe4b Import zutils-0.9 as archivers/zutils
Zutils is a collection of utilities able to deal with any combination
of compressed and non-compressed files transparently. If any given
file, including standard input, is compressed, its decompressed
content is used. Compressed files are decompressed on the fly; no
temporary files are created. These utilities are not wrapper scripts
but safer and more efficient C++ programs. In particular the
"--recursive" option is very efficient in those utilities supporting it.

The provided utilities are:
Zcat - Decompresses and copies files to standard output.
Zcmp - Decompresses and compares two files byte by byte.
Zdiff - Decompresses and compares two files line by line.
Zgrep - Decompresses and searches files for a regular expression.
Ztest - Tests integrity of compressed files.
2011-10-21 21:41:09 +00:00
hiramatsu
fa61366de6 Add HOMEPAGE and LICENSE. 2011-10-21 21:38:27 +00:00
ryoon
29b2a5f3a8 Remove lzip 2011-10-21 21:28:40 +00:00
ryoon
e9781c86ed Updated archivers/lzip to 1.12 2011-10-21 21:28:11 +00:00
ryoon
f29b78fe85 Update to 1.12
* lzdiff and lzgrep are now separate package, zutils (not packaged yet).

Changelog:
2011-04-30  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.12 released.
	* main.cc: Added new option `-F, --recompress'.
	* encoder.h (update_prices): Update high length symbol prices
	  independently of the value of `pos_state'. This gives better
	  compression for large values of `--match-length' without being
	  slower.
	* encoder.h encoder.cc: Optimize pair price calculations. This
	  reduces compression time for large values of `--match-length'
	  by up to 6%.
	* Compression time of option `-0' has been reduced by 2%.
	* main.cc (decompress): Print only one status line for each
	  multimember file when only one `-v' is specified.
	* main.cc (decompress): Print up to 6 bytes of trailing garbage
	  when `-vvvv' is specified.
	* main.cc (open_instream): Do not show the message
	  " and `--stdout' was not specified" for directories, etc.
	* lziprecover.cc: If `-v' is not specified show errors only.
	* testsuite/unzcrash.cc: Use Arg_parser.
	* testsuite/unzcrash.cc: Added new options `-b', `-p' and `-s'.

2010-09-16  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.11 released.
	* Added new option `-0' which produces a compression speed and
	  ratio comparable to those of `gzip -9'.
	* fast_encoder.h fast_encoder.cc: New files.
	* main.cc: Match length limit set by options -1 to -8 has been
	  reduced to extend range of use towards gzip. Lower numbers now
	  compress less but faster. (-1 now takes 43% less time for only
	  20% larger compressed size).
	* encoder.cc: Compression of option -9 has been slightly increased.
	* lziprecover.cc: Added new option `--merge' which tries to
	  produce a correct file merging the good parts of two or more
	  damaged copies.
	* lziprecover.cc: Added new option `--repair' for repairing a
	  1-byte error in single-member files.
	* decoder.cc (decode_member): Detect file errors earlier to
	  improve efficiency of lziprecover's new repair capability.
	  This change also prevents (harmless) access to uninitialized
	  memory when decompressing a corrupt file.
	* lziprecover.cc: Added new option `--force'.
	* lziprecover.cc: Added new option `--output'.
	* lziprecover.cc: Added new option `--split' to select the until
	  now only operation of splitting multimember files.
	* lziprecover.cc: If no operation is specified, warn the user
	  and do nothing.
	* main.cc: Fixed warning about fchown's return value being ignored.
	* decoder.cc: `-tvvvv' now also shows compression ratio.
	* main.cc: Set stdin/stdout in binary mode on MSVC and OS2.
	* New examples have been added to the manual.
	* testsuite: `test1' renamed to `test.txt'. Added new tests.
	* Matchfinder types HC4 (4 bytes hash-chain) and HT4 (4 bytes
	  hash-table) have been tested and found no better than the
	  current BT4.

2010-04-05  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.10 released.
	* decoder.h: Input_buffer integrated in Range_decoder.
	* main.cc: File specified with option `-o' is now created with
	  mode 0666 if umask allows it, deleted if interrupted by user.
	* main.cc: New constant `o_binary'.
	* main.cc: Dictionary size for options -2, -3, -4 and -8 has
	  been changed to improve linearity of compressed sizes.
	* lzip.h: Fixed warnings produced by over-optimization (-O3).
	* Makefile.in: Added quotes to directory names.

2010-01-17  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.9 released.
	* main.cc (main): Return at least 1 if closing stdout fails.
	* Makefile.in: Added `--name' option to help2man invocation.
	* testsuite/check.sh: Use `test1' instead of `COPYING' for testing.

2009-09-02  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.8 released.
	* Compression time has been reduced by 4%.
	* Lzdiff and lzgrep have been moved to the new package zutils.
	* Fixed warnings on sistems where uint32_t != unsigned int.
2011-10-21 21:26:47 +00:00
hiramatsu
159ed3e9d3 Updated www/p5-AnyEvent-HTTPD to 0.93.
Updated security/p5-Authen-Htpasswd to 0.171.
2011-10-21 21:10:33 +00:00
hiramatsu
63ab6f57ed Update p5-Authen-Htpasswd to 0.171.
Changes from previous;
0.171  Tue Aug 09 13:09:00 BST 2011
    - re-disting because I failed to notice MYMETA.* in the dist

0.170  Tue Aug 09 12:17:00 BST 2011
    - fix user inflation code to handle arbitrary usernames
2011-10-21 21:09:43 +00:00
hiramatsu
cac28f5054 Update p5-AnyEvent-HTTPD to 0.93.
Changes from previous:
0.93    Thu Aug  4 10:38:09 CEST 2011
        - made it possible to remove default headers
          completely, thanks go to Chris Kastorff for providing a patch.
        - applied also a fix for case handling of the headers,
          thanks go to the patch from Chris Kastorff.
        - fixed some tests. I hate it when all bugs that
          are found via CPAN Testers are bugs in the tests.
        - fixed that the URL returned by Request::url method will
          now also contain the query string (thanks to art sackett for
          spotting this).

0.92    Tue Mar  1 11:46:14 CET 2011
        - added simple SSL/TLS support.
        - removed from tests from the distribution.
        - replaced 01_basic_request.t with a non-wget variant for CPAN.

0.91    Wed Feb  2 15:21:02 CET 2011
        - set the Date header correctly.
        - append a newline to error messages.
        - hopefully improved connection closing mechanism.
        - don't send body when responding to a HEAD request.

0.90    Mon Jan 31 13:04:45 CET 2011
        - fixed a small thing with response on dead connections.
        - added small example of 'request' event usage.
        - make Content-Length: not be empty.
        - hand HEAD requests down to the event handlers.
        - added allowed_methods support from nrh.
        - don't force cache policy anymore.
2011-10-21 21:09:10 +00:00
ryoon
c7cba45504 Remove mp3splt 2011-10-21 20:58:08 +00:00
ryoon
edd71af6ae Updated audio/libmp3splt to 0.7
Updated audio/mp3splt to 2.4
Updated audio/mp3splt-gtk to 0.7
2011-10-21 20:57:29 +00:00
ryoon
30272f6d9b Update to 0.7
* Introduce gnome option.

Changelog:
mp3splt-gtk version 0.7

- added trimming using silence detection
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions: (libmp3splt)
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- fixed bug: don't show split files when setting silence splitpoints or trim splitpoints
- fixed #3355210 - gtk not intuitive - split button with text and shadow
- fixed windows bug to take translations from the current directory (+libmp3splt)
- fixed windows bug with wide characters in directory path of executable (+libmp3splt)
2011-10-21 20:56:00 +00:00
ryoon
4b4f50e889 Update to 2.4
Changelog:
#mp3splt version 2.4

- added negative splitpoints support with EOF-min.sec[.0-99] (only works when the input is not seekable)
- added trimming using silence detection with -r (use with -p th to set the threshold)
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions: (libmp3splt)
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- fixed windows bug to take translations from the current directory (+libmp3splt)
- fixed windows bug with wide characters in directory path of executable (+libmp3splt)

#mp3splt version 2.3a

- fixed tracktype.org issue (libmp3splt)

#mp3splt version 2.3

- new '-G' option: set tags from filename regular expression
- more translations (project mp3splt-gtk on transifex)
- added genre tag to custom tags and to output format (libmp3splt)
- support for the FILE attribute in CUE files - #1353726 (libmp3splt)
- fixed CUE import bug - spaces at the end are now correctly wiped out (libmp3splt)
- fixed bug #3114384: introduced back the 'file might be VBR' warning (libmp3splt)
- fixed bug #3034474: genre tag problems (libmp3splt)
- fixed ogg stream issues - #2861898 & #1078018 (libmp3splt)
2011-10-21 20:53:29 +00:00
ryoon
9c64597bbd Update to 0.7
* Remove LOCALBASE
* Use pkg-config for library detection (pcre and so on)

Changelog:
libmp3splt version 0.7
-------------------------------------------------------------

- added negative splitpoints support: closes #3005266, #1659204
- added trimming using silence detection: closes #3016524, #3141369, #880051, #1576489
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions:
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- rewritten internet part (tracktype, freedb)
- fixed windows bug to take translations from the current directory
- fixed windows bug with wide characters in directory path of executable

libmp3splt version 0.6.1a
-------------------------------------------------------------

- fixed tracktype.org issue

libmp3splt version 0.6.1
-------------------------------------------------------------

- added genre tag to custom tags and to output format (@g)
- support for the FILE attribute in CUE files - #1353726
- support for setting tags from filename regular expression
- added cutter as unit testing framework in libmp3splt
- fixed CUE import bug - spaces at the end are now correctly wiped out
- fixed bug #3114384: introduced back the 'file might be VBR' warning
- fixed bug #3034474: genre tag problems
- fixed ogg stream issues - #2861898 & #1078018
- fixed bug: setting the saved end time on wrong splitpoint indexes
- more translations (project mp3splt-gtk on transifex)
- and many other bugs ...
2011-10-21 20:51:50 +00:00
ryoon
6dbaebb30d Move find-prefix.mk line. 2011-10-21 19:54:58 +00:00
ryoon
d6ab163471 Remove enscript 2011-10-21 19:38:46 +00:00
ryoon
259b83dbda Updated print/enscript to 1.6.5.2 2011-10-21 19:38:28 +00:00
ryoon
e4ddf907ff Update to 1.6.5.2
* Set LICENSE.
* Make pkglint happy

Changelog:
Summary of changes in enscript version 1.6.5.2:

* Fix CFG_FATAL macro in util.c; this prevents a segmentation fault
  when the configuration file contains unknown parameters. (Savannah
  bug #28769)

* Fix segmentation fault with line lengths over 90 characters.
  (Savannah bug #29198)

Summary of changes in enscript version 1.6.5.1:

* Typo corrections in the manual pages.

* Reorganise source tree to use a single ChangeLog file.

* Actually ship f90.st in the tarball.

* Reorganise INSTALL and README.

Noteworthy changes in enscript version 1.6.5:

* New maintainer.

* Licensing change: GNU Enscript is now distributed under version 3 or
  later of the GNU GPL.

* Build system fixes - distcheck now passes.

* At least four security bug fixes:
  - CAN-2004-1184
  - CAN-2004-1185
  - CAN-2004-1186
  - CVE-2008-3863, CVE-2008-4306

* Syntax highlighting fixes.
  - shell escaping rules from Shawn McMahon.
  - JavaScript regexps now recognised.
  - New highlighting rules for Fortran 90 from David Bowler.

See changelogs for more detailed notes.
2011-10-21 19:37:28 +00:00
cegger
82dd15da69 Updated xen 4.1 packages to 4.1.2 2011-10-21 18:31:13 +00:00
cegger
1027369895 Update to Xen 4.1.2
Fixes/features include:
 * New XL toolstack
 * kexec/kdump
 * Remus
 * Device passthrough to HVM guests
 * Interrupt handling
 * Support for Supervisor Mode Execution Protection (SMEP)
2011-10-21 18:26:58 +00:00
chs
d2cd1d5dfe Updated emulators/suse113_qt4 to 11.3nb1 2011-10-21 16:03:35 +00:00
chs
95a3bb6703 update to qt4 4.6.3-2.5.1.
fixes CVE-2011-3193, CVE-2011-3194.
2011-10-21 16:03:21 +00:00
chs
d6fc5da981 Updated emulators/suse113_openssl to 11.3nb5 2011-10-21 16:02:57 +00:00
chs
2e5b70965a update to openssl 1.0.0-6.11.1.
fixes CVE-2011-3207, CVE-2011-3210.
2011-10-21 15:56:37 +00:00
ryoon
15ac2caafe Add comments. 2011-10-21 14:50:09 +00:00
taca
88858485f1 + samba-3.6.1. 2011-10-21 13:41:11 +00:00