File: do-not-override-build-commands.patch

package info (click to toggle)
sphinx-rtd-theme 3.0.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,752 kB
  • sloc: python: 349; javascript: 348; makefile: 64; sh: 6
file content (21 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Dmitry Shachnev <mitya57@debian.org>
Date: Sun, 23 Aug 2020 18:04:51 +0300
Subject: Do not override Python build commands

We do not use webpack in debian packaging.
---
 setup.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/setup.py b/setup.py
index 36a2a98..e42f539 100644
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,5 @@ setup(
     cmdclass={
         'update_translations': UpdateTranslationsCommand,
         'transifex': TransifexCommand,
-        'build_assets': WebpackBuildCommand,
-        'watch': WebpackDevelopCommand,
     },
 )