--- zivot-20013101.orig/debian/changelog +++ zivot-20013101/debian/changelog @@ -0,0 +1,41 @@ +zivot (20013101-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Bump d/compat to level 9 (Closes: #817747) + * Add ${misc:Depends} to binary package + + -- Tobias Frost Sat, 24 Sep 2016 13:43:02 +0200 + +zivot (20013101-3) unstable; urgency=low + + * migrate to gfortran (closes: #392185) + * update debhelper requirement to version 4 (both thanks to Warren Turkal) + * acknowledging NMU (closes: #359609) + + -- Radovan Garabík Tue, 14 Aug 2007 17:08:07 +0200 + +zivot (20013101-2.1) unstable; urgency=low + + * Non-Maintainer Upload + * Rebuild to remove /usr/doc links, closes: #359609 + * Moved zivot manpage to the correct section (6) + + -- Stephen Quinney Fri, 16 Jun 2006 14:31:18 +0100 + +zivot (20013101-2) unstable; urgency=low + + * updated and spellchecked description (closes: #85534) + Thanks to Wichert Akkerman for pointing this up + + -- Radovan Garabik Thu, 15 Feb 2001 14:20:26 +0100 + +zivot (20013101-1) unstable; urgency=low + + * Initial Release. + + -- Radovan Garabik Tue, 23 Jan 2001 17:22:25 +0100 + +Local variables: +mode: debian-changelog +add-log-mailing-address "garabik@melkor.dnp.fmph.uniba.sk" +End: --- zivot-20013101.orig/debian/compat +++ zivot-20013101/debian/compat @@ -0,0 +1 @@ +9 --- zivot-20013101.orig/debian/control +++ zivot-20013101/debian/control @@ -0,0 +1,14 @@ +Source: zivot +Section: games +Priority: optional +Maintainer: Radovan Garabík +Build-Depends: debhelper (>> 9), gfortran +Standards-Version: 3.7.2 + +Package: zivot +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: the game of life, simple console version + This is a variant of John Horton Conway's Game of Life + (a classic cellular automaton), simple console version, + written in FORTRAN. --- zivot-20013101.orig/debian/copyright +++ zivot-20013101/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Radovan Garabík on +Tue, 23 Jan 2001 17:22:25 +0100. + +It was downloaded from http://chavo.dnp.fmph.uniba.sk/~domin/prog + +Upstream Author: Pavol Domin + +Copyright: + +public domain --- zivot-20013101.orig/debian/dirs +++ zivot-20013101/debian/dirs @@ -0,0 +1 @@ +usr/bin --- zivot-20013101.orig/debian/docs +++ zivot-20013101/debian/docs @@ -0,0 +1 @@ +README --- zivot-20013101.orig/debian/rules +++ zivot-20013101/debian/rules @@ -0,0 +1,80 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + gfortran -g -O2 -o zivot zivot.f + #/usr/bin/docbook-to-man debian/zivot.sgml > zivot.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + rm -f zivot + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/zivot. + cp zivot $(CURDIR)/debian/zivot/usr/bin + +# 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_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit + dh_installcron + dh_installman zivot.6 + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms + # You may want to make some executables suid here. +# dh_suidregister +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- zivot-20013101.orig/zivot.6 +++ zivot-20013101/zivot.6 @@ -0,0 +1,33 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH ZIVOT 6 "January 23, 2001" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +zivot \- simple console game of life +.SH SYNOPSIS +.B zivot +This manual page documents briefly the +.B zivot +program. +This manual page was written for the Debian GNU/Linux distribution +because the original program does not have a manual page. +.SH OPTIONS +Zivot has no options. +.SH AUTHOR +Pavol Domin + +This manual page was written by Radovan Garabik , +for the Debian GNU/Linux system (but may be used by others). --- zivot-20013101.orig/zivot.f +++ zivot-20013101/zivot.f @@ -24,11 +24,13 @@ a(1,mdim+2)='+' a(ndim+2,1)='+' - write(*,*) 'pocet zivocichov:' +c write(*,*) 'pocet zivocichov:' + write(*,*) 'number of animals:' read(*,*) nziv do 20 i=1,nziv - write(*,*) 'pozicia',i,'. zivocicha:' +c write(*,*) 'pozicia',i,'. zivocicha:' + write(*,*) 'position of',i,'th animal:' read(*,*) ii,jj a(ii+1,jj+1)='#' 20 continue