debian/0000775000000000000000000000000011747627411007202 5ustar debian/changelog0000664000000000000000000000321311747627411011053 0ustar aggregate (1.6-7) unstable; urgency=low [ Jari Aalto ] * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt". * Update to Standards-Version to 3.9.3 and debhelper to 9. * Add debian/clean file. [ Erik Wenzel ] * Closes:#670764 thanks to Jari Aalto -- Erik Wenzel Tue, 01 May 2012 02:29:36 +0200 aggregate (1.6-6) unstable; urgency=low * [fc5c6fb9] [control] bumped standards version: nothing changed * [615d0242] [compat] bumped compat version -- Erik Wenzel Sun, 15 Nov 2009 21:38:22 +0100 aggregate (1.6-5) unstable; urgency=low * [73535716] [control] added misc depends * [969d75fc] [control] bumped standards version; added README.source * [59423ac8] [control] added vcs fields * [ba18f844] [rules] added clean target for dpatch file modes -- Erik Wenzel Fri, 23 Jan 2009 01:29:25 +0100 aggregate (1.6-4) unstable; urgency=low * added debian/watch * bumped standards-version * added DebTags -- Erik Wenzel Thu, 27 Mar 2008 19:45:34 +0000 aggregate (1.6-3) unstable; urgency=low * added patch to remove strip flag from Makefile.in (Closes: #436390) -- Erik Wenzel Wed, 22 Aug 2007 11:49:38 +0000 aggregate (1.6-2) unstable; urgency=low * copyright cleared: is gpl compatible -- Erik Wenzel Tue, 22 May 2007 11:32:47 +0000 aggregate (1.6-1) unstable; urgency=low * Initial release. (Closes: #424039) * [control] tighten Build depedencies * [control] until copyright is cleared, moved to non-free section -- Erik Wenzel Tue, 15 May 2007 14:59:28 +0200 debian/clean0000664000000000000000000000007511747627411010211 0ustar *.o aggregate config.cache config.log config.status Makefile debian/compat0000664000000000000000000000000211747627411010400 0ustar 9 debian/control0000664000000000000000000000224211747627411010605 0ustar Source: aggregate Section: net Priority: optional Maintainer: Erik Wenzel Standards-Version: 3.9.3 Build-Depends: cdbs (>= 0.4.25), debhelper (>= 9) Vcs-Git: git://gpl.code.de/git/aggregate Vcs-Browser: http://gpl.code.de/gitweb?p=aggregate.git;a=summary Package: aggregate Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: ipv4 cidr prefix aggregator takes a list of prefixes in conventional format on stdin, and performs two optimisations to reduce the length of the prefix list. It removes any supplied prefixes which are supurfluous because they are already included in another supplied prefix (e.g., 203.97.2.0/24 would be removed if 203.97.0.0/17 was also supplied), and identifies adjacent prefixes that can be combined under a single, shorter-length prefix (e.g., 203.97.2.0/24 and 203.97.3.0/24 can be combined into the single prefix 203.97.2.0/23). Tag: implemented-in::c, interface::commandline, network::configuration, network::routing, protocol::ip, role::program, scope::utility, use::analysing, use::configuring, use::converting, use::routing, works-with-format::plaintext, works-with::network-traffic, works-with::text debian/copyright0000664000000000000000000000212011747627411011130 0ustar This package was debianized by Erik Wenzel erik@debian.org on Mon May 14 05:21:51 UTC 2007 It was downloaded from: ftp://ftp.isc.org/isc/aggregate/ Upstream Author: Joe Abley COPYRIGHT : Copyright (c) 2000-2001 by Metromedia Fiber Network Services, Inc. Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND METROMEDIA FIBER NETWORK SERVICES, INC. ("MFN") DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL MFN BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Metromedia Fiber Network 360 Hamilton Avenue White Plains, NY 10601 http://www.mfn.com/ debian/patches/0000775000000000000000000000000011747627411010631 5ustar debian/patches/10-Makefile-install-target-fix.patch0000664000000000000000000000213011747627411017315 0ustar From: > Subject: Makefile fix install target diff -urNad aggregate-1.6~/Makefile.in aggregate-1.6/Makefile.in --- aggregate-1.6~/Makefile.in 2007-05-14 10:46:42.000000000 +0000 +++ aggregate-1.6/Makefile.in 2007-05-14 10:48:02.000000000 +0000 @@ -28,6 +28,9 @@ CFLAGS = -O LDFLAGS = -s prefix = @prefix@ +DESTDIR = +PREFIX = $(DESTDIR)$(prefix) +MANDIR = $(DESTDIR)${prefix}/share/man SHELL = /bin/sh @@ -41,13 +44,18 @@ rm -f *.o install: $(PROGS) - $(INSTALL) -m 0755 aggregate $(prefix)/bin/ - $(INSTALL) -m 0644 aggregate.1 $(prefix)/man/man1/ - $(INSTALL) -m 0755 aggregate-ios $(prefix)/bin/ - $(INSTALL) -m 0644 aggregate-ios.1 $(prefix)/man/man1/ + mkdir -p $(PREFIX)/bin/ + mkdir -p $(MANDIR)/man1/ + $(INSTALL) -m 0755 aggregate $(PREFIX)/bin/ + $(INSTALL) -m 0644 aggregate.1 $(MANDIR)/man1/ + $(INSTALL) -m 0755 aggregate-ios $(PREFIX)/bin/ + $(INSTALL) -m 0644 aggregate-ios.1 $(MANDIR)/man1/ .c.o: $(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $< aggregate: $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + +aggregate-ios: + touch aggregate-ios debian/patches/20-Makefile-clean-target-fix.patch0000664000000000000000000000067011747627411016741 0ustar From: > Subject: Makefile clean target fix --- Makefile.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/Makefile.in +++ b/Makefile.in @@ -34,14 +34,13 @@ SHELL = /bin/sh -PROGS = aggregate aggregate-ios +PROGS = aggregate OBJS = aggregate.o all: $(PROGS) clean: - xargs rm -f <.cvsignore - rm -f *.o + rm -f $(PROGS) $(OBJS) install: $(PROGS) mkdir -p $(PREFIX)/bin/ debian/patches/30-Makefile-distclean-target.patch0000664000000000000000000000071011747627411017035 0ustar From: > Subject: Makefile.in distclean target diff -urNad aggregate-1.6~/Makefile.in aggregate-1.6/Makefile.in --- aggregate-1.6~/Makefile.in 2007-05-14 11:13:34.000000000 +0000 +++ aggregate-1.6/Makefile.in 2007-05-14 11:13:52.000000000 +0000 @@ -42,6 +42,9 @@ clean: rm -f $(PROGS) $(OBJS) +distclean: clean + rm -f Makefile config.* autom4te* + install: $(PROGS) mkdir -p $(PREFIX)/bin/ mkdir -p $(MANDIR)/man1/ debian/patches/40-Makefile-strip-option-remove.patch0000664000000000000000000000054111747627411017550 0ustar From: > Subject: Makefile.in strip option remove from LDFLAGS --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Makefile.in +++ b/Makefile.in @@ -26,7 +26,7 @@ DEFS = @DEFS@ LIBS = @LIBS@ CFLAGS = -O -LDFLAGS = -s +LDFLAGS = prefix = @prefix@ DESTDIR = PREFIX = $(DESTDIR)$(prefix) debian/patches/series0000664000000000000000000000022111747627411012041 0ustar 10-Makefile-install-target-fix.patch 20-Makefile-clean-target-fix.patch 30-Makefile-distclean-target.patch 40-Makefile-strip-option-remove.patch debian/rules0000775000000000000000000000066511747627411010271 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/class/makefile.mk #common-configure:: # autoconf configure.in >configure # chmod 775 configure DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) make -C $(DEB_BUILDDIR) DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/aggregate ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) LDFLAGS += -s endif debian/source/0000775000000000000000000000000011747627411010502 5ustar debian/source/format0000664000000000000000000000001411747627411011710 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000012311747627411010227 0ustar version=3 http://ftp.isc.org/isc/aggregate/aggregate-(.*)\.tar\.gz debian uupdate