--- iisemulator-0.95.orig/debian/README.Debian +++ iisemulator-0.95/debian/README.Debian @@ -0,0 +1,8 @@ +iisemulator for Debian +---------------------- + +IISemulator will only be useful for you in conjunction with other +honeypot software, such as honeyd. In the /usr/share/doc/iisemulator/examples +directory you will find an example configuration file for honeyd. + + -- Javier Fernandez-Sanguino Pen~a , Tue, 4 Mar 2003 14:27:22 +0100 --- iisemulator-0.95.orig/debian/changelog +++ iisemulator-0.95/debian/changelog @@ -0,0 +1,60 @@ +iisemulator (0.95-3.4) unstable; urgency=medium + + * Non-maintainer upload. + * debian/rules: added missing targets build-arch and build-indep. + (Closes: #998919) + + -- Joao Eriberto Mota Filho Sat, 16 Apr 2022 02:11:23 -0300 + +iisemulator (0.95-3.3) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Thu, 07 Jan 2021 15:00:42 +0100 + +iisemulator (0.95-3.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix a FTBFS when built with dpkg-buildpackage -A. Thanks + to Santiago Vila . (Closes: #842568) + + -- Joao Eriberto Mota Filho Thu, 24 Nov 2016 10:40:19 -0200 + +iisemulator (0.95-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Bumped DH level to 10. (Closes: #817500) + * debian/compat: created. + * debian/control: + - Added the ${misc:Depends} variable to Depends field. + - Bumped Standards-Version to 3.9.8. + - Moved the homepage information to Homepage field. (Closes: #685755) + * debian/rules: disabled the DH_COMPAT variable. + * debian/watch: + - Bumped to version 4. + - Fixed. (Closes: #450217) + + -- Joao Eriberto Mota Filho Fri, 14 Oct 2016 22:40:47 -0300 + +iisemulator (0.95-3) unstable; urgency=low + + * Fix package description (Closes: #363961) + * Use debhelper compatibility version 4 + + -- Javier Fernandez-Sanguino Pen~a Thu, 20 Apr 2006 22:44:33 +0200 + +iisemulator (0.95-2) unstable; urgency=low + + * Added ${perl:Depends} to dependancies (Closes: #264880) + + -- Javier Fernandez-Sanguino Pen~a Thu, 26 Aug 2004 17:28:24 +0200 + +iisemulator (0.95-1) unstable; urgency=low + + * Initial Release (second try) + * Fixed lintian errors (wwwroot/ contains files which seem to have + been copied from a Windows system and needed to chmod -x all of them) + + -- Javier Fernandez-Sanguino Pen~a Tue, 4 Mar 2003 14:27:22 +0100 + --- iisemulator-0.95.orig/debian/compat +++ iisemulator-0.95/debian/compat @@ -0,0 +1 @@ +10 --- iisemulator-0.95.orig/debian/control +++ iisemulator-0.95/debian/control @@ -0,0 +1,17 @@ +Source: iisemulator +Section: admin +Priority: extra +Maintainer: Javier Fernandez-Sanguino Pen~a +Build-Depends: debhelper (>= 10) +Standards-Version: 3.9.8 +Homepage: http://sf.net/projects/iisemul8/ + +Package: iisemulator +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Recommends: honeyd +Description: Emulation for the IIS web server + This package provides an emulation for the Internet Information + Services (IIS) web server which can be used in conjunction + with honeypot-deployment software (such as honeyd) to create a virtual + server that emulates it. --- iisemulator-0.95.orig/debian/copyright +++ iisemulator-0.95/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Javier Fernandez-Sanguino Pen~a on +Tue, 4 Mar 2003 14:27:22 +0100. + +It was downloaded from +http://sourceforge.net/project/showfiles.php?group_id=58266&release_id=101153 + +Upstream Authors: Rain Forrest Puppy and H D Moore + +Copyright: + +Copyright 2002 Rain Forrest Puppy and H D Moore + +The IIS Emulator 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, or (at your option) +any later version. + +The IIS Emulator 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 can find a copy of the GNU General Public License +in your Debian system under /usr/share/common-licenses/ --- iisemulator-0.95.orig/debian/dirs +++ iisemulator-0.95/debian/dirs @@ -0,0 +1 @@ +usr/share/iisemulator --- iisemulator-0.95.orig/debian/docs +++ iisemulator-0.95/debian/docs @@ -0,0 +1,5 @@ +BUGS +README +TODO +EXAMPLE.honeyd +EXAMPLE.socat --- iisemulator-0.95.orig/debian/rules +++ iisemulator-0.95/debian/rules @@ -0,0 +1,77 @@ +#!/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 + +# This is the debhelper compatibility version to use. +# export DH_COMPAT=4 + + + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cp -a iisemul* iis_data wwwroot $(CURDIR)/debian/iisemulator/usr/share/iisemulator + find $(CURDIR)/debian/iisemulator/usr/share/iisemulator/iis_data -type f -exec chmod a-x {} \; + find $(CURDIR)/debian/iisemulator/usr/share/iisemulator/wwwroot -type f -exec chmod a-x {} \; + +binary-arch: build install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples docs/honeyd.conf + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs CHANGES + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +build-arch: build +build-indep: build +.PHONY: build clean build-arch build-indep binary-indep binary-arch binary install configure --- iisemulator-0.95.orig/debian/watch +++ iisemulator-0.95/debian/watch @@ -0,0 +1,3 @@ +# Site Directory Pattern Version Script +version=4 +http://sf.net/iisemul8/iisemulator-(.*)\.tar\.gz debian uupdate