Skip to content

Commit d738863

Browse files
Explicit dependence on libsuinput.
1 parent e2e66c0 commit d738863

6 files changed

Lines changed: 17 additions & 21 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
include NEWS
22
include COPYING
3-
include include/suinput.h
43
include examples/*

Makefile

Lines changed: 0 additions & 12 deletions
This file was deleted.

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.3.3.
2+
3+
- Explicit dependence on libsuinput.
4+
15
0.3.2
26

37
- Mention Ubuntu-package in README.

README

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff 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

2121
Requirements
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

3236
Example 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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from distutils.core import setup, Extension
88

99
suinput_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

1515
bustypes_module = Extension('uinput.bustypes',

src/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# uinput - Uinput API for Python
23
# Copyright © 2010 Tuomas Räsänen (tuos) <tuos@codegrove.org>
34

0 commit comments

Comments
 (0)