Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 307691a

Browse files
author
David Lutterkort
committed
Include virt-image and related files in distribution
1 parent e08a0f0 commit 307691a

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ include tests/*.xml
66
include tests/*.py
77
include virt-install
88
include virt-clone
9+
include virt-image
910
include autobuild.sh
11+
include doc/*
1012
include man/*/*.1
13+
include man/*/*.5
1114
include man/*/*.pod
1215
include po/*.po
1316
include po/*.pot

python-virtinst.spec.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,14 @@ rm -rf $RPM_BUILD_ROOT
5050

5151
%files -f %{appname}.lang
5252
%defattr(-,root,root)
53-
%doc README AUTHORS ChangeLog NEWS
53+
%doc README AUTHORS ChangeLog NEWS doc/image.rng doc/example1.xml
5454
%dir %{python_sitelib}/%{appname}
5555
%{python_sitelib}/%{appname}/*
56-
%{_mandir}/man1/virt-install.1*
57-
%{_mandir}/man1/virt-clone.1*
56+
%{_mandir}/man1/*
57+
%{_mandir}/man5/*
5858
%{_bindir}/virt-install
5959
%{_bindir}/virt-clone
60+
%{_bindir}/virt-image
6061

6162
%changelog
6263
* Tue Jul 18 2007 Daniel P. Berrange <berrange@redhat.com> - 0.200.0-1

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
import tests.coverage as coverage
1111

1212
pkgs = ['virtinst']
13-
datafiles = [('share/man/man1', ['man/en/virt-install.1', \
14-
'man/en/virt-clone.1'])]
13+
datafiles = [('share/man/man1', ['man/en/virt-install.1',
14+
'man/en/virt-clone.1',
15+
'man/en/virt-image.1']),
16+
('share/man/man5', ['man/en/virt-image.5'])]
1517
locale = None
1618
builddir = None
1719

@@ -113,7 +115,7 @@ def run(self):
113115
author_email='katzj@redhat.com',
114116
license='GPL',
115117
package_dir={'virtinst': 'virtinst'},
116-
scripts = ["virt-install","virt-clone"],
118+
scripts = ["virt-install","virt-clone", "virt-image"],
117119
packages=pkgs,
118120
data_files = datafiles,
119121
cmdclass = { 'test': TestCommand, 'build': build, \

0 commit comments

Comments
 (0)