15 lines
573 B
Bash
15 lines
573 B
Bash
|
# Sign the packages
|
||
|
dpkg-sig --sign builder ./output/libdisplay-info*.deb
|
||
|
|
||
|
# Pull down existing ppa repo db files etc
|
||
|
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
|
||
|
|
||
|
# Remove our existing package from the repo
|
||
|
reprepro -V --basedir ./output/repo/ removefilter kinetic 'Package (% libdisplay-info*)'
|
||
|
|
||
|
# Add the new package to the repo
|
||
|
reprepro -V --basedir ./output/repo/ includedeb kinetic ./output/libdisplay-info*.deb
|
||
|
|
||
|
# Push the updated ppa repo to the server
|
||
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|