aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins
diff options
context:
space:
mode:
authorsvidyuk <svidyuk@yandex-team.ru>2022-04-27 08:16:51 +0300
committersvidyuk <svidyuk@yandex-team.ru>2022-04-27 08:16:51 +0300
commitf8cb939ce134ab4402acd871c05f85ee76fb1a2e (patch)
treee9ae78cf4484b393a1917980dd445b33d357266c /build/plugins
parenta88d20022e2c2dca66cd8266945efb4f1a3d2376 (diff)
downloadydb-f8cb939ce134ab4402acd871c05f85ee76fb1a2e.tar.gz
_SRC('xsyn' ...) moved to core conf
ref:08f88057452b451069f8c628317236b868421b43
Diffstat (limited to 'build/plugins')
-rw-r--r--build/plugins/xsyn.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/build/plugins/xsyn.py b/build/plugins/xsyn.py
deleted file mode 100644
index ab7c1639db..0000000000
--- a/build/plugins/xsyn.py
+++ /dev/null
@@ -1,34 +0,0 @@
-import _import_wrapper as iw
-import _common as common
-
-
-class Xsyn(iw.CustomCommand):
-
- def __init__(self, path, unit):
- self._path = path
-
- def descr(self):
- return 'XN', self._path, 'yellow'
-
- def tools(self):
- return []
-
- def input(self):
- return common.make_tuples([
- '$S/library/cpp/xml/parslib/xsyn2ragel.py',
- self._path,
- '$S/library/cpp/xml/parslib/xmlpars.xh'
- ])
-
- def output(self):
- return common.make_tuples([
- common.tobuilddir(self._path + '.h.rl5')
- ])
-
- def run(self, extra_args, interpeter):
- self.call(interpeter + [self.resolve_path(common.get(self.input, 0)), self.resolve_path(common.get(self.input, 1)),
- self.resolve_path(common.get(self.input, 2)), 'dontuse'], stdout=common.get(self.output, 0))
-
-
-def init():
- iw.addrule('xsyn', Xsyn)