From 8ea69f89176e23fe576450f3fd972cc4bea65fb6 Mon Sep 17 00:00:00 2001 From: James Hogarth Date: Nov 24 2015 23:59:18 +0000 Subject: Initial import (#1279191) --- diff --git a/.gitignore b/.gitignore index e69de29..367e24f 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/pyRFC3339-1.0.tar.gz diff --git a/python-pyrfc3339.spec b/python-pyrfc3339.spec new file mode 100644 index 0000000..1e83d62 --- /dev/null +++ b/python-pyrfc3339.spec @@ -0,0 +1,82 @@ +%global srcname pyRFC3339 + +Name: python-pyrfc3339 +Version: 1.0 +Release: 1%{?dist} +Summary: Generate and parse RFC 3339 timestamps + +License: MIT +URL: https://pypi.python.org/pypi/pyRFC3339 +Source0: https://pypi.python.org/packages/source/p/pyRFC3339/pyRFC3339-%{version}.tar.gz + +BuildArch: noarch +BuildRequires: python2-devel +# --- unit tests --- +BuildRequires: python-nose +BuildRequires: pytz + +BuildRequires: python3-devel +# --- unit tests --- +BuildRequires: python3-nose +BuildRequires: python3-pytz + +%description +This package contains a python library to parse and generate +RFC 3339-compliant timestamps using Python datetime.datetime objects. + +%package -n python2-pyrfc3339 +Summary: %{summary} +%{?python_provide:%python_provide python2-pyrfc3339} + +%description -n python2-pyrfc3339 +This package contains a Python 2 library to parse and generate +RFC 3339-compliant timestamps using Python datetime.datetime objects. + +%package -n python3-pyrfc3339 +Summary: Generate and parse RFC 3339 timestamps +%{?python_provide:%python_provide python3-pyrfc3339} + +%description -n python3-pyrfc3339 +This package contains a Python 3 library to parse and generate +RFC 3339-compliant timestamps using Python datetime.datetime objects. + + + +%prep +%autosetup -n %{srcname}-%{version} + +%build +%py2_build +%py3_build + +%install +%py2_install +%py3_install + +%check +%{__python2} setup.py test +%{__python3} setup.py test + + +%files -n python2-pyrfc3339 +%doc README.rst +%license LICENSE.txt +%{python2_sitelib}/pyrfc3339 +%{python2_sitelib}/%{srcname}-%{version}-*.egg-info + +%files -n python3-pyrfc3339 +%doc README.rst +%license LICENSE.txt +%{python3_sitelib}/pyrfc3339 +%{python3_sitelib}/%{srcname}-%{version}-*.egg-info + + +%changelog +* Tue Nov 10 2015 James Hogarth - 1.0-1 +- Add installed tests back as per review +- Update to new 1.0 PyPi release +- Add external license file +* Sun Nov 08 2015 James Hogarth - 0.2-2 +- Update to follow the python guidelines +* Wed Oct 28 2015 Felix Schwarz - 0.2-1 +- initial packaging diff --git a/sources b/sources index e69de29..d5a585d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +0f7edd7ffd756a582eeef9282fecb60d pyRFC3339-1.0.tar.gz