various packaging fixes, bump version
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
4aa3763944
commit
da0e1e4021
28
Makefile
28
Makefile
|
@ -1,7 +1,8 @@
|
||||||
|
include /usr/share/dpkg/default.mk
|
||||||
include defines.mk
|
include defines.mk
|
||||||
|
|
||||||
ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
PACKAGE := $(DEB_SOURCE)
|
||||||
GITVERSION:=$(shell git rev-parse HEAD)
|
ARCH := $(DEB_BUILD_ARCH)
|
||||||
|
|
||||||
SUBDIRS := etc www docs
|
SUBDIRS := etc www docs
|
||||||
|
|
||||||
|
@ -29,12 +30,16 @@ ifeq ($(valgrind), yes)
|
||||||
CARGO_BUILD_ARGS += --features valgrind
|
CARGO_BUILD_ARGS += --features valgrind
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
CARGO ?= cargo
|
||||||
|
|
||||||
COMPILED_BINS := \
|
COMPILED_BINS := \
|
||||||
$(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
|
$(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
|
||||||
|
|
||||||
DEBS= ${PACKAGE}-server_${PKGVER}-${PKGREL}_${ARCH}.deb ${PACKAGE}-client_${PKGVER}-${PKGREL}_${ARCH}.deb
|
DEBS= ${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb ${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb
|
||||||
|
|
||||||
DOC_DEB=${PACKAGE}-docs_${PKGVER}-${PKGREL}_all.deb
|
DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb
|
||||||
|
|
||||||
|
DSC = ${PACKAGE}_${DEB_VERSION}.dsc
|
||||||
|
|
||||||
DESTDIR=
|
DESTDIR=
|
||||||
|
|
||||||
|
@ -47,20 +52,18 @@ $(SUBDIRS):
|
||||||
test:
|
test:
|
||||||
#cargo test test_broadcast_future
|
#cargo test test_broadcast_future
|
||||||
#cargo test $(CARGO_BUILD_ARGS)
|
#cargo test $(CARGO_BUILD_ARGS)
|
||||||
cargo test $(tests) $(CARGO_BUILD_ARGS)
|
$(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
cargo doc --no-deps $(CARGO_BUILD_ARGS)
|
$(CARGO) doc --no-deps $(CARGO_BUILD_ARGS)
|
||||||
|
|
||||||
# always re-create this dir
|
# always re-create this dir
|
||||||
# but also copy the local target/ dir as a build-cache
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build:
|
build:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
cargo build --release --lib
|
rsync -a debian Makefile defines.mk Cargo.toml \
|
||||||
rsync -a debian Makefile defines.mk Cargo.toml Cargo.lock \
|
|
||||||
src $(SUBDIRS) \
|
src $(SUBDIRS) \
|
||||||
target tests build/
|
tests build/
|
||||||
$(foreach i,$(SUBDIRS), \
|
$(foreach i,$(SUBDIRS), \
|
||||||
$(MAKE) -C build/$(i) clean ;)
|
$(MAKE) -C build/$(i) clean ;)
|
||||||
|
|
||||||
|
@ -70,6 +73,7 @@ $(DOC_DEB): build
|
||||||
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
|
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
|
||||||
lintian $(DOC_DEB)
|
lintian $(DOC_DEB)
|
||||||
|
|
||||||
|
# copy the local target/ dir as a build-cache
|
||||||
.PHONY: deb
|
.PHONY: deb
|
||||||
deb: $(DEBS)
|
deb: $(DEBS)
|
||||||
$(DEBS): build
|
$(DEBS): build
|
||||||
|
@ -87,7 +91,7 @@ distclean: clean
|
||||||
clean:
|
clean:
|
||||||
$(foreach i,$(SUBDIRS), \
|
$(foreach i,$(SUBDIRS), \
|
||||||
$(MAKE) -C $(i) clean ;)
|
$(MAKE) -C $(i) clean ;)
|
||||||
cargo clean
|
$(CARGO) clean
|
||||||
rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
|
rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
|
||||||
find . -name '*~' -exec rm {} ';'
|
find . -name '*~' -exec rm {} ';'
|
||||||
|
|
||||||
|
@ -100,7 +104,7 @@ docs: cargo-build
|
||||||
|
|
||||||
.PHONY: cargo-build
|
.PHONY: cargo-build
|
||||||
cargo-build:
|
cargo-build:
|
||||||
cargo build $(CARGO_BUILD_ARGS)
|
$(CARGO) build $(CARGO_BUILD_ARGS)
|
||||||
|
|
||||||
$(COMPILED_BINS): cargo-build
|
$(COMPILED_BINS): cargo-build
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
proxmox-backup (0.1.0) unstable; urgency=medium
|
||||||
|
|
||||||
|
* proper packaging of build-dependencies
|
||||||
|
|
||||||
|
* cleanup packaging
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Fri, 20 Dec 2019 09:30:06 +0100
|
||||||
|
|
||||||
proxmox-backup (0.1-1) unstable; urgency=medium
|
proxmox-backup (0.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
[ Proxmox Support Team ]
|
[ Proxmox Support Team ]
|
||||||
|
|
|
@ -75,7 +75,6 @@ Standards-Version: 4.3.0
|
||||||
Homepage: https://www.proxmox.com
|
Homepage: https://www.proxmox.com
|
||||||
|
|
||||||
Package: proxmox-backup-server
|
Package: proxmox-backup-server
|
||||||
Build-Profiles: <nodoc>
|
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: fonts-font-awesome,
|
Depends: fonts-font-awesome,
|
||||||
libjs-extjs (>= 6.0.1),
|
libjs-extjs (>= 6.0.1),
|
||||||
|
@ -89,7 +88,6 @@ Description: Proxmox Backup Server daemon with tools and GUI
|
||||||
tools. This includes a web-based graphical user interface.
|
tools. This includes a web-based graphical user interface.
|
||||||
|
|
||||||
Package: proxmox-backup-client
|
Package: proxmox-backup-client
|
||||||
Build-Profiles: <nodoc>
|
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||||
Description: Proxmox Backup Client tools
|
Description: Proxmox Backup Client tools
|
||||||
|
@ -99,7 +97,8 @@ Description: Proxmox Backup Client tools
|
||||||
Package: proxmox-backup-docs
|
Package: proxmox-backup-docs
|
||||||
Build-Profiles: <!nodoc>
|
Build-Profiles: <!nodoc>
|
||||||
Section: doc
|
Section: doc
|
||||||
Depends: libjs-extjs
|
Depends: libjs-extjs,
|
||||||
|
${misc:Depends},
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Description: Proxmox Backup Documentation
|
Description: Proxmox Backup Documentation
|
||||||
This package contains the Proxmox Backup Documentation files.
|
This package contains the Proxmox Backup Documentation files.
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
/usr/share/doc/proxmox-backup/html
|
||||||
|
/usr/share/doc/proxmox-backup/proxmox-backup.pdf
|
|
@ -1,13 +1,31 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
# See debhelper(7) (uncomment to enable)
|
# See debhelper(7) (uncomment to enable)
|
||||||
# output every command that modifies files on the build system.
|
# output every command that modifies files on the build system.
|
||||||
#DH_VERBOSE = 1
|
DH_VERBOSE = 1
|
||||||
|
|
||||||
|
include /usr/share/dpkg/pkg-info.mk
|
||||||
|
include /usr/share/rustc/architecture.mk
|
||||||
|
|
||||||
export BUILD_MODE=release
|
export BUILD_MODE=release
|
||||||
|
|
||||||
|
CARGO=/usr/share/cargo/bin/cargo
|
||||||
|
|
||||||
|
export CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
||||||
|
export DEB_HOST_RUST_TYPE DEB_HOST_GNU_TYPE
|
||||||
|
export CARGO_HOME = $(CURDIR)/debian/cargo_home
|
||||||
|
|
||||||
|
export DEB_CARGO_CRATE=proxmox-backup_$(DEB_VERSION_UPSTREAM)
|
||||||
|
export DEB_CARGO_PACKAGE=proxmox-backup
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --with=bash-completion
|
dh $@ --with=bash-completion
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
sed -ie 's!proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox",!proxmox = {!' Cargo.toml
|
||||||
|
sed -ie 's!valgrind.*!!' Cargo.toml
|
||||||
|
$(CARGO) prepare-debian $(CURDIR)/debian/cargo_registry --link-from-system
|
||||||
|
dh_auto_configure
|
||||||
|
|
||||||
override_dh_auto_build:
|
override_dh_auto_build:
|
||||||
dh_auto_build -- \
|
dh_auto_build -- \
|
||||||
PROXY_USER=backup \
|
PROXY_USER=backup \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
PACKAGE := proxmox-backup
|
|
||||||
PKGVER := 0.1
|
|
||||||
PKGREL := 1
|
|
||||||
|
|
||||||
PREFIX = /usr
|
PREFIX = /usr
|
||||||
BINDIR = $(PREFIX)/bin
|
BINDIR = $(PREFIX)/bin
|
||||||
SBINDIR = $(PREFIX)/sbin
|
SBINDIR = $(PREFIX)/sbin
|
||||||
|
@ -9,7 +5,7 @@ LIBDIR = $(PREFIX)/lib
|
||||||
LIBEXECDIR = $(LIBDIR)
|
LIBEXECDIR = $(LIBDIR)
|
||||||
DATAROOTDIR = $(PREFIX)/share
|
DATAROOTDIR = $(PREFIX)/share
|
||||||
MAN1DIR = $(PREFIX)/share/man/man1
|
MAN1DIR = $(PREFIX)/share/man/man1
|
||||||
DOCDIR = $(PREFIX)/share/doc/${PACKAGE}
|
DOCDIR = $(PREFIX)/share/doc/proxmox-backup
|
||||||
JSDIR = $(DATAROOTDIR)/javascript/proxmox-backup
|
JSDIR = $(DATAROOTDIR)/javascript/proxmox-backup
|
||||||
SYSCONFDIR = /etc
|
SYSCONFDIR = /etc
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ install_manual_pages: ${MANUAL_PAGES}
|
||||||
|
|
||||||
install_html: html
|
install_html: html
|
||||||
install -dm755 $(DESTDIR)$(DOCDIR)
|
install -dm755 $(DESTDIR)$(DOCDIR)
|
||||||
rsync -a output/html $(DESTDIR)$(DOCDIR)
|
rsync -a ${BUILDDIR}/html $(DESTDIR)$(DOCDIR)
|
||||||
|
|
||||||
install_pdf: latexpdf
|
install_pdf: latexpdf
|
||||||
install -dm755 $(DESTDIR)$(DOCDIR)
|
install -dm755 $(DESTDIR)$(DOCDIR)
|
||||||
|
|
Loading…
Reference in New Issue