[FIX] Add the rpminstall_sh.txt script

lp bug: https://launchpad.net/bugs/311981 fixed

bzr revid: stephane@tinyerp.com-20081229102859-bgxe0btq1d315a6m
This commit is contained in:
Stephane Wirtel 2008-12-29 11:28:59 +01:00
parent 907bbe31c9
commit 99c6070e3f
3 changed files with 32 additions and 0 deletions

View File

@ -1,3 +1,4 @@
include rpminstall_sh.txt
include README
include bin/import_xml.rng
include bin/server.cert

14
rpminstall_sh.txt Normal file
View File

@ -0,0 +1,14 @@
#
# This file is used by 'python setup.py bdist_rpm'
# You should not execute/call this file yourself.
#
# This script is used as the 'install' part of the RPM .spec file.
#
# Need to overwrite the install-part of the RPM to append the
# compression-suffix onto the filenames for the man-pages.
#
python setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
SUFFIX=gz
mv INSTALLED_FILES INSTALLED_FILES.orig
sed "s!\(/share/man/.*\)!\1.$SUFFIX!" INSTALLED_FILES.orig > INSTALLED_FILES

17
setup.cfg Normal file
View File

@ -0,0 +1,17 @@
[sdist]
formats=gztar
[bdist]
formats=rpm
[bdist_rpm]
release=1
requires=python >= 2.3
#build-requires=python-devel >= 2.3
#doc_files = doc/*
# Need to overwrite the install-part of the RPM to patch
# the filenames of the man pages.
install_script=rpminstall_sh.txt