debian/0000755000000000000000000000000011622245432007167 5ustar debian/manpages0000644000000000000000000000001511622243773010707 0ustar asp.1 aspd.8 debian/install0000644000000000000000000000003311622243656010562 0ustar asp usr/bin aspd usr/sbin debian/README.Debian0000644000000000000000000000174511407155056011242 0ustar The in.aspd service (called by inetd) is deactivated by default. To activate it, execute, as root, $ update-inetd --enable asp Be aware that this may be a security risk. You are recommended to firewall off the asp port (27374/udp) from remote machines using (e.g.) ipchains or iptables. asp(1) can be used from scripts, a few examples: $ number="`192.168.1.1-5 | asp -f plato`" $ echo $? 0 $ echo $number 192.168.1.1 $ number="`echo 2.2.2.2 | asp -f plato`" $ echo $? 1 $ echo $number $ # no match And a few comments from the author: > COMMENTS: > > Try to restrict the range of the addresses to those that the searched > host could actually have: this saves bandwidth. > > Metaip addresses are allowed only on the last part of the input > addresses: if the possible ip addresses belongs to different networks, > use as many metaip addresses as needed; this is because allowing > metaip addresses as xxx.yyy.*.* or even *.*.*.* would not be a good > idea... > > Stenio Brunetta debian/postrm0000644000000000000000000000023311407155056010437 0ustar #!/bin/sh set -e case "$1" in remove) if [ -x /usr/sbin/update-inetd ]; then update-inetd --remove asp fi ;; esac #DEBHELPER# debian/source/0000755000000000000000000000000011407155126010470 5ustar debian/source/format0000644000000000000000000000001411407155126011676 0ustar 3.0 (quilt) debian/dirs0000644000000000000000000000002111407155056010047 0ustar usr/bin usr/sbin debian/clean0000644000000000000000000000001111622244631010164 0ustar asp aspd debian/compat0000644000000000000000000000000211407155220010361 0ustar 7 debian/control0000644000000000000000000000106611622245337010601 0ustar Source: asp Section: net Priority: extra Maintainer: Roland Stigge Standards-Version: 3.9.2 Build-Depends: debhelper (>= 7.0.50~) Homepage: https://sourceforge.net/projects/asp/ Package: asp Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Discovers present ip-address of dynamically connected hosts Asp discovers the present ip address of a host that has a dynamically assigned ip-address. This is useful when you want to connect to dynamic hosts, or to help others find you (in which case you run asp as a server). debian/changelog0000644000000000000000000000711111622245416011043 0ustar asp (1.8-8) unstable; urgency=low * debian/control: - Standards-Version: 3.9.2 - Added upstream homepage (sf.net) * Added debian/watch * debian/rules: New debhelper dh targets * debian/copyright: Updated upstream homepage (sf.net) -- Roland Stigge Mon, 15 Aug 2011 18:09:08 +0200 asp (1.8-7) unstable; urgency=low * Moved to new source format 3. (quilt) * debian/control: Standards-Version: 3.8.4 * debhelper compatibility level 7 -- Roland Stigge Sat, 19 Jun 2010 16:56:27 +0200 asp (1.8-6) unstable; urgency=high * debian/{postinst,postrm}: Use proper if-clause for update-inetd check (Closes: #416639) -- Roland Stigge Thu, 29 Mar 2007 16:31:21 +0200 asp (1.8-5) unstable; urgency=low * Standards-Version: 3.6.0 * Added debian/postrm to remove inetd entry * Changed debian/postinst to use automatic /etc/inetd.conf entry instead of manual one (in.aspd activation now with: update-inetd --enable asp) * Added activation and security note to debian/README.Debian -- Roland Stigge Mon, 14 Jul 2003 12:03:38 +0200 asp (1.8-4) unstable; urgency=low * debian/copyright: new author's email address * debian/rules: DH_COMPAT=4 * Moved debian/USAGE to debian/README.Debian * Removed (now empty) debian/docs -- Roland Stigge Fri, 11 Jul 2003 13:58:01 +0200 asp (1.8-3) unstable; urgency=low * New maintainer (Closes: #200134) * Standards-Version: 3.5.10 * debian/control: adjusted the Description: to new standard * debian/copyright: changed author's email due to bounces at the old address -- Roland Stigge Fri, 11 Jul 2003 09:21:16 +0200 asp (1.8-2) unstable; urgency=low * New Maintainer. (Closes: #93867) * Removed emacs crap from changelog. * Re-organise debian/ to my prefered style (IE: No leading package name for single-binary packages.) * Edit postinst to remove useless 'exit 0', and have it call '/bin/sh' instead of bash. * Move asp_usage to USAGE. * Install USAGE as a doc, rather than example. -- Steve Kowalik Fri, 11 Jan 2002 23:11:36 +1100 asp (1.8-1) unstable; urgency=low * Non-maintainer upload, set maintainer to QA group * New upstream release, containing tmp race fix (Closes: Bug#58344) * Builds without requiring user input (Closes: Bug#50101, Bug#70129) * FHS Compliance (Closes: Bug#91111, Bug#91368, Bug#91388) * Bumped Standards-version to 3.5.2 * Converted to debhelper -- Gergely Nagy <8@free.bsd.hu> Fri, 13 Apr 2001 18:06:53 +0200 asp (1.7) unstable; urgency=low * New upstream release. -- Ioannis Tambouras Sun, 16 May 1999 03:30:56 -0400 asp (1.6-4) unstable; urgency=low * Added the -V option, display the version number, which was missing in the pre-release version. * Fixed one mistyped word in asp_usage. -- Ioannis Tambouras Fri, 12 Sep 1997 23:56:03 -0400 asp (1.6-3) unstable; urgency=low * No changes, of any kind. This version corrects for previous * upload errors, namely, unsigned diff files. -- Ioannis Tambouras Tue, 19 Aug 1997 23:03:19 -0400 asp (1.6-2) unstable; urgency=low * Added dependence on netbase (>= 2.17) * Changed postinst so that update-inetd adds a commented entry . * Removed postrm. * Added section field. -- Ioannis Tambouras Tue, 19 Aug 1997 15:46:59 -0400 asp (1.6-1) unstable; urgency=low * * * Initial Release. -- Ioannis Tambouras Thu, 14 Aug 1997 02:21:17 -0400 debian/rules0000755000000000000000000000051711622244521010250 0ustar #! /usr/bin/make -f %: dh $@ override_dh_install: dh_install mv $(CURDIR)/debian/asp/usr/sbin/aspd \ $(CURDIR)/debian/asp/usr/sbin/in.aspd override_dh_installman: dh_installman mv $(CURDIR)/debian/asp/usr/share/man/man8/aspd.8 \ $(CURDIR)/debian/asp/usr/share/man/man8/in.aspd.8 # empty targets: override_dh_auto_install: debian/postinst0000644000000000000000000000146511407155056011006 0ustar #!/bin/sh set -e INETDCONF=/etc/inetd.conf INETDENTRY="asp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.aspd" case "$1" in configure) if [ -x /usr/sbin/update-inetd ]; then if grep -q '^asp' $INETDCONF ; then ENABLED=yes else ENABLED=no fi # remove legacy entry: if grep -q "^#$INETDENTRY" $INETDCONF ; then update-inetd --remove asp fi if [ "$ENABLED" = "yes" ]; then update-inetd --add "$INETDENTRY" else update-inetd --add "## $INETDENTRY" fi fi ;; abort-upgrade|abort-remove|abort-deconfigure) if [ -x /usr/sbin/update-inetd ]; then update-inetd --remove asp fi ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# debian/watch0000644000000000000000000000006011622242212010205 0ustar version=3 http://sf.net/asp/.*asp-(.*)\.tar\.gz debian/copyright0000644000000000000000000000204711622245245011127 0ustar This package was debianized by ioannis ioannis@debian.org on Wed, 27 Jan 1999 18:27:54 -0500. Upstream author: Stenio Brunetta It was downloaded from: https://sourceforge.net/projects/asp/ Copyright: Aspd Address Search Protocol Daemon Copyright (C) 1996-2001 Stenio Brunetta This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA See /usr/share/common-licenses/GPL for the full text of the GNU GPL.