Compare commits
10 Commits
dc869516b5
...
8f5139f04a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f5139f04a | ||
|
|
59bc710be0 | ||
|
|
97b490d637 | ||
|
|
3832749ddc | ||
|
|
5dbc16c358 | ||
|
|
bde76215a6 | ||
|
|
48bb80944a | ||
|
|
2064669012 | ||
|
|
8af30e297e | ||
|
|
be2f766c51 |
39
0001-Declare-support-for-Python-3.8-only.patch
Normal file
39
0001-Declare-support-for-Python-3.8-only.patch
Normal file
@ -0,0 +1,39 @@
|
||||
From a6ed2fe2edb1cc433834a11b0c700c912164d885 Mon Sep 17 00:00:00 2001
|
||||
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
|
||||
Date: Fri, 6 Jan 2023 21:47:42 +0000
|
||||
Subject: [PATCH] Declare support for Python 3.8+ only
|
||||
|
||||
---
|
||||
setup.py | 15 ++++++---------
|
||||
1 file changed, 6 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index b7a1779..d1644e7 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -29,16 +29,13 @@ setup(
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Operating System :: OS Independent",
|
||||
- "Programming Language :: Python",
|
||||
- "Programming Language :: Python :: 2",
|
||||
- "Programming Language :: Python :: 2.6",
|
||||
- "Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3",
|
||||
- "Programming Language :: Python :: 3.2",
|
||||
- "Programming Language :: Python :: 3.3",
|
||||
- "Programming Language :: Python :: 3.4",
|
||||
- "Programming Language :: Python :: 3.5",
|
||||
- "Programming Language :: Python :: 3.6",
|
||||
+ "Programming Language :: Python :: 3 :: Only",
|
||||
+ "Programming Language :: Python :: 3.8",
|
||||
+ "Programming Language :: Python :: 3.9",
|
||||
+ "Programming Language :: Python :: 3.10",
|
||||
+ "Programming Language :: Python :: 3.11",
|
||||
+ "Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
"Topic :: Documentation",
|
||||
--
|
||||
2.39.0.windows.2
|
||||
|
||||
30
0002-Nix-setup.cfg.patch
Normal file
30
0002-Nix-setup.cfg.patch
Normal file
@ -0,0 +1,30 @@
|
||||
From c284cff00bfb15f6a912384dad75ad1146c8a186 Mon Sep 17 00:00:00 2001
|
||||
From: Jeff Forcier <jeff@bitprophet.org>
|
||||
Date: Thu, 12 Jan 2023 22:14:36 -0500
|
||||
Subject: [PATCH] Nix setup.cfg
|
||||
|
||||
---
|
||||
setup.cfg => .flake8 | 6 ------
|
||||
1 file changed, 6 deletions(-)
|
||||
rename setup.cfg => .flake8 (53%)
|
||||
|
||||
diff --git a/setup.cfg b/.flake8
|
||||
similarity index 53%
|
||||
rename from setup.cfg
|
||||
rename to .flake8
|
||||
index 04af7cb..fbcb0b2 100644
|
||||
--- a/setup.cfg
|
||||
+++ b/.flake8
|
||||
@@ -1,9 +1,3 @@
|
||||
-[bdist_wheel]
|
||||
-universal = 1
|
||||
-
|
||||
-[metadata]
|
||||
-license_file = LICENSE
|
||||
-
|
||||
[flake8]
|
||||
ignore = E124,E125,E128,E261,E301,E302,E303
|
||||
max-line-length = 79
|
||||
--
|
||||
2.39.0.windows.2
|
||||
|
||||
28
0003-Don-t-import-deprecated-module.patch
Normal file
28
0003-Don-t-import-deprecated-module.patch
Normal file
@ -0,0 +1,28 @@
|
||||
From 96bb1c2ae28333046e2a81f9dfcc1e21aa7624d2 Mon Sep 17 00:00:00 2001
|
||||
From: Jeff Forcier <jeff@bitprophet.org>
|
||||
Date: Thu, 8 Sep 2022 17:41:11 -0400
|
||||
Subject: [PATCH] Don't import deprecated module
|
||||
|
||||
---
|
||||
tasks.py | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/tasks.py b/tasks.py
|
||||
index b15ee74..b3358e5 100644
|
||||
--- a/tasks.py
|
||||
+++ b/tasks.py
|
||||
@@ -1,9 +1,9 @@
|
||||
from invoke import Collection
|
||||
-from invocations import docs, travis, checks
|
||||
+from invocations import docs, checks
|
||||
from invocations.packaging import release
|
||||
|
||||
|
||||
-ns = Collection(release, docs, travis, checks.blacken)
|
||||
+ns = Collection(release, docs, checks.blacken)
|
||||
ns.configure(
|
||||
{
|
||||
"packaging": {
|
||||
--
|
||||
2.39.0.windows.2
|
||||
|
||||
Binary file not shown.
BIN
alabaster-0.7.12.tar.gz
Normal file
BIN
alabaster-0.7.12.tar.gz
Normal file
Binary file not shown.
@ -1,11 +1,14 @@
|
||||
name: python-sphinx-theme-alabaster
|
||||
Version: 0.7.11
|
||||
Release: 6
|
||||
Version: 0.7.12
|
||||
Release: 4
|
||||
Summary: Configurable sidebar-enabled Sphinx theme
|
||||
|
||||
License: BSD
|
||||
URL: https://pypi.python.org/pypi/alabaster
|
||||
Source0: https://files.pythonhosted.org/packages/3f/46/9346ea429931d80244ab7f11c4fce83671df0b7ae5a60247a2b588592c46/alabaster-0.7.11.tar.gz
|
||||
Source0: https://files.pythonhosted.org/packages/cc/b4/ed8dcb0d67d5cfb7f83c4d5463a7614cb1d078ad7ae890c9143edebbf072/alabaster-0.7.12.tar.gz
|
||||
Patch0001: 0001-Declare-support-for-Python-3.8-only.patch
|
||||
Patch0002: 0002-Nix-setup.cfg.patch
|
||||
Patch0003: 0003-Don-t-import-deprecated-module.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel python2-setuptools
|
||||
@ -47,12 +50,6 @@ rm -rf alabaster.egg-info
|
||||
%py2_build
|
||||
%py3_build
|
||||
|
||||
|
||||
%install
|
||||
%py2_install
|
||||
%py3_install
|
||||
|
||||
|
||||
%install
|
||||
%py2_install
|
||||
%py3_install
|
||||
@ -70,5 +67,17 @@ rm -rf alabaster.egg-info
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Dec 28 2023 zhangliangpengkun<zhangliangpengkun@xfusion.com> - 0.7.12-4
|
||||
- Don't import deprecated module
|
||||
|
||||
* Tue Dec 05 2023 zhangliangpengkun<zhangliangpengkun@xfusion.com> - 0.7.12-3
|
||||
- Nix setup.cfg
|
||||
|
||||
* Thu Nov 16 2023 zhangliangpengkun<zhangliangpengkun@xfusion.com> - 0.7.12-2
|
||||
- Declare support for Python 3.8+ only
|
||||
|
||||
* Tue Aug 04 2020 Yeqing Peng <pengyeqing@huawei.com> - 0.7.12-1
|
||||
- update to 0.7.12
|
||||
|
||||
* Thu Nov 21 2019 Wanjiankang <wanjiankang@huawei.com> - 0.7.11-6
|
||||
- Initial packaging
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user