commit dd5f4ff52bbcf6cd0c5c26c3fd4415506808dd03362bacdcf4fdf8287fb6e934 Author: Thomas Bechtold Date: Tue Feb 13 15:27:36 2018 +0000 - Initial packaging (version 1.0.11) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jira?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/jira-1.0.11.tar.gz b/jira-1.0.11.tar.gz new file mode 100644 index 0000000..6c8fb40 --- /dev/null +++ b/jira-1.0.11.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9e92779ad90daa09285f9f5172b5443042777a19f74146f10b99d1a7992c66 +size 152040 diff --git a/python-jira.changes b/python-jira.changes new file mode 100644 index 0000000..024f104 --- /dev/null +++ b/python-jira.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Feb 13 15:19:31 UTC 2018 - tbechtold@suse.com + +- Initial packaging (version 1.0.11) diff --git a/python-jira.spec b/python-jira.spec new file mode 100644 index 0000000..0b8af14 --- /dev/null +++ b/python-jira.spec @@ -0,0 +1,64 @@ +# +# spec file for package python-jira +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-jira +Version: 1.0.11 +Release: 0 +Summary: Python library for interacting with JIRA via REST APIs +License: BSD-3-Clause +Group: Development/Languages/Python +Url: https://github.com/pycontribs/jira +Source: https://files.pythonhosted.org/packages/source/j/jira/jira-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module pbr >= 3.0.0} +BuildRequires: %{python_module pytest-runner} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-defusedxml +Requires: python-requests >= 2.10.0 +Requires: python-requests-oauthlib >= 0.6.1 +Requires: python-requests-toolbelt +Requires: python-setuptools >= 20.10.1 +Requires: python-six >= 1.10.0 +BuildArch: noarch + +%python_subpackages + +%description +This library eases the use of the JIRA REST API from Python. + +%prep +%setup -q -n jira-%{version} + +%build +export LANG=en_US.UTF-8 +%python_build + +%install +export LANG=en_US.UTF-8 +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc AUTHORS AUTHORS.rst ChangeLog LICENSE README.rst +%python3_only %{_bindir}/jirashell +%{python_sitelib}/* + +%changelog