[iapws] 06/16: - setup.py patch removed. * Standards-Version: 3.9.8
Alastair McKinstry
mckinstry at moszumanska.debian.org
Thu Apr 20 10:51:08 UTC 2017
This is an automated email from the git hooks/post-receive script.
mckinstry pushed a commit to branch debian/master
in repository iapws.
commit 034d082ce2c74c81e97e2a24771bcff2622c998e
Author: Alastair McKinstry <mckinstry at debian.org>
Date: Thu Jun 2 11:31:12 2016 +0100
- setup.py patch removed.
* Standards-Version: 3.9.8
---
debian/changelog | 5 +++--
debian/patches/series | 1 -
debian/patches/setup-utf8.patch | 22 ----------------------
3 files changed, 3 insertions(+), 25 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 25ae15d..162d237 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,8 @@
-iapws (1.1.2-1) UNRELEASED; urgency=medium
+iapws (1.1.2-1) unstable; urgency=medium
* New upstream release
- * Standards-VersioN: 3.9.8
+ - setup.py patch removed.
+ * Standards-Version: 3.9.8
-- Alastair McKinstry <mckinstry at debian.org> Thu, 02 Jun 2016 11:17:18 +0100
diff --git a/debian/patches/series b/debian/patches/series
index 73d744b..9b223ef 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
# python3.patch
-setup-utf8.patch
diff --git a/debian/patches/setup-utf8.patch b/debian/patches/setup-utf8.patch
deleted file mode 100644
index cca8317..0000000
--- a/debian/patches/setup-utf8.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: iapws-1.1/setup.py
-===================================================================
---- iapws-1.1.orig/setup.py
-+++ iapws-1.1/setup.py
-@@ -1,10 +1,13 @@
- from setuptools import setup
--
-+import sys
- from iapws import __version__
-
--
--with open('README.rst') as file:
-- long_description = file.read()
-+if sys.version_info[0] < 3:
-+ with open('README.rst') as file:
-+ long_description = file.read()
-+else:
-+ with open('README.rst', encoding='utf8') as file:
-+ long_description = file.read()
-
- setup(
- name='iapws',
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/iapws.git
More information about the debian-science-commits
mailing list