From c9cd192ce68ff4a52d5f4b6d2955d525fda7ac355a2fbb1e5d9eed0f090526fb Mon Sep 17 00:00:00 2001 From: Jan Matejek Date: Tue, 16 May 2017 13:57:45 +0000 Subject: [PATCH] Accepting request 491036 from home:sebix:branches:devel:languages:python OBS-URL: https://build.opensuse.org/request/show/491036 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imbox?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++++++ .gitignore | 1 + imbox-0.8.5.tar.gz | 3 +++ python-imbox.changes | 11 +++++++++ python-imbox.spec | 56 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 94 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 imbox-0.8.5.tar.gz create mode 100644 python-imbox.changes create mode 100644 python-imbox.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/imbox-0.8.5.tar.gz b/imbox-0.8.5.tar.gz new file mode 100644 index 0000000..1be8d60 --- /dev/null +++ b/imbox-0.8.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24290f93603c63f5f837ee817a1d17449ed43bdab14e12627c4278bfd69a9e16 +size 7112 diff --git a/python-imbox.changes b/python-imbox.changes new file mode 100644 index 0000000..9df745e --- /dev/null +++ b/python-imbox.changes @@ -0,0 +1,11 @@ +------------------------------------------------------------------- +Wed Apr 12 20:01:19 UTC 2017 - sebix+novell.com@sebix.at + +- convert to singlespec + +------------------------------------------------------------------- +Sat Jul 30 16:15:01 UTC 2016 - sebix+novell.com@sebix.at + +- Changes in 0.8.5 (9 June 2016) + ssl_context: Check SSLContext for IMAP4_SSL connections (issue #69) + diff --git a/python-imbox.spec b/python-imbox.spec new file mode 100644 index 0000000..1638560 --- /dev/null +++ b/python-imbox.spec @@ -0,0 +1,56 @@ +# +# spec file for package python-imbox +# +# 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-%{**}} +%bcond_without test +Name: python-imbox +Version: 0.8.5 +Release: 0 +Summary: Python IMAP for Human beings +License: MIT +Group: Development/Languages/Python +Url: https://github.com/martinrusev/imbox +Source: https://files.pythonhosted.org/packages/source/i/imbox/imbox-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module six} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-six +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%{python_subpackages} + +%description +Python library for reading IMAP mailboxes and converting email content to machine readable data + +%prep +%setup -q -n imbox-%{version} + +%build +%{python_build} + +%install +%{python_install} +%fdupes %{buildroot} + +%files %{python_files} +%defattr(-,root,root,-) +%doc README.md LICENSE +%{python_sitelib}/* + +%changelog