Rename to nymea-zigbee

This commit is contained in:
Simon Stürz 2019-05-06 13:11:16 +02:00
parent 11c15c5322
commit eb2af4c9a4
32 changed files with 21 additions and 21 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
qtzigbee (0.0.1) xenial; urgency=medium
nymea-zigbee (0.0.1) bionic; urgency=medium
* Initial release.

18
debian/control vendored
View File

@ -1,10 +1,10 @@
Source: qtzigbee
Source: nymea-zigbee
Section: utils
Priority: optional
Maintainer: Simon Stuerz <simon.stuerz@guh.io>
Standards-Version: 3.9.7
Homepage: https://guh.io
Vcs-Git: https://github.com/guh/guh.git
Homepage: https://nymea.io
Vcs-Git: https://github.com/guh/nymea.git
Build-Depends: debhelper (>= 9.0.0),
dpkg-dev (>= 1.16.1~),
qt5-default,
@ -20,14 +20,14 @@ Section: net
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libqtzigbee1 (= ${binary:Version}),
libnymea-zigbee1 (= ${binary:Version}),
libncurses5
Description: Zigbee bridge controller Qt5 - tool
Command line tool written in Qt for interacting with the NXP Zigbee controller.
.
This package will install the zigbee-cli tool.
Package: libqtzigbee1
Package: libnymea-zigbee1
Section: libs
Architecture: any
Depends: ${shlibs:Depends},
@ -39,21 +39,21 @@ Description: Qt 5 based library for Zigbee
Qt 5 based library for Zigbee.
Package: libqtzigbee1-dev
Package: libnymea-zigbee1-dev
Section: libdevel
Architecture: any
Depends: libqtzigbee1 (= ${binary:Version}),
Depends: libnymea-zigbee1 (= ${binary:Version}),
${shlibs:Depends},
${misc:Depends}
Description: Qt 5 based library for Zigbee - development files
Development files for Qt 5 based Zigbee library.
Package: libqtzigbee1-dbg
Package: libnymea-zigbee1-dbg
Priority: extra
Architecture: any
Section: debug
Depends: libqtzigbee1 (= ${binary:Version}),
Depends: libnymea-zigbee1 (= ${binary:Version}),
${shlibs:Depends},
${misc:Depends}
Description: Qt 5 based library for Zigbee - debug symbols

2
debian/libnymea-zigbee1-dev.install vendored Normal file
View File

@ -0,0 +1,2 @@
usr/lib/libnymea-zigbee1.so
usr/include/nymea-zigbee/* usr/include/nymea-zigbee/

3
debian/libnymea-zigbee1.install vendored Normal file
View File

@ -0,0 +1,3 @@
usr/lib/libnymea-zigbee1.so.1
usr/lib/libnymea-zigbee1.so.1.0
usr/lib/libnymea-zigbee1.so.1.0.0

View File

@ -1,2 +0,0 @@
usr/lib/libqtzigbee1.so
usr/include/qtzigbee/* usr/include/qtzigbee/

View File

@ -1,3 +0,0 @@
usr/lib/libqtzigbee1.so.1
usr/lib/libqtzigbee1.so.1.0
usr/lib/libqtzigbee1.so.1.0.0

2
debian/rules vendored
View File

@ -17,7 +17,7 @@ include /usr/share/dpkg/buildflags.mk
dh $@ --buildsystem=qmake --parallel
override_dh_strip:
dh_strip --dbg-package=libqtzigbee1-dbg
dh_strip --dbg-package=libnymea-zigbee1-dbg
override_dh_auto_build:
make -j$(DEB_PARALLEL_JOBS)

View File

@ -1,6 +1,6 @@
include(../config.pri)
TARGET = qtzigbee1
TARGET = nymea-zigbee1
TEMPLATE = lib
target.path = /usr/lib
@ -35,7 +35,7 @@ INSTALLS += target
# install header file with relative subdirectory
for(header, HEADERS) {
path = /usr/include/qtzigbee/$${dirname(header)}
path = /usr/include/nymea-zigbee/$${dirname(header)}
eval(headers_$${path}.files += $${header})
eval(headers_$${path}.path = $${path})
eval(INSTALLS *= headers_$${path})

View File

@ -1,5 +1,5 @@
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += libqtzigbee zigbee-cli
SUBDIRS += libnymea-zigbee zigbee-cli

View File

@ -5,9 +5,9 @@ CONFIG -= app_bundle
TARGET = zigbee-cli
LIBS += -L$$buildDir/libqtzigbee -lqtzigbee1 -lreadline
LIBS += -L$$buildDir/libnymea-zigbee -lnymea-zigbee1 -lreadline
INCLUDEPATH += ../libqtzigbee/
INCLUDEPATH += ../libnymea-zigbee/
target.path = /usr/bin
INSTALLS += target