# Makefile for maintaining glibc fedora-branch and creating Fedora source RPMs. glibc.spec: # The default target. tag-prefix := fedora- .PHONY: update commit-merge commit patch tag archive finish_archive srpm rpm snapshot-date-fmt := +'%Y-%m-%d %H:%M %Z' snapshot-name-fmt := +'%Y%m%dT%H%M' include branch.mk on-branch = $(filter-out HEAD,$(glibc-base)) snapshot-date := $($(glibc-branch)-sync-date) snapshot-name := $(shell date -u -d '$(snapshot-date)' $(snapshot-name-fmt)) tag-name := glibc$(patsubst glibc-%-branch,-%,\ $(filter-out HEAD,$(glibc-base))) tar-name := $(subst _,.,$(tag-name)) select-snapshot = -r '$($(glibc-branch)-sync-tag)' snapshot-id = $($(glibc-branch)-sync-tag) branch.mk-vars = glibc-branch glibc-base DIST_BRANCH COLLECTION update: now=`date -u $(snapshot-date-fmt)`; \ name=`date -u -d "$$now" $(snapshot-name-fmt)`; \ new="$(tag-prefix)$(tag-name)-$$name"; \ cvs -Q rtag $(if $(on-branch),-r $(glibc-base),-D "$$now") $$new libc;\ (echo '# This file is updated automatically by Makefile.'; \ $(foreach var,$(branch.mk-vars),\ $(if $($(var)),echo '$(var) := $($(var))';)) \ echo "$(glibc-branch)-sync-date := $$now"; \ echo "$(glibc-branch)-sync-tag := $$new"; \ ) > branch.mk; \ cd ..; (set -x; cvs -q update -d -P \ -j'$($(glibc-branch)-sync-tag)' -j"$$new") \ 2>&1 | tee fedora/update.log .PHONY: snapshot-time snapshot-time: branch.mk date -d '$(snapshot-date)' commit-merge: cd ..; cvs -Q commit -m"Updated to $(snapshot-id)" glibc.spec: glibc.spec.in ../version.h branch.mk (echo '%define glibcdate $(snapshot-name)'; \ echo '%define glibcname $(tar-name)'; \ sed -n '/VERSION/s/^.*"\([^"]*\)"$$/%define glibcversion \1/p' \ ../version.h; \ cat $<) > $@.new mv -f $@.new $@ ifeq (,$(wildcard glibc.spec)) Makefile: glibc.spec ; else spec-nvr := $(shell rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE}\n' \ --specfile glibc.spec | sed 1q) spec-tag = $(subst .,_,$(spec-nvr)) ifeq ($(tagged),no) select-release = -r $(glibc-branch)-branch else select-release = -r $(tag-prefix)$(spec-tag) endif tag: glibc.spec cd ..; cvs -Q tag -c $(tag-prefix)$(spec-tag) force-tag: glibc.spec cd ..; cvs -Q tag -F -c $(tag-prefix)$(spec-tag) # Note this rule assumes that your working directory (..) is up to date. $(tar-name)-$(glibc-branch).patch: makepatch.awk glibc.spec \ ../ChangeLog ../*/ChangeLog (cd ..; cvs -q diff -upN $(select-snapshot) $(select-release)) | \ awk -v OLDVER=$(tar-name)-$(snapshot-name) \ -v NEWVER=$(tar-name)-$(snapshot-name)-$(glibc-branch) \ -f $< > patch.tmp mv -f patch.tmp $@ # makepatch.awk omits these files from the patch; we put them in a tar file. outside-patch = fedora c_stubs rtkaio glibc-compat \ localedata/charmaps/GB18030 iconvdata/gb18030.c $(tar-name)-$(glibc-branch)-$(snapshot-name).tar.bz2: Makefile branch.mk \ ../ChangeLog \ ../*/ChangeLog @rm -rf libc cvs -Q export $(select-release) $(addprefix libc/,$(outside-patch)) tar cf - -C libc $(outside-patch) | bzip2 -9 > $@.new rm -rf libc mv -f $@.new $@ $(tar-name)-$(snapshot-name).tar.bz2: Makefile branch.mk @rm -rf $(tar-name)-$(snapshot-name) cvs -Q export -d $(tar-name)-$(snapshot-name) $(select-snapshot) libc tar cf - $(tar-name)-$(snapshot-name) | bzip2 -9 > $@.new rm -rf $(tar-name)-$(snapshot-name) mv -f $@.new $@ archives = $(tar-name)-$(snapshot-name).tar.bz2 \ $(tar-name)-$(glibc-branch)-$(snapshot-name).tar.bz2 \ $(tar-name)-$(glibc-branch).patch finish_archive: $(archives) archive: glibc.spec $(MAKE) tag finish_archive rpm srpm: $(spec-nvr).src.rpm $(spec-nvr).src.rpm: glibc.spec $(archives) rpmbuild --define "_sourcedir `pwd`" \ --define "_specdir `pwd`" \ --define "_srcrpmdir `pwd`" \ --nodeps -bs $< ### # These rules are for dealing with the Fedora package repository # and the Red Hat internal build system. # # To use this, put in ~/.cvsdistrc at least a line: # DIST_COMMON = /some/checkout/of/dist/common # We will find cvs-import.sh there and use its CVS/Root for where to commit. .PHONY: dist-import -include ~/.cvsdistrc ifdef DIST_COMMON DIST_BRANCH ?= devel COLLECTION ?= dist-fc3 BHC_FLAGS ?= -n bhc-baseurl := cvs://cvs.devel.redhat.com/cvs/dist?rpms bhc-url = $(bhc-baseurl)/glibc/$(DIST_BRANCH)#$(spec-tag) dist-import: $(spec-nvr).src.rpm $(DIST_COMMON)/cvs-import.sh -b $(DIST_BRANCH) $< ls -l $< > $@ dist-build: dist-import bhc $(BHC_FLAGS) $(COLLECTION) '$(bhc-url)' endif ### endif