commit 509a813f83a0b3fb7b64bfb827b11a2daee9202a77eb9efb97ffc2b69ee01b2e Author: Thomas Bechtold Date: Mon Jul 17 05:08:05 2017 +0000 Accepting request 510410 from home:alois:branches:devel:languages:python OBS-URL: https://build.opensuse.org/request/show/510410 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-plaster?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..37a8eaa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,24 @@ +*.changes merge=merge-changes +*.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 +*.tar 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..8b731c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.obscpio +*.osc +_build.* +.pbuild diff --git a/plaster-0.5.tar.gz b/plaster-0.5.tar.gz new file mode 100644 index 0000000..a14beed --- /dev/null +++ b/plaster-0.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a028938dcbf41033c5d377363781b2528151b0159201587c41e7a4c74bc887c +size 29600 diff --git a/python-plaster.changes b/python-plaster.changes new file mode 100644 index 0000000..5c92a71 --- /dev/null +++ b/python-plaster.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Jul 14 18:11:11 UTC 2017 - aloisio@gmx.com + +- Initial package (0.5) diff --git a/python-plaster.spec b/python-plaster.spec new file mode 100644 index 0000000..504e6e3 --- /dev/null +++ b/python-plaster.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-plaster +# +# Copyright (c) 2017 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-plaster +Version: 0.5 +Release: 0 +Summary: A loader interface around multiple config file formats +License: MIT +Group: Development/Languages/Python +Url: http://docs.pylonsproject.org/projects/plaster/en/latest +Source0: https://files.pythonhosted.org/packages/source/p/plaster/plaster-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +%python_subpackages + +%description +Plaster is a loader interface around multiple config file formats. +It exists to define a common API for applications to use when they +wish to load a configuration. The library itself does not aim to +handle anything except a basic API that applications may use to find +and load configuration settings. Any specific constraints should be +implemented in a pluggable loader which can be registered via an +entrypoint. + +%prep +%setup -q -n plaster-%{version} +rm -rf src/plaster.egg-info + +%build +%python_build + +%install +%python_install +%python_expand %fdupes -s %{buildroot}%{$python_sitelib} + +%files %{python_files} +%defattr(-,root,root,-) +%doc +%{python_sitelib}/* + +%changelog