Commit graph

185464 commits

Author SHA1 Message Date
wiz
4c06e11bd0 Updated wm/notion to 3.2012042300 2012-04-23 21:37:59 +00:00
wiz
17855e253a Update to latest snapshot from today:
Bug fixes, and better xinerama and fullscreen support.
2012-04-23 21:37:48 +00:00
ghen
56a55ac169 Updated mail/dovecot2 to 2.1.5. 2012-04-23 17:44:25 +00:00
ghen
b9e6171c5b Update to Dovecot 2.1.5
* IMAP: When neither the session nor the mailbox has modseq tracking enabled,
  return the mailbox as having NOMODSEQ in SELECT/EXAMINE reply. Old versions
  in this situation always simply returned HIGHESTMODSEQ as 1, which could have
  broken some clients.

+ dict file: Added optional fcntl/flock locking (default is dotlock)
+ fts-solr: doveadm fts rescan now resets indexes, which allows reindexing
  mails. (This isn't a full rescan implementation like fts-lucene has.)
+ doveadm expunge: Added -d parameter to delete mailbox if it's empty after
  expunging.
- IMAP: Several fixes related to mailbox listing in some configs
- director: A lot of fixes and performance improvements
- v2.1.4 didn't work without a mail home directory set
- mbox: Deleting a mailbox didn't delete its index files.
- pop3c: TOP command was sent incorrectly
- trash plugin didn't work properly
- LMTP: Don't add a duplicate Return-Path: header when proxying.
- listescape: Don't unescape namespace prefixes.
2012-04-23 17:43:15 +00:00
drochner
6ac1ce6c7d give hints for selftest 2012-04-23 16:53:12 +00:00
adam
eb05ed1c2c Changes 1.1.3:
* 40: Fix ``safe_repr`` function to decode bytestrings with non-ASCII
  characters correctly.
* 37: Allow configuring sphinx-apidoc via ``SPHINX_APIDOC_OPTIONS``.
* 34: Restore Python 2.4 compatibility.
* 36: Make the "bibliography to TOC" fix in LaTeX output specific to
  the document class.
* 695: When the highlight language "python" is specified explicitly,
  do not try to parse the code to recognize non-Python snippets.
* 859: Fix exception under certain circumstances when not finding
  appropriate objects to link to.
* 860: Do not crash when encountering invalid doctest examples, just
  emit a warning.
* 864: Fix crash with some settings of :confval:`modindex_common_prefix`.
* 862: Fix handling of ``-D`` and ``-A`` options on Python 3.
* 851: Recognize and warn about circular toctrees, instead of running
  into recursion errors.
* 853: Restore compatibility with docutils trunk.
* 852: Fix HtmlHelp index entry links again.
* 854: Fix inheritance_diagram raising attribute errors on builtins.
* 832: Fix crashes when putting comments or lone terms in a glossary.
* 834, 818: Fix HTML help language/encoding mapping for all Sphinx
  supported languages.
* 844: Fix crashes when dealing with Unicode output in doctest extension.
* 831: Provide ``--project`` flag in setup_command as advertised.
* 875: Fix reading config files under Python 3.
* 876: Fix quickstart test under Python 3.
* 870: Fix spurious KeyErrors when removing documents.
* 892: Fix single-HTML builder misbehaving with the master document in a
  subdirectory.
* 873: Fix assertion errors with empty ``only`` directives.
* 816: Fix encoding issues in the Qt help builder.
2012-04-23 14:52:53 +00:00
obache
2af7979370 Updated textproc/py-xlrd to 0.7.7 2012-04-23 13:14:01 +00:00
obache
d3ecadaf6c Update py-xlrd to 0.7.7.
0.7.7.
This release features the following changes:
- Google Spreadsheet doesn't write the undefined-contents byte at the
  end of a NOTE record. Excel doesn't care. Now xlrd doesn't care either.
- Version information is now stored in a .py file, hopefully keeping
  py2exe and other freeze tools happy.

(0.7.5, 0.7.6 ...fixes packaging issues in 0.7.4...)

0.7.4.
This release features the following changes:
- Fixed a bug where xlrd was silently truncating long text formula results
- Avoid parsing STYLE records when formatting_info=False
- More tolerance of out-of-spec files.
- Minor performance improvements.
2012-04-23 13:13:44 +00:00
obache
9bccffdde8 revive ${EGG_FILE} handling in print-PLIST, accidently(?) removed at
killing ${PLIST.eggfile}
2012-04-23 13:02:06 +00:00
obache
03d98f41c9 remove duplicated entries. 2012-04-23 12:58:45 +00:00
obache
5747cea022 Fixes double "ruby" prefix of PKGNAME at last update. 2012-04-23 12:31:36 +00:00
obache
d26df5e4f6 Updated devel/py-testtools to 0.9.14 2012-04-23 12:23:52 +00:00
obache
ff2fde0dfd Update py-testtools to 0.9.14.
0.9.14
~~~~~~

Our sister project, `subunit <https://launchpad.net/subunit>`_, was using a
private API that was deleted in the 0.9.13 release.  This release restores
that API in order to smooth out the upgrade path.

If you don't use subunit, then this release won't matter very much to you.


0.9.13
~~~~~~

Plenty of new matchers and quite a few critical bug fixes (especially to do
with stack traces from failed assertions).  A net win for all.

Changes
-------

* ``MatchesAll`` now takes an ``first_only`` keyword argument that changes how
  mismatches are displayed.  If you were previously passing matchers to
  ``MatchesAll`` with keyword arguments, then this change might affect your
  test results.  (Jonathan Lange)

Improvements
------------

* Actually hide all of the testtools stack for assertion failures. The
  previous release promised clean stack, but now we actually provide it.
  (Jonathan Lange, #854769)

* ``assertRaises`` now includes the ``repr`` of the callable that failed to raise
  properly. (Jonathan Lange, #881052)

* Asynchronous tests no longer hang when run with trial.
  (Jonathan Lange, #926189)

* ``Content`` objects now have an ``as_text`` method to convert their contents
  to Unicode text.  (Jonathan Lange)

* Failed equality assertions now line up. (Jonathan Lange, #879339)

* ``FullStackRunTest`` no longer aborts the test run if a test raises an
  error.  (Jonathan Lange)

* ``MatchesAll`` and ``MatchesListwise`` both take a ``first_only`` keyword
  argument.  If True, they will report only on the first mismatch they find,
  and not continue looking for other possible mismatches.
  (Jonathan Lange)

* New helper, ``Nullary`` that turns callables with arguments into ones that
  don't take arguments.  (Jonathan Lange)

* New matchers:

  * ``DirContains`` matches the contents of a directory.
    (Jonathan Lange, James Westby)

  * ``DirExists`` matches if a directory exists.
    (Jonathan Lange, James Westby)

  * ``FileContains`` matches the contents of a file.
    (Jonathan Lange, James Westby)

  * ``FileExists`` matches if a file exists.
    (Jonathan Lange, James Westby)

  * ``HasPermissions`` matches the permissions of a file.  (Jonathan Lange)

  * ``MatchesPredicate`` matches if a predicate is true.  (Jonathan Lange)

  * ``PathExists`` matches if a path exists.  (Jonathan Lange, James Westby)

  * ``SamePath`` matches if two paths are the same.  (Jonathan Lange)

  * ``TarballContains`` matches the contents of a tarball.  (Jonathan Lange)

* ``MultiTestResult`` supports the ``tags`` method.
  (Graham Binns, Francesco Banconi, #914279)

* ``ThreadsafeForwardingResult`` supports the ``tags`` method.
  (Graham Binns, Francesco Banconi, #914279)

* ``ThreadsafeForwardingResult`` no longer includes semaphore acquisition time
  in the test duration (for implicitly timed test runs).
  (Robert Collins, #914362)
2012-04-23 12:23:39 +00:00
obache
5747eee39c Updated devel/py-msgpack to 0.1.13 2012-04-23 12:01:35 +00:00
obache
4780a6abd7 Update python-msgpack to 0.1.13.
0.1.13
=======
:release date: 2012-04-21

New
----
* Don't accept subtype of list and tuple as msgpack list. (Steeve Morin)
  It allows customize how it serialized with ``default`` argument.

Bugs fixed
-----------
* Fix wrong error message. (David Wolever)
* Fix memory leak while unpacking when ``object_hook`` or ``list_hook`` is used.
  (Steeve Morin)

Other changes
-------------
* setup.py works on Python 2.5 (Steffen Siering)
* Optimization for serializing dict.


0.1.12
=======
:release date: 2011-12-27

Bugs fixed
-------------

* Re-enable packs/unpacks removed at 0.1.11. It will be removed when 0.2 is released.


0.1.11
=======
:release date: 2011-12-26

Bugs fixed
-------------

* Include test code for Python3 to sdist. (Johan Bergstrom)
* Fix compilation error on MSVC. (davidgaleano)
2012-04-23 12:01:01 +00:00
sbd
3cfc61e339 Add '/lib${LIBABISUFFIX}' to the search path.
Also add a note
# XXX: Why are we looking in '/usr/lib${ABI}' and '/lib${ABI}', as we should
# XXX: only be looking in '/usr/lib${LIBABISUFFIX}' and '/lib${LIBABISUFFIX}'
2012-04-23 08:44:00 +00:00
sbd
e7de802238 The path to libc.so.6 needs to include ${LIBABISUFFIX}. 2012-04-23 08:14:36 +00:00
sbd
8799fd0b9f If the BUILDLINK_PREFIX is '/usr' then the BUILDLINK_LIBDIRS will be
'lib${LIBABISUFFIX}'
2012-04-23 07:42:13 +00:00
mspo
3c24796932 build for with CATMAN after talking with joerg 2012-04-23 03:41:28 +00:00
obache
2fe228b3aa revertd to r1.12.
This package contains no python version specific files,
so no need to be prefixed with PYPKGPREFIX.
2012-04-23 01:15:42 +00:00
wiz
65ebe007bd + py-beautifulsoup-4.0.4. 2012-04-22 22:50:02 +00:00
dholland
c877d5969b Use -O3, not -O6; should fix clang build 2012-04-22 22:04:24 +00:00
dholland
815734b152 Use valid compiler opations. Should fix clang build. 2012-04-22 21:42:42 +00:00
wiz
4b8c42807f Updated www/py-beautifulsoup to 3.2.1 2012-04-22 21:15:30 +00:00
wiz
f72505d976 Update to 3.2.1, bugfix release. 2012-04-22 21:15:21 +00:00
dholland
2a169c87b4 Declare void function void; fixes clang build. 2012-04-22 21:08:20 +00:00
joerg
0d92b75fc2 Fix trivial build error with clang to make room for the more interesting
problems.
2012-04-22 20:32:18 +00:00
joerg
5023a79e4f Don't use extern "C" when including C++ headers. 2012-04-22 20:31:29 +00:00
joerg
408703e40a Disable warning for using non-POD return type in combination with extern
"C".
2012-04-22 20:30:43 +00:00
joerg
049a119ee7 Don't enable -Werror with clang. 2012-04-22 20:30:11 +00:00
joerg
14a3e1d2a8 Fix build with clang. 2012-04-22 20:29:47 +00:00
gls
e5ecf7e7cb Updated misc/calibre to 0.8.48 2012-04-22 19:33:17 +00:00
gls
8a3cceaf07 Update to 0.8.48.
pkgsrc changes:
---------------
Add a patch from Neil Booth to fix PLIST.
Should fix part of pkg/46331.

Upstream changes:
-----------------
Way too long CHANGELOG to list here.
Highlights from upstream are:

E-book viewer: A whole new full screen mode. [0.8.44]
-----------------------------------------------------
Closes tickets: 959830 [External link]

The new mode has no toolbars to distract from the text and the ability to set
the width of the column of text via Preferences in the ebook viewer. Click the
Fullscreen button on the toolbar in the viewer to enter fullscreen mode (or
press the F11 or Ctrl+Shit+F keys)

Support for reading Amazon's new KF8 format [0.8.42]
----------------------------------------------------
calibre can now both view and convert MOBI files that contain Amazon's new KF8
(Kindle Fire) format

Complete changelog is here: http://calibre-ebook.com/whats-new
`
2012-04-22 19:33:01 +00:00
spz
060a83e8f3 patch for CVE-2012-0883 taken from the Apache SVN
bump pkgrev
2012-04-22 19:08:03 +00:00
wiz
3bfee77cd7 Added converters/libcdr version 0.0.6 2012-04-22 17:49:19 +00:00
adam
610d106c7a Include pyversion.mk, so PYPKGPREFIX could be resolved 2012-04-22 17:49:04 +00:00
wiz
3b551a841f Fix path after import. 2012-04-22 17:48:06 +00:00
wiz
5bff1c1be1 + libcdr. 2012-04-22 17:47:58 +00:00
wiz
70a1fc0e30 Initial import of libcdr-0.0.6 from wip, packaged by Francois Tigeot.
Libcdr is a library providing the ability to interpret and import
Corel Draw drawings into various applications. You can find it being
used in libreoffice.
2012-04-22 17:47:42 +00:00
cheusov
15843da68f Updated pkgtools/pkg_summary-utils to 0.58.0 2012-04-22 17:10:32 +00:00
cheusov
51a593b6b9 Update to 0.58.0
pkg_uniq_summary:
    - New option -F was added
2012-04-22 17:10:18 +00:00
cheusov
7aa2eb1e13 Updated devel/bzr-explorer to 1.2.2nb2 2012-04-22 16:44:04 +00:00
cheusov
f8298b4e76 Updated devel/qbzr to 0.22.1nb2 2012-04-22 16:43:00 +00:00
taca
466300775b Remove modular-xorg-server-1.12.0 since modular-xorg-server-1.12.1 is there. 2012-04-22 16:19:07 +00:00
taca
4d8f188876 Note update of www/contao211-translations package to 201204220. 2012-04-22 16:15:55 +00:00
taca
8ce45c4abe Update contao211-translations package to 201204220.
Update Japanese language files.
2012-04-22 16:15:27 +00:00
wiz
c4fccf6f02 + abcmidi-20120415, calibre-0.8.48, cdlabelgen-4.2.0, cheese-3.4.1,
dbus-glib-0.98 [wants dbus>1.2.16], erlang-15b01, etm-891,
  glib2-2.32.1, glibmm-2.32.0, gnome-3.4.1, gnome-keyring-3.4.1,
  gtk3-3.4.1, gtkmm-3.4.0, gwaei-3.4.3, hdf-4.2.7p1, help2man-1.40.9,
  kdevelop-4.3.1, lgeneral-1.2.3, libgdata-0.13.0, libgnome-keyring-3.4.1,
  libmusicbrainz-4.0.1, mono-2.11.1, mousetweaks-3.4.1, openssl-1.0.1a,
  openttd-1.2.0, parallel-20120422, py-dbus-1.0.0 [needs dbus>=1.4],
  seahorse-3.4.1, vinagre-3.4.1, vino-3.4.1, x264-devel-20120421,
  xlsfonts-1.0.4, xmodmap-1.0.7.
2012-04-22 16:14:23 +00:00
wiz
0ee06780b1 Updated time/py-pytz to 2012c 2012-04-22 16:13:39 +00:00
wiz
cd2fac1c0d Update to 2012c, time zone updates. 2012-04-22 16:13:30 +00:00
wiz
11d17f9604 Bump PKGREVISION for libplist. 2012-04-22 16:11:51 +00:00