Commit graph

186230 commits

Author SHA1 Message Date
adam
96db4cc144 Changes 0.2:
* bugfix: SRV RR handling: fix domain name parsing and crash in case
  if no port is specified on input for SRV record query
* (trivial api) dns_set_opts() now returns number of unrecognized
  options instead of always returning 0
* dnsget: combine -f and -o options in dnsget (and stop documenting -f),
  and report unknown/invalid -o options (and error out)
* dnsget: pretty-print SSHFP RRs
2012-05-12 05:38:00 +00:00
adam
c15ed65647 Made building docs an option; now tex and friends are not required for buildlink. 2012-05-12 05:33:11 +00:00
drochner
11314e1c70 update to 5.0.5
changes: bugfixes, in particular for glitches with newer CPUs
2012-05-11 14:08:59 +00:00
drochner
ae07a3c606 sync w/ base pkg 2012-05-11 13:58:57 +00:00
taca
d18551cf75 Note update of security/openssl package to 0.9.8x. 2012-05-11 13:28:41 +00:00
taca
62a1e0be20 Update openssl to 0.9.8x.
OpenSSL CHANGES
 _______________

 Changes between 0.9.8w and 0.9.8x [10 May 2012]

  *) Sanity check record length before skipping explicit IV in DTLS
     to fix DoS attack.

     Thanks to Codenomicon for discovering this issue using Fuzz-o-Matic
     fuzzing as a service testing platform.
     (CVE-2012-2333)
     [Steve Henson]

  *) Initialise tkeylen properly when encrypting CMS messages.
     Thanks to Solar Designer of Openwall for reporting this issue.
     [Steve Henson]
2012-05-11 13:27:26 +00:00
sno
7982b2485f Updated devel/p5-Perl-Critic to 1.117 2012-05-11 13:26:25 +00:00
sno
496fda0bf3 Update package for CPAN distribution Perl::Critic in devel/p5-Perl-Critic
from 1.116 to 1.117.

pkgsrc changes:
- mark requirement update of p5-PPIx-Regexp to 0.022

Upstream changes:
[1.117] Released on 2011-12-21

    HAPPY HOLIDAYS!

    New Policies:
    * Variables::ProhibitAugmentedAssignmentInDeclaration reports
      constructs like 'my $x += 1'. Contributed by Mike O'Regan

    Policy Changes:
    * BuiltinFunctions::ProhibitLvalueSubstr: Add explicit 'use version'.
      RT #68498.
    * CodeLayout::ProhibitHardTabs: Add 'pbp' to the default_themes list.
      RT #71093.
    * ControlStructures::ProhibitMutatingListFunctions now understands that
      tr///r (introduced in 5.13.7) does not change its operand.
    * ControlStructures::ProhibitMutatingListFunctions now understands that
      '//=', '<<=', and '>>=' are assignment operators. RT #70901.
    * ErrorHandling::RequireCheckingReturnValueOfEval now allows things
      like grep { eval $_ }. RT #69489.
    * Modules::RequireExplicitPackage now has configuraion option
      allow_import_of, to allow the import of specified modules before
      the package statement. RT #72660.
    * RegularExpressions::ProhibitEnumeratedClasses no longer thinks
      that [A-Za-z_] matches \w. RT #69322.
    * RegularExpressions::ProhibitUnusedCaptures now skips the first
      block of an 'if' or 'elsif' if the regular expression is bound to
      its operand with the '!~' operator. RT #69867.
    * RegularExpressions::ProhibitUnusedCaptures now looks into lists
      and blocks in the replacement portion of the regular expression if
      /e is asserted. RT #72086.
    * RegularExpressions::RequireDotMatchAnything,
      RegularExpressions::RequireExtendedFormatting and
      RegularExpressions::RequireLineBoundaryMatching now honor defaults
      set with 'use re "/modifiers"'. RT #72151.
    * Subroutines::ProhibitManyArgs now recognizes '+' as a prototype
      character.
    * Variables::ProhibitPunctuationVars now recognizes bracketed
      variables embedded in interpolated strings (e.g. "${$}"). For the
      purpose of the 'allow' configuration, these are considered
      equivalent to the unbracketed form. RT #72910.
    Other Changes:
    * Corrected POD in Perl::Critic::PPI::Utils. RT #68898.
    * Perl::Critic::Violation source() method now returns the line
      containing the violation (not the first line) when the statement
      containing the violation spans multiple lines.
