summaryrefslogtreecommitdiff
path: root/fedora/Makefile
blob: 333761c9cec8991ce95fe5733b1386525dd8b654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Makefile for maintaining Fedora branches and creating Fedora source RPMs.

glibc.spec: # The default target.

.PHONY: follow merge merge-base tag force-tag archive finish_archive srpm rpm

releases-url := http://ftp.gnu.org/pub/gnu/glibc/
tag-prefix := fedora/
branch-name := fedora

GIT ?= git
git = $(shell $(GIT) $1 $2)
gitconf = $(call git,config,--get $1)
branchname = $(patsubst refs/heads/%,%,$1)

my-branch := $(call branchname,$(call git,symbolic-ref,HEAD))
upstream-remote := $(call gitconf,branch.$(my-branch).remote)
upstream-branch := $(call branchname,$(call gitconf,branch.$(my-branch).follow))

dep-my-branch := $(firstword $(wildcard ../.git/refs/heads/$(my-branch) \
	      		    	       	../.git/packed-refs))
dep-upstream-branch := $(firstword $(wildcard \
	../.git/refs/remotes/$(upstream-remote)/$(upstream-branch) \
	../.git/packed-refs))

# Use 'make follow branch=release/3.14/master' to switch this checkout
# to a new upstream branch to merge from.
follow:
ifeq (,$(branch))
	@echo "Use '$(MAKE) follow branch=NAME'"; exit 2
else
	$(GIT) rev-parse --verify $(upstream-remote)/$(branch)
	$(GIT) config branch.$(my-branch).follow $(branch)
	@$(GIT) branch -v | grep "^. $(subst .,\\.,$(my-branch)) "
endif

# Use this to merge upstream changes into this branch.
# It will fail if conflict resolution is required.
# Then you follow up with editting, 'git add FILE...', and git commit.
merge:
	$(GIT) pull
	$(GIT) merge $(upstream-remote)/$(upstream-branch)

describe-merge = describe --match 'glibc-*'

merge-base-id := $(call git,merge-base,\
	      	       	HEAD $(upstream-remote)/$(upstream-branch))
merge-base-name := $(call git,$(describe-merge) $(merge-base-id))

merge-base:
	@echo $(merge-base-id) $(merge-base-name)

snapshot-name := $(patsubst glibc-%,%,$(merge-base-name))

tar-name = $(merge-base-name)

upstream-pristine = \
	$(GIT) $(describe-merge) --exact-match > /dev/null 2>&1 $(merge-base-id)

glibc.spec: glibc.spec.in $(dep-my-branch)
	@rm -f $@.new
	echo '%define glibcsrcdir $(tar-name)' > $@.new
	if $(upstream-pristine); then \
	  echo '%define glibc_release_url $(releases-url)' >> $@.new; \
	else : ; fi; \
	$(GIT) show $(my-branch):version.h \
	| sed -n '/VERSION/s/^.*"\([^"]*\)"$$/%define glibcversion \1/p' \
	>> $@.new
	echo '### $< follows:' >> $@.new
	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 2> /dev/null | sed 1q)
spec-tag = $(spec-nvr)

tag-spec = -a -m'$(spec-nvr)' $(tag-prefix)$(spec-tag)

tag: glibc.spec
	$(GIT) tag $(tag-spec)

force-tag: glibc.spec
	$(GIT) tag -f $(tag-spec)

endif

# Omit these files from the patch and put them in a tar file.
outside-patch = fedora/ c_stubs/ rtkaio/ \
		localedata/charmaps/GB18030 iconvdata/gb18030.c

glibc-$(branch-name).patch: glibc.spec Makefile $(dep-upstream-branch)
	@echo "Creating $@ from `$(git-describe) $(my-branch)`..."
	@$(GIT) diff -a --no-renames $(merge-base-id)..$(my-branch) \
	| awk '$$1 == "diff" && $$2 == "--git" { file = $$3 } \
	       $$1 == "---" && $$2 == "/dev/null" { $$2 = file } \
	       { print }' \
	| filterdiff --remove-timestamps --clean --strip=1 \
		     -x '*/.gitignore' \
		     $(patsubst %,-x '*/%',$(patsubst %/,%/*,$(outside-patch)))\
		     --addoldprefix='$(merge-base-name)/' \
		     --addnewprefix='$(spec-nvr)/' \
	> patch.tmp
	@mv -f patch.tmp $@

git-describe = $(GIT) describe --long --always

define git-tar
echo "Creating $@ from `$(git-describe) $1`..."; \
(cd ..; $(GIT) archive --format=tar --prefix='$(tar-name)/' $1 $2) \
| bzip2 -9 > $@.new && \
mv -f $@.new $@
endef

$(tar-name)-$(branch-name).tar.bz2: glibc.spec Makefile
	@$(call git-tar,$(my-branch),$(outside-patch))

$(tar-name).tar.bz2: $(dep-upstream-branch) Makefile
	@if $(upstream-pristine); then \
	   echo 'Fetching from $(releases-url)...'; \
	   curl -C - -O $(releases-url)/$@; \
	 else \
	   $(call git-tar,$(merge-base-id)); \
	 fi

archives = $(tar-name).tar.bz2 \
	   $(tar-name)-$(branch-name).tar.bz2 \
	   glibc-$(branch-name).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 "_topdir ." \
		 --define "_sourcedir %{_topdir}" \
		 --define "_specdir %{_topdir}" \
		 --define "_srcrpmdir %{_topdir}" \
		 --define "_rpmdir %{_topdir}" \
		 --define "_builddir %{_topdir}" \
		 --nodeps -bs $<

###
# These rules are for dealing with the Fedora package repository
# and build system.
#
# To use this, put in ~/.cvspkgsrc at least a line:
#	COMMON_DIR ?= /some/checkout/of/pkgs/common
# We will find cvs-import.sh there and use its CVS/Root for where to commit.

.PHONY: dist-import

-include ~/.cvspkgsrc

ifdef COMMON_DIR
DIST_BRANCH ?= devel

pkgs-baseurl := cvs://cvs.fedoraproject.org/cvs/pkgs?rpms
pkgs-url = $(pkgs-baseurl)/glibc/$(DIST_BRANCH)\#$(spec-tag)

pkgs-import: $(spec-nvr).src.rpm
	cd $(COMMON_DIR) && cvs -q update
	$(COMMON_DIR)/cvs-import.sh -b $(DIST_BRANCH) $<
	rpm -qp $< --queryformat '[%{FILEMD5S}  %{FILENAMES}\n]' > $@.new
	mv -f $@.new $@

build: pkgs-import
	cd $(COMMON_DIR)/../glibc/$(DIST_BRANCH) && \
	cvs -q update && \
	$(MAKE) build

endif
###