From 90ce0969958a9f8628ad9c756787b977a4222d0424f6a85e7427274b4bf015e2 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 19 Aug 2022 17:38:03 +0000 Subject: [PATCH] Accepting request 998187 from home:yarunachalam:branches:devel:languages:python - Removed python-PyCondor-collections.abc-Iterable.patch. Already applied upstream - update to 0.6.0 * Bug fix release to get development started again. New Features: * No new features added Changes: * Transition to pycondor namespace (See :pr:`149`) Improvements to testing and infrastructure (See :pr:`135`, :pr:`148`, :pr:`149`, :pr:`141`, and :pr:`152`) Use sphinx extlinks in the changelog (See :pr:`130`) Bug Fixes: * Fix counting of unready jobs in monitor (See :pr:`138`) * Updates to the logging setup (See :pr:`129`) * Fix issue in python 3.8 (See :pr:`140`) Documentation: * Migrate documentation to readthedocs (See :pr:`150`) OBS-URL: https://build.opensuse.org/request/show/998187 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyCondor?expand=0&rev=4 --- PyCondor-0.5.0.tar.gz | 3 --- PyCondor-0.6.0.tar.gz | 3 +++ ...on-PyCondor-collections.abc-Iterable.patch | 27 ------------------- python-PyCondor.changes | 24 +++++++++++++++++ python-PyCondor.spec | 5 +--- 5 files changed, 28 insertions(+), 34 deletions(-) delete mode 100644 PyCondor-0.5.0.tar.gz create mode 100644 PyCondor-0.6.0.tar.gz delete mode 100644 python-PyCondor-collections.abc-Iterable.patch diff --git a/PyCondor-0.5.0.tar.gz b/PyCondor-0.5.0.tar.gz deleted file mode 100644 index f081b06..0000000 --- a/PyCondor-0.5.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cf8b54159fe3a654d71ffc815840c642f3bd0c89edb401952d6b9092abf0cc2 -size 28231 diff --git a/PyCondor-0.6.0.tar.gz b/PyCondor-0.6.0.tar.gz new file mode 100644 index 0000000..8bc61a5 --- /dev/null +++ b/PyCondor-0.6.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3424b8f51ac63a18d3c12e1dae5316a5faa0c1dd1606bb6c1f524df5c031fcb5 +size 30252 diff --git a/python-PyCondor-collections.abc-Iterable.patch b/python-PyCondor-collections.abc-Iterable.patch deleted file mode 100644 index 12fb370..0000000 --- a/python-PyCondor-collections.abc-Iterable.patch +++ /dev/null @@ -1,27 +0,0 @@ -From b41b17546c898d5cc2368b92fda86473c605e923 Mon Sep 17 00:00:00 2001 -From: Duncan Macleod -Date: Thu, 18 Apr 2019 16:06:08 +0100 -Subject: [PATCH] updated import for python3.8 (#140) - ---- - pycondor/job.py | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/pycondor/job.py b/pycondor/job.py -index ef6f1bf..47762b6 100644 ---- a/pycondor/job.py -+++ b/pycondor/job.py -@@ -1,7 +1,11 @@ - - import os - import subprocess --from collections import namedtuple, Iterable -+from collections import namedtuple -+try: -+ from collections.abc import Iterable -+except ImportError: # python < 3.3 -+ from collections import Iterable - - from .utils import (checkdir, string_rep, requires_command, - split_command_string, decode_string) - diff --git a/python-PyCondor.changes b/python-PyCondor.changes index 1813fa1..59cde42 100644 --- a/python-PyCondor.changes +++ b/python-PyCondor.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Fri Aug 19 14:03:26 UTC 2022 - Yogalakshmi Arunachalam + +- Removed python-PyCondor-collections.abc-Iterable.patch. + Already applied upstream + +------------------------------------------------------------------- +Wed Aug 17 22:59:08 UTC 2022 - Yogalakshmi Arunachalam + +- update to 0.6.0 + * Bug fix release to get development started again. + New Features: + * No new features added + Changes: + * Transition to pycondor namespace (See :pr:`149`) + Improvements to testing and infrastructure (See :pr:`135`, :pr:`148`, :pr:`149`, :pr:`141`, and :pr:`152`) + Use sphinx extlinks in the changelog (See :pr:`130`) + Bug Fixes: + * Fix counting of unready jobs in monitor (See :pr:`138`) + * Updates to the logging setup (See :pr:`129`) + * Fix issue in python 3.8 (See :pr:`140`) + Documentation: + * Migrate documentation to readthedocs (See :pr:`150`) + ------------------------------------------------------------------- Wed Jan 26 10:22:01 UTC 2022 - pgajdos@suse.com diff --git a/python-PyCondor.spec b/python-PyCondor.spec index 58961a9..0b4bd3c 100644 --- a/python-PyCondor.spec +++ b/python-PyCondor.spec @@ -18,14 +18,12 @@ %global modname PyCondor Name: python-PyCondor -Version: 0.5.0 +Version: 0.6.0 Release: 0 Summary: Python utility for HTCondor License: MIT URL: https://github.com/jrbourbeau/pycondor Source: https://files.pythonhosted.org/packages/source/P/PyCondor/PyCondor-%{version}.tar.gz -# https://github.com/jrbourbeau/pycondor/commit/b41b17546c898d5cc2368b92fda86473c605e923 -Patch0: python-PyCondor-collections.abc-Iterable.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes @@ -44,7 +42,6 @@ PyCondor (Python HTCondor) is a tool to help build and submit workflows to HTCon %prep %setup -q -n PyCondor-%{version} -%patch0 -p1 sed -Ei "1{/^#!\/usr\/bin\/env python/d}" pycondor/tests/example_script.py %build