Import Debian changes 1.4.0-3

appdirs (1.4.0-3) unstable; urgency=medium

  * Mention Eddy Petrișor in copyright file (Closes: #848313)
  * Bump Standards-Version to 3.9.8 (no changes needed)
  * Use https for copyright format specification
  * Use secure HTTPS for git URIs

appdirs (1.4.0-2) unstable; urgency=medium

  * Build pypy-appdirs package.
  * Add myself to Uploaders.
  * Add autopkgtest support.

appdirs (1.4.0-1) unstable; urgency=medium

  * New upstream release.
  * Use pypi.debian.net redirector for debian/watch
  * Bump Standards-Version to 3.9.6 (no changes required)
  * Update Vcs-Browser to point to cgit URL

appdirs (1.3.0-2) unstable; urgency=medium

  * Remove appdirs-1.3.0.egg-info symlink on upgrade. (Closes: #747088)

appdirs (1.3.0-1) unstable; urgency=medium

  * New upstream release.
  * debian/rules: Add missing test/__init__.py for tests.

appdirs (1.2.0+git20130326-1) unstable; urgency=low

  * Initial version. (Closes: #737107)
This commit is contained in:
Benjamin Drung 2016-12-23 14:30:01 +01:00 committed by Emmanuel Cazenave
parent 5a17779ea6
commit 74a9bbb862
10 changed files with 195 additions and 0 deletions

44
debian/changelog vendored Normal file
View File

@ -0,0 +1,44 @@
appdirs (1.4.0-3) unstable; urgency=medium
* Mention Eddy Petrișor in copyright file (Closes: #848313)
* Bump Standards-Version to 3.9.8 (no changes needed)
* Use https for copyright format specification
* Use secure HTTPS for git URIs
-- Benjamin Drung <benjamin.drung@profitbricks.com> Fri, 23 Dec 2016 14:30:01 +0100
appdirs (1.4.0-2) unstable; urgency=medium
* Build pypy-appdirs package.
* Add myself to Uploaders.
* Add autopkgtest support.
-- Tristan Seligmann <mithrandi@debian.org> Wed, 02 Sep 2015 15:49:47 +0200
appdirs (1.4.0-1) unstable; urgency=medium
* New upstream release.
* Use pypi.debian.net redirector for debian/watch
* Bump Standards-Version to 3.9.6 (no changes required)
* Update Vcs-Browser to point to cgit URL
-- Benjamin Drung <benjamin.drung@profitbricks.com> Mon, 03 Aug 2015 13:22:35 +0200
appdirs (1.3.0-2) unstable; urgency=medium
* Remove appdirs-1.3.0.egg-info symlink on upgrade. (Closes: #747088)
-- Benjamin Drung <benjamin.drung@profitbricks.com> Mon, 12 May 2014 11:54:33 +0200
appdirs (1.3.0-1) unstable; urgency=medium
* New upstream release.
* debian/rules: Add missing test/__init__.py for tests.
-- Benjamin Drung <benjamin.drung@profitbricks.com> Thu, 24 Apr 2014 11:12:32 +0200
appdirs (1.2.0+git20130326-1) unstable; urgency=low
* Initial version. (Closes: #737107)
-- Benjamin Drung <benjamin.drung@profitbricks.com> Thu, 30 Jan 2014 12:21:00 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

79
debian/control vendored Normal file
View File

@ -0,0 +1,79 @@
Source: appdirs
Maintainer: Benjamin Drung <benjamin.drung@profitbricks.com>
Uploaders: Tristan Seligmann <mithrandi@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
pypy,
pypy-setuptools,
python-all (>= 2.6.6-3~),
python-setuptools (>= 0.6b3),
python3-all,
python3-setuptools
X-Python-Version: >= 2.4
X-Python3-Version: >= 3.0
Standards-Version: 3.9.8
Homepage: https://github.com/ActiveState/appdirs
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/appdirs.git
Vcs-Git: https://anonscm.debian.org/git/collab-maint/appdirs.git
Package: python-appdirs
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: determining appropriate platform-specific directories (Python 2)
Depending on your system (Linux, Mac OS X, or Windows), you have to use
different directories for storing user data. appdirs will help you choose an
appropriate:
.
* user data directory (user_data_dir function)
* user config directory (user_config_dir function)
* user cache directory (user_cache_dir function)
* site data directory (site_data_dir function)
* site config directory (site_config_dir function)
* user log directory (user_log_dir function)
.
On Linux systems, these function return directories based on the XDG Base
Directory Specification.
.
This is the Python 2 version of the package.
Package: python3-appdirs
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: determining appropriate platform-specific directories (Python 3)
Depending on your system (Linux, Mac OS X, or Windows), you have to use
different directories for storing user data. appdirs will help you choose an
appropriate:
.
* user data directory (user_data_dir function)
* user config directory (user_config_dir function)
* user cache directory (user_cache_dir function)
* site data directory (site_data_dir function)
* site config directory (site_config_dir function)
* user log directory (user_log_dir function)
.
On Linux systems, these function return directories based on the XDG Base
Directory Specification.
.
This is the Python 3 version of the package.
Package: pypy-appdirs
Architecture: all
Depends: ${misc:Depends}, ${pypy:Depends}
Description: determining appropriate platform-specific directories (PyPy)
Depending on your system (Linux, Mac OS X, or Windows), you have to use
different directories for storing user data. appdirs will help you choose an
appropriate:
.
* user data directory (user_data_dir function)
* user config directory (user_config_dir function)
* user cache directory (user_cache_dir function)
* site data directory (site_data_dir function)
* site config directory (site_config_dir function)
* user log directory (user_log_dir function)
.
On Linux systems, these function return directories based on the XDG Base
Directory Specification.
.
This is the PyPy version of the package.

32
debian/copyright vendored Normal file
View File

@ -0,0 +1,32 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: appdirs
Source: https://github.com/ActiveState/appdirs
Files: *
Copyright: 2005-2010 ActiveState Software Inc.
2013 Eddy Petrișor
License: MIT
Files: debian/*
Copyright: 2014 Benjamin Drung <benjamin.drung@profitbricks.com>
License: MIT
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

11
debian/python-appdirs.prerm vendored Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -e
case "$1" in
upgrade)
# Work around symlink file to symlink directory (Debian bug #747088)
rm -rf /usr/lib/python2*/dist-packages/appdirs-1.3.0.egg-info
;;
esac
#DEBHELPER#

14
debian/rules vendored Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/make -f
export PYBUILD_NAME=appdirs
%:
dh $@ --with python2,python3,pypy --buildsystem=pybuild
override_dh_auto_test:
touch test/__init__.py
dh_auto_test
rm -f test/__init__.py
override_dh_installchangelogs:
dh_installchangelogs CHANGES.rst

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

2
debian/tests/control vendored Normal file
View File

@ -0,0 +1,2 @@
Tests: python
Restrictions: allow-stderr

9
debian/tests/python vendored Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
set -e
set -x
SRC="${PWD}"
cd "${ADTTMP}"
for py in $(pyversions -vi) $(py3versions -vi) ; do
python$py -m unittest discover -s "${SRC}"/test
done
pypy -m unittest discover -s "${SRC}"/test

2
debian/watch vendored Normal file
View File

@ -0,0 +1,2 @@
version=3
http://pypi.debian.net/appdirs/appdirs-(.+)(?:\.zip|\.tar\.(?:gz|bz2|xz))