[Debian-live-changes] r1373 - in dists/trunk/live-webbuilder: . debian

Daniel Baumann daniel at alioth.debian.org
Mon May 7 19:43:32 UTC 2007


Author: daniel
Date: 2007-05-07 19:43:32 +0000 (Mon, 07 May 2007)
New Revision: 1373

Added:
   dists/trunk/live-webbuilder/debian/
   dists/trunk/live-webbuilder/debian/changelog
   dists/trunk/live-webbuilder/debian/compat
   dists/trunk/live-webbuilder/debian/control
   dists/trunk/live-webbuilder/debian/copyright
   dists/trunk/live-webbuilder/debian/rules
Modified:
   dists/trunk/live-webbuilder/Makefile
Log:


Modified: dists/trunk/live-webbuilder/Makefile
===================================================================
--- dists/trunk/live-webbuilder/Makefile	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/Makefile	2007-05-07 19:43:32 UTC (rev 1373)
@@ -14,6 +14,9 @@
 	mkdir -p $(DESTDIR)/usr/share/live-webbuilder/html
 	cp html/*.html $(DESTDIR)/usr/share/live-webbuilder/html
 
+	# Installing documentation
+	install -D -m 0755 COPYING $(DESTDIR)/usr/share/doc/live-webbuilder/COPYING
+
 uninstall:
 	# Uninstalling executables
 	rm -f $(DESTDIR)/etc/cron.d/live-webbuilder
@@ -22,6 +25,9 @@
 	# Uninstalling shared data
 	rm -rf $(DESTDIR)/usr/share/live-webbuilder
 
+	# Uninstalling documentation
+	rm -rf $(DESTDIR)/usr/share/doc/live-webbuilder
+
 clean:
 
 distclean:

Added: dists/trunk/live-webbuilder/debian/changelog
===================================================================
--- dists/trunk/live-webbuilder/debian/changelog	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/debian/changelog	2007-05-07 19:43:32 UTC (rev 1373)
@@ -0,0 +1,5 @@
+live-webbuilder (0.2.6-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Daniel Baumann <daniel at debian.org>  Mon,  7 May 2007 00:00:00 +0200

Added: dists/trunk/live-webbuilder/debian/compat
===================================================================
--- dists/trunk/live-webbuilder/debian/compat	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/debian/compat	2007-05-07 19:43:32 UTC (rev 1373)
@@ -0,0 +1 @@
+5

Added: dists/trunk/live-webbuilder/debian/control
===================================================================
--- dists/trunk/live-webbuilder/debian/control	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/debian/control	2007-05-07 19:43:32 UTC (rev 1373)
@@ -0,0 +1,16 @@
+Source: live-webbuilder
+Section: misc
+Priority: optional
+Maintainer: Debian Live <debian-live-devel at lists.alioth.debian.org>
+Uploaders: Richard Nelson <rjent at rjent.pair.com>, Daniel Baumann <daniel at debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/debian-live/dists/trunk/live-webbuilder/
+
+Package: live-webbuilder
+Architecture: all
+Depends: live-helper
+Description: web-interface to make-live
+ live-webbuilder is a web-interface to build Debian Live systems.
+ .
+  Homepage: <http://debian-live.alioth.debian.org/>

Added: dists/trunk/live-webbuilder/debian/copyright
===================================================================
--- dists/trunk/live-webbuilder/debian/copyright	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/debian/copyright	2007-05-07 19:43:32 UTC (rev 1373)
@@ -0,0 +1,34 @@
+This package was debianized by Daniel Baumann <daniel at debian.org> on
+Mon,  7 May 2007 00:00:00 +0200.
+
+It was downloaded from:
+
+	<http://debian-live.alioth.debian.org/>
+
+Upstream contact:
+
+	Debian Live <debian-live-devel at lists.alioth.debian.org>
+
+License:
+
+	Copyright (C) 2007 Richard Nelson <rjent at rjent.pair.com>
+
+	This program is free software; you can redistribute it and/or modify
+	it under the terms of the GNU General Public License as published by
+	the Free Software Foundation; either version 2 of the License, or
+	(at your option) any later version.
+
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+	GNU General Public License for more details.
+
+	You should have received a copy of the GNU General Public License
+	along with this program; if not, write to the Free Software
+	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL file.
+
+The Debian packaging is (C) 2007, Daniel Baumann <daniel at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: dists/trunk/live-webbuilder/debian/rules
===================================================================
--- dists/trunk/live-webbuilder/debian/rules	2007-05-07 19:30:23 UTC (rev 1372)
+++ dists/trunk/live-webbuilder/debian/rules	2007-05-07 19:43:32 UTC (rev 1373)
@@ -0,0 +1,47 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+upstream:
+	# Needs: subversion
+	cd .. && svn co svn://svn.debian.org/debian-live/dists/trunk/live-webbuilder || true
+	find . -type d -name .svn | xargs rm -rf
+
+build:
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Installing package
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/live-webbuilder
+
+	# Removing double files
+	rm -f debian/live-webbuilder/usr/share/doc/live-webbuilder/COPYING
+
+binary-arch: build install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_install
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: dists/trunk/live-webbuilder/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Debian-live-changes mailing list