prerequisites:
aptitude install $(DEB_BASE) $(DEB_BOOST) $(DEB_DOC)
-#----------------------------------------------------------------------
-# Debian package info
-#----------------------------------------------------------------------
-PKG_NAME=senf-dev
-PKG_ARCH=i386
-PKG_VERS=0.0.$(SVN_REVISION)-1
-PKG_FILE = $(PKG_NAME)-$(PKG_VERS)_$(PKG_ARCH).deb
-
-#----------------------------------------------------------------------
-# Debian package structure
-#----------------------------------------------------------------------
-DEB_TOP = ./debian
-DEB_CTL = $(DEB_TOP)/DEBIAN
-DEB_LIB = $(DEB_TOP)/usr/lib/senf
-DEB_INC = $(DEB_TOP)/usr/include/senf
-DEB_DOC = $(DEB_TOP)/usr/share/doc/senf
-
package:
$(SCONS) deb
SENFSCons.UseSTLPort()
env = SENFSCons.MakeEnvironment()
+env.Help("""
+Additional top-level build targets:
+
+all_tests Build and run unit tests for all modules
+all_docs Build documentation for all modules
+all Build everything
+install_all Install SENF into $PREFIX
+deb Build debian source and binary package
+debsrc Build debian source package
+debbin Build debian binary package
+""")
+
+if os.environ.get('debian_build'):
+ rev = os.popen("dpkg-parsechangelog | awk '/^Version:/{print $2}'").read().strip()
+else:
+ rev = 'r' + os.popen("svnversion").read().strip().lower()
+
# Configure build
env.Append(
CPPPATH = [ '#' ],
DOXY_XREF_TYPES = [ 'bug', 'fixme', 'todo', 'idea' ],
DOXY_HTML_XSL = '#/doclib/html-munge.xsl',
ENV = { 'TODAY' : str(datetime.date.today()),
- 'REVISION' : os.popen("svnversion").read().strip(),
- 'LOGNAME' : os.environ['LOGNAME']
+ 'REVISION' : rev,
+ 'LOGNAME' : os.environ['LOGNAME'] # needed by the debian build scripts
},
)
HTML_FOOTER = '#/doclib/doxy-footer.html')
def updateRevision(target, source, env):
- rev = env['ENV']['REVISION']
+ rev = env['ENV']['REVISION'][1:]
if ':' in rev:
print
print "Working copy not clean. Run 'svn update'"
print
return 1
- if 'M' in rev:
+ if 'm' in rev and not ARGUMENTS.get('force_deb'):
print
print "Working copy contains local changes. Commit first"
print
return 1
- if 'S' in rev or 'M' in rev:
+ if 's' in rev:
+ rev = rev[:-1]
+ if 'm' in rev:
rev = rev[:-1]
changelog = file('debian/changelog.template').read() % {
'rev': rev,
'date': time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime()) }
file('debian/changelog','w').write(changelog)
-env.AlwaysBuild(
- env.Alias('deb', [], [ updateRevision,
- "dpkg-buildpackage -us -uc -rfakeroot" ]))
+if not os.environ.get('debian_build'):
+ env.AlwaysBuild(
+ env.Alias('deb', [], [ updateRevision,
+ "dpkg-buildpackage -us -uc -rfakeroot -I.svn" ]))
+
+ env.AlwaysBuild(
+ env.Alias('debsrc', [], [ updateRevision,
+ "dpkg-buildpackage -us -uc -rfakeroot -S -I.svn" ]))
+
+ env.AlwaysBuild(
+ env.Alias('debbin', [], [ updateRevision,
+ "dpkg-buildpackage -us -uc -rfakeroot -nc" ]))
# Create Doxyfile.local if not cleaning and the file does not exist
# otherwise doxygen will barf on this non-existent file