File: 2to3.patch

package info (click to toggle)
pokrok 0.2.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: python: 1,940; makefile: 51
file content (19 lines) | stat: -rw-r--r-- 589 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Author: Steffen Möller
Last-Update: 2021-01-26 18:22:43 +0100
Description: Use python3

Index: pokrok-0.2.0/Makefile
===================================================================
--- pokrok-0.2.0.orig/Makefile
+++ pokrok-0.2.0/Makefile
@@ -5,8 +5,8 @@ module = pokrok
 repo = jdidion/$(module)
 desc = Release $(version)
 
-BUILD = python setup.py build_ext -i && python setup.py install $(installargs)
-TEST = py.test $(pytestops) $(tests)
+BUILD = python3 setup.py build_ext -i && python3 setup.py install $(installargs)
+TEST = py.test-3 $(pytestops) $(tests)
 
 all:
 	$(BUILD)