annotate contrib/mercurial.spec @ 460:6409d9a0df43

add dirstate debugging commands -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 add dirstate debugging commands As I've played with various different merges and more recently rawcommit, I've found the following patch to be very very helpful in figuring out whether the dirstate is being left in a consistent or inconsistent state with respect to the current manifest. I attempted to deduce the invariants that were assumed by the current code, and then check it in this code. I may or may not have captured the design intent in this check; if not, I'd be very happy to hear more clearly what was intended, so that I can write tests to that expectation. Anyway, here's the patch. Not sure if it's a good idea to commit it to the mainline, or just leave it as a debugging aid. I attempted to package it so that it doesn't interfere with normal usage. Michael Fetterman (tweaked by mpm: remove -d magic) manifest hash: 869f5b5f954dc0f46ba27322359e811d5e21d71c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCvP77ywK+sNU5EO8RArmtAKCCVuI2slANzWZ26P5edtH/ixdwNwCfZLWl 5P+V+C92II3usO4YW2MULKY= =/Pv4 -----END PGP SIGNATURE-----
author mpm@selenic.com
date Fri, 24 Jun 2005 22:51:39 -0800
parents 7c1952b29656
children 42a6a41ab76b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
459
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
1 Summary: Mercurial -- a distributed SCM
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
2 Name: mercurial
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
3 Version: 0.6
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
4 Release: 1
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
5 Copyright: GPL
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
6 Group: Development/Tools
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
7 Distribution: RedHat
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
8 Source: http://www.selenic.com/mercurial/release/%{name}-%{version}.tar.gz
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
9 Packager: Arun Sharma <arun@sharma-home.net>
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
10 Prefix: /usr
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
11 BuildRoot: /tmp/build.%{name}-%{version}-%{release}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
12
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
13 %description
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
14
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
15 Mercurial is a fast, lightweight source control management system designed
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
16 for efficient handling of very large distributed projects.
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
17
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
18 %prep
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
19
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
20 rm -rf $RPM_BUILD_ROOT
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
21
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
22 %setup -q -n %{name}-%{version}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
23
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
24 %build
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
25
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
26 python setup.py build
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
27
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
28 %install
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
29
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
30 python setup.py install --root $RPM_BUILD_ROOT
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
31
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
32 cd $RPM_BUILD_ROOT
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
33 find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > \
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
34 $RPM_BUILD_DIR/file.list.%{name}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
35
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
36 find . -type f | sed -e 's,^\.,\%attr(-\,root\,root) ,' \
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
37 -e '/\/config\//s|^|%config|' \
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
38 -e '/\/applnk\//s|^|%config|' >> \
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
39 $RPM_BUILD_DIR/file.list.%{name}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
40
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
41 find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> \
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
42 $RPM_BUILD_DIR/file.list.%{name}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
43
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
44 %clean
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
45 rm -rf $RPM_BUILD_ROOT $RPM_BUILD_DIR/file.list.%{name}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
46
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
47 %files -f ../file.list.%{name}
7c1952b29656 Add an RPM spec file
mpm@selenic.com
parents:
diff changeset
48 %doc doc