Sync from SUSE:SLFO:Main python-sphinxcontrib-copybutton revision 8993e5dd5677d782fee1c503feebfbbe
This commit is contained in:
commit
3b79e08f10
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
18
python-sphinxcontrib-copybutton.changes
Normal file
18
python-sphinxcontrib-copybutton.changes
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 1 09:15:57 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.5.1:
|
||||||
|
* ENH: Unselectable text is now also not highlighted when you
|
||||||
|
manually highlight a code cell. Exclude unselectable text
|
||||||
|
from being copied (update) #178
|
||||||
|
* ENH: After copying, the copybutton will disappear before the
|
||||||
|
icon changes back if you are no longer hovering on the code
|
||||||
|
cell. FIX: Make copybutton remain for a second during
|
||||||
|
success #176
|
||||||
|
* MAINT: Add support for Python 3.10 #174
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 4 14:25:02 UTC 2022 - Scott Bradnick <scott.bradnick@suse.com> - 0.5.0
|
||||||
|
|
||||||
|
- Initial version from upstream via py2pack.
|
||||||
|
|
60
python-sphinxcontrib-copybutton.spec
Normal file
60
python-sphinxcontrib-copybutton.spec
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-sphinxcontrib-copybutton
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 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-sphinxcontrib-copybutton
|
||||||
|
Version: 0.5.1
|
||||||
|
Release: 0
|
||||||
|
Summary: Add a copy button to each of your code cells
|
||||||
|
License: MIT
|
||||||
|
URL: https://github.com/executablebooks/sphinx-copybutton
|
||||||
|
Source: https://files.pythonhosted.org/packages/source/s/sphinx-copybutton/sphinx-copybutton-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires: python-Sphinx >= 1.8
|
||||||
|
Suggests: python-ipython
|
||||||
|
Suggests: python-myst-nb
|
||||||
|
Suggests: python-pre-commit = 2.12.1
|
||||||
|
Suggests: python-sphinx
|
||||||
|
Suggests: python-sphinx-book-theme
|
||||||
|
BuildArch: noarch
|
||||||
|
# SECTION test requirements
|
||||||
|
BuildRequires: %{python_module Sphinx >= 1.8}
|
||||||
|
# /SECTION
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
|
%description
|
||||||
|
Add a copy button to each of your code cells.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n sphinx-copybutton-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%python_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%python_install
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%files %{python_files}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
%changelog
|
BIN
sphinx-copybutton-0.5.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
sphinx-copybutton-0.5.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user