A lot of tries to get debuild -us -uc to work

This commit is contained in:
boltgolt 2018-04-05 23:19:52 +02:00
parent 4b944115bd
commit aed1f69b53
8 changed files with 59 additions and 7 deletions

View file

@ -2,12 +2,13 @@ language: python
sudo: required
before_install:
- ln -s ./debian ./DEBIAN
- dpkg-deb --build . ./build.deb
- git clone https://github.com/Boltgolt/howdy.git /tmp/howdy_build
- cd /tmp/howdy_build
- dpkg-buildpackage -rfakeroot -d -us -uc -S
install: sudo apt-get install ./build.deb
script: howdy help
notifications:
email: false
email: false

2
debian/changelog vendored
View file

@ -1,4 +1,4 @@
howdy (2.0.0) UNRELEASED; urgency=middle
howdy (2.0.0) UNRELEASED; urgency=low
* Initial release.

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
10

7
debian/control vendored
View file

@ -1,10 +1,13 @@
Source: howdy
Section: unknown
Priority: optional
Standards-Version: 3
Build-Depends: python, dh-python
Maintainer: boltgolt <boltgolt@gmail.com>
Homepage: https://github.com/Boltgolt/howdy
Vcs-Git: https://github.com/Boltgolt/howdy
Package: howdy
Version: 2.0.0
Homepage: https://github.com/Boltgolt/howdy
Architecture: all
Depends: git, python3, python3-pip, python3-dev, python3-setuptools, build-essential, libpam-python, fswebcam, libopencv-dev, python-opencv, cmake
Description: Windows Hello™ style authentication for Ubuntu.

21
debian/copyright vendored Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 boltgolt
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.

21
debian/rules vendored
View file

@ -1 +1,20 @@
#!/bin/sh
#!/usr/bin/make -f
DH_VERBOSE = 1
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk
%:
dh $@
clean:
echo "ok"
build:
echo "ok"
binary:
dh binary
mkdir ./debian/howdy/lib
mkdir ./debian/howdy/lib/security
cp -R bin ./debian/howdy/lib/security/howdy/

1
debian/source/format vendored Normal file
View file

@ -0,0 +1 @@
3.0 (native)

6
debian/source/options vendored Normal file
View file

@ -0,0 +1,6 @@
tar-ignore = ".git"
tar-ignore = "models"
tar-ignore = ".gitignore"
tar-ignore = "README.md"
tar-ignore = "LICENSE"
tar-ignore = ".travis.yml"