[Pkg-cli-libs-commits] [cecil-flowanalysis] 01/24: cecil-flowanalysis + Initial import and prelimina work

Jo Shields directhex at moszumanska.debian.org
Tue Nov 10 10:20:32 UTC 2015


This is an automated email from the git hooks/post-receive script.

directhex pushed a commit to annotated tag debian/0.1%7Esvn.128879-1
in repository cecil-flowanalysis.

commit 871bc741019e6e50b72e4a7a178cc1bdb6c23876
Author: Jose Carlos Garcia Sogo <jsogo at debian.org>
Date:   Tue Apr 10 21:28:47 2007 +0000

     cecil-flowanalysis
       + Initial import and prelimina work
---
 debian/changelog |  6 ++++
 debian/compat    |  1 +
 debian/control   | 14 ++++++++
 debian/copyright | 34 ++++++++++++++++++++
 debian/rules     | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 153 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0ee5ce7
--- /dev/null
+++ b/debian/changelog
@@ -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
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f8e8d11
--- /dev/null
+++ b/debian/control
@@ -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
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..fff4454
--- /dev/null
+++ b/debian/copyright
@@ -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'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f670cba
--- /dev/null
+++ b/debian/rules
@@ -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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cli-libs/packages/cecil-flowanalysis.git



More information about the Pkg-cli-libs-commits mailing list