diff options
author | Nikolaus Schulz <microschulz@web.de> | 2009-11-06 17:13:34 +0100 |
---|---|---|
committer | Nikolaus Schulz <microschulz@web.de> | 2009-11-06 17:20:16 +0100 |
commit | 9574c4f41c36143d72f738f50019e87dc8d6b61d (patch) | |
tree | 3a75af5857ed6a30871c4edb34f0065b2c4c1606 /Makefile | |
parent | c6cb0b461272818e7afeb6d20035d180309be7b0 (diff) | |
download | archivemail-9574c4f41c36143d72f738f50019e87dc8d6b61d.tar.gz archivemail-9574c4f41c36143d72f738f50019e87dc8d6b61d.tar.bz2 archivemail-9574c4f41c36143d72f738f50019e87dc8d6b61d.zip |
Removed obsolete references to subversion
archivemail development has moved to git. This patch updates the project
webpage, removes the subversion $Id$ keyword that was stored in
archivemail.__svn_id__, and updates the Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -2,7 +2,6 @@ VERSION=$(shell python setup.py --version) VERSION_TAG=v$(subst .,_,$(VERSION)) TARFILE=archivemail-$(VERSION).tar.gz -SVNROOT=https://archivemail.svn.sourceforge.net/svnroot/archivemail HTDOCS=htdocs-$(VERSION) default: @@ -33,15 +32,7 @@ sdist: clobber doc # rm archivemail tag: - # Overwriting tags at least doesn't work with svn << 1.4, - # it silently creates a new subidr. It *may* work with - # svn 1.4, I haven't tested it. See svn bug #2188. - #cvs tag -F current - @if svn list "$(SVNROOT)/tags" | grep -qx "$(VERSION_TAG)/\?"; then \ - echo "Tag '$(VERSION_TAG)' already exists, aborting"; \ - else \ - svn copy . "$(SVNROOT)/tags/$(VERSION_TAG)"; \ - fi + git tag -a $(VERSION_TAG) upload: (cd dist && lftp -c 'open upload.sf.net && cd incoming && put $(TARFILE)') |