mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-03 00:17:18 +01:00
deb: using more macros, to make it more generic, from Mazen
git-svn-id: trunk@22667 -
This commit is contained in:
parent
3ffefcb95c
commit
42dbb82a49
43
Makefile
43
Makefile
@ -3565,18 +3565,31 @@ ifndef LINKTREE
|
||||
LINKTREE:=$(CPPROG) -Rfpl
|
||||
endif
|
||||
endif
|
||||
ifndef SVNREVISION
|
||||
SVNREVISION=$(svnversion) $(BASEDIR)
|
||||
endif
|
||||
ifneq ($(wildcard ${DEBDIR}/changelog),)
|
||||
.PHONY: debcopy deb
|
||||
DEBPACKAGEVERSION:=$(shell head -n 1 ${DEBDIR}/changelog | awk '{ print $$2 }' | tr -d '[()]')
|
||||
DEBVERSION:=$(shell echo $(DEBPACKAGEVERSION) | awk -F '-' '{ print $$1 }')
|
||||
DEBVERSION=$(firstword $(subst -, ,${DEBPACKAGEVERSION}))
|
||||
DEBBUILD=$(lastword $(subst -, ,${DEBPACKAGEVERSION}))
|
||||
DEBSRC=lazarus-${DEBVERSION}
|
||||
DEBSRCDIR=$(BUILDDIR)/${DEBSRC}
|
||||
DEBSRCDIR=${BUILDDIR}/${DEBSRC}
|
||||
DEBSRC_ORIG=lazarus_${DEBVERSION}.orig
|
||||
BUILDDATE=$(shell /bin/date --utc +%Y%m%d)
|
||||
ifdef MENTORS
|
||||
DEB_BUILDPKG_OPT=-sa
|
||||
else
|
||||
DEB_BUILDPKG_OPT=
|
||||
endif
|
||||
ifeq ($(wildcard ${DEBSRC_ORIG}.tar.gz),)
|
||||
ifeq (${DEBBUILD},0)
|
||||
DEBUSESVN=1
|
||||
endif
|
||||
ifeq (${DEBBUILD},1)
|
||||
DEBUSESVN=1
|
||||
endif
|
||||
ifndef DEBUSESVN
|
||||
$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILDVER = ${DEBBUILDVER}> 1)
|
||||
endif
|
||||
endif
|
||||
ifndef SIGN
|
||||
DEB_BUILDPKG_OPT+= -us -uc
|
||||
endif
|
||||
@ -3586,8 +3599,9 @@ ifneq ($(DEBVERSION),$(PACKAGE_VERSION))
|
||||
@exit 1
|
||||
endif
|
||||
debcopy: distclean
|
||||
rm -rf ${BUILDDIR}
|
||||
install -d $(DEBSRCDIR)
|
||||
${DELTREE} ${BUILDDIR}
|
||||
${MKDIRTREE} $(DEBSRCDIR)
|
||||
ifdef DEBUSESVN
|
||||
$(LINKTREE) Makefile.fpc $(DEBSRCDIR)
|
||||
$(LINKTREE) COPYING.* $(DEBSRCDIR)
|
||||
$(LINKTREE) README.txt $(DEBSRCDIR)
|
||||
@ -3609,11 +3623,15 @@ debcopy: distclean
|
||||
$(LINKTREE) test $(DEBSRCDIR)
|
||||
$(LINKTREE) tools $(DEBSRCDIR)
|
||||
echo "const RevisionStr = '${SVNVERSION}';" > $(DEBSRCDIR)/ide/revision.inc
|
||||
else
|
||||
tar -C ${BUILDDIR} -zxf ${DEBSRC_ORIG}.tar.gz ${DEBSRC}
|
||||
${DELTREE} $(DEBSRCDIR)/debian
|
||||
endif
|
||||
debsetup:
|
||||
$(LINKTREE) ${DEBDIR} $(DEBSRCDIR)/debian
|
||||
ifdef SNAPSHOT
|
||||
sed s+${DEBPACKAGEVERSION}+${DEBPACKAGEVERSION}-${BUILDDATE}+ $(DEBSRCDIR)/debian/changelog > $(DEBSRCDIR)/debian/changelog.tmp
|
||||
mv $(DEBSRCDIR)/debian/changelog.tmp $(DEBSRCDIR)/debian/changelog
|
||||
${MOVE} $(DEBSRCDIR)/debian/changelog.tmp $(DEBSRCDIR)/debian/changelog
|
||||
endif
|
||||
chmod 755 $(DEBSRCDIR)/debian/rules
|
||||
find $(DEBSRCDIR) -name '.svn' | xargs -n1 rm -rf
|
||||
@ -3624,15 +3642,22 @@ ifdef LINTIAN
|
||||
cd ${DEBSRCDIR} ; lintian -i ../*.changes
|
||||
endif
|
||||
debclean:
|
||||
ifndef DEBUSESVN
|
||||
${DEL} ${BUILDDIR}/${DEBSRC_ORIG}
|
||||
endif
|
||||
mv -v -t . \
|
||||
$(DEBSRCDIR)/../*.changes \
|
||||
$(DEBSRCDIR)/../*.deb \
|
||||
$(DEBSRCDIR)/../*.dsc \
|
||||
$(DEBSRCDIR)/../*.gz
|
||||
rm -rf $(DEBSRCDIR)
|
||||
${DELTREE} $(DEBSRCDIR)
|
||||
rmdir $(BUILDDIR)
|
||||
deb: debcheck debcopy deborigtargz debsetup debbuild debcheckpolicy debclean
|
||||
deborigtargz:
|
||||
ifdef DEBUSESVN
|
||||
tar -C ${BUILDDIR} -zcf ${BUILDDIR}/${DEBSRC_ORIG}.tar.gz --exclude-vcs ${DEBSRC}
|
||||
else
|
||||
${LINKTREE} ${DEBSRC_ORIG}.tar.gz ${BUILDDIR}/${DEBSRC_ORIG}.tar.gz
|
||||
endif
|
||||
endif # changelog found
|
||||
endif
|
||||
|
||||
44
Makefile.fpc
44
Makefile.fpc
@ -165,21 +165,33 @@ LINKTREE:=$(CPPROG) -Rfpl
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef SVNREVISION
|
||||
SVNREVISION=$(svnversion) $(BASEDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(wildcard ${DEBDIR}/changelog),)
|
||||
|
||||
.PHONY: debcopy deb
|
||||
|
||||
DEBPACKAGEVERSION:=$(shell head -n 1 ${DEBDIR}/changelog | awk '{ print $$2 }' | tr -d '[()]')
|
||||
DEBVERSION:=$(shell echo $(DEBPACKAGEVERSION) | awk -F '-' '{ print $$1 }')
|
||||
DEBVERSION=$(firstword $(subst -, ,${DEBPACKAGEVERSION}))
|
||||
DEBBUILD=$(lastword $(subst -, ,${DEBPACKAGEVERSION}))
|
||||
DEBSRC=lazarus-${DEBVERSION}
|
||||
DEBSRCDIR=$(BUILDDIR)/${DEBSRC}
|
||||
DEBSRCDIR=${BUILDDIR}/${DEBSRC}
|
||||
DEBSRC_ORIG=lazarus_${DEBVERSION}.orig
|
||||
BUILDDATE=$(shell /bin/date --utc +%Y%m%d)
|
||||
ifdef MENTORS
|
||||
DEB_BUILDPKG_OPT=-sa
|
||||
else
|
||||
DEB_BUILDPKG_OPT=
|
||||
endif
|
||||
ifeq ($(wildcard ${DEBSRC_ORIG}.tar.gz),)
|
||||
ifeq (${DEBBUILD},0)
|
||||
DEBUSESVN=1
|
||||
endif
|
||||
ifeq (${DEBBUILD},1)
|
||||
DEBUSESVN=1
|
||||
endif
|
||||
ifndef DEBUSESVN
|
||||
$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILD = ${DEBBUILD}> 1)
|
||||
endif
|
||||
endif
|
||||
ifndef SIGN
|
||||
DEB_BUILDPKG_OPT+= -us -uc
|
||||
endif
|
||||
@ -191,8 +203,9 @@ ifneq ($(DEBVERSION),$(PACKAGE_VERSION))
|
||||
endif
|
||||
|
||||
debcopy: distclean
|
||||
rm -rf ${BUILDDIR}
|
||||
install -d $(DEBSRCDIR)
|
||||
${DELTREE} ${BUILDDIR}
|
||||
${MKDIRTREE} $(DEBSRCDIR)
|
||||
ifdef DEBUSESVN
|
||||
$(LINKTREE) Makefile.fpc $(DEBSRCDIR)
|
||||
$(LINKTREE) COPYING.* $(DEBSRCDIR)
|
||||
$(LINKTREE) README.txt $(DEBSRCDIR)
|
||||
@ -215,12 +228,16 @@ debcopy: distclean
|
||||
$(LINKTREE) tools $(DEBSRCDIR)
|
||||
# add ide/revision.inc
|
||||
echo "const RevisionStr = '${SVNVERSION}';" > $(DEBSRCDIR)/ide/revision.inc
|
||||
else
|
||||
tar -C ${BUILDDIR} -zxf ${DEBSRC_ORIG}.tar.gz ${DEBSRC}
|
||||
${DELTREE} $(DEBSRCDIR)/debian
|
||||
endif
|
||||
|
||||
debsetup:
|
||||
$(LINKTREE) ${DEBDIR} $(DEBSRCDIR)/debian
|
||||
ifdef SNAPSHOT
|
||||
sed s+${DEBPACKAGEVERSION}+${DEBPACKAGEVERSION}-${BUILDDATE}+ $(DEBSRCDIR)/debian/changelog > $(DEBSRCDIR)/debian/changelog.tmp
|
||||
mv $(DEBSRCDIR)/debian/changelog.tmp $(DEBSRCDIR)/debian/changelog
|
||||
${MOVE} $(DEBSRCDIR)/debian/changelog.tmp $(DEBSRCDIR)/debian/changelog
|
||||
endif
|
||||
chmod 755 $(DEBSRCDIR)/debian/rules
|
||||
find $(DEBSRCDIR) -name '.svn' | xargs -n1 rm -rf
|
||||
@ -234,19 +251,26 @@ ifdef LINTIAN
|
||||
endif
|
||||
|
||||
debclean:
|
||||
ifndef DEBUSESVN
|
||||
${DEL} ${BUILDDIR}/${DEBSRC_ORIG}
|
||||
endif
|
||||
mv -v -t . \
|
||||
$(DEBSRCDIR)/../*.changes \
|
||||
$(DEBSRCDIR)/../*.deb \
|
||||
$(DEBSRCDIR)/../*.dsc \
|
||||
$(DEBSRCDIR)/../*.gz
|
||||
rm -rf $(DEBSRCDIR)
|
||||
${DELTREE} $(DEBSRCDIR)
|
||||
rmdir $(BUILDDIR)
|
||||
|
||||
deb: debcheck debcopy deborigtargz debsetup debbuild debcheckpolicy debclean
|
||||
|
||||
deborigtargz:
|
||||
ifdef DEBUSESVN
|
||||
#$(MAKE) fpc_zipinstall USETAR=y ZIPTARGET=debcopy PACKDIR=$(DEBSRCDIR) FULLZIPNAME=${DEBSRC_ORIG}
|
||||
tar -C ${BUILDDIR} -zcf ${BUILDDIR}/${DEBSRC_ORIG}.tar.gz --exclude-vcs ${DEBSRC}
|
||||
else
|
||||
${LINKTREE} ${DEBSRC_ORIG}.tar.gz ${BUILDDIR}/${DEBSRC_ORIG}.tar.gz
|
||||
endif
|
||||
|
||||
endif # changelog found
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user