summaryrefslogtreecommitdiff
path: root/python-django-ical.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 18:41:18 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 18:41:18 +0000
commit57eb55260558947f1be62252e9b0695d78feb635 (patch)
tree5bdc7f0d2e2df12ebbb04e5f87c03fe21eca2ab9 /python-django-ical.spec
parent3c869a6c7ae691555d18027ad643e48d32e4fef4 (diff)
automatic import of python-django-ical
Diffstat (limited to 'python-django-ical.spec')
-rw-r--r--python-django-ical.spec111
1 files changed, 111 insertions, 0 deletions
diff --git a/python-django-ical.spec b/python-django-ical.spec
new file mode 100644
index 0000000..8d3702d
--- /dev/null
+++ b/python-django-ical.spec
@@ -0,0 +1,111 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-ical
+Version: 1.9.0
+Release: 1
+Summary: iCal feeds for Django based on Django's syndication feed framework.
+License: MIT License
+URL: https://github.com/jazzband/django-ical
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c6/1a/d897ba9340775a860176952388fb3f992f3104411bfa7a211d888b0ce7a6/django-ical-1.9.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-django
+Requires: python3-icalendar
+Requires: python3-django-recurrence
+
+%description
+|pypi| |docs| |build| |coverage| |jazzband|
+django-ical is a simple library/framework for creating
+`iCal <http://www.ietf.org/rfc/rfc2445.txt>`_
+feeds based in Django's
+`syndication feed framework <https://docs.djangoproject.com/en/3.0/ref/contrib/syndication/>`_.
+This documentation is modeled after the documentation for the syndication feed
+framework so you can think of it as a simple extension.
+If you are familiar with the Django syndication feed framework you should be
+able to be able to use django-ical fairly quickly. It works the same way as
+the Django syndication framework but adds a few extension properties to
+support iCalendar feeds.
+django-ical uses the `icalendar <http://pypi.python.org/pypi/icalendar/>`_ library
+under the hood to generate iCalendar feeds.
+
+%package -n python3-django-ical
+Summary: iCal feeds for Django based on Django's syndication feed framework.
+Provides: python-django-ical
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-ical
+|pypi| |docs| |build| |coverage| |jazzband|
+django-ical is a simple library/framework for creating
+`iCal <http://www.ietf.org/rfc/rfc2445.txt>`_
+feeds based in Django's
+`syndication feed framework <https://docs.djangoproject.com/en/3.0/ref/contrib/syndication/>`_.
+This documentation is modeled after the documentation for the syndication feed
+framework so you can think of it as a simple extension.
+If you are familiar with the Django syndication feed framework you should be
+able to be able to use django-ical fairly quickly. It works the same way as
+the Django syndication framework but adds a few extension properties to
+support iCalendar feeds.
+django-ical uses the `icalendar <http://pypi.python.org/pypi/icalendar/>`_ library
+under the hood to generate iCalendar feeds.
+
+%package help
+Summary: Development documents and examples for django-ical
+Provides: python3-django-ical-doc
+%description help
+|pypi| |docs| |build| |coverage| |jazzband|
+django-ical is a simple library/framework for creating
+`iCal <http://www.ietf.org/rfc/rfc2445.txt>`_
+feeds based in Django's
+`syndication feed framework <https://docs.djangoproject.com/en/3.0/ref/contrib/syndication/>`_.
+This documentation is modeled after the documentation for the syndication feed
+framework so you can think of it as a simple extension.
+If you are familiar with the Django syndication feed framework you should be
+able to be able to use django-ical fairly quickly. It works the same way as
+the Django syndication framework but adds a few extension properties to
+support iCalendar feeds.
+django-ical uses the `icalendar <http://pypi.python.org/pypi/icalendar/>`_ library
+under the hood to generate iCalendar feeds.
+
+%prep
+%autosetup -n django-ical-1.9.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-django-ical -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.9.0-1
+- Package Spec generated