diff --git a/debian/README.Debian b/debian/README.Debian deleted file mode 100644 index 77cd60a..0000000 --- a/debian/README.Debian +++ /dev/null @@ -1,5 +0,0 @@ -rtbth DKMS module for Debian - -This package was automatically generated by the DKMS system, -for distribution on Debian based operating systems. - diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 9690d2c..0000000 --- a/debian/changelog +++ /dev/null @@ -1,6 +0,0 @@ -rtbth-dkms (3.9.3-0ubuntu1~ppa3) raring; urgency=low - - * Automatically packaged by DKMS. - - -- Alex Profanov (No comments) Tue, 02 Jul 2013 17:04:06 +0600 - diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7f8f011..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -7 diff --git a/debian/control b/debian/control deleted file mode 100644 index 36e5fdc..0000000 --- a/debian/control +++ /dev/null @@ -1,12 +0,0 @@ -Source: rtbth-dkms -Section: universe/admin -Priority: optional -Maintainer: Alex Profanov -Build-Depends: debhelper (>= 7), dkms, linux-headers-generic -Standards-Version: 3.8.1 - -Package: rtbth-dkms -Architecture: all -Depends: dkms (>= 1.95), libc6:amd64 -Description: Source code for Ralink 3298 Bluetooth Driver - Kernel driver for Ralink 3298 Bluetooth Adapter diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index ad983f3..0000000 --- a/debian/copyright +++ /dev/null @@ -1,2 +0,0 @@ - -This copyright has not been completed by the author of this package. diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index 2a78799..0000000 --- a/debian/dirs +++ /dev/null @@ -1,4 +0,0 @@ -usr/src -etc/modprobe.d -usr/lib/pm-utils/sleep.d -usr/bin diff --git a/debian/dkms.conf b/debian/dkms.conf deleted file mode 100644 index 4766429..0000000 --- a/debian/dkms.conf +++ /dev/null @@ -1,8 +0,0 @@ -PACKAGE_VERSION="3.9.3" -PACKAGE_NAME="rtbth" -CLEAN="make clean" -BUILT_MODULE_NAME[0]="rtbth" -DEST_MODULE_LOCATION[0]="/kernel/drivers/bluetooth/" -MAKE[1]="make" -AUTOINSTALL="yes" -REMAKE_INITRD="yes" diff --git a/debian/postinst b/debian/postinst deleted file mode 100755 index 7166c52..0000000 --- a/debian/postinst +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# Copyright (C) 2002-2005 Flavio Stanchina -# Copyright (C) 2005-2006 Aric Cyr -# Copyright (C) 2007 Mario Limonciello -# Copyright (C) 2009 Alberto Milone - -set -e - -NAME=rtbth -PACKAGE_NAME=$NAME-dkms -DEB_NAME=$(echo $PACKAGE_NAME | sed 's,_,-,') -CVERSION=`dpkg-query -W -f='${Version}' $DEB_NAME | awk -F "-" '{print $1}' | cut -d\: -f2` -ARCH=`dpkg --print-architecture` - -dkms_configure () { - for POSTINST in /usr/lib/dkms/common.postinst "/usr/share/$PACKAGE_NAME/postinst"; do - if [ -f "$POSTINST" ]; then - "$POSTINST" "$NAME" "$CVERSION" "/usr/share/$PACKAGE_NAME" "$ARCH" "$2" - return $? - fi - echo "WARNING: $POSTINST does not exist." >&2 - done - echo "ERROR: DKMS version is too old and $PACKAGE_NAME was not" >&2 - echo "built with legacy DKMS support." >&2 - echo "You must either rebuild $PACKAGE_NAME with legacy postinst" >&2 - echo "support or upgrade DKMS to a more current version." >&2 - return 1 -} - -case "$1" in - configure) - dkms_configure - ;; - - 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 diff --git a/debian/prerm b/debian/prerm deleted file mode 100755 index 901e7b2..0000000 --- a/debian/prerm +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -NAME=rtbth -VERSION=3.9.3 - -set -e - -case "$1" in - remove|upgrade|deconfigure) - if [ "`dkms status -m $NAME`" ]; then - dkms remove -m $NAME -v $VERSION --all - fi - ;; - - failed-upgrade) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 - - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index b109d49..0000000 --- a/debian/rules +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/make -f -include /usr/share/cdbs/1/rules/debhelper.mk -# -*- makefile -*- - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -MAKE=make -f Makefile.debian -DEB_NAME=rtbth -NAME=rtbth -VERSION=3.9.3 - -configure: configure-stamp -configure-stamp: - dh_testdir - touch configure-stamp - - -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - $(MAKE) - touch $@ - -clean:: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - -$(MAKE) clean - dh_clean - -install: build - dh_testdir - dh_testroot - dh_prep - dh_installdirs - $(MAKE) DESTDIR=$(CURDIR)/debian/$(DEB_NAME)-dkms NAME=$(NAME) VERSION=$(VERSION) install - cp $(CURDIR)/debian/dkms.conf $(CURDIR)/debian/$(DEB_NAME)-dkms/usr/src/$(NAME)-$(VERSION) - -binary-arch: build install - -binary-indep: build install - dh_testdir - dh_testroot - dh_link - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure -