commit fd81edffb69fbf4b64432c2ccd03d0af83ef7e6d
Author: Brian Dolbec <dolsen@gentoo.org>
Date:   Tue Aug 12 08:41:32 2014 -0700

    Updates for the release

commit 269aa06166e36a56219c13258cc53f0fa6e18609
Author: Michał Górny <mgorny@gentoo.org>
Date:   Tue Aug 12 20:21:16 2014 +0200

    --sync: Decode getaddrinfo() errors properly

    Fixes UnicodeDecodeError in Python 2 with getaddrinfo() error messages
    that contain non-ASCII characters, e.g. in pl_PL.UTF-8 locale.

    Reviewed-by: Alexander Berntsen <bernalex@gentoo.org> Reviewed-by:
    Brian Dolbec <dolsen@gentoo.org>

commit 852f5b5d7f2dd138a1d1b5dfa92b12bba51cf0a4
Author: Michał Górny <mgorny@gentoo.org>
Date:   Thu Jul 24 10:03:52 2014 +0200

    QA: Warn when systemd units use /etc/conf.d

    Acked-by: Alexander Berntsen <bernalex@gentoo.org> Acked-by: Brian Dolbec
    <dolsen@gentoo.org> Reviewed-by: Anthony G. Basile <blueness@gentoo.org>

commit 98e84ba7b3939f314f61a2e1f4ce756e5cdb4009
Author: Michał Górny <mgorny@gentoo.org>
Date:   Wed Apr 9 13:54:35 2014 +0200

    QA: Use pngfix to find broken PNG files

    Acked-by: Alexander Berntsen <bernalex@gentoo.org> Acked-by: Brian
    Dolbec <dolsen@gentoo.org> Reviewed-by: Justin Lecher <jlec@gentoo.org>
    Reviewed-by: Sergei Trofimovich <slyfox@gentoo.org>

commit cbfba17290bbc14514538acbb954efeb61f82d8f
Author: Michał Górny <mgorny@gentoo.org>
Date:   Wed Aug 6 19:17:54 2014 +0200

    Enable consistent __future__ behavior for division

    In Python 2, the division ('/') operator defaults to integer
    (truncating) division when given integer argument. In Python 3, it
    performs floating-point division unconditionally instead. To overcome
    this difference and get a consistent behavior, integers were converted
    to floats explicitly in a few places.

    Instead, use a simpler 'from __future__ import division' statement that
    enables floating-point division globally in Python 2. Use it in all
    relevant files to get a consistent behavior, and use '//' appropriately
    whenever integer division is desired.

    Reviewed-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
    Acked-by: Alexander Berntsen <bernalex@gentoo.org> Acked-by: Brian
    Dolbec <dolsen@gentoo.org>

commit 910d073d04e01cbe24b300b9dc33697e9ca48b72
Author: Alexander Berntsen <bernalex@gentoo.org>
Date:   Thu Jun 12 18:53:50 2014 +0200

    emerge: Prepend '=' to unmerge atoms (bug 512578)

    Signed-off-by: Alexander Berntsen <bernalex@gentoo.org> Reviewed-By:
    Brian Dolbec       <dolsen@gentoo.org> Reviewed-By:   Michał Górny
    <mgorny@gentoo.org>

commit bbb34efebd0bfc0b231073d00b863b3e3ebd918a
Author: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Date:   Sun Aug 10 12:31:29 2014 +0200

    repoman: Do not report DESCRIPTION.punctuation warning for "etc.".

commit 49ec4696f0d933957c75b8ecc0f775bc79c78010
Author: Sergei Trofimovich <slyfox@gentoo.org>
Date:   Fri Jul 25 01:11:47 2014 +0300

    emake: pass EXTRA_EMAKE after user's "$@", not before

    Patch allows easier override or ebuild things, like
        #foo-9999.ebuild: src_compile() {
            emake V=1
        }

        EXTRA_EMAKE="V=0" emerge =foo-9999

    That way it's easier to eyeball upstream builds for new warnings.

    This behaviour is more in line with EXTRA_ECONF variable.

    Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>

