mirror of
https://git.code.sf.net/p/archivemail/code
synced 2024-12-22 07:42:55 +00:00
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.
This commit is contained in:
parent
c6cb0b4612
commit
9574c4f41c
3 changed files with 9 additions and 19 deletions
11
Makefile
11
Makefile
|
@ -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)')
|
||||
|
|
|
@ -25,7 +25,6 @@ Website: http://archivemail.sourceforge.net/
|
|||
|
||||
# global administrivia
|
||||
__version__ = "archivemail v0.7.2"
|
||||
__svn_id__ = "$Id$"
|
||||
__copyright__ = """\
|
||||
Copyright (C) 2002 Paul Rodger <paul@paulrodger.com>
|
||||
(C) 2006 Peter Poeml <poeml@suse.de>,
|
||||
|
|
16
index.html
16
index.html
|
@ -97,10 +97,10 @@ for <span class="command">archivemail</span>.
|
|||
To see what has changed in the latest version, check the <a
|
||||
href="RELNOTES">release notes</a>.
|
||||
If you want to have a closer look at the current development status, here's the
|
||||
<a title="changelog in subversion HEAD" href=
|
||||
"http://archivemail.svn.sourceforge.net/viewvc/archivemail/trunk/CHANGELOG?revision=HEAD&view=markup">
|
||||
CHANGELOG</a> and the <a title="TODO list in subversion HEAD" href=
|
||||
"http://archivemail.svn.sourceforge.net/viewvc/archivemail/trunk/TODO?revision=HEAD&view=markup">
|
||||
<a title="changelog in git HEAD" href=
|
||||
"http://archivemail.git.sourceforge.net/git/gitweb.cgi?p=archivemail/archivemail;a=blob;f=CHANGELOG;hb=HEAD">
|
||||
CHANGELOG</a> and the <a title="TODO list in git HEAD" href=
|
||||
"http://archivemail.git.sourceforge.net/git/gitweb.cgi?p=archivemail/archivemail;a=blob;f=TODO;hb=HEAD">
|
||||
TODO list</a>, fresh from the repository.
|
||||
|
||||
<h2>Where can I get it?</h2>
|
||||
|
@ -118,14 +118,14 @@ package</a>.
|
|||
|
||||
<p>
|
||||
<span class="command">archivemail</span> is written in Python, and hacking it is
|
||||
easy and fun; you can check out the source from the subversion repository with
|
||||
easy and fun; you can check out the source from the git repository with
|
||||
the following command:
|
||||
<div class="example">
|
||||
<kbd>svn co https://archivemail.svn.sourceforge.net/svnroot/archivemail/trunk</kbd>
|
||||
<kbd>git clone git://archivemail.git.sourceforge.net/gitroot/archivemail/archivemail</kbd>
|
||||
</div>
|
||||
<p>
|
||||
See also the short <a href="http://sourceforge.net/svn/?group_id=49630">
|
||||
introduction to subversion access</a> at sourceforge.
|
||||
See also the short <a href="http://sourceforge.net/scm/?type=git&group_id=49630">
|
||||
introduction to git access</a> at sourceforge.
|
||||
|
||||
<!-- 2007-11-06: this site has problems, and I cannot read the mentioned article.
|
||||
<h3>Articles</h3>
|
||||
|
|
Loading…
Reference in a new issue