diff --git a/packages/meta b/packages/meta index 90a83c1..2b6a2e9 100644 --- a/packages/meta +++ b/packages/meta @@ -1,4 +1,4 @@ PKG_NAME="script.module.RPi.GPIO" PKG_VERSION="0.0" -PKG_REV="3" +PKG_REV="4" PKG_DEPENDS="" diff --git a/script.module.RPi.GPIO/addon.xml b/script.module.RPi.GPIO/addon.xml index 4e3b436..d6cd0dc 100644 --- a/script.module.RPi.GPIO/addon.xml +++ b/script.module.RPi.GPIO/addon.xml @@ -1,7 +1,7 @@ diff --git a/script.module.RPi.GPIO/changelog.txt b/script.module.RPi.GPIO/changelog.txt index 7b823cb..434f987 100644 --- a/script.module.RPi.GPIO/changelog.txt +++ b/script.module.RPi.GPIO/changelog.txt @@ -1,3 +1,6 @@ +0.0.4 +- RPi.GPIO - 0.6.3 + 0.0.3 - RPi.GPIO - 0.6.2 diff --git a/script.module.RPi.GPIO/lib/RPi/GPIO/__init__.py b/script.module.RPi.GPIO/lib/RPi/GPIO/__init__.py new file mode 100644 index 0000000..14083ce --- /dev/null +++ b/script.module.RPi.GPIO/lib/RPi/GPIO/__init__.py @@ -0,0 +1,25 @@ +""" +Copyright (c) 2012-2016 Ben Croston + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + +from RPi._GPIO import * + +VERSION = '0.6.3' diff --git a/script.module.RPi.GPIO/lib/RPi/_GPIO.so b/script.module.RPi.GPIO/lib/RPi/_GPIO.so new file mode 100755 index 0000000..134a3ec Binary files /dev/null and b/script.module.RPi.GPIO/lib/RPi/_GPIO.so differ