commit 6897a01d7ee42b9f841026a26fbfb3d20b9b47e42cebe5fbd402647b1c0d51a5 Author: Tomáš Chvátal Date: Mon Feb 25 12:43:49 2019 +0000 osc copypac from project:devel:languages:python:misc package:python-itypes revision:1 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-itypes?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/itypes-1.1.0.tar.gz b/itypes-1.1.0.tar.gz new file mode 100644 index 0000000..388728f --- /dev/null +++ b/itypes-1.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e77bb9fd68a4bfeb9d958fea421802282451a25bac4913ec94db82a899c073 +size 2188 diff --git a/python-itypes.changes b/python-itypes.changes new file mode 100644 index 0000000..554ccd5 --- /dev/null +++ b/python-itypes.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sat May 20 13:16:08 UTC 2017 - matwey.kornilov@gmail.com + +- Initial version + diff --git a/python-itypes.spec b/python-itypes.spec new file mode 100644 index 0000000..f910e01 --- /dev/null +++ b/python-itypes.spec @@ -0,0 +1,61 @@ +# +# spec file for package python-itypes +# +# 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-itypes +Version: 1.1.0 +Release: 0 +Summary: Basic immutable container types for Python +License: BSD-2-Clause +Group: Development/Languages/Python +Url: https://pypi.python.org/pypi/itypes/1.1.0 +Source: https://files.pythonhosted.org/packages/source/i/itypes/itypes-%{version}.tar.gz +BuildRequires: %{python_module base} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +%python_subpackages + +%description +Basic immutable container types for Python. + +A simple implementation that's designed for simplicity over performance. + +Use these in circumstances where it may result in more comprehensible code, or +when you want to create custom types with restricted, immutable interfaces. + +%prep +%setup -q -n itypes-%{version} + +%build +%python_build + +%install +%python_install + +%fdupes %{buildroot}%{_prefix} + +%files %{python_files} +%defattr(-,root,root) +%{python_sitelib}/itypes.py* +%{python_sitelib}/itypes-%{version}-py*.egg-info +%pycache_only %{python_sitelib}/__pycache__ + +%changelog