commit 2629df8ef6fd7e84a4ab1eb658cdc24f2cc842c1696a9bc29950f30c233a287f Author: Tomáš Chvátal Date: Mon Sep 16 08:31:59 2019 +0000 Accepting request 731191 from home:jayvdb:devpi - Use Source http://dalkescientific.com/Python/PyRSS2Gen-1.1.tar.gz which includes license and tests - Activate test suite, ignoring and showing failures - Tidy spec and add %license OBS-URL: https://build.opensuse.org/request/show/731191 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyRSS2Gen?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/PyRSS2Gen-1.1.tar.gz b/PyRSS2Gen-1.1.tar.gz new file mode 100644 index 0000000..092d102 --- /dev/null +++ b/PyRSS2Gen-1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a9a3ee7c8e30cb40434ef3a295f9a60166f7d8c3eaefac9f46f7ed4b27c2269 +size 9149 diff --git a/python-PyRSS2Gen.changes b/python-PyRSS2Gen.changes new file mode 100644 index 0000000..38c1904 --- /dev/null +++ b/python-PyRSS2Gen.changes @@ -0,0 +1,28 @@ +------------------------------------------------------------------- +Fri Sep 13 05:03:08 UTC 2019 - John Vandenberg + +- Use Source http://dalkescientific.com/Python/PyRSS2Gen-1.1.tar.gz + which includes license and tests +- Activate test suite, ignoring and showing failures +- Tidy spec and add %license + +------------------------------------------------------------------- +Wed Feb 20 15:16:15 UTC 2019 - Hans-Peter Jansen + +- Apply Python single-spec + +------------------------------------------------------------------- +Mon Oct 28 09:45:47 UTC 2013 - speilicke@suse.com + +- Properly provide/obsolete python-pyrss2gen, Release: won't help + +------------------------------------------------------------------- +Tue Apr 2 11:45:08 UTC 2013 - boris@steki.net + +- updated package to latest upstream 1.1 + * Ported to Python 3.x. + +------------------------------------------------------------------- +Sat Feb 17 00:00:00 UTC 2007 - jfunk@funktronics.ca + +- Initial release diff --git a/python-PyRSS2Gen.spec b/python-PyRSS2Gen.spec new file mode 100644 index 0000000..5592852 --- /dev/null +++ b/python-PyRSS2Gen.spec @@ -0,0 +1,61 @@ +# +# spec file for package python-PyRSS2Gen +# +# Copyright (c) 2019 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 oldpython python +Name: python-PyRSS2Gen +Version: 1.1 +Release: 0 +License: BSD-3-Clause +Summary: Generate RSS2 using a Python data structure +Url: http://dalkescientific.com/Python/PyRSS2Gen.html +Group: Development/Languages/Python +Source: http://dalkescientific.com/Python/PyRSS2Gen-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module feedparser} +BuildRequires: fdupes +BuildArch: noarch +Provides: %oldpython-pyrss2gen = 1.1 +#NOTE(saschpe): Change back to "<" after next version update: +Obsoletes: %oldpython-pyrss2gen <= 1.1 + +%python_subpackages + +%description +A Python library for generating RSS 2.0 feeds. + +%prep +%setup -q -n PyRSS2Gen-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +# Test fails on Python 2, and there is a feedparser error on Python 3 +%python_exec test.py ||: + +%files %{python_files} +%doc README +%license LICENSE +%{python_sitelib}/* + +%changelog