--- /dev/null
+pigpio (1.64-1) stretch; urgency=medium
+
+ * Upstream release V64
+
+ -- Serge Schneider <serge@raspberrypi.org> Mon, 11 Sep 2017 17:44:03 +0100
+
+pigpio (1.60-1) jessie; urgency=medium
+
+ * Upstream release V60
+
+ -- Serge Schneider <serge@raspberrypi.org> Thu, 12 Jan 2017 14:35:43 +0000
+
+pigpio (1.30-1) jessie; urgency=medium
+
+ * Initial release
+
+ -- Serge Schneider <serge@raspberrypi.org> Wed, 13 Apr 2016 12:15:37 +0100
--- /dev/null
+Source: pigpio
+Section: utils
+Priority: optional
+Maintainer: Serge Schneider <serge@raspberrypi.org>
+Build-Depends: debhelper (>= 9), dh-python, python-all, python-setuptools,
+ python3-all, python3-setuptools, dh-systemd
+Standards-Version: 3.9.6
+Homepage: http://abyz.co.uk/rpi/pigpio/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: pigpio
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Library for Raspberry Pi GPIO control
+ Library for the Raspberry which allows control of the General Purpose Input
+ Outputs (GPIO).
+ .
+ pigpio is written in C but may be used by other languages.
+ In particular the pigpio daemon offers a socket and pipe interface to the
+ underlying library.
+
+Package: python-pigpio
+Section: python
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Recommends: pigpio
+Description: Python module which talks to the pigpio daemon (Python 2)
+ Library for the Raspberry which allows control of the General Purpose Input
+ Outputs (GPIO).
+
+Package: python3-pigpio
+Section: python
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Recommends: pigpio
+Description: Python module which talks to the pigpio daemon (Python 3)
+ Library for the Raspberry which allows control of the General Purpose Input
+ Outputs (GPIO).
--- /dev/null
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pigpio
+Source: http://abyz.co.uk/rpi/pigpio/
+
+Files: *
+Copyright: 2013 Joan <joan@abyz.co.uk>
+License: unlicense
+ This is free and unencumbered software released into the public domain.
+ .
+ Anyone is free to copy, modify, publish, use, compile, sell, or
+ distribute this software, either in source code form or as a compiled
+ binary, for any purpose, commercial or non-commercial, and by any
+ means.
+ .
+ In jurisdictions that recognize copyright laws, the author or authors
+ of this software dedicate any and all copyright interest in the
+ software to the public domain. We make this dedication for the benefit
+ of the public at large and to the detriment of our heirs and
+ successors. We intend this dedication to be an overt act of
+ relinquishment in perpetuity of all present and future rights to this
+ software under copyright law.
+ .
+ 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 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.
+ .
+ For more information, please refer to <http://unlicense.org/>
--- /dev/null
+--- a/Makefile
++++ b/Makefile
+@@ -31,7 +31,7 @@
+
+ LL3 = -L. -lpigpiod_if2 -pthread -lrt
+
+-prefix = /usr/local
++prefix = /usr
+ exec_prefix = $(prefix)
+ bindir = $(exec_prefix)/bin
+ includedir = $(prefix)/include
+@@ -90,13 +90,13 @@
+ install -m 0755 pig2vcd $(DESTDIR)$(bindir)
+ install -m 0755 pigpiod $(DESTDIR)$(bindir)
+ install -m 0755 pigs $(DESTDIR)$(bindir)
+- if which python2; then python2 setup.py install; fi
+- if which python3; then python3 setup.py install; fi
++ if which python2; then python2 setup.py install --install-layout=deb --root=$(DESTDIR); fi
++ if which python3; then python3 setup.py install --install-layout=deb --root=$(DESTDIR); fi
+ install -m 0755 -d $(DESTDIR)$(mandir)/man1
+ install -m 0644 *.1 $(DESTDIR)$(mandir)/man1
+ install -m 0755 -d $(DESTDIR)$(mandir)/man3
+ install -m 0644 *.3 $(DESTDIR)$(mandir)/man3
+- ldconfig
++ #ldconfig
+
+ uninstall:
+ rm -f $(DESTDIR)$(includedir)/pigpio.h
--- /dev/null
+01-destdir.diff
--- /dev/null
+debian/tmp/opt
+debian/tmp/usr/lib/*.so*
+debian/tmp/usr/include
+debian/tmp/usr/man
+debian/tmp/usr/bin
--- /dev/null
+[Unit]
+Description=Daemon required to control GPIO pins via pigpio
+[Service]
+ExecStart=/usr/bin/pigpiod -l
+ExecStop=/bin/systemctl kill pigpiod
+Type=forking
+[Install]
+WantedBy=multi-user.target
--- /dev/null
+debian/tmp/usr/lib/python2.7
--- /dev/null
+debian/tmp/usr/lib/python3
--- /dev/null
+#!/usr/bin/make -f
+
+DPKG_EXPORT_BUILDFLAGS = 1
+
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+export DEB_CFLAGS_MAINT_APPEND = -Wno-format-security
+
+%:
+ dh $@ --with python2,python3,systemd
+
+override_dh_clean:
+ rm -rf build
+ dh_clean
+
+override_dh_systemd_start:
+ dh_systemd_start --name pigpiod --no-start
+
+override_dh_systemd_enable:
+ dh_systemd_enable --name pigpiod --no-enable
--- /dev/null
+3.0 (quilt)