summaryrefslogtreecommitdiff
path: root/python-readability.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-readability.spec')
-rw-r--r--python-readability.spec117
1 files changed, 117 insertions, 0 deletions
diff --git a/python-readability.spec b/python-readability.spec
new file mode 100644
index 0000000..638c645
--- /dev/null
+++ b/python-readability.spec
@@ -0,0 +1,117 @@
+%global _empty_manifest_terminate_build 0
+Name: python-readability
+Version: 0.3.1
+Release: 1
+Summary: Measure the readability of a given text using surface characteristics
+License: Apache Software License
+URL: https://github.com/andreasvc/readability/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/26/70/6f8750066255d4d2b82b813dd2550e0bd2bee99d026d14088a7b977cd0fc/readability-0.3.1.tar.gz
+BuildArch: noarch
+
+
+%description
+An implementation of traditional readability measures based on simple surface
+characteristics. These measures are basically linear regressions based on the
+number of words, syllables, and sentences.
+The functionality is modeled after the UNIX ``style(1)`` command. Compared to the
+implementation as part of `GNU diction <http://www.moria.de/~michael/diction/>`_,
+this version supports UTF-8 encoded text, but expects sentence-segmented and
+tokenized text. The syllabification and word type recognition is based on
+simple heuristics and only provides a rough measure. The supported languages
+are English, German, and Dutch. Adding support for a new language involves the
+addition of heuristics for the aforementioned syllabification and word type
+recognition; see ``langdata.py``.
+NB: all readability formulas were developed for English, so the scales of the
+outcomes are only meaningful for English texts. The Dale-Chall measure uses the
+original word list for English, but for Dutch and German lists of frequent
+words are used that were not specifically selected for recognizability by
+school children.
+
+%package -n python3-readability
+Summary: Measure the readability of a given text using surface characteristics
+Provides: python-readability
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-readability
+An implementation of traditional readability measures based on simple surface
+characteristics. These measures are basically linear regressions based on the
+number of words, syllables, and sentences.
+The functionality is modeled after the UNIX ``style(1)`` command. Compared to the
+implementation as part of `GNU diction <http://www.moria.de/~michael/diction/>`_,
+this version supports UTF-8 encoded text, but expects sentence-segmented and
+tokenized text. The syllabification and word type recognition is based on
+simple heuristics and only provides a rough measure. The supported languages
+are English, German, and Dutch. Adding support for a new language involves the
+addition of heuristics for the aforementioned syllabification and word type
+recognition; see ``langdata.py``.
+NB: all readability formulas were developed for English, so the scales of the
+outcomes are only meaningful for English texts. The Dale-Chall measure uses the
+original word list for English, but for Dutch and German lists of frequent
+words are used that were not specifically selected for recognizability by
+school children.
+
+%package help
+Summary: Development documents and examples for readability
+Provides: python3-readability-doc
+%description help
+An implementation of traditional readability measures based on simple surface
+characteristics. These measures are basically linear regressions based on the
+number of words, syllables, and sentences.
+The functionality is modeled after the UNIX ``style(1)`` command. Compared to the
+implementation as part of `GNU diction <http://www.moria.de/~michael/diction/>`_,
+this version supports UTF-8 encoded text, but expects sentence-segmented and
+tokenized text. The syllabification and word type recognition is based on
+simple heuristics and only provides a rough measure. The supported languages
+are English, German, and Dutch. Adding support for a new language involves the
+addition of heuristics for the aforementioned syllabification and word type
+recognition; see ``langdata.py``.
+NB: all readability formulas were developed for English, so the scales of the
+outcomes are only meaningful for English texts. The Dale-Chall measure uses the
+original word list for English, but for Dutch and German lists of frequent
+words are used that were not specifically selected for recognizability by
+school children.
+
+%prep
+%autosetup -n readability-0.3.1
+
+%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-readability -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.1-1
+- Package Spec generated