Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
BUild-Depends: python-pytest
· b47f44c9
Andreas Tille
authored
Jan 22, 2019
b47f44c9
Do not use pkg_resources to avoid build failure
· 9a7de48c
Andreas Tille
authored
Jan 22, 2019
9a7de48c
debhelper 12
· 7995c1de
Andreas Tille
authored
Jan 22, 2019
7995c1de
Cleanup changelog
· 9f62bf07
Andreas Tille
authored
Jan 22, 2019
9f62bf07
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
9f62bf07
python-easydev (0.9.37-1) UNRELEASED; urgency=medium
[ Andreas Tille ]
* Team upload.
* Fix watch file
* debhelper 1
1
* debhelper 1
2
* Activate Testsuite field
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Remove trailing whitespace in debian/copyright
[ Piotr Ożarowski ]
* do not use pkg_resources
-- Andreas Tille <tille@debian.org> Wed, 09 Jan 2019 16:45:57 +0100
python-easydev (0.9.35+dfsg-2) unstable; urgency=medium
...
...
debian/compat
View file @
9f62bf07
1
1
1
2
debian/control
View file @
9f62bf07
...
...
@@ -4,18 +4,20 @@ Uploaders: Afif Elghraoui <afif@debian.org>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 1
1
~),
Build-Depends: debhelper (>= 1
2
~),
dh-python,
python-all,
python-setuptools,
python-appdirs,
python-colorama,
python-pexpect,
python-pytest,
python3-all,
python3-setuptools,
python3-appdirs,
python3-colorama,
python3-pexpect
python3-pexpect,
python3-pytest,
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
...
...
debian/patches/no_pkg_resources.patch
0 → 100644
View file @
9f62bf07
From: Piotr Ożarowski <piotr@debian.org>
Date: Wed, 16 Jan 2019 10:34:07 +0100
Origin: https://lists.debian.org/debian-python/2019/01/msg00060.html
Description: Do not use pkg_resources to avoid build failure
kg_resources.DistributionNotFound: The 'easydev' distribution was not found and is required by the application
--- a/easydev/__init__.py
+++ b/easydev/__init__.py
@@ -20,15 +20,6 @@
from __future__ import print_function
__version__ = "0.9.36"
-try:
- import pkg_resources
-except ImportError as err:
- print(err)
- print("version set to {} manually.".format(__version__))
- version = __version__
-else:
- version = pkg_resources.require("easydev")[0].version
- __version__ = version
from . import browser
from .browser import browse as onweb
debian/patches/series
View file @
9f62bf07
external-appdirs.patch
privacy.patch
no_pkg_resources.patch