Changeset 3776
- Timestamp:
- 05/28/08 07:56:47 (5 years ago)
- Location:
- pkg/viola/main/ndiswrapper/trunk/debian
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pkg/viola/main/ndiswrapper/trunk/debian/changelog
r3016 r3776 1 ndiswrapper (1.5 2-parsix1) unstable; urgency=low1 ndiswrapper (1.53-parsix1) unstable; urgency=low 2 2 3 3 * New upstream stable release 4 * Bump standards to 3.7.3 5 6 -- Alan Baghumian <alan@technotux.org> Mon, 04 Feb 2008 10:03:21 +0330 7 8 ndiswrapper (1.51-parsix1) unstable; urgency=low 9 10 * New upstream stable release 11 12 -- Alan Baghumian <alan@technotux.org> Tue, 18 Dec 2007 21:49:55 +0330 13 14 ndiswrapper (1.50-parsix2) unstable; urgency=low 15 16 * Sync'd with Debian 1.50-1 17 * Fixes bug #60 18 19 -- Alan Baghumian <alan@technotux.org> Mon, 17 Dec 2007 09:40:08 +0330 4 * Sync'd with Debian 1.52-1 5 6 -- Alan Baghumian <alan@technotux.org> Wed, 28 May 2008 07:56:02 +0200 7 8 ndiswrapper (1.52-1) unstable; urgency=low 9 10 * New upstream release. 11 * Rewrite debian/rules as a debhelper-cetric Makefile, rather than a cdbs 12 dependent Makefile fragment. [debian/control, debian/rules] 13 * Drop spurious dependencies of 'gcc' for ndiswrapper-source, 14 '${perl:Depends}' for ndiswrapper-utils-1.9 and '${shlibs:Depends}, 15 ${perl:Depends}' for ndiswrapper-common. They were never used. 16 17 -- Kel Modderman <kel@otaku42.de> Thu, 07 Feb 2008 23:15:29 +1000 18 19 ndiswrapper (1.51-1) unstable; urgency=low 20 21 * New upstream release 22 * update standards version to 3.7.3, no changes necessary. 23 24 -- Kel Modderman <kel@otaku42.de> Sun, 23 Dec 2007 00:20:49 +1000 20 25 21 26 ndiswrapper (1.50-1) unstable; urgency=low -
pkg/viola/main/ndiswrapper/trunk/debian/control
r3016 r3776 5 5 Uploaders: Andres Salomon <dilinger@debian.org> 6 6 Standards-Version: 3.7.3 7 Build-Depends: debhelper (>= 5.0.37), cdbs,bzip27 Build-Depends: debhelper (>= 5.0.37), bzip2 8 8 Vcs-Svn: svn://svn.berlios.de/fullstory/ndiswrapper/trunk 9 9 Vcs-Browser: http://svn.berlios.de/wsvn/fullstory/ndiswrapper/trunk/ … … 12 12 Package: ndiswrapper-common 13 13 Architecture: all 14 Depends: ${ shlibs:Depends}, ${misc:Depends}, ${perl:Depends}14 Depends: ${misc:Depends} 15 15 Replaces: ndiswrapper-utils 16 16 Suggests: ndiswrapper-source … … 28 28 Package: ndiswrapper-utils-1.9 29 29 Architecture: i386 amd64 30 Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends},ndiswrapper-common30 Depends: ${shlibs:Depends}, ${misc:Depends}, ndiswrapper-common 31 31 Suggests: ndiswrapper-source 32 32 Description: Userspace utilities for the ndiswrapper Linux kernel module … … 43 43 Package: ndiswrapper-source 44 44 Architecture: all 45 Depends: module-assistant, debhelper (>= 5.0.37), bzip2 , gcc45 Depends: module-assistant, debhelper (>= 5.0.37), bzip2 46 46 Suggests: kernel-package 47 47 Description: Source for the ndiswrapper Linux kernel module -
pkg/viola/main/ndiswrapper/trunk/debian/rules
r2677 r3776 1 1 #!/usr/bin/make -f 2 2 3 include /usr/share/cdbs/1/rules/debhelper.mk 4 include /usr/share/cdbs/1/rules/simple-patchsys.mk 5 include /usr/share/cdbs/1/class/makefile.mk 3 # Uncomment this to turn on verbose mode. 4 #export DH_VERBOSE=1 6 5 7 DEB_MAKE_INVOKE = $(MAKE) -C utils 6 #include /usr/share/quilt/quilt.make 8 7 9 install/ndiswrapper-source:: 10 # Enforce executable bit on debian/rules, and create directory 11 # structure for modules source 8 build: build-indep build-arch 9 10 build-indep: build-indep-stamp 11 #build-indep-stamp: $(QUILT_STAMPFN) 12 build-indep-stamp: 13 touch $@ 14 15 build-arch: build-arch-stamp 16 #build-arch-stamp: $(QUILT_STAMPFN) 17 build-arch-stamp: 18 dh_testdir 19 20 $(MAKE) -C utils 21 22 touch $@ 23 24 #clean: unpatch 25 clean: 26 dh_testdir 27 dh_testroot 28 29 $(MAKE) -C utils distclean 30 31 dh_clean build-arch-stamp build-indep-stamp 32 33 install: install-indep install-arch 34 35 install-indep: 36 dh_testdir 37 dh_testroot 38 dh_clean -k -i 39 dh_installdirs -i 40 dh_install -i 41 12 42 install -D -m 0755 debian/rules.modules \ 13 43 debian/tmp/modules/ndiswrapper/debian/rules 14 44 15 # Prepare the other debian stuff16 45 for f in *.modules.in control compat copyright changelog; do \ 17 46 install -m 0644 debian/$$f \ … … 19 48 done 20 49 21 # Prepare upstream source22 50 install driver/Makefile driver/*.[chS] debian/tmp/modules/ndiswrapper/ 23 51 24 # Prepare the debian source tarball52 mkdir -p debian/ndiswrapper-source/usr/src/ 25 53 tar jcf debian/ndiswrapper-source/usr/src/ndiswrapper.tar.bz2 \ 26 54 -C debian/tmp modules 27 28 install/ndiswrapper-utils-1.9:: 55 56 install-arch: 57 dh_testdir 58 dh_testroot 59 dh_clean -k -s 60 29 61 install -D -m755 utils/loadndisdriver \ 30 62 debian/ndiswrapper-utils-1.9/sbin/loadndisdriver-1.9 … … 35 67 install -D -m644 ndiswrapper.8 \ 36 68 debian/ndiswrapper-utils-1.9/usr/share/man/man8/ndiswrapper-1.9.8 69 70 binary-indep: build-indep install-indep 71 dh_testdir -i 72 dh_testroot -i 73 dh_installman -i 74 dh_installdocs -i 75 dh_installchangelogs -i ChangeLog 76 dh_compress -i 77 dh_fixperms -i 78 dh_installdeb -i 79 dh_gencontrol -i 80 dh_md5sums -i 81 dh_builddeb -i 82 83 binary-arch: build-arch install-arch 84 dh_testdir -s 85 dh_testroot -s 86 dh_installman -s 87 dh_installdocs -s 88 dh_installchangelogs -s ChangeLog 89 dh_strip -s 90 dh_compress -s 91 dh_fixperms -s 92 dh_installdeb -s 93 dh_shlibdeps -s 94 dh_gencontrol -s 95 dh_md5sums -s 96 dh_builddeb -s 97 98 binary: binary-indep binary-arch 99 .PHONY: build build-indep build-arch clean install install-indep install-arch binary-indep binary-arch binary
Note: See TracChangeset
for help on using the changeset viewer.


