From 659f5379b685d75a6de6bc42e8f70bf9ff695342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 12 Oct 2018 20:24:44 +0200 Subject: d/rules, d/control: Remove trailing whitespaces --- debian/rules | 1 - 1 file changed, 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 60e93ec..3df1e98 100755 --- a/debian/rules +++ b/debian/rules @@ -9,4 +9,3 @@ clean: override_dh_auto_install: dh_auto_install -- --no-version-script --standalone-lib --no-install-man - -- cgit v1.2.3 From 279d864b80870c0e7cb3e0a3dc37e338d15f4be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 12 Oct 2018 21:18:07 +0200 Subject: d/rules, d/control: add python3 support --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 3df1e98..9f5141f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ --with python2 + dh $@ --with python2, python3 clean: rm -fr build -- cgit v1.2.3 From 66487b24e13ab807e9b581977f10dfcce7b20ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 12 Oct 2018 23:50:01 +0200 Subject: d/control: Change VCS-* to point to the new repository --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 9f5141f..d375e94 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ --with python2, python3 + dh $@ --with python2,python3 clean: rm -fr build -- cgit v1.2.3 From bc95f6faea1c4cf8655d2b77397fb2850f5337cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 12 Jul 2019 18:36:53 +0200 Subject: Use pybuild as buildsystem --- debian/rules | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index d375e94..6171813 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,11 @@ #!/usr/bin/make -f %: - dh $@ --with python2,python3 + dh $@ --with python2,python3 --buildsystem=pybuild -clean: - rm -fr build - dh $@ +#clean: +# rm -fr build +# dh $@ -override_dh_auto_install: - dh_auto_install -- --no-version-script --standalone-lib --no-install-man +#override_dh_auto_install: +# dh_auto_install -- --no-version-script --standalone-lib --no-install-man -- cgit v1.2.3 From b8f9f5298ba221af32f7106fe093903aedd76d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 13 Jul 2019 09:26:41 +0200 Subject: some changes for pybuild --- debian/rules | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 6171813..2e449d9 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,6 @@ #!/usr/bin/make -f +export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man + %: dh $@ --with python2,python3 --buildsystem=pybuild - -#clean: -# rm -fr build -# dh $@ - -#override_dh_auto_install: -# dh_auto_install -- --no-version-script --standalone-lib --no-install-man -- cgit v1.2.3 From 6f4176859c7871af6b1f21b2c0651da81993ac8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 13 Jul 2019 10:02:59 +0200 Subject: add --no-install-bat; add ; remove dh-python --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 2e449d9..a6576fe 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man +export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man --no-install-bat %: dh $@ --with python2,python3 --buildsystem=pybuild -- cgit v1.2.3 From ab14b61a609791de18fa6d191ec2971ebe691986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 25 Jul 2019 07:37:35 +0200 Subject: Remove pythone2 support --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index a6576fe..e759c42 100755 --- a/debian/rules +++ b/debian/rules @@ -3,4 +3,4 @@ export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man --no-install-bat %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild -- cgit v1.2.3