commit 3cc4f455fbe860478952f746bf341ff8b6d91ae86960fff29f2bbb85d8547713 Author: Tomáš Chvátal Date: Thu Jul 23 11:20:27 2020 +0000 Accepting request 822327 from home:jayvdb:py-submit from :misc; 150k/d ; dep of setuptools-markdown OBS-URL: https://build.opensuse.org/request/show/822327 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypandoc?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/pypandoc-1.5.tar.gz b/pypandoc-1.5.tar.gz new file mode 100644 index 0000000..925fbbd --- /dev/null +++ b/pypandoc-1.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a49977ab1fbc9b14ef3087dcb101f336851837fca55ca79cf33846cc4976ff +size 26494 diff --git a/python-pypandoc.changes b/python-pypandoc.changes new file mode 100644 index 0000000..a16177c --- /dev/null +++ b/python-pypandoc.changes @@ -0,0 +1,24 @@ +------------------------------------------------------------------- +Thu Jul 23 07:28:02 UTC 2020 - John Vandenberg + +- Activate test suite +- Update to v1.5 + +------------------------------------------------------------------- +Wed Aug 16 08:11:22 UTC 2017 - daniel.molkentin@suse.com + +- Add fdupes + +------------------------------------------------------------------- +Tue Aug 15 16:06:39 UTC 2017 - daniel.molkentin@suse.com + +- Update to 1.4 +- Convert to single spec +- Ran spec cleaner + +------------------------------------------------------------------- +Tue Jan 24 21:37:32 UTC 2017 - termim@gmail.com + +- Initial check in version 1.3.3 + + diff --git a/python-pypandoc.spec b/python-pypandoc.spec new file mode 100644 index 0000000..03ade3c --- /dev/null +++ b/python-pypandoc.spec @@ -0,0 +1,66 @@ +# +# spec file for package python-pypandoc +# +# Copyright (c) 2020 SUSE LLC +# +# 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 https://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-pypandoc +Version: 1.5 +Release: 0 +Summary: Thin wrapper for pandoc +License: MIT +Group: Development/Languages/Python +URL: https://github.com/bebraw/pypandoc +Source: https://pypi.org/packages/source/p/pypandoc/pypandoc-%{version}.tar.gz +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: ghc-pandoc-citeproc +BuildRequires: pandoc +BuildRequires: python-rpm-macros +BuildRequires: texlive-latex-bin +Requires: pandoc +Requires: python-pip +Requires: python-wheel +Suggests: ghc-pandoc-citeproc +BuildArch: noarch +%python_subpackages + +%description +pypandoc provides a thin wrapper for pandoc, a universal document converter. + +%prep +%setup -q -n pypandoc-%{version} +# Disable test that requires internet +sed -i 's/\(test_basic_conversion_from_http_url\)/_\1/' tests.py + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_exec setup.py test + +%files %{python_files} +%license LICENSE +%doc README.md +%{python_sitelib}/* + +%changelog