Fix command 'install' has no such option 'install_layout'.

Add pysassc-man.patch.
 From: =?utf-8?b?RnLDqWTDqXJpYyBCb25uYXJk?= <frediz@debian.org>
 Subject: Create pysassc man page
This commit is contained in:
su-fang 2022-10-11 11:22:23 +08:00 committed by cckylin-cibot
parent 7d59328e92
commit b623e6f76a
5 changed files with 39 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
libsass-python (0.21.0-ok2) yangtze; urgency=medium
* Fix command 'install' has no such option 'install_layout'.
Add pysassc-man.patch.
-- sufang <sufang@kylinos.cn> Tue, 11 Oct 2022 11:07:40 +0800
libsass-python (0.21.0-ok1) yangtze; urgency=medium libsass-python (0.21.0-ok1) yangtze; urgency=medium
* Build for openkylin. * Build for openkylin.

4
debian/control vendored
View File

@ -3,7 +3,7 @@ Section: python
Priority: optional Priority: optional
Maintainer: OpenKylin Developers <packaging@lists.openkylin.top> Maintainer: OpenKylin Developers <packaging@lists.openkylin.top>
Build-Depends: Build-Depends:
debhelper-compat (= 12), debhelper-compat (= 13),
dh-python, dh-python,
python3-all-dev, python3-all-dev,
python3-setuptools, python3-setuptools,
@ -15,7 +15,7 @@ Build-Depends:
python3-doc, python3-doc,
python-flask-doc, python-flask-doc,
python-setuptools-doc, python-setuptools-doc,
libsass-dev libsass-dev (>= 3.6.5)
Standards-Version: 4.6.0 Standards-Version: 4.6.0
Vcs-Browser: https://gitee.com/openkylin/libsass-python Vcs-Browser: https://gitee.com/openkylin/libsass-python
Vcs-Git: https://gitee.com/openkylin/libsass-python.git Vcs-Git: https://gitee.com/openkylin/libsass-python.git

View File

@ -0,0 +1,27 @@
From: su-fang <sufang@kylinos.cn>
Date: Tue, 11 Oct 2022 11:22:23 +0800
Subject: Fix command 'install' has no such option 'install_layout'. Add
pysassc-man.patch. From: =?utf-8?b?RnLDqWTDqXJpYyBCb25uYXJk?=
<frediz@debian.org> Subject: Create pysassc man page
---
docs/conf.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 921d65c..d462a93 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -226,8 +226,10 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
(
- 'index', 'libsass', u'libsass Documentation',
- [u'Hong Minhee'], 1,
+ 'index', 'libsass', u'libsass Documentation', [u'Hong Minhee'], 3,
+ ),
+ (
+ 'pysassc', 'pysassc', u'pysassc Documentation', [u'Hong Minhee'], 1,
),
]

1
debian/patches/series vendored Normal file
View File

@ -0,0 +1 @@
0001-Fix-command-install-has-no-such-option-install_layou.patch

2
debian/rules vendored
View File

@ -5,6 +5,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export SYSTEM_SASS = 1 export SYSTEM_SASS = 1
export SETUPTOOLS_USE_DISTUTILS=stdlib
%: .libsass-upstream-version %: .libsass-upstream-version
dh $@ --with python3 --buildsystem=pybuild dh $@ --with python3 --buildsystem=pybuild