mirror of
git://git.proxmox.com/git/pve-apiclient.git
synced 2025-01-18 10:03:50 +03:00
Merge missing changelog entry
This commit is contained in:
commit
3d444d933d
29
Makefile
29
Makefile
@ -1,8 +1,10 @@
|
|||||||
PACKAGE=libpve-apiclient-perl
|
PACKAGE=libpve-apiclient-perl
|
||||||
PKGVER=2.0
|
PKGVER=$(shell dpkg-parsechangelog -Sversion | cut -d- -f1)
|
||||||
PKGREL=5
|
PKGREL=$(shell dpkg-parsechangelog -Sversion | cut -d- -f2)
|
||||||
|
|
||||||
|
BUILDSRC := $(PACKAGE)-$(PKGVER)
|
||||||
DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
|
DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
|
||||||
|
DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
|
||||||
|
|
||||||
DESTDIR=
|
DESTDIR=
|
||||||
|
|
||||||
@ -12,16 +14,27 @@ DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
|
|||||||
PVE_COMMON_FILES= \
|
PVE_COMMON_FILES= \
|
||||||
Exception.pm
|
Exception.pm
|
||||||
|
|
||||||
|
GITVERSION:=$(shell git rev-parse HEAD)
|
||||||
|
|
||||||
all: ${DEB}
|
all: ${DEB}
|
||||||
|
|
||||||
|
.PHONY: $(BUILDSRC)
|
||||||
|
$(BUILDSRC):
|
||||||
|
rm -rf $(BUILDSRC)
|
||||||
|
rsync -a debian $(BUILDSRC)
|
||||||
|
make DESTDIR=./$(BUILDSRC) install
|
||||||
|
echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout ${GITVERSION}" > $(BUILDSRC)/debian/SOURCE
|
||||||
|
|
||||||
.PHONY: deb
|
.PHONY: deb
|
||||||
deb ${DEB}:
|
deb ${DEB}: $(BUILDSRC)
|
||||||
rm -rf build
|
cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
|
||||||
rsync -a debian build
|
|
||||||
make DESTDIR=./build install
|
|
||||||
cd build; dpkg-buildpackage -rfakeroot -b -us -uc
|
|
||||||
lintian ${DEB}
|
lintian ${DEB}
|
||||||
|
|
||||||
|
.PHONY: dsc
|
||||||
|
dsc: $(BUILDSRC)
|
||||||
|
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
|
||||||
|
lintian ${DSC}
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
|
install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
|
||||||
install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
|
install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
|
||||||
@ -41,7 +54,7 @@ upload: ${DEB}
|
|||||||
distclean: clean
|
distclean: clean
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf ./build *.deb *.changes *.buildinfo
|
rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz
|
||||||
find . -name '*~' -exec rm {} ';'
|
find . -name '*~' -exec rm {} ';'
|
||||||
|
|
||||||
.PHONY: dinstall
|
.PHONY: dinstall
|
||||||
|
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
debian/SOURCE
|
Loading…
x
Reference in New Issue
Block a user