]> eyrie.org Git - kerberos/heimdal-kadm5.git/commitdiff
Remove Debian packaging from the master branch release/0.08
authorRuss Allbery <rra@stanford.edu>
Sat, 3 Apr 2010 00:49:31 +0000 (17:49 -0700)
committerRuss Allbery <rra@stanford.edu>
Sat, 3 Apr 2010 00:49:31 +0000 (17:49 -0700)
Debian packaging will be maintained on a debian branch, merged with
an upstream branch created from the tarball releases.

debian/changelog [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/rules [deleted file]

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/debian/compat b/debian/compat
deleted file mode 100644 (file)
index 7ed6ff8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/debian/control b/debian/control
deleted file mode 100644 (file)
index 9ca2580..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-Source: libheimdal-kadm5-perl
-Section: perl
-Priority: optional
-Build-Depends: debhelper (>= 5.0.0),
-              perl (>= 5.8.8-12ubuntu0.4),
-              heimdal-dev
-Maintainer: IT och media <linux-sua@it.su.se>
-Standards-Version: 3.7.2
-Homepage: http://devel.it.su.se/
-
-Package: libheimdal-kadm5-perl
-Architecture: any
-Depends: ${perl:Depends},
-        ${shlibs:Depends},
-        ${misc:Depends},
-        heimdal-dev
-Description:  Perl extension for adminstration of Heimdal Kerberos servers (kadmin)
- Heimdal::Kadm5 is a basic XSUB perl glue to the Heimdal (http://www.pdc.kth.se/src/heimdal) kadm5clnt
- library. Heimdal is a free, slightly less export challenged implementation of Kerberos5 by Assar
- Westerlund and Johan Danielsson. Heimdal::Kadm5 allows you to perform more administration of your kdc
- than you can usually pull off with the included kadmin program. Heimdal::Kadm5 should be considered
- alpha-code and may consequently crash and burn but should not muck up your kdc any more than kadmin
- itself does.
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644 (file)
index 228261d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-This is the debian package for the Heimdal::Kadm5 module.
-It was created by Fredrik Thulin <ft@it.su.se> using dh-make-perl.
-
-It was downloaded from http://search.cpan.org/dist/Heimdal::Kadm5/
-
-This copyright info was automatically extracted from the perl module.
-It may not be accurate, so you better check the module sources
-if don't want to get into legal troubles.
-
-The upstream author is: 
-
-Leif Johansson, leifj@it.su.se.
-
-
-The Debian packaging is (C) 2009, Fredrik Thulin <ft@it.su.se> and
-is licensed under the same terms as the software itself (see above).
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index 237b6fd..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-export PERL_MM_USE_DEFAULT=1
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
-
-# Allow disabling build optimation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-        CFLAGS += -O0
-else
-        CFLAGS += -O2
-endif
-
-build: build-stamp
-build-stamp:
-       dh_testdir
-
-       # As this is a architecture dependent package, we are not
-       # supposed to install stuff to /usr/share. MakeMaker creates
-       # the dirs, we prevent this by setting the INSTALLVENDORARCH
-       # and VENDORARCHEXP environment variables.
-
-       # Add commands to compile the package here
-       $(PERL) Makefile.PL INSTALLDIRS=vendor \
-               INSTALLVENDORARCH=/usr/lib/perl5/ \
-               VENDORARCHEXP=/usr/lib/perl5/
-       $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
-       $(MAKE) test
-
-       touch $@
-
-clean:
-       dh_testdir
-       dh_testroot
-
-       dh_clean build-stamp install-stamp
-
-       # Add commands to clean up after the build process here
-       [ ! -f Makefile ] || $(MAKE) realclean
-
-install: install-stamp
-install-stamp: build-stamp
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-
-       # Add commands to install the package into debian/$PACKAGE_NAME here
-       $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-
-       touch $@
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do here for an architecture-dependent package
-
-# Build architecture-dependent files here.
-binary-arch: build install
-       dh_testdir
-       dh_testroot
-       dh_installexamples 
-       dh_installdocs README
-       dh_installchangelogs Changes
-       dh_shlibdeps
-       dh_strip
-       dh_perl
-       dh_compress
-       dh_fixperms
-       dh_installdeb
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-source diff:
-       @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary