aidecoe 14/10/12 19:52:22
Modified: ChangeLog
Added: appdirs-1.4.0.ebuild
Log:
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)
Revision Changes Path
1.6 dev-python/appdirs/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/appdirs/ChangeLog?rev=1.6&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/appdirs/ChangeLog?rev=1.6&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/appdirs/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 31 Mar 2014 20:52:56 -0000 1.5
+++ ChangeLog 12 Oct 2014 19:52:22 -0000 1.6
@@ -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 <[email protected]> +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 <[email protected]> appdirs-1.2.0-r1.ebuild:
Add support for the new PyPy slotting.
1.1 dev-python/appdirs/appdirs-1.4.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/appdirs/appdirs-1.4.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/appdirs/appdirs-1.4.0.ebuild?rev=1.1&content-type=text/plain
Index: appdirs-1.4.0.ebuild
===================================================================
# 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}"
}