X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=238b0f16121801653edb183f38d638a66b50c6c6;hb=92886af5c5cd01aa1b9012577e34750d178ade8d;hp=4f4773bec325dbd8e446a296f9160797fd50ed73;hpb=0b063f2c200df2d28b2214b9590273568e0addca;p=zfsonlinux.git diff --git a/Makefile b/Makefile index 4f4773b..238b0f1 100644 --- a/Makefile +++ b/Makefile @@ -2,19 +2,21 @@ RELEASE=5.1 # source form https://github.com/zfsonlinux/ -ZFSVER=0.7.11 -ZFSPKGREL=pve1~bpo1 -SPLPKGREL=pve1~bpo1 -ZFSPKGVER=${ZFSVER}-${ZFSPKGREL} -SPLPKGVER=${ZFSVER}-${SPLPKGREL} +SPLDIR=spl-linux_${ZFSVER} +SPLSRC=spl/upstream +SPLPKG=spl/debian +ZFSDIR=zfs-linux_${ZFSVER} +ZFSSRC=zfs/upstream +ZFSPKG=zfs/debian -SPLDIR=spl-build -SPLSRC=spl-debian -ZFSDIR=zfs-build -ZFSSRC=zfs-debian +ZFSVER != dpkg-parsechangelog -l ${ZFSPKG}/changelog -Sversion | cut -d- -f1 + +ZFSPKGVER != dpkg-parsechangelog -l ${ZFSPKG}/changelog -Sversion +SPLPKGVER != dpkg-parsechangelog -l ${SPLPKG}/changelog -Sversion SPL_DEB = \ spl_${SPLPKGVER}_amd64.deb +SPL_DSC = spl-linux_${SPLPKGVER}.dsc ZFS_DEB1= libnvpair1linux_${ZFSPKGVER}_amd64.deb ZFS_DEB2= \ @@ -28,11 +30,23 @@ zfs-initramfs_${ZFSPKGVER}_all.deb \ zfs-test_${ZFSPKGVER}_amd64.deb \ zfsutils-linux_${ZFSPKGVER}_amd64.deb ZFS_DEBS= $(ZFS_DEB1) $(ZFS_DEB2) +ZFS_DSC = zfs-linux_${ZFSPKGVER}.dsc DEBS=${SPL_DEB} ${ZFS_DEBS} +DSCS=${SPL_DSC} ${ZFS_DSC} all: deb +.PHONY: deb deb: ${DEBS} +.PHONY: dsc +dsc: ${DSCS} + +# called from pve-kernel's Makefile to get patched sources +.PHONY: kernel +kernel: dsc + dpkg-source -x ${SPL_DSC} ../pkg-spl + dpkg-source -x ${ZFS_DSC} ../pkg-zfs + $(MAKE) -C ../pkg-zfs -f debian/rules adapt_meta_file .PHONY: dinstall dinstall: ${DEBS} @@ -40,44 +54,52 @@ dinstall: ${DEBS} .PHONY: submodule submodule: - test -f "${ZFSSRC}/debian/changelog" || git submodule update --init - test -f "${SPLSRC}/debian/changelog" || git submodule update --init + test -f "${ZFSSRC}/README.markdown" || git submodule update --init + test -f "${SPLSRC}/README.markdown" || git submodule update --init .PHONY: spl spl: ${SPL_DEB} -${SPL_DEB}: ${SPLSRC} +${SPL_DEB}: ${SPLDIR} + cd ${SPLDIR}; dpkg-buildpackage -b -uc -us + lintian ${SPL_DEB} + +${SPL_DSC}: ${SPLDIR} + tar czf spl-linux_${ZFSVER}.orig.tar.gz ${SPLDIR} + cd ${SPLDIR}; dpkg-buildpackage -S -uc -us -d + lintian $@ + +${SPLDIR}: ${SPLSRC} ${SPLPKG} rm -rf ${SPLDIR} mkdir ${SPLDIR} cp -a ${SPLSRC}/* ${SPLDIR}/ - mv ${SPLDIR}/debian/changelog ${SPLDIR}/debian/changelog.org - cat spl-changelog.Debian ${SPLDIR}/debian/changelog.org > ${SPLDIR}/debian/changelog - cd ${SPLDIR}; ln -s ../spl-patches patches - cd ${SPLDIR}; quilt push -a - cd ${SPLDIR}; rm -rf .pc ./patches - cd ${SPLDIR}; dpkg-buildpackage -b -uc -us + cp -a ${SPLPKG} ${SPLDIR}/debian .PHONY: zfs zfs: $(ZFS_DEBS) $(ZFS_DEB2): $(ZFS_DEB1) -$(ZFS_DEB1): $(ZFSSRC) +$(ZFS_DEB1): ${ZFSDIR} + cd ${ZFSDIR}; dpkg-buildpackage -b -uc -us + lintian ${ZFS_DEBS} + +${ZFS_DSC}: ${ZFSDIR} + tar czf zfs-linux_${ZFSVER}.orig.tar.gz ${ZFSDIR} + cd ${ZFSDIR}; dpkg-buildpackage -S -uc -us -d + lintian $@ + +${ZFSDIR}: $(ZFSSRC) ${ZFSPKG} rm -rf ${ZFSDIR} mkdir ${ZFSDIR} cp -a ${ZFSSRC}/* ${ZFSDIR}/ - mv ${ZFSDIR}/debian/changelog ${ZFSDIR}/debian/changelog.org - cat zfs-changelog.Debian ${ZFSDIR}/debian/changelog.org > ${ZFSDIR}/debian/changelog - cd ${ZFSDIR}; ln -s ../zfs-patches patches - cd ${ZFSDIR}; quilt push -a - cd ${ZFSDIR}; rm -rf .pc ./patches - cd ${ZFSDIR}; dpkg-buildpackage -b -uc -us + cp -a ${ZFSPKG} ${ZFSDIR}/debian + .PHONY: clean clean: - rm -rf *~ *.deb *.changes *.buildinfo ${ZFSDIR} ${SPLDIR} + rm -rf *~ *.deb *.changes *.buildinfo *.dsc *.orig.tar.* *.debian.tar.* ${ZFSDIR} ${SPLDIR} .PHONY: distclean distclean: clean - .PHONY: upload upload: ${DEBS} - tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch --arch amd64 + tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster --arch amd64