commit 1b0db70fc2bcbf53e9a1394480ad981433765d983418ce315e773ddd5d88bca2 Author: Thomas Bechtold Date: Mon Mar 4 19:09:25 2019 +0000 osc copypac from project:devel:languages:python:misc package:python-ntplib revision:2, using expand OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ntplib?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/ntplib-0.3.3.tar.gz b/ntplib-0.3.3.tar.gz new file mode 100644 index 0000000..2d50375 --- /dev/null +++ b/ntplib-0.3.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede +size 6808 diff --git a/python-ntplib.changes b/python-ntplib.changes new file mode 100644 index 0000000..a79075c --- /dev/null +++ b/python-ntplib.changes @@ -0,0 +1,21 @@ +------------------------------------------------------------------- +Mon Aug 28 12:28:27 UTC 2017 - tbechtold@suse.com + +- convert to singlespec + +------------------------------------------------------------------- +Tue Jan 10 10:16:44 UTC 2017 - dmueller@suse.com + +- update to 0.3.3: + * Change to more permissive MIT license + * PEP8 cleanup + +------------------------------------------------------------------- +Thu Dec 5 21:12:50 UTC 2013 - p.drouand@gmail.com + +- Update to version 0.3.1 + + cleanup + + update FSF address +- Specfile cleanup +- ntplib is licensed under the LGPLv3 too + diff --git a/python-ntplib.spec b/python-ntplib.spec new file mode 100644 index 0000000..34aa175 --- /dev/null +++ b/python-ntplib.spec @@ -0,0 +1,58 @@ +# +# spec file for package python-ntplib +# +# 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-%{**}} +%define upstream_name ntplib +Name: python-%{upstream_name} +Version: 0.3.3 +Release: 0 +Summary: Python NTP library +License: MIT +Group: Development/Libraries/Python +Url: http://pypi.python.org/pypi/ntplib +Source0: https://files.pythonhosted.org/packages/source/n/ntplib/ntplib-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: python-rpm-macros +BuildArch: noarch + +%python_subpackages + +%description +This module offers a simple interface to query NTP servers from Python. +It also provides utility functions to translate NTP fields values to text +(mode, leap indicator...). Since it's pure Python, and only depends on core +modules, it should work on any platform with a decent Python implementation. + +%prep +%setup -q -n %{upstream_name}-%{version} + +%build +%python_build + +%install +%python_install + +%files %{python_files} +%defattr(-,root,root,-) +%doc CHANGELOG +%{python_sitelib}/ntplib* +%pycache_only %{python_sitelib}/__pycache__ + +%changelog