|
From: <di...@us...> - 2007-11-07 15:01:55
|
Revision: 569
http://safekeep.svn.sourceforge.net/safekeep/?rev=569&view=rev
Author: dimi
Date: 2007-11-07 07:01:51 -0800 (Wed, 07 Nov 2007)
Log Message:
-----------
Build docs at distribution time to remove build-time dependency
on asciidoc 6, which requires python 2.3. These components are
not readily available on older system, making it impossible for
packagers to provide ready-make packages for distros such as RHEL3.
Based on a suggestion from Dag Wieers <da...@wi...>.
Modified Paths:
--------------
safekeep/trunk/Makefile
safekeep/trunk/TODO
safekeep/trunk/debian/control
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-11-07 14:54:57 UTC (rev 568)
+++ safekeep/trunk/Makefile 2007-11-07 15:01:51 UTC (rev 569)
@@ -52,7 +52,7 @@
@echo "SVN Root = $(svnroot)"
-build: docs
+build:
release: check-info commit-release dist distrpm
@@ -122,6 +122,7 @@
cat $(releasename)/$(name).spec.in | sed 's/^%define version.*/%define version $(version)/' > $(releasename)/$(name).spec
cat $(releasename)/debian/changelog.in | sed 's/^safekeep.*/safekeep ($(version)) unstable; urgency=low/' > $(releasename)/debian/changelog
mkdir -p $(releasedir); tar cz -f $(releasedir)/$(releasename).tar.gz $(releasename)
+ cd $(releasename); make docs
rm -rf $(releasename)
distdeb: dist
Modified: safekeep/trunk/TODO
===================================================================
--- safekeep/trunk/TODO 2007-11-07 14:54:57 UTC (rev 568)
+++ safekeep/trunk/TODO 2007-11-07 15:01:51 UTC (rev 569)
@@ -7,10 +7,6 @@
* Øyvind Skaar <os...@op...>: FreeBSD have snapshot capabilities
- http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/snapshots.html
- http://www.freebsd.org/cgi/man.cgi?query=snapshot&sektion=0&manpath=FreeBSD+6.2-RELEASE&apropos=1&format=html
- * Dag Wieers <da...@wi...>: avoid asciidoc build requirements
- Would it be possible to recreate the manpages and other asciidoc documents
- before distributing the tar-files ? That way there is no dependency on
- asciidoc > 6 (and as a result, no dependency on python 2.3).
* Dag Wieers <da...@wi...>: disaster recovery
http://dag.wieers.com/blog/content/call-for-participation-on-mksysb
Modified: safekeep/trunk/debian/control
===================================================================
--- safekeep/trunk/debian/control 2007-11-07 14:54:57 UTC (rev 568)
+++ safekeep/trunk/debian/control 2007-11-07 15:01:51 UTC (rev 569)
@@ -2,7 +2,7 @@
Section: Applications/System
Priority: optional
Maintainer: Lattica, Inc.
-Build-Depends: debhelper (>= 4.0.0), xmlto, asciidoc (> 6.0.3)
+Build-Depends: debhelper (>= 4.0.0)
Standards-Version: 3.6.2
Package: safekeep-server
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-11-07 14:54:57 UTC (rev 568)
+++ safekeep/trunk/safekeep.spec.in 2007-11-07 15:01:51 UTC (rev 569)
@@ -15,7 +15,6 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
-BuildRequires: xmlto, asciidoc > 6.0.3
%description
SafeKeep is a client/server backup system which enhances the
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|