diff options
| author | Ondřej Nový <onovy@debian.org> | 2018-06-18 10:30:12 +0200 |
|---|---|---|
| committer | git-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com> | 2018-06-19 10:34:07 +0000 |
| commit | 9bdce266605a9c2777abff06c72d7c1570b173eb (patch) | |
| tree | 8e47eaca99d65867a4bcf889e00de5d644725090 | |
| parent | a110503000529313b9b6e52453d2d7ac18721e62 (diff) | |
| parent | a7505c540a32657e2a779fdf913321325a0f961f (diff) | |
1.1.5-2 (patches applied)applied/1.1.5-2applied/ubuntu/eoan-develapplied/ubuntu/eoanapplied/ubuntu/disco-develapplied/ubuntu/discoapplied/ubuntu/cosmic-proposedapplied/ubuntu/cosmic-develapplied/ubuntu/cosmicapplied/debian/buster
Imported using git-ubuntu import.
| -rw-r--r-- | debian/changelog | 11 | ||||
| -rw-r--r-- | debian/compat | 2 | ||||
| -rw-r--r-- | debian/control | 23 | ||||
| -rw-r--r-- | debian/copyright | 2 | ||||
| -rwxr-xr-x | debian/rules | 2 |
5 files changed, 33 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog index 0882484..720a922 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +python-atomicwrites (1.1.5-2) unstable; urgency=medium + + * Team upload. + * d/control: Set Vcs-* to salsa.debian.org + * d/copyright: Use https protocol in Format field + * Add pypy version of package + * Bump debhelper compat level to 11 + * Standards-Version is 4.1.4 now (no changes) + + -- Ondřej Nový <onovy@debian.org> Mon, 18 Jun 2018 10:30:12 +0200 + python-atomicwrites (1.1.5-1) unstable; urgency=medium * New upstream version diff --git a/debian/compat b/debian/compat index ec63514..b4de394 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +11 diff --git a/debian/control b/debian/control index fb20924..e7194a9 100644 --- a/debian/control +++ b/debian/control @@ -3,19 +3,34 @@ Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian. Uploaders: Filip Pytloun <filip@pytloun.cz> Section: python Priority: optional -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 11), dh-python (>= 2.20160609~), + pypy, + pypy-pytest, + pypy-setuptools, python-all, python-pytest, python-setuptools, python3-all, python3-pytest, python3-setuptools, -Standards-Version: 3.9.8 +Standards-Version: 4.1.4 Testsuite: autopkgtest-pkg-python Homepage: https://github.com/untitaker/python-atomicwrites -Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-atomicwrites.git/ -Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-atomicwrites.git +Vcs-Browser: https://salsa.debian.org/python-team/modules/python-atomicwrites +Vcs-Git: https://salsa.debian.org/python-team/modules/python-atomicwrites.git + +Package: pypy-atomicwrites +Architecture: all +Depends: ${misc:Depends}, ${pypy:Depends} +Description: Atomic file writes - PyPy + It uses a temporary file in the same directory as the given path. This ensures + that the temporary file resides on the same filesystem. + The temporary file will then be atomically moved to the target location: On + POSIX, it will use rename if files should be overwritten, otherwise a + combination of link and unlink. + . + This package contains the PyPy. Package: python-atomicwrites Architecture: all diff --git a/debian/copyright b/debian/copyright index 3705d93..0debb46 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: python-atomicwrites Source: https://github.com/untitaker/python-atomicwrites diff --git a/debian/rules b/debian/rules index 5eb148b..de816b9 100755 --- a/debian/rules +++ b/debian/rules @@ -3,7 +3,7 @@ export PYBUILD_NAME=atomicwrites %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with pypy,python2,python3 --buildsystem=pybuild override_dh_installdocs: dh_installdocs |
