[Pkg-vsquare-changes] r119 - purelibc/trunk/debian
filippo at alioth.debian.org
filippo at alioth.debian.org
Wed Feb 6 23:36:20 UTC 2008
Author: filippo
Date: 2008-02-06 23:36:19 +0000 (Wed, 06 Feb 2008)
New Revision: 119
Modified:
purelibc/trunk/debian/changelog
purelibc/trunk/debian/control
purelibc/trunk/debian/libpurelibc0-dev.install
purelibc/trunk/debian/libpurelibc0.install
purelibc/trunk/debian/rules
Log:
* Restrict architectures to i386 amd64 powerpc ppc64
* Switch to cdbs
Modified: purelibc/trunk/debian/changelog
===================================================================
--- purelibc/trunk/debian/changelog 2008-02-06 23:21:28 UTC (rev 118)
+++ purelibc/trunk/debian/changelog 2008-02-06 23:36:19 UTC (rev 119)
@@ -2,9 +2,10 @@
* New upstream release (Closes: #403658, #410543, #404517)
* Fix watch file
- * Restrict architectures to i386 amd64 powerpc ppc64
+ * Restrict architectures to i386 amd64 powerpc ppc64
+ * Switch to cdbs
- -- Filippo Giunchedi <filippo at debian.org> Thu, 07 Feb 2008 00:14:50 +0100
+ -- Filippo Giunchedi <filippo at debian.org> Thu, 07 Feb 2008 00:33:38 +0100
purelibc (0.2-1) unstable; urgency=low
Modified: purelibc/trunk/debian/control
===================================================================
--- purelibc/trunk/debian/control 2008-02-06 23:21:28 UTC (rev 118)
+++ purelibc/trunk/debian/control 2008-02-06 23:36:19 UTC (rev 119)
@@ -2,8 +2,8 @@
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
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5), autotools-dev, cdbs
+Standards-Version: 3.7.3
Vcs-Svn: svn://svn.debian.org/pkg-vsquare/purelibc/trunk
Vcs-Browser: http://svn.debian.org/wsvn/pkg-vsquare/purelibc/trunk/
Section: libs
@@ -11,7 +11,7 @@
Package: libpurelibc0-dev
Section: libdevel
Architecture: i386 amd64 powerpc ppc64
-Depends: libpurelibc0 (= ${Source-Version})
+Depends: libpurelibc0 (= ${binary:Version})
Description: Development files for the purelibc library
purelibc is an overlay library that converts the glibc, the GNU standard C
library, into a pure library, i.e. a library that can upcall instead of
Modified: purelibc/trunk/debian/libpurelibc0-dev.install
===================================================================
--- purelibc/trunk/debian/libpurelibc0-dev.install 2008-02-06 23:21:28 UTC (rev 118)
+++ purelibc/trunk/debian/libpurelibc0-dev.install 2008-02-06 23:36:19 UTC (rev 119)
@@ -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: purelibc/trunk/debian/libpurelibc0.install
===================================================================
--- purelibc/trunk/debian/libpurelibc0.install 2008-02-06 23:21:28 UTC (rev 118)
+++ purelibc/trunk/debian/libpurelibc0.install 2008-02-06 23:36:19 UTC (rev 119)
@@ -1 +1 @@
-usr/lib/lib*.so.*
+debian/tmp/usr/lib/lib*.so.*
Modified: purelibc/trunk/debian/rules
===================================================================
--- purelibc/trunk/debian/rules 2008-02-06 23:21:28 UTC (rev 118)
+++ purelibc/trunk/debian/rules 2008-02-06 23:36:19 UTC (rev 119)
@@ -1,92 +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)
-
-
-# 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 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_installman
- dh_install --sourcedir=debian/tmp
- dh_link
- dh_strip
- dh_compress
- dh_fixperms
- 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