File: python-disutils.patch

package info (click to toggle)
novnc 1%3A1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,124 kB
  • sloc: javascript: 22,768; sh: 312; makefile: 74; perl: 11; python: 11
file content (26 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Fixes disutils (adds a setup.py, etc.).
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2018.05-15

--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='python-novnc',
+      version='1.0.0',
+      description='NoVNC python libraries',
+      author='Ghe Rivero',
+      author_email='ghe.rivero@stackops.com',
+      url='http://www.stackops.com',
+      packages = ['novnc'],
+      package_dir = {'novnc':'utils'},
+      py_modules=['json2graph','img2js'],
+)
--- /dev/null
+++ b/utils/__init__.py
@@ -0,0 +1 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4