~ubuntu-branches/debian/stretch/dkms/stretch

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Iuculano
  • Date: 2009-06-05 22:00:35 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090605220035-lbclofpdz97vehfx
Tags: 2.0.22.0-1
* [023618e] Imported Upstream version 2.0.22.0
* [d6e0b15] Deleted patches merged in upstream: 01-fix_manpage.patch
  02-fix_distribution.patch 04-use_su-to-root.patch 05-
  do_not_check_admin_group.patch 06-fakeroot.patch 07-exit-if-build-
  fails.patch 09-lilo_detection.patch 10-lsb.patch 11-bash-
  completion.patch 12-use_invoke-rc.d.patch 13-template.patch
  14_new_module-init-tools.patch 08-support_kernel-img.conf.patch
* [c5b7822] debian/patches/15_modprobe.patch: do not create an empty
  /etc/modprobe.d/package_name.conf. It is opened and parsed every
  time modprobe is run (and it is run very often at boot time). Create
  it only if necessary.
* [3731c00] debian/patches/08-support_kernel-img.conf.patch: Use
  update-initramfs, it is the default in Debian/Ubuntu and it also computes
  and stores some checksums. (Closes: #529038)
* [f4a197f] debian/patches/16_old_module.patch: Do not move away the old
  module, by default dkms install the new one in
  /lib/modules/<kernelversion>/updates/dkms (Closes: #529059)
* [db7ffe7] debian/patches/01_kernel_postinst.patch: shut up "which" in the
  the kernel kernel_postinst.d script, only the exit code is needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
RELEASE_DATE := "6-February-2009"
 
1
RELEASE_DATE := "8-May-2009"
2
2
RELEASE_MAJOR := 2
3
3
RELEASE_MINOR := 0
4
 
RELEASE_SUBLEVEL := 21
5
 
RELEASE_EXTRALEVEL := .1
 
4
RELEASE_SUBLEVEL := 22
 
5
RELEASE_EXTRALEVEL := .0
6
6
RELEASE_NAME := dkms
7
7
RELEASE_VERSION := $(RELEASE_MAJOR).$(RELEASE_MINOR).$(RELEASE_SUBLEVEL)$(RELEASE_EXTRALEVEL)
8
8
RELEASE_STRING := $(RELEASE_NAME)-$(RELEASE_VERSION)
9
 
DIST := jaunty
 
9
DIST := unstable
10
10
SHELL=bash
11
11
 
12
12
SBIN = $(DESTDIR)/usr/sbin
117
117
        tar -C $(DEB_TMP_BUILDDIR) -xzf $(TARBALL)
118
118
        cp -ar debian $(DEB_TMP_BUILDDIR)/$(RELEASE_STRING)/debian
119
119
        chmod +x $(DEB_TMP_BUILDDIR)/$(RELEASE_STRING)/debian/rules
120
 
        #only change the first (which is assumingly the header)
121
 
        sed -i -e "s/RELEASE_VERSION/$(RELEASE_VERSION)/; s/UNRELEASED/$(DIST)/" $(DEB_TMP_BUILDDIR)/$(RELEASE_STRING)/debian/changelog
122
120
        cd $(DEB_TMP_BUILDDIR)/$(RELEASE_STRING) ; \
 
121
        dch -v $(RELEASE_VERSION)-0 "New upstream version, $(RELEASE_VERSION)"; \
123
122
        dpkg-buildpackage -D -b -rfakeroot ; \
124
123
        dpkg-buildpackage -D -S -sa -rfakeroot ; \
125
124
        mv ../$(RELEASE_NAME)_* $(TOPDIR)/dist/ ; \