From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rx94U-0006yk-9E for garchives@archives.gentoo.org; Tue, 14 Feb 2012 03:28:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4549EE07E0; Tue, 14 Feb 2012 03:28:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0FA17E07E0 for ; Tue, 14 Feb 2012 03:28:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 725631B4001 for ; Tue, 14 Feb 2012 03:28:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id EA18FE5400 for ; Tue, 14 Feb 2012 03:28:37 +0000 (UTC) From: "Christian Ruppert" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christian Ruppert" Message-ID: <1329190099.2155c7d0f62c9e3eefc81ca4e971b9fb78d356e6.idl0r@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: / X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: idl0r X-VCS-Committer-Name: Christian Ruppert X-VCS-Revision: 2155c7d0f62c9e3eefc81ca4e971b9fb78d356e6 X-VCS-Branch: master Date: Tue, 14 Feb 2012 03:28:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 67a686e3-9e19-4977-bf29-fdc8d0ea9df3 X-Archives-Hash: ca090da8be8f7f96ac4e3a399f761f4d commit: 2155c7d0f62c9e3eefc81ca4e971b9fb78d356e6 Author: Christian Ruppert gentoo org> AuthorDate: Tue Feb 14 03:28:19 2012 +0000 Commit: Christian Ruppert gentoo org> CommitDate: Tue Feb 14 03:28:19 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoo-syntax= .git;a=3Dcommit;h=3D2155c7d0 Make the dist target git compatible --- Makefile | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 8f86ecb..1874375 100644 --- a/Makefile +++ b/Makefile @@ -82,20 +82,20 @@ uninstall-file-%: $(subst _,/,$*) [ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)" =20 tag: - svn up - svn cp ../gentoo-syntax ../../tags/gentoo-syntax/release-$(distver) + git pull + git tag $(distpkg) @echo - @echo "tag created remember to check it in" + @echo "tag created remember to push it" @echo =20 dist: tag - mkdir "$(distpkg)" - $(MAKE) PREFIX=3D"$(distpkg)" install - svn2cl - mv ChangeLog "$(distpkg)/" - cp README "$(distpkg)/" - tar jcf "$(distpkg).tar.bz2" "$(distpkg)" - rm -fr "$(distpkg)/" + git archive --prefix=3D$(distpkg)/ --format=3Dtar -o $(distpkg).tar $(d= istpkg) + mkdir $(distpkg)/ + git log > $(distpkg)/ChangeLog + tar vfr $(distpkg).tar $(distpkg)/ChangeLog + bzip2 $(distpkg).tar + rm -rf $(distpkg)/ + =20 dist-upload: dist scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/