[Pkg-mono-svn-commits] rev 3038 - / cecil-flowanalysis cecil-flowanalysis/trunk cecil-flowanalysis/trunk/debian

Jose Carlos Garcia Sogo jsogo at alioth.debian.org
Tue Apr 10 21:28:48 UTC 2007


Author: jsogo
Date: 2007-04-10 21:28:47 +0000 (Tue, 10 Apr 2007)
New Revision: 3038

Added:
   cecil-flowanalysis/
   cecil-flowanalysis/branches/
   cecil-flowanalysis/tags/
   cecil-flowanalysis/trunk/
   cecil-flowanalysis/trunk/debian/
   cecil-flowanalysis/trunk/debian/changelog
   cecil-flowanalysis/trunk/debian/compat
   cecil-flowanalysis/trunk/debian/control
   cecil-flowanalysis/trunk/debian/copyright
   cecil-flowanalysis/trunk/debian/rules
Log:
 cecil-flowanalysis
   + Initial import and prelimina work



Property changes on: cecil-flowanalysis/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: cecil-flowanalysis/trunk/debian/changelog
===================================================================
--- cecil-flowanalysis/trunk/debian/changelog	2007-04-09 22:13:27 UTC (rev 3037)
+++ cecil-flowanalysis/trunk/debian/changelog	2007-04-10 21:28:47 UTC (rev 3038)
@@ -0,0 +1,6 @@
+cecil-flowanalysis (0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)
+
+ -- Jose Carlos Garcia Sogo <jsogo at debian.org>  Tue, 10 Apr 2007 00:40:42 +0200
+

Added: cecil-flowanalysis/trunk/debian/compat
===================================================================
--- cecil-flowanalysis/trunk/debian/compat	2007-04-09 22:13:27 UTC (rev 3037)
+++ cecil-flowanalysis/trunk/debian/compat	2007-04-10 21:28:47 UTC (rev 3038)
@@ -0,0 +1 @@
+5

Added: cecil-flowanalysis/trunk/debian/control
===================================================================
--- cecil-flowanalysis/trunk/debian/control	2007-04-09 22:13:27 UTC (rev 3037)
+++ cecil-flowanalysis/trunk/debian/control	2007-04-10 21:28:47 UTC (rev 3038)
@@ -0,0 +1,14 @@
+Source: cecil-flowanalysis
+Section: libs
+Priority: optional
+Maintainer: Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>
+Uploaders: Jose Carlos Garcia Sogo <jsogo at debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: cli-common-dev (>= 0.4.4), mono-mcs (>= 1.1.9) | c-sharp-compiler, sharutils, libmono-cecil0.5-cil
+Standards-Version: 3.7.2
+
+Package: libmono-cecil-flowanalysis0.1-cil
+Architecture: all
+Depends: ${cli:Depends}, ${misc:Depends}
+Description: cecil engine 
+ Cecil analysis for flowcontrol

Added: cecil-flowanalysis/trunk/debian/copyright
===================================================================
--- cecil-flowanalysis/trunk/debian/copyright	2007-04-09 22:13:27 UTC (rev 3037)
+++ cecil-flowanalysis/trunk/debian/copyright	2007-04-10 21:28:47 UTC (rev 3038)
@@ -0,0 +1,34 @@
+This package was debianized by Jose Carlos Garcia Sogo <jsogo at debian.org> on
+Tue, 10 Apr 2007 00:40:42 +0200.
+
+It was downloaded from http://svn.myrealbox.com/viewcvs/trunk/cecil/flowanalysis/
+
+Upstream Author: Jb Evain  <jbevain at gmail.com>
+
+Copyright: db4objects Inc. http://www.db4o.com
+	   2005 Jb Evain <jbevain at gmail.com>
+
+License:
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+The Debian packaging is (C) 2007, Jose Carlos Garcia Sogo <jsogo at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: cecil-flowanalysis/trunk/debian/rules
===================================================================
--- cecil-flowanalysis/trunk/debian/rules	2007-04-09 22:13:27 UTC (rev 3037)
+++ cecil-flowanalysis/trunk/debian/rules	2007-04-10 21:28:47 UTC (rev 3038)
@@ -0,0 +1,98 @@
+#!/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
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/cecil-flowanalysis.sgml > cecil-flowanalysis.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/cecil-flowanalysis.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/cecil-flowanalysis install
+
+
+# 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 ChangeLog
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	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


Property changes on: cecil-flowanalysis/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-mono-svn-commits mailing list