[Pkg-vsquare-changes] r121 - lwipv6/trunk/debian

filippo at alioth.debian.org filippo at alioth.debian.org
Wed Feb 6 23:49:22 UTC 2008


Author: filippo
Date: 2008-02-06 23:49:22 +0000 (Wed, 06 Feb 2008)
New Revision: 121

Modified:
   lwipv6/trunk/debian/changelog
   lwipv6/trunk/debian/control
   lwipv6/trunk/debian/liblwipv6-1-dev.install
   lwipv6/trunk/debian/liblwipv6-1.install
   lwipv6/trunk/debian/rules
Log:
* Switch to cdbs
* Update standard-versions to 3.7.3 (changed Source-Version)

Modified: lwipv6/trunk/debian/changelog
===================================================================
--- lwipv6/trunk/debian/changelog	2008-02-06 23:37:44 UTC (rev 120)
+++ lwipv6/trunk/debian/changelog	2008-02-06 23:49:22 UTC (rev 121)
@@ -1,3 +1,10 @@
+lwipv6 (1.1a-2) UNRELEASED; urgency=low
+
+  * Switch to cdbs
+  * Update standard-versions to 3.7.3 (changed Source-Version)
+
+ -- Filippo Giunchedi <filippo at debian.org>  Thu, 07 Feb 2008 00:07:50 +0100
+
 lwipv6 (1.1a-1) unstable; urgency=low
 
   * New upstream release, build-depend on libvdeplug2-dev

Modified: lwipv6/trunk/debian/control
===================================================================
--- lwipv6/trunk/debian/control	2008-02-06 23:37:44 UTC (rev 120)
+++ lwipv6/trunk/debian/control	2008-02-06 23:49:22 UTC (rev 121)
@@ -2,16 +2,16 @@
 Priority: optional
 Maintainer: Debian VSquare Team <pkg-vsquare-devel at lists.alioth.debian.org>
 Uploaders: Ludovico Gardenghi <garden at acheronte.it>, Guido Trotter <ultrotter at debian.org>, Filippo Giunchedi <filippo at debian.org>
-Build-Depends: debhelper (>= 5), autotools-dev, libpcap0.8-dev, libvdeplug2-dev
-Standards-Version: 3.7.2
-Vcs-SVN: svn://svn.debian.org/pkg-vsquare/lwipv6/trunk
+Build-Depends: debhelper (>= 5), autotools-dev, libpcap0.8-dev, libvdeplug2-dev, cdbs
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/pkg-vsquare/lwipv6/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-vsquare/lwipv6/trunk/
 Section: libs
 
 Package: liblwipv6-1-dev
 Section: libdevel
 Architecture: any
-Depends: liblwipv6-1 (= ${Source-Version})
+Depends: liblwipv6-1 (= ${binary:Version})
 Description: Development files for the LWIPv6 library
  LWIPv6 is a user level TCP/IP stack with the following features:
  .

Modified: lwipv6/trunk/debian/liblwipv6-1-dev.install
===================================================================
--- lwipv6/trunk/debian/liblwipv6-1-dev.install	2008-02-06 23:37:44 UTC (rev 120)
+++ lwipv6/trunk/debian/liblwipv6-1-dev.install	2008-02-06 23:49:22 UTC (rev 121)
@@ -1,4 +1,4 @@
-usr/include/*
-usr/lib/lib*.a
-usr/lib/lib*.so
-usr/lib/*.la
+debian/tmp/usr/include/*
+debian/tmp/usr/lib/lib*.a
+debian/tmp/usr/lib/lib*.so
+debian/tmp/usr/lib/*.la

Modified: lwipv6/trunk/debian/liblwipv6-1.install
===================================================================
--- lwipv6/trunk/debian/liblwipv6-1.install	2008-02-06 23:37:44 UTC (rev 120)
+++ lwipv6/trunk/debian/liblwipv6-1.install	2008-02-06 23:49:22 UTC (rev 121)
@@ -1 +1 @@
-usr/lib/lib*.so.*
+debian/tmp/usr/lib/lib*.so.*

Modified: lwipv6/trunk/debian/rules
===================================================================
--- lwipv6/trunk/debian/rules	2008-02-06 23:37:44 UTC (rev 120)
+++ lwipv6/trunk/debian/rules	2008-02-06 23:49:22 UTC (rev 121)
@@ -1,112 +1,6 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-
-# These are used for cross-compiling and for saving the configure script
-# from having to guess our platform (since we know it already)
-DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
-# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
-version=`ls src/.libs/lib*.so.* | \
- awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
-major=`ls src/.libs/lib*.so.* | \
- awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
-
-config.status: configure
-	dh_testdir
-	# Add here commands to configure the package.
-	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" 
-	#LDFLAGS="-Wl,-z,defs"
-
-
-build: build-stamp
-build-stamp:  config.status
-	dh_testdir
-
-	# Add here commands to compile the package.
-	$(MAKE)
-
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp 
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) distclean
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
-	cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
-	cp -f /usr/share/misc/config.guess config.guess
-endif
-
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	# Add here commands to install the package into debian/tmp
-	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installexamples
-	dh_install --sourcedir=debian/tmp
-#	dh_installmenu
-#	dh_installdebconf	
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-#	dh_installcron
-#	dh_installinfo
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_perl
-#	dh_python
-	dh_makeshlibs
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install 
+include /usr/share/cdbs/1/rules/buildcore.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+#include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/class/autotools.mk




More information about the Pkg-vsquare-changes mailing list