Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Revert "debhelper v7; rules file minimisation" | 64d494126de003b66293268b3be6556a86ff73e8 | Joey Hess | 2008-05-10 16:37:48 |
patch for moreutils Makefile | 6824744a68f35eb4615b877267922d50a40a1122 | Greg KH | 2008-05-10 05:49:30 |
debhelper v7; rules file minimisation | 83e8da32e5d3154f1c97e6eb62c30450ff95b5af | Joey Hess | 2008-04-26 23:27:12 |
releasing version 0.29 | ab100606238850f43106ea7a3c939833efd25378 | Joey Hess | 2008-04-15 19:37:21 |
ts improvements | decdf6ec49194e5c02fa42c3a235bdefee224175 | Joey Hess | 2008-04-13 00:37:28 |
fix mode of new file renamed from temp file | c525af9d17aacb226d72495d1bd401ce001b03f6 | Joey Hess | 2008-04-11 23:11:33 |
minor changes | b6d635bc28bf7d94201bcd167905cebc48abf7cb | Joey Hess | 2008-04-11 23:03:50 |
honor TMPDIR | f69844b98d71598fbf9ef3f4da137b16eff1621e | Joey Hess | 2008-04-11 22:55:10 |
optimize tempfile copying | 6f31909ff74c064ea0b5126219b3e8f7b8826bee | Joey Hess | 2008-04-11 22:34:34 |
more fixes to tempfile writeback | a580bbd17850753746d6d1a2b65817edaf4485c9 | Joey Hess | 2008-04-11 22:27:40 |
set umask before calling mkstemp | 0595609018095dabd5d1a56cf03ddcc008a9e928 | Joey Hess | 2008-04-11 21:47:28 |
update physmem copyright | 30746c4357c0ac6110ca7e2a279ce9e82e879581 | Joey Hess | 2008-04-11 21:44:19 |
fix two bugs writing the output file | 6fa7d9907e7211f06656b296940aaca1d6b4d1df | Joey Hess | 2008-04-11 21:42:38 |
move code into a function | dcb580b3998a19b112004f23298490a34af59fc8 | Joey Hess | 2008-04-11 20:15:29 |
fix edge cases | ee4e74dd6a20706f29ef30a2613a1977f6f325fa | Joey Hess | 2008-04-11 20:10:18 |
reorder defines | 0bf88ea14cda6e6e57e97356862628ae49269c8a | Joey Hess | 2008-04-11 19:54:30 |
set up signal handlers before creating temp file | 0ff304e2ca860e51e75bbfc08290e364e94cb32e | Joey Hess | 2008-04-11 19:53:38 |
another round of whitespace fixes | c391b00d2837d1571ac1d361551378adf19ae83f | Joey Hess | 2008-04-11 19:50:47 |
remove debug | 919ce1f7b6d80dfdc3c613f898215962985f9c66 | Brock Noland | 2008-04-11 19:22:39 |
sponge fixes | 42c5c5a799502743307b392bf9e7c0205ef85ace | Brock Noland | 2008-04-11 18:16:09 |
File | Lines added | Lines deleted |
---|---|---|
Makefile | 6 | 6 |
debian/changelog | 0 | 7 |
debian/compat | 1 | 1 |
debian/control | 1 | 1 |
debian/docs | 0 | 1 |
debian/rules | 35 | 5 |
File Makefile changed (mode: 100644) (index b0595c4..4160adf) | |||
... | ... | BINS=isutf8 ifdata ifne pee sponge mispipe lckdo | |
2 | 2 | PERLSCRIPTS=vidir vipe ts combine zrun | PERLSCRIPTS=vidir vipe ts combine zrun |
3 | 3 | MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1 | MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1 |
4 | 4 | CFLAGS=-O2 -g -Wall | CFLAGS=-O2 -g -Wall |
5 | INSTALL_BIN?=install -s | ||
5 | INSTALL_BIN=install -s | ||
6 | 6 | ||
7 | 7 | DOCBOOK2XMAN="docbook2x-man" | DOCBOOK2XMAN="docbook2x-man" |
8 | 8 | ||
... | ... | clean: | |
12 | 12 | rm -f $(BINS) $(MANS) | rm -f $(BINS) $(MANS) |
13 | 13 | ||
14 | 14 | install: | install: |
15 | mkdir -p $(DESTDIR)/usr/bin | ||
16 | $(INSTALL_BIN) $(BINS) $(DESTDIR)/usr/bin | ||
17 | install $(PERLSCRIPTS) $(DESTDIR)/usr/bin | ||
15 | mkdir -p $(PREFIX)/usr/bin | ||
16 | $(INSTALL_BIN) $(BINS) $(PREFIX)/usr/bin | ||
17 | install $(PERLSCRIPTS) $(PREFIX)/usr/bin | ||
18 | 18 | ||
19 | mkdir -p $(DESTDIR)/usr/share/man/man1 | ||
20 | install $(MANS) $(DESTDIR)/usr/share/man/man1 | ||
19 | mkdir -p $(PREFIX)/usr/share/man/man1 | ||
20 | install $(MANS) $(PREFIX)/usr/share/man/man1 | ||
21 | 21 | ||
22 | 22 | check: isutf8 | check: isutf8 |
23 | 23 | ./check-isutf8 | ./check-isutf8 |
File debian/changelog changed (mode: 100644) (index 227afbf..f4157e9) | |||
1 | moreutils (0.30) UNRELEASED; urgency=low | ||
2 | |||
3 | * debhelper v7; rules file minimisation | ||
4 | * Use DESTDIR instead of PREFIX. | ||
5 | |||
6 | -- Joey Hess <joeyh@debian.org> Sat, 26 Apr 2008 19:23:10 -0400 | ||
7 | |||
8 | 1 | moreutils (0.29) unstable; urgency=low | moreutils (0.29) unstable; urgency=low |
9 | 2 | ||
10 | 3 | * Add ifne, contributed by Javier Merino. | * Add ifne, contributed by Javier Merino. |
File debian/compat changed (mode: 100644) (index 7f8f011..7ed6ff8) | |||
1 | 7 | ||
1 | 5 |
File debian/control changed (mode: 100644) (index 966ac88..5db3b33) | |||
1 | 1 | Source: moreutils | Source: moreutils |
2 | 2 | Section: utils | Section: utils |
3 | 3 | Priority: optional | Priority: optional |
4 | Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.9.0), docbook2x, docbook-xml | ||
4 | Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.9.0), docbook2x, docbook-xml | ||
5 | 5 | Maintainer: Joey Hess <joeyh@debian.org> | Maintainer: Joey Hess <joeyh@debian.org> |
6 | 6 | Standards-Version: 3.7.3 | Standards-Version: 3.7.3 |
7 | 7 | Vcs-Git: git://git.kitenet.net/moreutils | Vcs-Git: git://git.kitenet.net/moreutils |
File debian/docs deleted (index e845566..0000000) | |||
1 | README |
File debian/rules changed (mode: 100755) (index 8172a57..d379a64) | |||
1 | 1 | #!/usr/bin/make -f | #!/usr/bin/make -f |
2 | 2 | ||
3 | # Prevent the makefile from stripping, in case it's being build in | ||
4 | # unstripped mode. | ||
5 | export INSTALL_BIN=install | ||
3 | build: build-stamp | ||
4 | build-stamp: | ||
5 | dh_testdir | ||
6 | $(MAKE) | ||
7 | $(MAKE) check | ||
8 | touch build-stamp | ||
6 | 9 | ||
7 | %: | ||
8 | dh $@ | ||
10 | clean: | ||
11 | dh_testdir | ||
12 | dh_testroot | ||
13 | rm -f build-stamp | ||
14 | $(MAKE) clean | ||
15 | dh_clean | ||
16 | |||
17 | binary-indep: build | ||
18 | |||
19 | binary-arch: build | ||
20 | dh_testdir | ||
21 | dh_testroot | ||
22 | dh_clean -k | ||
23 | dh_installdirs | ||
24 | $(MAKE) PREFIX=debian/moreutils INSTALL_BIN=install install | ||
25 | dh_installdocs README | ||
26 | dh_installchangelogs | ||
27 | dh_perl | ||
28 | dh_strip | ||
29 | dh_compress | ||
30 | dh_fixperms | ||
31 | dh_installdeb | ||
32 | dh_shlibdeps | ||
33 | dh_gencontrol | ||
34 | dh_md5sums | ||
35 | dh_builddeb | ||
9 | 36 | ||
10 | 37 | # Not intended for use by anyone except the author. | # Not intended for use by anyone except the author. |
11 | 38 | announcedir: | announcedir: |
12 | 39 | @echo ${HOME}/src/joeywiki/code/moreutils/news | @echo ${HOME}/src/joeywiki/code/moreutils/news |
40 | |||
41 | binary: binary-indep binary-arch | ||
42 | .PHONY: build clean binary-indep binary-arch binary |