From 7b2db477858acccbcb5a930b321d2b3c93c40f74e9d94f2a4c4486241259c362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 16 Apr 2020 09:06:08 +0000 Subject: [PATCH] Accepting request 794472 from home:glaubitz:branches:devel:languages:python - Initial build + Version 1.0.7 OBS-URL: https://build.opensuse.org/request/show/794472 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blurb?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++ .gitignore | 1 + blurb-1.0.7.tar.gz | 3 +++ python-blurb.changes | 5 ++++ python-blurb.spec | 59 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 91 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 blurb-1.0.7.tar.gz create mode 100644 python-blurb.changes create mode 100644 python-blurb.spec 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/blurb-1.0.7.tar.gz b/blurb-1.0.7.tar.gz new file mode 100644 index 0000000..fb27176 --- /dev/null +++ b/blurb-1.0.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1849eb2c9ceb74928d24eab847d344a8602e8ee822aeba2e930c4e6c7543e9e4 +size 21248 diff --git a/python-blurb.changes b/python-blurb.changes new file mode 100644 index 0000000..b760afa --- /dev/null +++ b/python-blurb.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Thu Apr 16 07:39:12 UTC 2020 - John Paul Adrian Glaubitz + +- Initial build + + Version 1.0.7 diff --git a/python-blurb.spec b/python-blurb.spec new file mode 100644 index 0000000..612d98f --- /dev/null +++ b/python-blurb.spec @@ -0,0 +1,59 @@ +# +# spec file for package python-blurb +# +# Copyright (c) 2020 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-%{**}} +%define skip_python2 1 +Name: python-blurb +Version: 1.0.7 +Release: 0 +License: BSD-3-Clause +Summary: Command-line tool to manage CPython Misc/NEWS.d entries +Url: https://github.com/python/core-workflow/tree/master/blurb +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/b/blurb/blurb-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module base >= 3.5} +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildArch: noarch + +%python_subpackages + +%description +Command-line tool to manage CPython Misc/NEWS.d entries. + +%prep +%setup -q -n blurb-%{version} + +%build +%python_build + +# Testsuite doesn't work +#%%check +#%%python_exec setup.py test + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc README.rst +%license LICENSE.txt +%{python_sitelib}/* + +%changelog