summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2021-09-18 17:00:51 +0100
committerJelmer Vernooij <jelmer@jelmer.uk>2021-09-18 17:00:51 +0100
commit4d76175eff9898bca4df3896f7362dc97e80df16 (patch)
treea2ddeca845b6872332c311b50899b706ab3447c1
parent0b86ad611d5a568500b64d048a8a9ed71873fbf0 (diff)
downloadpython-fastimport-git-4d76175eff9898bca4df3896f7362dc97e80df16.tar.gz
Drop pypy support.
-rw-r--r--debian/changelog2
-rw-r--r--debian/control13
-rwxr-xr-xdebian/rules19
3 files changed, 3 insertions, 31 deletions
diff --git a/debian/changelog b/debian/changelog
index d903a85..8e00d1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
python-fastimport (0.9.14-1) UNRELEASED; urgency=medium
- * Drop pypy support, add pypy3 package.
+ * Drop pypy support.
* Update fields Vcs-Browser, Vcs-Git for maintainer Debian Python Modules
Team.
* Update maintainer email for merge of DPMT and PAPT.
diff --git a/debian/control b/debian/control
index 98b4ba9..f7b7b20 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Jelmer Vernooij <jelmer@debian.org>
Homepage: https://github.com/jelmer/python-fastimport
-Build-Depends: python3-all, pypy3, dh-python, debhelper-compat (= 12)
+Build-Depends: python3-all, dh-python, debhelper-compat (= 12)
Standards-Version: 4.5.0
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/python-team/packages/python-fastimport.git
@@ -20,14 +20,3 @@ Description: Fastimport file format parser and generator library
The fastimport format is used for serializing version control histories.
.
This package contains the module built for Python version 3.x.
-
-Package: pypy3-fastimport
-Architecture: all
-Provides: ${pypy3:Provides}
-Depends: ${pypy3:Depends}, ${misc:Depends}
-Suggests: git-core
-Description: Fastimport file format parser and generator library
- Python library for parsing and generating the fastimport file format.
- The fastimport format is used for serializing version control histories.
- .
- This package contains the module built for pypy3.
diff --git a/debian/rules b/debian/rules
index 5621eae..85e3365 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,26 +1,9 @@
#!/usr/bin/make -f
%:
- dh $* --with python3,pypy3 --buildsystem=pybuild
-
-override_dh_auto_build:
- dh_auto_build --buildsystem=pybuild
- pypy3 setup.py build --debug
-
-override_dh_auto_install:
- dh_auto_install
- set -ex; for python in $(shell py3versions -r); do \
- $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \
- done;
- pypy3 setup.py install --root debian/tmp --install-layout deb
- rm -rf debian/tmp/usr/lib/pypy3/bin
- # Install the python23files to python3-fastimport
- dh_install "debian/tmp/usr/lib/python3*/*-packages" -p python3-fastimport
- # Install the pypy3 files to pypy3-fastimport
- dh_install "debian/tmp/usr/lib/pypy3/" -p pypy3-fastimport
+ dh $* --with python3 --buildsystem=pybuild
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
PYTHONPATH=. python3 -m unittest fastimport.tests.test_suite
- PYTHONPATH=. pypy3 -m unittest fastimport.tests.test_suite
endif