File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11include NEWS
22include COPYING
3- include include/suinput.h
43include examples/*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ 0.3.3.
2+
3+ - Explicit dependence on libsuinput.
4+
150.3.2
26
37 - Mention Ubuntu-package in README.
Original file line number Diff line number Diff line change @@ -15,19 +15,23 @@ General information
1515
1616- **Author**: `Tuomas Räsänen <http://tuos.codegrove.org/>`_ <tuos@codegrove.org>
1717- **Homepage**: http://codegrove.org/python-uinput/
18- - **License**: LGPLv3 + (see COPYING for details)
19- - **Version**: 0.3.2
18+ - **License**: GPLv3 + (see COPYING for details)
19+ - **Version**: 0.3.3
2020
2121Requirements
2222============
2323
2424- Python 2.5.x+ and development files for it:
2525
26- - On Ubuntu::
26+ - On Ubuntu (from Code Grove ppa) ::
2727
28- sudo apt-get install python-dev
28+ sudo apt-get install python-dev
2929
30- - libudev-dev
30+ - libsuinput-dev
31+
32+ - On Ubuntu (from Code Grove ppa)::
33+
34+ sudo apt-get install libsuinput-dev
3135
3236Example usage
3337=============
@@ -56,7 +60,7 @@ Downloading
5660===========
5761
5862- Ubuntu package: https://launchpad.net/~tuos/+archive/codegrove
59- - Tarball is available at: http://codegrove.org/python-uinput/releases/python-uinput-0.3.2 .tar.gz
63+ - Tarball is available at: http://codegrove.org/python-uinput/releases/python-uinput-0.3.3 .tar.gz
6064- Tarballs of every release at: http://codegrove.org/python-uinput/releases/
6165- Latest sources from public git-repository: http://github.com/tuos/python-uinput/ ::
6266
Original file line number Diff line number Diff line change 77from distutils .core import setup , Extension
88
99suinput_module = Extension ('uinput.suinput' ,
10- sources = ['src/suinputmodule.c' , 'src/suinput.c' ],
10+ sources = ['src/suinputmodule.c' ],
1111 include_dirs = ['include' ],
12- libraries = ['udev ' ],
12+ libraries = ['suinput ' ],
1313 )
1414
1515bustypes_module = Extension ('uinput.bustypes' ,
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
12# uinput - Uinput API for Python
23# Copyright © 2010 Tuomas Räsänen (tuos) <tuos@codegrove.org>
34
You can’t perform that action at this time.
0 commit comments