2012-05-11 13:26:14 +00:00
abs
3b370c8e1f Updated lang/sun-jre6 to 6.0.32
Updated lang/sun-jdk6 to 6.0.32
2012-05-11 13:10:01 +00:00
sno
b0f8be90ff Updated devel/p5-PPIx-Regexp to 0.026 2012-05-11 13:04:46 +00:00
sno
cce40383d5 Updating package for Perl5 distribution PPIx::Regexp in devel/p5-PPIx-Regexp
from 0.021 to 0.026.

Upstream changes (keep in mind versions with underscores marking developer releases):
0.026		2012-02-24	T. R. Wyant
  Add support for \F (fold case), added in 5.15.8.

0.025		2012-01-04	T. R. Wyant
  Tolerate leading and trailing white space around the regular
    expression.  These are still round-trip safe, since the white space
    is tokenized.
  Make Changes file conform to CPAN::Changes, and add
    xt/author/changes.t to ensure continued compliance.

0.024		2011-12-17	T. R. Wyant
  Reinstate author test xt/author/manifest.t, which was clobbered
    shortly before the release of 0.021_10.

0.023		2011-12-08	T. R. Wyant
  Correct address of FSF in the version of the GPL distributed in
    LICENSES/Copying. Thanks to Petr Pisar for picking this up.

0.022		2011-11-24	T. R. Wyant
  Correct various documentation errors.
  The default-modifier functionality is no longer considered
    experimental.
  No code changes since 0.021_11.

0.021_11	2011-11-15	T. R. Wyant
  Don't initialize effective modifiers with '^', since that wrongly
    asserts that /d has been seen somewhere along the line.
  Implement negation of match-semantic modifiers (e.g. 'no re /u;') by
    setting the relevant datum to undef.
  THE DEFAULT-MODIFIER FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED
    WITHOUT NOTICE until the next production release.

0.021_10	2011-11-14	T. R. Wyant
  Support for default modifiers. This includes:
    * default_modifiers argument to new() in PPIx::Regexp,
      PPIx::Regexp::Tokenizer, and PPIx::Regexp::Dumper
    * Public method modifier_asserted() on PPIx::Regexp, to return
      whether a given modifier is actually in effect. The results of the
      modifier() method are unchanged.
    THIS FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED OR REVOKED
    WITHOUT WARNING.
  Require Test::More 0.88 for installation. Eliminate all the 'eval
    { require ... }' logic in favor of 'use Test::More 0.88'.
  Have Makefile.PL make use of {BUILD_REQUIRES} if it is available.
  Fix PPIx::Regexp::Token::Whitespace->can_be_quantified() to return
    false.
