[Pkg-samba-maint] r1359 - trunk/tdb/debian

Jelmer Vernooij ctrlsoft-guest at alioth.debian.org
Wed May 2 16:16:14 UTC 2007


Author: ctrlsoft-guest
Date: 2007-05-02 16:16:14 +0000 (Wed, 02 May 2007)
New Revision: 1359

Modified:
   trunk/tdb/debian/changelog
   trunk/tdb/debian/control
   trunk/tdb/debian/copyright
   trunk/tdb/debian/rules
Log:
Update to 1.1.0.

Modified: trunk/tdb/debian/changelog
===================================================================
--- trunk/tdb/debian/changelog	2007-05-02 15:35:13 UTC (rev 1358)
+++ trunk/tdb/debian/changelog	2007-05-02 16:16:14 UTC (rev 1359)
@@ -1,3 +1,11 @@
+tdb (1.1.0-0ubuntu1) unstable; urgency=low
+
+  * New upstream release.
+  * New maintainer. (Closes: #411687)
+  * Drop dependency on gdbm-dev.
+
+ -- Jelmer Vernooij <jelmer at samba.org>  Wed, 02 May 2007 18:50:36 +0200
+
 tdb (1.0.6-13) unstable; urgency=high
 
   * Closes: #307214: ctrlproxy: FTBFS: /usr/include/tdb.h:150: error:

Modified: trunk/tdb/debian/control
===================================================================
--- trunk/tdb/debian/control	2007-05-02 15:35:13 UTC (rev 1358)
+++ trunk/tdb/debian/control	2007-05-02 16:16:14 UTC (rev 1359)
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Jelmer Vernooij <jelmer at samba.org>
-Build-Depends: debhelper (>> 4.0.0), libgdbm-dev
+Build-Depends: debhelper (>> 4.0.0)
 Standards-Version: 3.6.1
 
 Package: libtdb1
@@ -12,7 +12,7 @@
 Description: Trivial Database - shared library
  This is a simple database API. It is modelled after the structure
  of GDBM. TDB features, unlike GDBM, multiple writers support with
- appropriate locking.
+ appropriate locking and transactions.
  .
  This package contains the shared library file.
 
@@ -23,7 +23,7 @@
 Description: Trivial Database - bundled binaries
  This is a simple database API. It is modelled after the structure
  of GDBM. TDB features, unlike GDBM, multiple writers support with
- appropriate locking.
+ appropriate locking and transactions.
  .
  This package contains bundled test and utility binaries
 
@@ -34,6 +34,6 @@
 Description: Trivial Database - development files
  This is a simple database API. It is modelled after the structure
  of GDBM. TDB features, unlike GDBM, multiple writers support with
- appropriate locking.
+ appropriate locking and transactions.
  .
  This package contains development files

Modified: trunk/tdb/debian/copyright
===================================================================
--- trunk/tdb/debian/copyright	2007-05-02 15:35:13 UTC (rev 1358)
+++ trunk/tdb/debian/copyright	2007-05-02 16:16:14 UTC (rev 1359)
@@ -1,7 +1,10 @@
 This package was debianized by Marek Habersack <grendel at debian.org> on
 Mon,  7 May 2001 18:03:17 +0200.
 
-It was downloaded from http://samba.org/
+The tarball was extracted from Subversion by running:
+svn export svn://svn.samba.org/samba/tags/TDB_1_1_0 tdb-1.1.0
+cd tdb-1.1.0 && ./autogen.sh && cd ..
+tar cvz tdb-1.1.0 > tdb-1.1.0.tar.gz
 
 Upstream Author: Andrew Tridgell <tridge at samba.org>
 
@@ -17,5 +20,5 @@
 on Debian systems in the /usr/share/common-licenses/GPL file.
 
 The shared library in this package is distributed under the terms
-of the GNU Lesser General Publoic License. The text of the license is
+of the GNU Lesser General Public License. The text of the license is
 available on Debian systems in the /usr/share/common-licenses/LGPL file.

Modified: trunk/tdb/debian/rules
===================================================================
--- trunk/tdb/debian/rules	2007-05-02 15:35:13 UTC (rev 1358)
+++ trunk/tdb/debian/rules	2007-05-02 16:16:14 UTC (rev 1359)
@@ -5,15 +5,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# shared library versions, option 1
-version=2.0.5
-major=2
-# 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)}'`
-
 ifeq ($(DEB_BUILD_ARCH),i386)
 ENABLE_SPINLOCKS=--with-spinlocks --build=i386-pc-linux-gnu
 endif
@@ -27,7 +18,6 @@
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
-	# Add here commands to configure the package.
 	CC=gcc CFLAGS="-O2 -s" ./configure --prefix=/usr \
 	                                   --mandir=\$${prefix}/share/man \
 					   --infodir=\$${prefix}/share/info \
@@ -40,20 +30,15 @@
 build: configure-stamp build-stamp
 build-stamp:
 	dh_testdir
-
-	# Add here commands to compile the package.
 	$(MAKE)
-
 	touch build-stamp
 
 clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp configure-stamp
-
 	# Add here commands to clean up after the build process.
 	-$(MAKE) distclean
-
 	dh_clean
 
 install: build
@@ -61,9 +46,8 @@
 	dh_testroot
 	dh_clean -k
 	dh_installdirs
-
 	# Add here commands to install the package into debian/tmp
-	$(MAKE) install prefix=$(CURDIR)/debian/tmp/usr
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 	mv $(CURDIR)/debian/tmp/usr/bin/tdbbackup \
 	   $(CURDIR)/debian/tmp/usr/bin/tdbbackup.tdbtools
 	dh_movefiles
@@ -76,10 +60,9 @@
 binary-arch: build install
 	dh_testdir
 	dh_testroot
-
-	dh_installdocs
-	dh_installman -ptbd-dev
-	dh_installchangelogs ChangeLog
+	dh_installdocs -ptdb-dev docs/README
+	dh_installman -ptdb-dev
+	dh_installchangelogs 
 	dh_link
 	dh_strip
 	dh_compress




More information about the Pkg-samba-maint mailing list