[cppunit] 02/38: Import Debian changes 1.8.0-1

Rene Engelhard rene at moszumanska.debian.org
Sun May 14 10:57:30 UTC 2017


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

rene pushed a commit to branch experimental
in repository cppunit.

commit b90357035088fdd5a7858cc5cb4b088f64bab044
Author: Steve M. Robbins <smr at debian.org>
Date:   Sat Apr 13 11:44:23 2002 -0400

    Import Debian changes 1.8.0-1
    
    cppunit (1.8.0-1) unstable; urgency=low
    
      * New upstream release.  Closes: #130788.
      * Include configure.ac and Makefile.am to build the examples.
        Closes: #107288.
    
    cppunit (1.6.1-1) unstable; urgency=low
    
      * New upstream release.
      * New maintainer.
      * Include updated config.guess and config.sub.  Closes: #104686.
      * Do not supply shared library.
      * Remove cppunit-config.1; upstream now installs manpage.
    
    cppunit (1.5.4-2) unstable; urgency=low
    
      * added autoconf to build-depends (thanks to Rick Younie
        <younie at debian.org>)
    
    cppunit (1.5.4-1) unstable; urgency=low
    
      * Initial Release (closes: #94762).
      * Added manpage for cppunit-config and added --help to cppunit-config.
---
 debian/changelog             | 33 +++++++++++++++++++++
 debian/control               | 16 ++++++++++
 debian/copyright             | 18 ++++++++++++
 debian/dirs                  |  2 ++
 debian/doc-base.cppunit      | 11 +++++++
 debian/examples/Makefile.am  | 69 +++++++++++++++++++++++++++++++++++++++++++
 debian/examples/README       | 26 ++++++++++++++++
 debian/examples/configure.ac | 16 ++++++++++
 debian/rules                 | 70 ++++++++++++++++++++++++++++++++++++++++++++
 9 files changed, 261 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8404c40
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+cppunit (1.8.0-1) unstable; urgency=low
+
+  * New upstream release.  Closes: #130788.
+  * Include configure.ac and Makefile.am to build the examples.
+    Closes: #107288.
+
+ -- Steve M. Robbins <smr at debian.org>  Sat, 13 Apr 2002 11:44:23 -0400
+
+cppunit (1.6.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * New maintainer.
+  * Include updated config.guess and config.sub.  Closes: #104686.
+  * Do not supply shared library.
+  * Remove cppunit-config.1; upstream now installs manpage.
+
+ -- Steve M. Robbins <smr at debian.org>  Sun, 30 Sep 2001 23:52:05 -0400
+
+cppunit (1.5.4-2) unstable; urgency=low
+
+  * added autoconf to build-depends (thanks to Rick Younie
+    <younie at debian.org>)
+
+ -- Christian Leutloff <leutloff at debian.org>  Tue,  8 May 2001 21:43:09 +0200
+
+cppunit (1.5.4-1) unstable; urgency=low
+
+  * Initial Release (closes: #94762).
+  * Added manpage for cppunit-config and added --help to cppunit-config. 
+
+ -- Christian Leutloff <leutloff at debian.org>  Mon, 23 Apr 2001 19:57:19 +0200
+
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c15f2cc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: cppunit
+Section: devel
+Priority: optional
+Maintainer: Steve M. Robbins <smr at debian.org>
+Build-Depends: debhelper (>> 3.0.0), doxygen
+Standards-Version: 3.5.2
+
+Package: cppunit
+Architecture: any
+Description: The Unit Testing Library for C++
+ CppUnit is a simple Framework for incorporating test cases in 
+ your C++ code.  It is similar to, and inspired by, xUnit and
+ JUnit. 
+ .
+ For more information on CppUnit visit the project homepage
+ http://cppunit.sourceforge.net/ .
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..86c2083
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,18 @@
+This package was debianized by Christian Leutloff <leutloff at debian.org> on
+Sat, 21 Apr 2001 16:47:23 +0200.
+
+It was downloaded from the official CppUnit Homepage at:
+http://cppunit.sourceforge.net
+
+Upstream Author(s): 
+
+Michael Feathers <mfeathers at objectmentor.com> 
+Jerome Lacoste <lacostej at altern.org>          
+E. Sommerlade <eric at sommerla.de>              
+J.E. Hoffmann <je-h at gmx.net>                  
+Baptiste Lepilleur <gaiacrtn at free.fr>
+Bastiaan Bakker <bastiaan.bakker at lifeline.nl>
+
+Copyright: LGPL
+
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..74c5069
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+
diff --git a/debian/doc-base.cppunit b/debian/doc-base.cppunit
new file mode 100644
index 0000000..baef454
--- /dev/null
+++ b/debian/doc-base.cppunit
@@ -0,0 +1,11 @@
+Document: cppunit
+Title: CppUnit Cookbook
+Author: Michael Feathers and others
+Abstract: A short cookbook to help the user getting started with CppUnit.
+Section: devel
+
+Format: HTML
+Index: /usr/share/doc/cppunit/html/index.html
+Files: /usr/share/doc/cppunit/html/*.html
+
+  
diff --git a/debian/examples/Makefile.am b/debian/examples/Makefile.am
new file mode 100644
index 0000000..0d3bc62
--- /dev/null
+++ b/debian/examples/Makefile.am
@@ -0,0 +1,69 @@
+INCLUDES = $(CPPUNIT_CFLAGS)
+LDADD = $(CPPUNIT_LIBS)
+
+TESTS = hierarchy cppunittestmain
+check_PROGRAMS = $(TESTS)
+
+hierarchy_SOURCES= BoardGame.cpp \
+                   Chess.cpp \
+                   main.cpp \
+                   BoardGame.h \
+                   Chess.h \
+                   BoardGameTest.h \
+                   ChessTest.h
+
+cppunittestmain_SOURCES = \
+	BaseTestCase.cpp \
+	BaseTestCase.h \
+	CoreSuite.h \
+	CppUnitTestMain.cpp \
+	CppUnitTestSuite.cpp \
+	CppUnitTestSuite.h \
+	ExceptionTest.cpp \
+	ExceptionTest.h \
+	ExtensionSuite.h \
+	FailureException.h \
+	HelperMacrosTest.cpp \
+	HelperMacrosTest.h \
+	HelperSuite.h \
+	MockTestCase.h \
+	MockTestCase.cpp \
+	MockTestListener.cpp \
+	MockTestListener.h \
+	NotEqualExceptionTest.cpp \
+	NotEqualExceptionTest.h \
+	OrthodoxTest.cpp \
+	OrthodoxTest.h \
+	OutputSuite.h \
+	RepeatedTestTest.cpp \
+	RepeatedTestTest.h \
+	SubclassedTestCase.cpp \
+	SubclassedTestCase.h \
+	SynchronizedTestResult.h \
+	TestAssertTest.cpp \
+	TestAssertTest.h \
+	TestCallerTest.cpp \
+	TestCallerTest.h \
+	TestCaseTest.cpp \
+	TestCaseTest.h \
+	TestDecoratorTest.cpp \
+	TestDecoratorTest.h \
+	TestFailureTest.cpp \
+	TestFailureTest.h \
+	TestResultCollectorTest.cpp \
+	TestResultCollectorTest.h \
+	TestResultTest.cpp \
+	TestResultTest.h \
+	TestSetUpTest.cpp \
+	TestSetUpTest.h \
+	TestSuiteTest.cpp \
+	TestSuiteTest.h \
+	TrackedTestCase.cpp \
+	TrackedTestCase.h \
+	UnitTestToolSuite.h \
+	XmlOutputterTest.h \
+	XmlOutputterTest.cpp \
+	XmlUniformiser.h \
+	XmlUniformiser.cpp \
+	XmlUniformiserTest.h \
+	XmlUniformiserTest.cpp
diff --git a/debian/examples/README b/debian/examples/README
new file mode 100644
index 0000000..24dc063
--- /dev/null
+++ b/debian/examples/README
@@ -0,0 +1,26 @@
+This directory contains two examples of using CppUnit.
+
+The test "hierarchy" is a small example, demonstrating
+CPPUNIT_TEST_SUITE / CPPUNIT_TEST / CPPUNIT_TEST_SUITE_END family of
+macros.  The "testResetShouldFail" test is included only to show the
+output when a failure happens.  Normally one only tests for successes.
+
+The test "cppunittestmain" is a test suite for CppUnit itself.
+As you might expect, it is rather large.
+
+
+You should be able to build these examples using the following
+sequence of commands.  Be sure to unzip any gzipped source files
+first.
+
+	aclocal
+	automake --add-missing --foreign
+	autoconf
+	./configure
+	make check
+
+The CppUnit Cookbook is a good place to start -- look at
+http://localhost/doc/cppunit/html/index.html.  If someone
+would type in this code, I'll be happy to include it in the
+next release.
+
diff --git a/debian/examples/configure.ac b/debian/examples/configure.ac
new file mode 100644
index 0000000..46efa8c
--- /dev/null
+++ b/debian/examples/configure.ac
@@ -0,0 +1,16 @@
+AC_INIT(cppunit-test-example,1.0)
+#AM_INIT_AUTOMAKE(cppunit-test-example,1.0)
+AM_INIT_AUTOMAKE
+
+AC_PROG_CXX
+
+# Locate CppUnit for testing
+AM_PATH_CPPUNIT(1.8.0)
+
+# You can set up an automake conditional and use it to conditionally
+# build cppunit-using test programs.
+AM_CONDITIONAL(HAVE_CPPUNIT, test "$CPPUNIT_LIBS")
+
+AC_CONFIG_FILES(Makefile)
+AC_OUTPUT
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1ede1e3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,70 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# This file is public domain software, originally written by Joey Hess. 
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+export DH_COMPAT=3
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --disable-typeinfo-name --disable-shared
+	$(MAKE)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	-$(MAKE) clean
+	-$(MAKE) distclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) DESTDIR=`pwd`/debian/cppunit \
+		htmldir=/usr/share/doc/cppunit/html \
+		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_installdocs README
+	dh_installexamples \
+		examples/hierarchy/*.h examples/hierarchy/*.cpp \
+		examples/cppunittest/*.h examples/cppunittest/*.cpp \
+		debian/examples/*
+	dh_installmenu
+	dh_installcron
+	dh_installinfo
+	dh_installchangelogs
+	dh_link
+	dh_strip
+	dh_compress -XMakefile
+	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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-openoffice/cppunit.git



More information about the Pkg-openoffice-commits mailing list