]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove obsolete CVS rules
authorAndreas Schwab <schwab@redhat.com>
Wed, 8 Dec 2010 10:37:40 +0000 (11:37 +0100)
committerAndreas Schwab <schwab@redhat.com>
Wed, 8 Dec 2010 10:37:40 +0000 (11:37 +0100)
fedora/Makefile

index 297fd596005c7ef6cb6fb555ea08e4eeca3e61f7..f0c2818ea36f91765eb5df5f1e8b1d96517f2965 100644 (file)
@@ -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
-###