From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9CCD5139695 for ; Wed, 22 Mar 2017 11:00:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6E3421C092; Wed, 22 Mar 2017 11:00:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 653A221C08A for ; Wed, 22 Mar 2017 11:00:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 482C234112A for ; Wed, 22 Mar 2017 11:00:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE52370F6 for ; Wed, 22 Mar 2017 11:00:19 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1490179973.f27f1bf33a4a062554711c9badd3768e0774840a.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit-dev commit in: / X-VCS-Repository: proj/gentoolkit X-VCS-Files: Makefile Makefile.skel X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: f27f1bf33a4a062554711c9badd3768e0774840a X-VCS-Branch: gentoolkit-dev Date: Wed, 22 Mar 2017 11:00:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e8d264eb-386c-4566-9ced-65b633e7a5db X-Archives-Hash: 520fd1995d118fe11849bf7298ddf503 commit: f27f1bf33a4a062554711c9badd3768e0774840a Author: Brian Dolbec gentoo org> AuthorDate: Wed Mar 22 10:52:53 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Mar 22 10:52:53 2017 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=f27f1bf3 Remove Makefile* in prep for gentoolkit merge Makefile | 58 ---------------------------------------------------------- Makefile.skel | 18 ------------------ 2 files changed, 76 deletions(-) diff --git a/Makefile b/Makefile deleted file mode 100644 index 7954425..0000000 --- a/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -include makedefs.mak - -TOOLS=ebump echangelog ekeyword eviewcvs imlate - -all: - @echo "YARMOUTH (vb.) To shout at foreigners in the belief that the louder you speak, the better they'll understand you." - @echo "PYVERSION=$(PYVERSION)" - @echo "VERSION=$(VERSION)" - @echo "DOCDIR=$(DOCDIR)" - @echo "BINDIR=$(BINDIR)" - @echo "SBINDIR=$(SBINDIR)" - @echo "MANDIR=$(MANDIR)" - @echo "MAN1DIR=$(MAN1DIR)" - -# use $(TOOLS) if we have more than one test -test: - $(MAKE) -C src/echangelog test - -clean: - rm -rf release/ - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} clean ) \ - done - -dist: - mkdir -p release/gentoolkit-dev-$(VERSION)$(RELEASE_TAG) - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} DISTDIR=release/$(RELEASE) dist ) \ - done - - cp Makefile AUTHORS README README.Developer TODO COPYING NEWS ChangeLog release/$(RELEASE)/ - - @sed -e "s/^VERSION ?= .*/VERSION ?= $(VERSION)/" \ - -e "s/^RELEASE_TAG ?= .*/RELEASE_TAG ?= $(RELEASE_TAG)/" \ - makedefs.mak > release/$(RELEASE)/makedefs.mak - - ( cd release ; tar zcf $(RELEASE).tar.gz $(RELEASE)/ ) - @echo - @echo "Now test and then copy the release tarball to the distfiles dir on dev.gentoo.org" - @echo "scp release/$(RELEASE).tar.gz dev.gentoo.org:/space/distfiles-local/" - @echo "And create a new git tag: git tag $(RELEASE); git push origin $(RELEASE)" - -install: install-gentoolkit-dev - -install-gentoolkit-dev: - install -d $(DOCDIR) - install -d $(BINDIR) - install -d $(MAN1DIR) - - install -m 0644 AUTHORS ChangeLog COPYING NEWS README README.Developer TODO $(DOCDIR)/ - - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} DESTDIR=$(DESTDIR) install ) \ - done diff --git a/Makefile.skel b/Makefile.skel deleted file mode 100644 index f544190..0000000 --- a/Makefile.skel +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -include ../../makedefs.mak - -.PHONY: all - -all: - -dist: - mkdir -p ../../$(DISTDIR)/src// - cp Makefile .1 ../../$(DISTDIR)/src// - -install: all - install -m 0755 $(BINDIR)/ - install -m 0644 .1 $(MAN1DIR)/ -