diff options
author | Amadeusz Piotr Żołnowski <aidecoe@gentoo.org> | 2014-10-12 19:52:22 +0000 |
---|---|---|
committer | Amadeusz Piotr Żołnowski <aidecoe@gentoo.org> | 2014-10-12 19:52:22 +0000 |
commit | 3abe9f5d2d6a62b14e9e3adf6c77e74ddfa34f9b (patch) | |
tree | efbf98ccb5c4259a02bb948d510d704c0e9f564e /dev-python/appdirs | |
parent | amd64 stable wrt #523848 (diff) | |
download | gentoo-2-3abe9f5d2d6a62b14e9e3adf6c77e74ddfa34f9b.tar.gz gentoo-2-3abe9f5d2d6a62b14e9e3adf6c77e74ddfa34f9b.tar.bz2 gentoo-2-3abe9f5d2d6a62b14e9e3adf6c77e74ddfa34f9b.zip |
Version bump. Fixes bug #524786.
appdirs 1.4.0
- [PR #42] AppAuthor is now optional on Windows
- [issue 41] Support Jython on Windows, Mac, and Unix-like platforms. Windows
support requires JNA.
- [PR #44] Fix incorrect behaviour of the site_config_dir method
appdirs 1.3.0
- [Unix, issue 16] Conform to XDG standard, instead of breaking it for
everybody
- [Unix] Removes gratuitous case mangling of the case, since *nix-es are
usually case sensitive, so mangling is not wise
- [Unix] Fixes the uterly wrong behaviour in site_data_dir, return result
based on XDG_DATA_DIRS and make room for respecting the standard which
specifies XDG_DATA_DIRS is a multiple-value variable
- [Issue 6] Add *_config_dir which are distinct on nix-es, according to XDG
specs; on Windows and Mac return the corresponding *_data_dir
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
Diffstat (limited to 'dev-python/appdirs')
-rw-r--r-- | dev-python/appdirs/ChangeLog | 26 | ||||
-rw-r--r-- | dev-python/appdirs/appdirs-1.4.0.ebuild | 31 |
2 files changed, 56 insertions, 1 deletions
diff --git a/dev-python/appdirs/ChangeLog b/dev-python/appdirs/ChangeLog index a7ca7bade577..4aa2e2382414 100644 --- a/dev-python/appdirs/ChangeLog +++ b/dev-python/appdirs/ChangeLog @@ -1,6 +1,30 @@ # ChangeLog for dev-python/appdirs # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v 1.5 2014/03/31 20:52:56 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v 1.6 2014/10/12 19:52:22 aidecoe Exp $ + +*appdirs-1.4.0 (12 Oct 2014) + + 12 Oct 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +appdirs-1.4.0.ebuild: + Version bump. Fixes bug #524786. + + appdirs 1.4.0 + + - [PR #42] AppAuthor is now optional on Windows + - [issue 41] Support Jython on Windows, Mac, and Unix-like platforms. Windows + support requires JNA. + - [PR #44] Fix incorrect behaviour of the site_config_dir method + + appdirs 1.3.0 + + - [Unix, issue 16] Conform to XDG standard, instead of breaking it for + everybody + - [Unix] Removes gratuitous case mangling of the case, since *nix-es are + usually case sensitive, so mangling is not wise + - [Unix] Fixes the uterly wrong behaviour in site_data_dir, return result + based on XDG_DATA_DIRS and make room for respecting the standard which + specifies XDG_DATA_DIRS is a multiple-value variable + - [Issue 6] Add *_config_dir which are distinct on nix-es, according to XDG + specs; on Windows and Mac return the corresponding *_data_dir 31 Mar 2014; Michał Górny <mgorny@gentoo.org> appdirs-1.2.0-r1.ebuild: Add support for the new PyPy slotting. diff --git a/dev-python/appdirs/appdirs-1.4.0.ebuild b/dev-python/appdirs/appdirs-1.4.0.ebuild new file mode 100644 index 000000000000..757adf94f574 --- /dev/null +++ b/dev-python/appdirs/appdirs-1.4.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/appdirs-1.4.0.ebuild,v 1.1 2014/10/12 19:52:22 aidecoe Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy pypy2_0 ) + +inherit distutils-r1 + +DESCRIPTION="Module for determining appropriate platform-specific dirs" +HOMEPAGE="http://github.com/ActiveState/appdirs" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +# api.doctests is missing in the dist zipfile +# and the 'internal' doctest does nothing +RESTRICT=test + +python_test() { + cd test || die + "${PYTHON}" test.py \ + || die "Tests fail with ${EPYTHON}" +} |