fix pkg errors

Former-commit-id: 91ef1a50fb8602c7f09156a84eca17dca70b3d2e
This commit is contained in:
Ben Schermel 2020-05-24 00:03:01 -04:00 committed by John Sully
parent c825dd388f
commit ab97cf3cf8
5 changed files with 18 additions and 11 deletions

15
.gitignore vendored
View File

@ -5,22 +5,19 @@ core
*.so *.so
*.d *.d
!**/bash_completion.d !**/bash_completion.d
!**/logrotate.d
!**/keydb.service.d
!**/keydb-sentinel.service.d
*.log *.log
dump.rdb dump.rdb
src/keydb-pro-server src/keydb-pro-server
bin/keydb-pro-server **/bin/keydb-pro-server
app/keydb-pro-server **/app/keydb-pro-server
*.deb *.deb
*.rpm *.rpm
src/keydb-cli src/keydb-cli
bin/keydb-cli **/bin/keydb-cli
app/keydb-cli **/app/keydb-cli
src/keydb-sentinel src/keydb-sentinel
bin/keydb-sentinel **/bin/keydb-sentinel
app/keydb-sentinel **/app/keydb-sentinel
redis-benchmark redis-benchmark
keydb-benchmark keydb-benchmark
redis-check-aof redis-check-aof

View File

@ -44,7 +44,12 @@ debuild -S -sa
cd ../ cd ../
# create pbuilder chrooted environment and build the deb package # create pbuilder chrooted environment and build the deb package
sudo pbuilder create --distribution $codename if [ "$codename" == "xenial" ]; then
sudo pbuilder create --distribution $codename --othermirror "deb http://archive.ubuntu.com/ubuntu $codename universe multiverse"
else
sudo pbuilder create --distribution $codename
fi
sudo pbuilder --update sudo pbuilder --update
sudo pbuilder --build *.dsc --logfile /mnt/pbuilderlog.log sudo pbuilder --build *.dsc --logfile /mnt/pbuilderlog.log

View File

@ -21,7 +21,12 @@ Build-Depends:
autotools-dev <!nocheck>, autotools-dev <!nocheck>,
autoconf <!nocheck>, autoconf <!nocheck>,
libjemalloc-dev <!nocheck>, libjemalloc-dev <!nocheck>,
libssl-dev <!nocheck> libssl-dev <!nocheck>,
libsnappy-dev <!nocheck>,
zlib1g-dev <!nocheck>,
libbz2-dev <!nocheck>,
liblz4-dev <!nocheck>,
libzstd-dev <!nocheck>
Standards-Version: 4.2.1 Standards-Version: 4.2.1
Homepage: https://docs.keydb.dev/ Homepage: https://docs.keydb.dev/
Vcs-Git: https://github.com/JohnSully/KeyDB-Pro.git Vcs-Git: https://github.com/JohnSully/KeyDB-Pro.git