Skip to content
Commits on Source (9)
python-easydev (0.9.37-1) UNRELEASED; urgency=medium
[ Andreas Tille ]
* Team upload.
[ Andreas Tille ]
* Fix watch file
* debhelper 12
* Activate Testsuite field
......@@ -12,7 +13,16 @@ python-easydev (0.9.37-1) UNRELEASED; urgency=medium
[ Piotr Ożarowski ]
* do not use pkg_resources
-- Andreas Tille <tille@debian.org> Wed, 09 Jan 2019 16:45:57 +0100
[ Nick Morrott ]
* Drop __pycache__/__init__.cpython-35.pyc
* d/control: refresh build-dependencies for tests
* d/patches: refresh external-appdirs.patch
* d/rules: generate egg_info for tests
* d/rules: skip test requiring network access
* d/rules: delete coverage report from build tree
* Drop unused python-easydev.lintian-overrides.
-- Nick Morrott <knowledgejunkie@gmail.com> Tue, 22 Jan 2019 23:18:11 +0000
python-easydev (0.9.35+dfsg-2) unstable; urgency=medium
......
......@@ -9,15 +9,23 @@ Build-Depends: debhelper (>= 12~),
python-all,
python-setuptools,
python-appdirs,
python-colorlog,
python-colorama,
python-nose,
python-pexpect,
python-pytest,
python-pytest-cov,
python-pytest-mock,
python3-all,
python3-setuptools,
python3-appdirs,
python3-colorlog,
python3-colorama,
python3-nose,
python3-pexpect,
python3-pytest,
python3-pytest-cov,
python3-pytest-mock,
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/python-easydev
Vcs-Git: https://salsa.debian.org/med-team/python-easydev.git
......
......@@ -2,10 +2,10 @@ Description: use separately installed appdirs package
easydev used its own convenience copy, which we don't need.
Author: Afif Elghraoui <afif@debian.org>
Forwarded: not-needed
Last-Update: 2017-10-18
--- python-easydev.orig/easydev/config_tools.py
+++ python-easydev/easydev/config_tools.py
@@ -367,7 +367,7 @@
Last-Update: 2019-01-22
--- a/easydev/config_tools.py
+++ b/easydev/config_tools.py
@@ -370,7 +370,7 @@
def __init__(self, name, verbose=False):
self.verbose = verbose
......@@ -14,3 +14,25 @@ Last-Update: 2017-10-18
self.appdirs = appdirs.AppDirs(name)
def init(self):
--- a/test/test_appdirs.py
+++ b/test/test_appdirs.py
@@ -11,16 +11,16 @@
app.user_log_dir
with mock.patch("sys.platform", "darwin"):
- from easydev import appdirs
+ import appdirs
app = appdirs.AppDirs("test")
getter(app)
with mock.patch("sys.platform", "win32"):
- from easydev import appdirs
+ import appdirs
app = appdirs.AppDirs("test")
getter(app)
with mock.patch("sys.platform", "linux"):
- from easydev import appdirs
+ import appdirs
app = appdirs.AppDirs("test")
getter(app)
# needed for hinge; The python3 module is also packaged
new-package-should-not-package-python2-module
......@@ -3,11 +3,19 @@
export LC_ALL=C.UTF-8
export PYBUILD_NAME=easydev
export PYBUILD_BEFORE_TEST={interpreter} {dir}/setup.py egg_info -e {build_dir}
export PYBUILD_AFTER_TEST=cd {build_dir}; rm -rf *.egg-info
export PYBUILD_TEST_ARGS=-k-test_url
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_install:
dh_install
# remove coverage report
$(RM) debian/*/usr/lib/python*/dist-packages/.coverage
# Allow python{,3}-easydev to be co-installable
# and avoid the generic name "browse" for an executable in /usr/bin
cd debian/python-easydev/usr/bin \
......