[Pkg-samba-maint] r1341 - in trunk/talloc: . debian

Jelmer Vernooij ctrlsoft-guest at alioth.debian.org
Wed Apr 25 14:51:34 UTC 2007


Author: ctrlsoft-guest
Date: 2007-04-25 14:51:34 +0000 (Wed, 25 Apr 2007)
New Revision: 1341

Added:
   trunk/talloc/debian/
   trunk/talloc/debian/README.building
   trunk/talloc/debian/changelog
   trunk/talloc/debian/compat
   trunk/talloc/debian/control
   trunk/talloc/debian/libtalloc-dev.install
   trunk/talloc/debian/libtalloc0.install
   trunk/talloc/debian/rules
Log:
Add a basic talloc package.



Property changes on: trunk/talloc/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/talloc/debian/README.building
===================================================================
--- trunk/talloc/debian/README.building	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/README.building	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1,4 @@
+The tarball was created by exporting 
+svn://svn.samba.org/samba/branches/SAMBA_4_0/source/lib/talloc and 
+exporting svn://svn.samba.org/samba/branches/SAMBA_4_0/source/lib/replace in
+libreplace.

Added: trunk/talloc/debian/changelog
===================================================================
--- trunk/talloc/debian/changelog	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/changelog	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1,5 @@
+talloc (1.0-1) unstable; urgency=low
+
+  * Initial release. 
+
+ -- Jelmer Vernooij <jelmer at samba.org>  Wed, 25 Apr 2007 15:35:53 +0200

Added: trunk/talloc/debian/compat
===================================================================
--- trunk/talloc/debian/compat	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/compat	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1 @@
+5

Added: trunk/talloc/debian/control
===================================================================
--- trunk/talloc/debian/control	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/control	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1,25 @@
+Source: talloc
+Section: devel
+Priority: optional
+Maintainer: Debian Samba Maintainers <samba-maint at alioth.debian.org>
+Build-Depends: debhelper (>= 5.0.37.2)
+Standards-Version: 3.7.2
+XS-Python-Version: >= 2.4
+XS-Vcs-Svn: svn://svn.debian.org/pkg-samba/trunk/talloc
+
+Package: libtalloc0
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Hierarchical pool based memory allocator
+ A hierarchical pool based memory allocator with destructors. It is 
+ the core memory allocator used in Samba4, and has made a huge difference in 
+ many aspects of Samba4 development.
+
+Package: libtalloc-dev
+Architecture: any
+Description: Hierarchical pool based memory allocator
+ A hierarchical pool based memory allocator with destructors. It is 
+ the core memory allocator used in Samba4, and has made a huge difference in 
+ many aspects of Samba4 development.
+ .
+ This package contains the development files.

Added: trunk/talloc/debian/libtalloc-dev.install
===================================================================
--- trunk/talloc/debian/libtalloc-dev.install	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/libtalloc-dev.install	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1,4 @@
+usr/lib/libtalloc.a
+usr/share/man/man3/talloc.3
+usr/lib/pkgconfig/talloc.pc
+usr/include/talloc.h

Added: trunk/talloc/debian/libtalloc0.install
===================================================================

Added: trunk/talloc/debian/rules
===================================================================
--- trunk/talloc/debian/rules	2007-04-25 12:08:27 UTC (rev 1340)
+++ trunk/talloc/debian/rules	2007-04-25 14:51:34 UTC (rev 1341)
@@ -0,0 +1,91 @@
+#!/usr/bin/make -f
+
+CFLAGS = -g -Wall
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+  CFLAGS += -O0
+else
+  CFLAGS += -O2
+endif
+
+DESTDIR=`pwd`/debian/tmp
+
+conf_args = --prefix=/usr
+
+ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
+  conf_args += --build $(DEB_BUILD_GNU_TYPE)
+else
+  conf_args += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+endif
+
+configure: patch configure-stamp
+configure-stamp:
+	dh_testdir
+	CFLAGS="$(CFLAGS)" ./configure $(conf_args)
+	touch configure-stamp
+
+build: configure build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE) all
+	touch build-stamp
+
+clean:	clean-patched unpatch
+
+clean-patched: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	-$(MAKE) distclean
+	dh_clean
+
+install: DH_OPTIONS=$(DH_EXTRAS)
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	$(MAKE) install DESTDIR=$(DESTDIR)
+	dh_install --list-missing --fail-missing --sourcedir=$(DESTDIR)
+
+# Build architecture-independent files here.
+# Pass -i to all debhelper commands in this target to reduce clutter.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdebconf
+	dh_installdocs 
+	dh_installexamples 
+	dh_installchangelogs
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+# Pass -a to all debhelper commands in this target to reduce clutter.
+
+binary-arch: DH_OPTIONS=-a $(DH_EXTRAS)
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installexamples
+	dh_installcron 
+	dh_installchangelogs 
+	dh_strip
+	dh_link
+	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 configure patch unpatch


Property changes on: trunk/talloc/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-samba-maint mailing list