From: Andreas Schwab Date: Wed, 8 Dec 2010 10:37:40 +0000 (+0100) Subject: Remove obsolete CVS rules X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c341dbe2a3217348107817037d066343c8cef39;p=thirdparty%2Fglibc.git Remove obsolete CVS rules --- diff --git a/fedora/Makefile b/fedora/Makefile index 297fd596005..f0c2818ea36 100644 --- a/fedora/Makefile +++ b/fedora/Makefile @@ -180,35 +180,3 @@ $(spec-nvr).src.rpm: glibc.spec $(archives) --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 -###