debian/0000755000000000000000000000000011400576617007175 5ustar debian/compat0000644000000000000000000000000211400045674010365 0ustar 7 debian/source/0000755000000000000000000000000011400045415010460 5ustar debian/source/format0000644000000000000000000000001411400045415011666 0ustar 3.0 (quilt) debian/control0000644000000000000000000000174411400046145010572 0ustar Source: xtide-data-nonfree Section: non-free/science Homepage: http://www.flaterco.com/xtide/ Priority: extra Maintainer: Peter S Galbraith Build-Depends: debhelper (>= 7) Standards-Version: 3.8.4 Package: xtide-data-nonfree Architecture: all Conflicts: xtide (<< 2.6-1) Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: xtide-data Description: Harmonics data for xtide (Canada, Netherlands, Germany and UK) XTide is a package that provides tide and current predictions in a wide variety of formats. Graphs, text listings, and calendars can be generated, or a tide clock can be provided on your desktop. . This package provides _extra_ harmonic station data for the xtide package. XTide works fine without them using the (free) xtide-data package which provides harmonics data for the US, but this package adds non-free data for Canada, the Netherlands, Germany and the UK. . This package is non-free because commercial distribution of the data is not allowed. debian/rules0000755000000000000000000000157511400046444010253 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 build: clean: dh_testdir dh_testroot dh_clean install: dh_testdir dh_testroot dh_prep dh_installdirs install -m 644 harmonics*.tcd debian/xtide-data-nonfree/usr/share/xtide/ binary-arch: binary-indep: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/changelog0000644000000000000000000000212711400576405011044 0ustar xtide-data-nonfree (20100529-1) unstable; urgency=low * New upstream release. * Added debian/watch file. -- Peter S Galbraith Sun, 30 May 2010 20:04:21 -0400 xtide-data-nonfree (20100522-1) unstable; urgency=low * New upstream release * Switch to dpkg-source 3.0 (quilt) format. * Standards-Version: 3.8.4 * debhelper 7 -- Peter S Galbraith Fri, 28 May 2010 19:03:53 -0400 xtide-data-nonfree (20081228-1) unstable; urgency=low * New upstream release. * Bug fix: "utf8 in Quebec location name", thanks to Kevin Ryde (Closes: #558442). -- Peter S Galbraith Sat, 28 Nov 2009 19:49:17 -0500 xtide-data-nonfree (20070318-2) unstable; urgency=low * Make sure /etc/init.d/xttpd exists before invoking it in postinst and postrm scripts. -- Peter S Galbraith Thu, 27 Mar 2008 08:03:26 -0400 xtide-data-nonfree (20070318-1) unstable; urgency=low * Initial release. Splits `no commercial sale' data out of xtide-data package. -- Peter S Galbraith Thu, 13 Sep 2007 18:38:27 -0400 debian/README.Debian0000644000000000000000000000265211400045347011232 0ustar xtide-data-nonfree for Debian ----------------------------- These are _extra_ harmonic station data for the xtide package. XTide works fine without them using the xtide-data package, but this package adds non-free data for Canada, the Netherlands, Germany and the UK. There may be other TCD data files available at http://harmonics.unh.edu/xtide/files.html To use them, simply drop them in /usr/share/xtide The sources of this package include the same TCD file, rather than its sources, because that it how it is distributed. It is a transparent format that can be converted to plain text using the tcd-utils package, edited in TCD format using tideEditor[1] (as yet unpackaged) or built from an SQL data file[2] by installing Debian packages postgresql and libtcd0, building and installing the prerequisites congen[3] and libdstr[4], then building harmbase2[5] and running its included Debian.sh script, e.g.: [...weird path...]/Debian.sh harmonics-dwf-20070318 You should get harmonics-dwf-20070318-free.tcd and harmonics-dwf-20070318-nonfree.tcd. [1] tideEditor, http://www.flaterco.com/xtide/files.html#extras [2] harmonics*.sql, http://www.flaterco.com/xtide/files.html#harmonicsfiles [3] congen, http://www.flaterco.com/xtide/files.html#experts [4] libdstr, http://www.flaterco.com/util/index.html [5] hambase2, http://www.flaterco.com/xtide/files.html#experts -- Peter S Galbraith , Thu, 13 Sep 2007 21:49:02 -0400 debian/dirs0000644000000000000000000000002111400045347010041 0ustar usr/share/xtide/ debian/postrm0000644000000000000000000000222211400045347010431 0ustar #!/bin/sh # postrm script for xtide-data-nonfree # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) if test -f /etc/init.d/xttpd; then if which invoke-rc.d >/dev/null 2>&1; then invoke-rc.d xttpd restart else /etc/init.d/xttpd restart fi fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/watch0000644000000000000000000000011711400576607010224 0ustar version=3 ftp://ftp.flaterco.com/xtide/harmonics-dwf-([\d\.]+)-nonfree.tar.bz2 debian/postinst0000644000000000000000000000225511400045347010776 0ustar #!/bin/sh # postinst script for xtide-data-nonfree # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) if test -f /etc/init.d/xttpd; then if which invoke-rc.d >/dev/null 2>&1; then invoke-rc.d xttpd restart else /etc/init.d/xttpd restart fi fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/copyright0000644000000000000000000001306111400576557011134 0ustar This package was debianized by Peter Galbraith on Thu, 13 Sep 2007 18:38:27 -0400. It was downloaded from ftp://ftp.flaterco.com/xtide/harmonics-dwf-20100529-nonfree.tar.bz2 Upstream Author: Dave Flater Copyright: Copyright of various parts of the data set are held by different parties. See below. License: The Debian packaging is (C) 2007, Peter Galbraith and is licensed under the GPL Version or later, see `/usr/share/common-licenses/GPL-2'. The data are licensed as follows, from http://www.flaterco.com/xtide/harmonics_boilerplate.txt : # Canada: The harmonic constants used to perform tide predictions for # locations in Canada are derived from sea level data made available # by Marine Environmental Data Services, Fisheries and Oceans Canada, # for public, non-commercial use. The predictions are not the same as # those computed by the Canadian Hydrographic Service, which uses its # own sets of harmonic constants. # # Copyright notice for the sea level data at # http://www.meds-sdmm.dfo-mpo.gc.ca/meds/About_MEDS/copyright_e.htm: # # Non-commercial Reproduction # # Information on this site has been posted with the intent that it be # readily available for personal and public non-commercial use and may # be reproduced, in part or in whole and by any means, without charge # or further permission from the Department of Fisheries and Oceans # Canada. We ask only that: # # * Users exercise due diligence in ensuring the accuracy of the # materials reproduced; # # * The Department of Fisheries and Oceans Canada be identified as # the source department; and, # # * The reproduction is not represented as an official version of # the materials reproduced, nor as having been made, in # affiliation with or with the endorsement of the Department of # Fisheries and Oceans Canada. # # Netherlands: The Netherlands data was contributed directly by Koos # Doekes of the Rijkswaterstaat RIKZ/ZDI, who grants permission by his # own authority: # # Herewith I grant permission for non-commercial use # of all harmonic constants for the Netherlands by # users of Xtide or Xtide-based products. # # This covers the use of the constants for Dutch # ports in the Xtide-database by designers # of web applications, and the use in commercial # tidal prediction software in which the constants # themselves are not stored - i.e. the user has # to copy them from the Xtide-database himself. # # It does NOT cover the use in commercial software # in which the constants are incorporated, which is # considered commercial use of the constants here. # Any request for permission of use of Dutch constants # in software of this kind should be redirected to # RIKZ. # # Germany: The Germany data was contributed directly by Wolfgang # Lange of the Bundesamt fuer Seeschifffahrt und Hydrographie (BSH), # who grants permission by his own authority: # # As long as you make your software using these tidal data # freely available, I grant permission for non-commercial use # of the harmonic constants for the 12 reference stations at # the German North Sea coast on the same conditions and rules # layed down in the letter from Koos Doekes, RIKZ/ZDI, # concerning the Netherlands harmonic constituents. # # UK: Received 2003-11-15 DWF. See also http://www.flaterco.com/pol.html. # # Proudman Oceanographic Laboratory # Natural Environment Research Council # # Bidston Observatory # Bidston Hill # Prenton # Merseyside # CH43 7RA # United Kingdom # David Flater # 13320 Country Ridge Drive Tel +44 (0) 151 653 8633 # Germantown, MD 20874 Fax +44 (0) 151 653 6269 # United States of America www.pol.ac.uk # # # 07 November 2003 # # Dear David, # # This letter is to confirm that we are happy for you to download the # sea level data from the British Oceanographic Data Centre website and # use this in the generation of harmonic constants using the HarmGen # software. However there are a couple of things that we would politely # ask that you do. # # 1. Limit the number of harmonic constants you use in the software to # a maximum of 40 for any port. This should easily be enough to create # very accurate tidal predictions as for nearly all locations, any # harmonics left out (i.e. the 41st most significant constants onwards) # will have amplitudes of the order of a centimetre. # # 2. State that the data is derived from sea level data obtained from # the British Oceanographic Data Centre based at the Proudman # Oceanographic Laboratory, Liverpool. # # 3. Make it clear that the predictions however are not the same as # those computed by the Proudman Oceanographic Laboratory which uses its # own sets of harmonic constants. # # 4. Continue to make your software using the data freely available. # Please inform us if you intend to produce a software product that you # will be making a charge for. # # I hope these conditions are acceptable to you and it will be good to # see the UK back on the map. # # Yours sincerely, # Colin Bell # Head of Applications Group