commit d40b4f1b0b21de67286a47aa10632e40996f6d06
Author: Mike Gilbert <floppym@gentoo.org>
Date:   Wed Aug 6 17:39:14 2014 -0400

    emerge: fix invalid locale setting (bug 519074)

    Don't die when the user has an invalid locale setting.  Resolves bug
    519074.

commit 72a1f979342d89f41594f40fc6074fcd3ede9086
Author: Michał Górny <mgorny@gentoo.org>
Date:   Mon Aug 4 10:57:07 2014 +0200

    repoman: fix atom.blocker checks.

    The original checks assume that no-blocker is denoted as 'None'.  However,
    currently atom.blocker returns just 'False'.

commit b316391ba0eface61fea6a0615f74738ad36b886
Author: Michał Górny <mgorny@gentoo.org>
Date:   Wed Aug 6 18:32:17 2014 +0200

    localization: properly decode formatted number for localized_size().

    Fixes: https://bugs.gentoo.org/show_bug.cgi?id=519124

commit 3e4b7a5128689697e87416293d9c45d4fa2fbf76
Author: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Date:   Mon Aug 4 23:40:44 2014 +0200

    Follow-up to commit 96ded9cff423d773ee31a696a691dd6610c315b7: Restore
    "/" characters.

commit 213335d85286cd7a188d9f83b59ce0d6c2da7146
Author: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Date:   Mon Aug 4 14:11:24 2014 +0200

    Revert incorrect commit 9351edad48523bb38b1bf651506786bdc8814f62, which
    broke file type detection in chpathtool.py with Python 3 and magic
    module present.

    >>> import magic >>> m = magic.open(magic.MIME_TYPE) >>> m.load() 0
    >>> m.file(b"/etc/fstab") 'text/plain' >>> m.file(str(b"/etc/fstab"))
    "cannot open `b'/etc/fstab'' (No such file or directory)"

commit 2830df3b297f7caa84306316112d5485ad45b5b7
Author: Brian Dolbec <dolsen@gentoo.org>
Date:   Sun Aug 3 18:49:18 2014 -0700

    pym/_emerge/depgrapgh.py: Fix bug 518968

    Fixes commit: 1a00ddf5fb089724a127c8dc72d63f10ae72abbf Author: Alexander
    Berntsen <bernalex@gentoo.org> (Thu 08 May 2014 08:47:58 AM PDT) Subject:
    emerge: Implement "--alert"

    self.query was not assigned using the correct UserQuery instance.
    self.uq was not used by anything anywhere.  This patch consolidates it to
    the one initialized instance in 1 line of code.  Original bug reproduced
    and fixed by: Mike Gilbert <floppym@gentoo.org>

commit d705ea3a502d1e92e124a81101501906f8737110
Author: Pavel Kazakov <nullishzero@gentoo.org>
Date:   Sun Aug 3 14:45:14 2014 -0700

    New emaint module: Merges

    This emaint module scans for failed package merges and will display
    or fix any failed packages found. This module also saves failed merges
    found using a tracking file. Subsequent runs of the module will re-load
    that info for re-display, re-emerge of those packages.  Fix typo:
    -collision-detect ==> -collision-protect <Brian Dolbec>

commit 96ded9cff423d773ee31a696a691dd6610c315b7
Author: Pavel Kazakov <nullishzero@gentoo.org>
Date:   Sun Aug 3 14:38:45 2014 -0700

    Move -MERGING- string to a constant.

    Remove extra whitespace.

commit 9351edad48523bb38b1bf651506786bdc8814f62
Author: Brian Dolbec <dolsen@gentoo.org>
Date:   Sun Aug 3 08:08:18 2014 -0700

    bin/chpathtool.py: fix py3.2 &py3.3 test failure

    The magic module for those 2 python versions do not handle byte strings
    correctly.  forcing the filename to str() fixes it for all pythons tested.
