From 66c71cdfd0562b9062ee6ce3f2ad8b95ff9042622ae90a74ea9255f87f8b7408 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 1 Feb 2017 08:50:49 +0000 Subject: [PATCH] Accepting request 445813 from devel:languages:python - Include in SLE 12 (fate#322171, bsc#1014478) OBS-URL: https://build.opensuse.org/request/show/445813 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-msrest?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++ .gitignore | 1 + msrest-0.4.4.tar.gz | 3 +++ python-msrest.changes | 10 ++++++++ python-msrest.spec | 57 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 94 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 msrest-0.4.4.tar.gz create mode 100644 python-msrest.changes create mode 100644 python-msrest.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/msrest-0.4.4.tar.gz b/msrest-0.4.4.tar.gz new file mode 100644 index 0000000..d7bb6bd --- /dev/null +++ b/msrest-0.4.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9866b4cf4abfea4ab00b7ef24125d7797eb99bf66351062103f9fdd5976e1950 +size 23044 diff --git a/python-msrest.changes b/python-msrest.changes new file mode 100644 index 0000000..69f42f9 --- /dev/null +++ b/python-msrest.changes @@ -0,0 +1,10 @@ +------------------------------------------------------------------- +Mon Dec 12 15:32:12 UTC 2016 - ms@suse.com + +- Include in SLE 12 (fate#322171, bsc#1014478) + +------------------------------------------------------------------- +Mon Dec 12 15:30:26 UTC 2016 - ms@suse.com + +- Initial build + + Version 0.4.4 diff --git a/python-msrest.spec b/python-msrest.spec new file mode 100644 index 0000000..37c2ec7 --- /dev/null +++ b/python-msrest.spec @@ -0,0 +1,57 @@ +# +# spec file for package python-msrest +# +# Copyright (c) 2016 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/ +# +Name: python-msrest +Version: 0.4.4 +Release: 0 +Summary: AutoRest swagger generator Python client runtime +License: MIT +Group: Development/Languages/Python +Url: https://pypi.python.org/pypi/msrest +Source: msrest-%{version}.tar.gz +BuildRequires: fdupes +BuildRequires: python-devel +BuildRequires: python-setuptools +Requires: python-requests >= 2.7.0 +Requires: python-keyring >= 5.6 +Requires: python-requests-oauthlib >= 0.5.0 +Requires: python-isodate >= 0.5.4 +Requires: python-certifi >= 2015.9.6.2 +Requires: python-chardet >= 2.3.0 +Requires: python-enum34 >= 1.0.4 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch + +%description +AutoRest swagger generator Python client runtime +Swagger is a powerful open source framework: http://swagger.io + +%prep +%setup -q -n msrest-%{version} + +%build +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%fdupes %{buildroot}/%{python_sitelib}/* + +%files +%defattr(-,root,root,-) +%{python_sitelib}/* + +%changelog