Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pdd for openSUSE:Factory checked in at 2022-12-06 14:23:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pdd (Old) and /work/SRC/openSUSE:Factory/.python-pdd.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pdd" Tue Dec 6 14:23:34 2022 rev:6 rq:1040426 version:1.7 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pdd/python-pdd.changes 2022-10-06 07:42:18.664701596 +0200 +++ /work/SRC/openSUSE:Factory/.python-pdd.new.1835/python-pdd.changes 2022-12-06 14:23:50.381864336 +0100 @@ -1,0 +2,8 @@ +Mon Dec 5 20:23:41 UTC 2022 - Dirk Müller <[email protected]> + +- update to 1.7: + * fix pip install + * document zsh completion script generator usage + * makefile option to install completion scripts + +------------------------------------------------------------------- Old: ---- pdd-1.6.tar.gz New: ---- pdd-1.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pdd.spec ++++++ --- /var/tmp/diff_new_pack.5mcOz2/_old 2022-12-06 14:23:50.833868190 +0100 +++ /var/tmp/diff_new_pack.5mcOz2/_new 2022-12-06 14:23:50.837868223 +0100 @@ -20,7 +20,7 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pdd -Version: 1.6 +Version: 1.7 Release: 0 Summary: Tiny date, time diff calculator with timers License: GPL-3.0-only ++++++ pdd-1.6.tar.gz -> pdd-1.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pdd-1.6/CHANGELOG new/pdd-1.7/CHANGELOG --- old/pdd-1.6/CHANGELOG 2022-08-27 17:46:29.000000000 +0200 +++ new/pdd-1.7/CHANGELOG 2022-12-03 03:43:50.000000000 +0100 @@ -1,3 +1,12 @@ +pdd v1.7 +2022-12-03 + +- fix pip install +- document zsh completion script generator usage +- makefile option to install completion scripts + +------------------------------------------------------------------------------- + pdd v1.6 2022-08-27 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pdd-1.6/PKG-INFO new/pdd-1.7/PKG-INFO --- old/pdd-1.6/PKG-INFO 2022-08-27 18:06:13.093867000 +0200 +++ new/pdd-1.7/PKG-INFO 2022-12-03 03:53:36.256199000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pdd -Version: 1.6 +Version: 1.7 Summary: Tiny date, time diff calculator with timers Home-page: https://github.com/jarun/pdd Author: Arun Prakash Jana diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pdd-1.6/pdd.egg-info/PKG-INFO new/pdd-1.7/pdd.egg-info/PKG-INFO --- old/pdd-1.6/pdd.egg-info/PKG-INFO 2022-08-27 18:06:12.000000000 +0200 +++ new/pdd-1.7/pdd.egg-info/PKG-INFO 2022-12-03 03:53:35.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pdd -Version: 1.6 +Version: 1.7 Summary: Tiny date, time diff calculator with timers Home-page: https://github.com/jarun/pdd Author: Arun Prakash Jana diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pdd-1.6/pdd.py new/pdd-1.7/pdd.py --- old/pdd-1.6/pdd.py 2022-08-27 18:06:12.000000000 +0200 +++ new/pdd-1.7/pdd.py 2022-12-03 03:53:34.000000000 +0100 @@ -39,7 +39,7 @@ monthdict = {name.lower(): num for num, name in enumerate(cal.month_abbr) if num} -_VERSION_ = '1.6' # current program version +_VERSION_ = '1.7' # current program version def is_int(arg): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pdd-1.6/setup.py new/pdd-1.7/setup.py --- old/pdd-1.6/setup.py 2022-07-03 19:18:23.000000000 +0200 +++ new/pdd-1.7/setup.py 2022-11-15 14:22:51.000000000 +0100 @@ -1,12 +1,14 @@ #!/usr/bin/env python3 import re +import os.path import shutil import sys from setuptools import setup, find_packages -shutil.copyfile('pdd', 'pdd.py') +if os.path.isfile('pdd'): + shutil.copyfile('pdd', 'pdd.py') with open('pdd.py', encoding='utf-8') as f: version = re.search('_VERSION_ = \'([^\']+)\'', f.read()).group(1)
