##// END OF EJS Templates
Move win32 find_in_files from util_win32 to util.
Move win32 find_in_files from util_win32 to util.

File last commit:

r3863:1ef8ada4 default
r4407:f97b8931 default
Show More
mercurial.spec
43 lines | 1.0 KiB | text/x-rpm-spec | RPMSpecLexer
mpm@selenic.com
Add an RPM spec file...
r459 Summary: Mercurial -- a distributed SCM
Name: mercurial
Matt Mackall
Remove hard-coded version numbers and release notes from packaging
r3863 Version: snapshot
Thomas Arendsen Hein
New version/release in mercurial.spec, patchbomb is now in hgext.
r1891 Release: 0
Florian La Roche
Clean up RPM spec file
r1273 License: GPL
mpm@selenic.com
Add an RPM spec file...
r459 Group: Development/Tools
Source: http://www.selenic.com/mercurial/release/%{name}-%{version}.tar.gz
Florian La Roche
Clean up RPM spec file
r1273 URL: http://www.selenic.com/mercurial
mpm@selenic.com
Add an RPM spec file...
r459 BuildRoot: /tmp/build.%{name}-%{version}-%{release}
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %define pythonver %(python -c 'import sys;print ".".join(map(str, sys.version_info[:2]))')
%define pythonlib %{_libdir}/python%{pythonver}/site-packages/%{name}
Xiaofeng Ling
fix contrib/mercurial.spec for hgext
r1890 %define hgext %{_libdir}/python%{pythonver}/site-packages/hgext
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563
mpm@selenic.com
Add an RPM spec file...
r459 %description
Mercurial is a fast, lightweight source control management system designed
for efficient handling of very large distributed projects.
%prep
rm -rf $RPM_BUILD_ROOT
Florian La Roche
Clean up RPM spec file
r1273 %setup -q
mpm@selenic.com
Add an RPM spec file...
r459
%build
python setup.py build
%install
python setup.py install --root $RPM_BUILD_ROOT
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %clean
rm -rf $RPM_BUILD_ROOT
mpm@selenic.com
Add an RPM spec file...
r459
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %files
%defattr(-,root,root,-)
Thomas Arendsen Hein
New version/release in mercurial.spec, patchbomb is now in hgext.
r1891 %doc doc/* *.cgi
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %dir %{pythonlib}
Xiaofeng Ling
fix contrib/mercurial.spec for hgext
r1890 %dir %{hgext}
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %{_bindir}/hgmerge
%{_bindir}/hg
%{pythonlib}/templates
Florian La Roche
Clean up RPM spec file
r1273 %{pythonlib}/*.py*
Matt Mackall
Remove hard-coded version numbers and release notes from packaging
r3863 %{pythonlib}/hgweb/*.py*
mpm@selenic.com
[PATCH] clean up RPM spec file...
r563 %{pythonlib}/*.so
Xiaofeng Ling
fix contrib/mercurial.spec for hgext
r1890 %{hgext}/*.py*