debian/0000750000000000000000000000000011472112235007157 5ustar debian/source/0000750000000000000000000000000011472112207010456 5ustar debian/source/format0000660000000000000000000000001411472104723011673 0ustar 3.0 (quilt) debian/control0000660000000000000000000000117111472111427010567 0ustar Source: ministat Section: math Priority: extra Maintainer: Ben Hutchings Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.9.1 Vcs-Git: http://git.decadent.org.uk/git/ministat.git/ Vcs-Browser: http://git.decadent.org.uk/gitweb?p=ministat.git Package: ministat Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: a simple tool for statistical comparison of data sets The ministat command from FreeBSD. It calculates fundamental statistical properties of one or two numeric data sets, and whether a difference can be found between two data sets at a given confidence level. debian/docs0000660000000000000000000000000711472104723010035 0ustar README debian/rules0000770000000000000000000000107211472111125010236 0ustar #!/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 %: dh $@ clean: dh_clean ministat override_dh_install: dh_install ministat usr/bin override_dh_installman: dh_installman ministat.1 debian/README.source0000660000000000000000000000031311472106522011340 0ustar Changes to upstream source are organised as a quilt patch series. Run debian/rules patch to apply all patches and debian/rules unpatch to remove them. See the quilt documentation for more information. debian/copyright0000660000000000000000000000373011472106445011126 0ustar This work was packaged for Debian by: Ben Hutchings on Sun, 21 Nov 2010 02:54:08 +0000 It was downloaded from: svn://svn.freebsd.org/base/head/usr.bin/ministat Copyright: Copyright 2007 Poul-Henning Kamp License: For ministat.c: "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp For ministat.1: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The Debian packaging is: Copyright 2010 Ben Hutchings and is licenced under the same terms as ministat.1. debian/changelog0000660000000000000000000000023511472111125011031 0ustar ministat (20100628-1) unstable; urgency=low * Initial release - closes: #604186 -- Ben Hutchings Sun, 21 Nov 2010 02:54:08 +0000 debian/compat0000660000000000000000000000000211472104723010363 0ustar 7 debian/patches/0000750000000000000000000000000011472111125010603 5ustar debian/patches/series0000640000000000000000000000001011472106606012020 0ustar not-bsd debian/patches/not-bsd0000660000000000000000000000133311472111125012077 0ustar From: Ben Hutchings Subject: [PATCH] Remove FreeBSD dependencies --- ministat.orig/Makefile +++ ministat/Makefile @@ -1,9 +1,14 @@ -# $FreeBSD$ PROG= ministat DPADD= ${LIBM} LDADD= -lm -.include +.CURDIR = $(CURDIR) + +$(PROG): $(PROG).c + $(CC) -o $@ -Wall $< $(LDADD) + +clean: + rm -f $(PROG) test: ${PROG} ./${PROG} < ${.CURDIR}/chameleon --- ministat.orig/ministat.c +++ ministat/ministat.c @@ -8,9 +8,6 @@ * */ -#include -__FBSDID("$FreeBSD$"); - #include #include #include @@ -19,7 +16,6 @@ #include #include #include -#include #define NSTUDENT 100 #define NCONF 6