[Python-apps-commits] r12833 - in packages/s3ql/trunk/debian (6 files)
nikratio-guest at users.alioth.debian.org
nikratio-guest at users.alioth.debian.org
Tue Feb 23 23:59:15 UTC 2016
Date: Tuesday, February 23, 2016 @ 23:59:12
Author: nikratio-guest
Revision: 12833
New upstream release.
Modified:
packages/s3ql/trunk/debian/changelog
packages/s3ql/trunk/debian/control
packages/s3ql/trunk/debian/patches/clock-granularity.diff
packages/s3ql/trunk/debian/patches/series
packages/s3ql/trunk/debian/patches/support_jessie_upgrade.diff
packages/s3ql/trunk/debian/patches/use_cython3.diff
Modified: packages/s3ql/trunk/debian/changelog
===================================================================
--- packages/s3ql/trunk/debian/changelog 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/changelog 2016-02-23 23:59:12 UTC (rev 12833)
@@ -1,8 +1,9 @@
-s3ql (2.15+dfsg-2) UNRELEASED; urgency=medium
+s3ql (2.16+dfsg-1) UNRELEASED; urgency=medium
* Added dependency on python3-systemd.
+ * New upstream release.
- -- Nikolaus Rath <Nikolaus at rath.org> Mon, 21 Dec 2015 19:55:53 -0800
+ -- Nikolaus Rath <Nikolaus at rath.org> Tue, 23 Feb 2016 15:44:51 -0800
s3ql (2.15+dfsg-1) unstable; urgency=medium
Modified: packages/s3ql/trunk/debian/control
===================================================================
--- packages/s3ql/trunk/debian/control 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/control 2016-02-23 23:59:12 UTC (rev 12833)
@@ -11,7 +11,7 @@
python3-setuptools (>= 0.6.14),
python3-apsw (>= 3.7.0),
python3-sphinx (>= 1.2),
- python3-llfuse (>= 0.39),
+ python3-llfuse (>= 0.43), python3-llfuse (<< 1.0),
python3-llfuse-dbg (>= 0.39),
python3-crypto,
python3-requests,
Modified: packages/s3ql/trunk/debian/patches/clock-granularity.diff
===================================================================
--- packages/s3ql/trunk/debian/patches/clock-granularity.diff 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/patches/clock-granularity.diff 2016-02-23 23:59:12 UTC (rev 12833)
@@ -13,12 +13,12 @@
--- a/tests/common.py
+++ b/tests/common.py
-@@ -26,7 +26,7 @@
- stamp2 = stamp1
- while stamp1 == stamp2:
- stamp2 = time.time()
-- return 2 * (stamp2 - stamp1)
-+ return max(1, 10 * (stamp2 - stamp1))
+@@ -31,7 +31,7 @@
+ stamp2 = time.time()
+ resolution = min(resolution, stamp2 - stamp1)
+ time.sleep(0.01)
+- return resolution
++ return max(1, 10 * resolution)
CLOCK_GRANULARITY = get_clock_granularity()
- def safe_sleep(secs):
+ # When testing, we want to make sure that we don't sleep for too short a time
Modified: packages/s3ql/trunk/debian/patches/series
===================================================================
--- packages/s3ql/trunk/debian/patches/series 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/patches/series 2016-02-23 23:59:12 UTC (rev 12833)
@@ -2,4 +2,3 @@
clock-granularity.diff
support_jessie_upgrade.diff
ignore_cython_warnings.diff
-use_cython3.diff
Modified: packages/s3ql/trunk/debian/patches/support_jessie_upgrade.diff
===================================================================
--- packages/s3ql/trunk/debian/patches/support_jessie_upgrade.diff 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/patches/support_jessie_upgrade.diff 2016-02-23 23:59:12 UTC (rev 12833)
@@ -715,7 +715,7 @@
C_DAY_NAMES = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
C_MONTH_NAMES = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
-@@ -712,7 +715,31 @@
+@@ -735,7 +738,31 @@
format_ = resp.headers.get('%smeta-format' % self.hdr_prefix, 'raw')
if format_ != 'raw2': # Current
Modified: packages/s3ql/trunk/debian/patches/use_cython3.diff
===================================================================
--- packages/s3ql/trunk/debian/patches/use_cython3.diff 2016-02-23 16:06:22 UTC (rev 12832)
+++ packages/s3ql/trunk/debian/patches/use_cython3.diff 2016-02-23 23:59:12 UTC (rev 12833)
@@ -8,23 +8,3 @@
pulling in the complete Python 2.x runtime environment for python-cython,
we use 'cython3' instead.
---- a/setup.py
-+++ b/setup.py
-@@ -201,7 +201,7 @@
-
- def run(self):
- try:
-- version = subprocess.check_output(['cython', '--version'],
-+ version = subprocess.check_output(['cython3', '--version'],
- universal_newlines=True, stderr=subprocess.STDOUT)
- except FileNotFoundError:
- raise SystemExit('Cython needs to be installed for this command') from None
-@@ -210,7 +210,7 @@
- if not hit or LooseVersion(hit.group(1)) < "0.17":
- raise SystemExit('Need Cython 0.17 or newer, found ' + version)
-
-- cmd = ['cython', '-Wextra', '-f', '-3',
-+ cmd = ['cython3', '-Wextra', '-f', '-3',
- '-X', 'embedsignature=True' ]
- if DEVELOPER_MODE:
- cmd.append('-Werror')
More information about the Python-apps-commits
mailing list