summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-12-21 21:01:06 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2018-12-21 21:01:06 +0100
commit921fb0f073253ea9366eb771ca7ef9ddb14c51f3 (patch)
treeb11f45a1f9204e9366ed632ad4aaf4e92ab31a9a
parentd41ea366e7c2e51c9f7e68092d89e3f0be580362 (diff)
parentf925e9e34eb04629461c74573115ff028693fae8 (diff)
python-netdisco (2.2.0-1) unstable; urgency=low
* Initial release (Closes: #916950) [dgit import unpatched python-netdisco 2.2.0-1]
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control32
-rw-r--r--debian/copyright62
-rw-r--r--debian/gbp.conf2
-rw-r--r--debian/python3-netdisco.docs1
-rwxr-xr-xdebian/rules12
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/metadata6
-rw-r--r--debian/watch2
10 files changed, 124 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7e89b37
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-netdisco (2.2.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #916950)
+
+ -- Ruben Undheim <ruben.undheim@gmail.com> Fri, 21 Dec 2018 20:01:06 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b4de394
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+11
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..903360f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: python-netdisco
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Uploaders: Ruben Undheim <ruben.undheim@gmail.com>
+Build-Depends: debhelper (>= 11),
+ dh-python,
+ python3-all,
+ python3-setuptools
+Standards-Version: 4.2.1
+Vcs-Browser: https://salsa.debian.org/python-team/modules/python-netdisco
+Vcs-Git: https://salsa.debian.org/python-team/modules/python-netdisco.git
+Homepage: https://github.com/home-assistant/netdisco
+
+
+Package: python3-netdisco
+Architecture: all
+Depends: ${python3:Depends},
+ ${misc:Depends}
+Description: Library to discover local devices and services (Python 3)
+ This is a Python 3 library to discover local devices and services on the
+ network. It allows one to scan on demand or offer a service that will scan the
+ network in the background in a set interval.
+ .
+ Current methods of scanning:
+ .
+ - mDNS (includes Chromecast, Homekit)
+ - uPnP
+ - Plex Media Server using Good Day Mate protocol
+ - Logitech Media Server discovery protocol
+ - Daikin discovery protocol
+ - Web OS discovery protocol
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8574c42
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,62 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: netdisco
+Source: https://github.com/home-assistant/netdisco
+
+Files: *
+Copyright: 2015-2018 Paulus Schoutsen <balloob@gmail.com>
+ 2015-2018 Home-Assistant developers
+License: Apache-2.0
+
+Files: CLA.md
+Copyright: 2015-2018 Paulus Schoutsen <balloob@gmail.com>
+ 2015-2018 Home-Assistant developers
+License: CC-BY-SA-3.0
+
+Files: debian/*
+Copyright: 2018 Ruben Undheim <ruben.undheim@gmail.com>
+License: Apache-2.0
+
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache-2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+
+License: CC-BY-SA-3.0
+ You are free to:
+ - Share — copy and redistribute the material in any medium or format
+ - Adapt — remix, transform, and build upon the material
+ - for any purpose, even commercially.
+ .
+ The licensor cannot revoke these freedoms as long as you follow the license
+ terms.
+ .
+ Under the following terms:
+ - Attribution — You must give appropriate credit, provide a link to the
+ license, and indicate if changes were made. You may do so in any reasonable
+ manner, but not in any way that suggests the licensor endorses you or your
+ use.
+ - ShareAlike — If you remix, transform, or build upon the material, you must
+ distribute your contributions under the same license as the original.
+ - No additional restrictions — You may not apply legal terms or technological
+ measures that legally restrict others from doing anything the license
+ permits.
+ .
+ Notices:
+ You do not have to comply with the license for elements of the material in
+ the public domain or where your use is permitted by an applicable exception or
+ limitation. No warranties are given. The license may not give you all of the
+ permissions necessary for your intended use. For example, other rights such as
+ publicity, privacy, or moral rights may limit how you use the material.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..cec628c
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/python3-netdisco.docs b/debian/python3-netdisco.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-netdisco.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..09bdc78
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python3 --buildsystem=pybuild
+
+override_dh_auto_clean:
+ dh_auto_clean
+ $(RM) -r netdisco.egg-info
+
+override_dh_install:
+ dh_install
+ $(RM) -r debian/python3-netdisco/usr/lib/python2*/
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..fdb860e
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+---
+Bug-Database: https://github.com/home-assistant/netdisco/issues
+Bug-Submit: https://github.com/home-assistant/netdisco/issues/new
+Name: netdisco
+Repository: https://github.com/home-assistant/netdisco.git
+Repository-Browse: https://github.com/home-assistant/netdisco
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..e158ebf
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/home-assistant/netdisco/releases /home-assistant/netdisco/archive/(\d\S+)\.tar\.(?:bz2|gz|xz)