2012-05-11 13:04:35 +00:00
abs
0e101bf0d2 Updated lang/sun-jdk6 to 6.0.32
Changes since sun-jdk6-6.0.31
- samples & demo directoryes dropped
- 3DNow Prefetch Instruction Support
- Adjust allocation prefetching for T4
- assert(VM_Version::supports_sse2()) failed: must support
- Remove hotspot assertion due to Solaris 8 kstat "unimplemented".
- ARM: SEGV on panda with linaro 3.1.1 running specjvm2008
- make the string table size configurable
- Parallel CMS fails to properly mark reference objects
- GarbageCollectorMXBean#getLastGcInfo leaks native memory
- C-heap growth issue in ThreadService::find_deadlocks_at_safepoint
- Memory leak in inferencing verifier (libverify.so)
- SA cannot open core files larger than 2GB on Linux 32-bit
- Introspector.getBeanInfo() should release some resources in timely manner
- File.setWritable() / File.canWrite() not behaving as expected
- CookieManager does not store cookies if url is read before setting cookie manager
- (so) Socket adapter need to implement sendUrgentData
- (so) Socket adpator is not synchronized on channel state
- (so) Suppress creation of SocketImpl in SocketAdaptor's constructor
- Cannot decode PublicKey (Provider SunPKCS11, curve prime256v1)
- Gervill for 6uXX (2): make Gervill the default synthesizer
- Problem with timezone in a SimpleDateFormat
- Properties.loadFromXML fails with ClassCastException
- compiler generates bad code when translating conditional expressions
- IncompatibleClassChangeError with unreferenced local class with subclass
- 32-bit JRE silent install fails on WINDOWS 2008 SERVER 64-bit under System account
- installation fails by SMS under System Account
- Separate demos from the bundles on Windows, Solaris and Linux
- DT fails to register with Chrome
- uninstall of JRE 7 with JRE 6 on the machine left 10.0.0 deployment registry key behind
- IE9 prompts to disable Java plugin because of slow start up
- Redirection of registry keys not happening correctly with old plugin
- old-plugin liveconnect missing SecureCookiePermission
- Java Plugin does not evaluate automatic proxy files correctly on Linux: always picks first proxy
- 20ms latency always observed for LiveConnect round-trip in IE
- revisit IE LiveConnect performance fix to address applet hang issue found by Citigroup
- Java Web Start 10.1.* is considerably slower than Web Start 1.4.2, using getresource() repeatedly
- Compilation of StarOffice wordml XSLT filter via XSLTC throws exception
- JDK6u18 XSLT regression: xsl:copy-of failing to copy generated attributes
- Cipher.doFinal(ByteBuffer,ByteBuffer) fails to process when in.remaining() == 0
- (was 7011759 Bug Cloned - 6u16: Recovering buffer manager read stream underflow from protocols are
- Regular unexplained npe's from corba libs after system has been running for days
- GSSAPI/SPNEGO does not work with server using MIT Kerberos library
- Incorrect SSLEngine debug output
- Npe occurs in abstractprocessor.readfromnextstructure
- SAAJ does not set correct namespace prefix and namespace URI for attributes in some circumstances.
2012-05-11 13:04:17 +00:00
abs
923530d2e9 Updated lang/sun-jre6 to 6.0.32
Changes since sun-jre6-6.0.31
- 3DNow Prefetch Instruction Support
- Adjust allocation prefetching for T4
- assert(VM_Version::supports_sse2()) failed: must support
- Remove hotspot assertion due to Solaris 8 kstat "unimplemented".
- ARM: SEGV on panda with linaro 3.1.1 running specjvm2008
- make the string table size configurable
- Parallel CMS fails to properly mark reference objects
- GarbageCollectorMXBean#getLastGcInfo leaks native memory
- C-heap growth issue in ThreadService::find_deadlocks_at_safepoint
- Memory leak in inferencing verifier (libverify.so)
- SA cannot open core files larger than 2GB on Linux 32-bit
- Introspector.getBeanInfo() should release some resources in timely manner
- File.setWritable() / File.canWrite() not behaving as expected
- CookieManager does not store cookies if url is read before setting cookie manager
- (so) Socket adapter need to implement sendUrgentData
- (so) Socket adpator is not synchronized on channel state
- (so) Suppress creation of SocketImpl in SocketAdaptor's constructor
- Cannot decode PublicKey (Provider SunPKCS11, curve prime256v1)
- Gervill for 6uXX (2): make Gervill the default synthesizer
- Problem with timezone in a SimpleDateFormat
- Properties.loadFromXML fails with ClassCastException
- compiler generates bad code when translating conditional expressions
- IncompatibleClassChangeError with unreferenced local class with subclass
- 32-bit JRE silent install fails on WINDOWS 2008 SERVER 64-bit under System account
- installation fails by SMS under System Account
- Separate demos from the bundles on Windows, Solaris and Linux
- DT fails to register with Chrome
- uninstall of JRE 7 with JRE 6 on the machine left 10.0.0 deployment registry key behind
- IE9 prompts to disable Java plugin because of slow start up
- Redirection of registry keys not happening correctly with old plugin
- old-plugin liveconnect missing SecureCookiePermission
- Java Plugin does not evaluate automatic proxy files correctly on Linux: always picks first proxy
- 20ms latency always observed for LiveConnect round-trip in IE
- revisit IE LiveConnect performance fix to address applet hang issue found by Citigroup
- Java Web Start 10.1.* is considerably slower than Web Start 1.4.2, using getresource() repeatedly
- Compilation of StarOffice wordml XSLT filter via XSLTC throws exception
- JDK6u18 XSLT regression: xsl:copy-of failing to copy generated attributes
- Cipher.doFinal(ByteBuffer,ByteBuffer) fails to process when in.remaining() == 0
- (was 7011759 Bug Cloned - 6u16: Recovering buffer manager read stream underflow from protocols are
- Regular unexplained npe's from corba libs after system has been running for days
- GSSAPI/SPNEGO does not work with server using MIT Kerberos library
- Incorrect SSLEngine debug output
- Npe occurs in abstractprocessor.readfromnextstructure
- SAAJ does not set correct namespace prefix and namespace URI for attributes in some circumstances.
2012-05-11 13:02:37 +00:00
sno
fa4d720f32 Updated devel/p5-Capture-Tiny to 0.18 2012-05-11 12:55:45 +00:00
sno
c8969ea107 Updating package for CPAN module Capture::Tiny in devel/p5-Capture-Tiny
from 0.17 to 0.18.

Upstream changes since 0.17:
0.18      2012-05-04 16:31:53 America/New_York

  Added

  - When capture or tee are called in void context, Capture::Tiny
    skips reading back from the capture handles if it can do so safely

0.17_52   2012-03-09 11:45:19 EST5EDT

  Fixed:

  - Tied STDIN is always localized before redirections to avoid tees
    hanging on MSWin32

  - Copying and reopening STDIN is necessary to avoid tees hanging on MSWin32.

0.17_51   2012-03-07 18:22:34 EST5EDT

  Fixed:

  - Avoids reopening STDIN while setting up a capture, which avoids
    some problems with pathological tied filehandle implementations
    such as in FCGI

  Tested:

  - Re-enabled tied STDIN testing for MSWin32 to see if changes above
    avoid crashes seen historically
2012-05-11 12:55:35 +00:00
sno
0defd44ff6 Updated devel/p5-App-Cmd to 0.318 2012-05-11 12:51:39 +00:00
sno
1a79ec56ae Updating package for CPAN distribution App::Cmd in devel/p5-App-Cmd
from 0.317 to 0.318

Upstream changes:
0.318     2012-05-04 22:00:34 America/New_York
          App::Cmd::Tester treats undef code as 0 now (thanks, David Golden)

          piles of documentation improvement also by David Golden
2012-05-11 12:51:30 +00:00
sno
5039298932 Updated devel/p5-IO-AIO to 4.15 2012-05-11 11:31:55 +00:00
sno
54c4410279 Updating package for CPAN distribution IO::AIO in devel/p5-IO-AIO from
4.11 to 4.15.

Upstream changes:
4.15  Tue Apr 10 06:59:00 CEST 2012
	- always include linux/types.h for fiemap, for compatibility to
          ancient systems (Paul Howarth).
        - experimental support for IO::AIO::splice and ::tee (no aio_...).
        - provide SEEK_HOLE and SEEK_DATA, if available.
        - work around (again!) an immensely stupid bug in RHEL, defining
          autoconf macros in linux system headers (analysed by Paul Howarth).

4.14 Sat Apr  7 02:45:18 CEST 2012
	- fix stat structure usage on windows, which caused bogus stat results.
        - (libeio) make readahead emulation behave more like actual readahead by never failing.
        - new request aio_seek.
        - new request aio_fiemap.
        - autogenerate the #ifdef/#define 0 blocks for symbols we export.

4.12 Fri Dec 30 08:51:25 CET 2011
	- realpath would return a random value if the name was too long,
          instead of -1.
        - port to c89.
2012-05-11 11:31:44 +00:00
fhajny
a535469a94 Updated rabbitmq to 2.8.2.
Fixes in 2.8.2:
- Performance improvements
- Disc space monitoring

Fixed in 2.8.1
- Fixes a bug in 2.8.0 which prevented RAM nodes from being upgraded.
2012-05-11 11:15:12 +00:00
joerg
765199ec4a Kill a bunch of work directory references in rpath. Bump revision. 2012-05-11 11:12:41 +00:00
joerg
0131de3226 Apply user transformation earlier to make it possible to drop
to-be-mangled entries like rpath using BUILDLINK_TRANSFORM.
2012-05-11 11:09:42 +00:00
ryoon
1a9b9fd0f4 Updated misc/php-orangehrm to 2.7 2012-05-11 10:42:57 +00:00
ryoon
bbf018d563 Update to 2.7
* Add dependency to php-mysqli

Changelog:
2.7
* Language translation and date format support for all modules.
* Ability to switch on/off modules.
* Upgraders up to version 2.6.5.
* Removal of Benefits module.
* bugfixes

2.7-rc.1
* Language translation and date format support for all modules except
  Benefits module.
* Ability to switch on/off modules.
* bugfixes

2.6.12.1
* bugfixes

In detail, see new_changed_features.txt, but no security bug information
is provided.
2012-05-11 10:41:26 +00:00
sbd
072763f593 Use gzip in stdout mode so that the output file is created even with the
'unexpected end of file' error.
2012-05-11 10:01:58 +00:00
obache
099c7c6c19 Updated www/opera to 11.64 2012-05-11 09:40:34 +00:00
obache
52c9de002c Update Opera to 11.64.
Release date: 2012-05-10

 Opera 11.64 is a recommended upgrade offering security and stability enhancements.

Fixes and Stability Enhancements since Opera 11.62

General and User Interface
 * Stability improvements
 * Resolved a handshake failure on https://autoupdate.opera.com
Network and Site-Specific
 * Fixed an error where an on-demand-plugin placeholder could lower the security
   status of a secure site to insecure
 * Fixed an issue with some secure pages not loading - PayPal, Ebay
 * dojotoolkit.org: Errors when using the dojo amd loader have been resolved
 * rts.rs: A JavaScript error has been resolved
Security
 * Fixed an issue where certain URL constructs could allow arbitrary code
   execution, as reported by Andrey Stroganov; see our advisory:
     http://www.opera.com/support/kb/view/1016/
2012-05-11 09:40:11 +00:00
ryoon
20d9fceb77 Updated mail/thunderbird to 12.0.1 2012-05-11 08:26:21 +00:00
ryoon
8fe21a85f6 Update to 12.0.1
Fix PR pkg/46427

Changelog:
* Fix various issues relating to new mail notifications and filtering
  on POP3 based accounts
* Fixes an occasional startup crash seen in TB 12.0
* Fixes an issue with corrrupted message bodies when using movemail
2012-05-11 08:20:35 +00:00
dholland
65cf80fb73 Honor PKGMANDIR. 2012-05-10 22:16:54 +00:00
dholland
4e5e046cdf Add a cast to some indescribably horrible code to fix a build failure seen
in the last Linux bulk build.
2012-05-10 22:11:20 +00:00
spz
f61986874e fix PLIST for an optionally installed file when picking option snmp 2012-05-10 21:58:38 +00:00
dholland
f6bc8d2560 glib2 build fixes for the providers sub-packages, plus one for when the
fam option is enabled. Closes PR 46429, PR 46430, and PR 46432.
2012-05-10 21:45:05 +00:00
dholland
1956029e23 Use SUBST to insert PREFIX instead of a handrolled sed, and be (much) less
indiscriminate about it.
2012-05-10 20:59:41 +00:00
dholland
a95c230c05 Add patch comments to preexisting patches. 2012-05-10 20:54:54 +00:00
dholland
98694964c8 Pass -Wall. Fix a number of minor bugs and possibly some major ones.
Should also fix clang build. PKGREVISION++
2012-05-10 20:53:30 +00:00
schwarz
acab9fed5d Updated net/tacacs-shrubbery to 4.0.4.25 2012-05-10 19:01:08 +00:00
dholland
dff72d6aa4 Apply partial half-baked update to 0.8.2 to fix longtime problem with
missing Mono DLLs at config time.

This fixes that problem but fails because it needs gnome-keyring-sharp,
which we don't yet have in pkgsrc. I'm committing anyway in the hopes
someone else will deal with that because the package hasn't been
buildable in a long time and this does constitute a step forward.

Upstream changes:


f-spot 0.8.2 - Dec 19 2010 - Error!
-----------------------------------
- A small error slipped through while releasing 0.8.1, this release fixes
  that one.

f-spot 0.8.1 - Dec 19 2010 - Winter Fixes!
------------------------------------------
- Bug fix release for the 0.8.x series.
 - Critical bug fixes and translation updates. Upgrading highly recommended.
 - Infobox crasher fixed (Paul Wellner Bou)
 - CRW crasher (Christian Krause)
 - XMP sidecar file naming now uses file.jpg.xmp, falls back to old file.xmp
   if present (Ruben Vermeersch)
 - French Mallard Documentation (Bruno Brouard)
 - Slovenian Mallard Documentation (Matej UrbanÄiÄ)
 - Tons of translations
 - Loads of obsolete code fixed (Tim Howard)
 - DateTime.DaysInMonth crasher fix (Tim Howard)
 - Mono.Data.Sqlite removed (Tim Howard)
 - Switch to official Taglib# repository.
 - Lots of Taglib# fixes.
 - Rotation crasher (Nuno Ferreira)
 - Gallery export crasher for Unicode characters (Martin Slota)
 - A fix for the very annoying Int32.MaxValue bug.
 - Around 20 bugs closed (http://bit.ly/hCAwkd)

f-spot 0.8.0 - Sep 15 2010 - Stabilized
---------------------------------------
- First long-term stable release of the 0.8.x series.
 - Contains everything from the 0.7.x series as well as some critical extra
   fixes that were added during the past week.
 - Some regressions in terms of support for obscure RAW formats, but lots of
   improvements overall, definitely in terms of stability.
 - Nearly 300 bugs closed since 0.6.2 (http://bit.ly/bqXLLt)
 - This series will continue to be maintained and released, but only with
   improvements and fixes. New development will happen on the master branch
   and result in 0.9.x releases.

f-spot 0.7.3 - Sep  9 2010 - Release Candidate
----------------------------------------------
- Release candidate for the 0.8.0 release.
 - Completely replaced Glade usage by GtkBuilder (Paul Lange)
 - Cleanups and refactorings all accross (Ruben Vermeersch)
 - Correctly decide when to make the library location sensitive (Iain Lane)
 - Fixes in Taglib#.
 - IconView has been split up and made much more modular (Mike GemÃ¼nde)
 - More Hyenafication (Mike GemÃ¼nde)
 - Copy to Clipboard fixed (Mike GemÃ¼nde)
 - Another 20 bugs closed (http://bit.ly/a9FWVh)

f-spot 0.7.2 - Aug 11 2010 - Retooled
-------------------------------------
- Third release of the unstable 0.7 development series. Features a fully
  restructured source tree with full Monodevelop build support. Solves some of
  the regressions introduced in 0.7.1.
 - Reorganized source tree for clarity, builds with Monodevelop.
 - Switched from QueuedSqliteDatabase to HyenaSqliteConnection (Mike GemÃ¼nde)
 - Build tweaks (Christian Krause)
 - More GtkBuilder transition (Eric Faehnrich)
 - Reliability improvements (lots of them) for metadata handling (Mike GemÃ¼nde,
   Ruben Vermeersch)
 - Prune empty directories when deleting photos, import usability enhancements
   (Mike Wallick)
 - Big race-condition fix in import (Paul Wellner Bou)
 - Loads of improvements to Taglib#, in terms of handling broken files, extra
   format support (Pentax, Panasonic, Leica), stability and correctness (Ruben
   Vermeersch)
 - Reporting of import errors.
 - Speedups to repeated imports of the same directory.
 - Piles of cleanups and general stability improvements.
 - Over 50 bugs closed (http://bit.ly/cqpC3y)

f-spot 0.7.1 - Jul 14 2010 - The Big Switch
-------------------------------------------
- Second release of the unstable 0.7 development series. Most notably
  including a switch to Taglib#. Regressions in the amount of RAW
  types supported, will be fixed before releasing 0.8.
 - Switched to a new Taglib#-backed metadata layer. This is a huge change
   which should bring us increased stability (in the long run) and a much
   easier to maintain metadata layer than the one we previously had. Also
   enables some funky new features like XMP sidecars. (Ruben Vermeersch,
   Mike GemÃ¼nde)
 - Add support for XMP sidecars (Ruben Vermeersch)
 - Add "remove from camera after import"-option (Ruben Vermeersch)
 - Start of a massive backend cleanup (Mike GemÃ¼nde)
 - Upstreaming of a lot of Debian/Ubuntu patches (Iain Lane)
 - Several dialogs converted from glade to GtkBuilder (Ademir Mendoza,
   Nick Van Eeckhout, Peter Goetz, Trevor Buchanan)
 - Code refactorings and cleanups, increased Hyena adoption (Evan Briones,
   Paul Lange, Paul Wellner Bou)
 - Small usability improvements (Alex Launi, Anton Keks, Iain Churcher,
   Tomas Kovacik)
 - More build retooling (Bertrand Lorentz, Christian Krause, Gabriel Burt)
 - Many bugs fixed and improvements in stability: Over 85 bugs closed
   (http://bit.ly/aKyQOd)

f-spot 0.7.0 - Jun 16 2010 - Full Steam Ahead!
----------------------------------------------
- First release of the unstable 0.7 development series. Massive changes.
 - Reparenting and detaching support (Anton Keks)
 - A new Mallard-based documentation (Harold Schreckengost)
 - No longer embeds flickrnet, uses distribution copy (Iain Lane)
 - Adoption of a large amount of Hyena functionality (Paul Lange, Peter Goetz)
 - No longer embeds gnome-keyring-sharp
 - Completely rewritten import, much faster and less memory hungry (Ruben Vermeersch)
 - No longer use gphoto2-sharp, now uses gvfs which is less crash-pron (Ruben Vermeersch)
 - Fix Facebook support (Ruben Vermeersch)
 - Modernized unit tests
 - Revamped build (Mike GemÃ¼nde)
 - Much improved duplicate detection (much faster too) (Ruben Vermeersch)
 - Mouse selection in Iconview (Vincent Pomey)
 - Image panning support using middle mouse button (Wojciech DzierÅ¼anowski)
 - Timeline slider now restricted to the size of the window (Iain Churcher)
 - Over 100 bugs closed (http://bit.ly/cyVjnD)
2012-05-10 17:46:34 +00:00
dholland
62bd5da010 Explicitly disable udev if not on Linux. Fixes my build; no clue why this
apparently didn't affect Joerg's.
2012-05-10 16:36:51 +00:00
abs
fc165f5275 Correctly handle PKG_SYSCONFDIR - bump pkgrevision 2012-05-10 16:07:36 +00:00
ghen
87841bd950 Updated mail/dovecot2 to 2.1.6 2012-05-10 13:26:19 +00:00
ghen
d214bf4fcf Update to Dovecot 2.1.6
* Session ID is now included by default in auth and login process log lines. It
  can be added to mail processes also by adding %{session} to mail_log_prefix.
+ Added ssl_require_crl setting, which specifies if CRL check must be successful
  when verifying client certificates.
+ Added mail_shared_explicit_inbox setting to specify if a shared INBOX should
  be accessible as "shared/$user" or "shared/$user/INBOX".
- v2.1.5: Using "~/" as mail_location or elsewhere failed to actually expand it
  to home directory.
- dbox: Fixed potential assert-crash when reading dbox files.
- trash plugin: Fixed behavior when quota is already over limit.
- mail_log plugin: Logging "copy" event didn't work.
- Proxying to backend server with SSL: Verifying server certificate name always
  failed, because it was compared to an IP address.
2012-05-10 13:25:37 +00:00
obache
1251a9df95 Updated security/ruby-simple_oauth to 0.1.8 2012-05-10 12:12:45 +00:00
obache
7c20de4ff6 Update ruby-simple_oauth to 0.1.8.
contains OAuth spec compatible fixes.
2012-05-10 12:12:29 +00:00
wiz
ba7615adfe pkglint cleanup while here. 2012-05-10 10:55:44 +00:00
wiz
3cc085bf04 Fix build with automake-1.12. 2012-05-10 10:55:38 +00:00
wiz
37d5deee78 Fix build with automake-1.2.
While here, add missing INSTALLATION_DIRS line (or perhaps it's a
Makefile dependency issue, but this fixes it).
2012-05-10 10:49:49 +00:00
martin
a9e3aec384 Add upstream bug reference 2012-05-10 09:44:58 +00:00
sbd
fa75361a46 "sys.platform is now always 'linux2' on Linux", so set PY_PLATNAME to it. 2012-05-10 09:07:19 +00:00
obache
044424903b Try to fix path of modules again. 2012-05-10 08:54:12 +00:00