lp:ubuntu/lucid/mksh

Created by James Westby and last modified
Get this branch:
bzr branch lp:ubuntu/lucid/mksh
Members of Ubuntu branches can upload to this branch. Log in for directions.

Related bugs

Related blueprints

Branch information

Owner:
Ubuntu branches
Review team:
Ubuntu Development Team
Status:
Development

Recent revisions

22. By Lucas Nussbaum

debian/control: Fix typo in Original-Maintainer field

21. By StefanPotyra

debian/diffs/silence_conftests.diff: Disable output in conftests
to work around an error detection heuristic on the buildds.

20. By Thorsten Glaser

* Merge from Debian unstable. (Closes LP: #529559)
  New upstream version. (Closes LP: #355883)
  This integrates a workaround for a gcc bug. (cf. LP: #375604)
  Remaining Ubuntu changes:
  - debian/control, debian/rules: Exclude dietlibc on powerpc/ppc64
    and sparc (cf. LP: #381332)
  - debian/README.Debian, debian/mksh.postinst: Hardcode installing
    mksh as /bin/sh to false (cf. LP: #348872) but retain debconf
    infrastructure so that, if set to true in old installations, it
    will correctly be removed on upgrade

19. By Thorsten Glaser

Exclude dietlibc on powerpc/ppc64 and sparc (LP: #381332)

18. By Thorsten Glaser

* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/mksh.postinst: hardcode debconf question if mksh should
    be installed as /bin/sh to false (see LP: #348872) but retain
    debconf infrastructure so that, if this was set to true in old
    installations, it will correctly be removed on upgrade
  - debian/rules: remove “-combine” option from Build.sh invocation
    to work around a gcc bug (see LP: #375604)

17. By Thorsten Glaser

* Merge from Debian unstable (LP: #385887). Remaining Ubuntu changes:
  - disable debconf mksh/sh
  - do not use -combine for build
  - skip dietlibc on powerpc and sparc (LP: #381332)

16. By Thorsten Glaser

* debian/mksh.postinst: hardcode debconf question if mksh should
  be installed as /bin/sh to false (LP: #348872) but retain debconf
  stuff so that if this was set to true in previous packages, it
  will correctly be removed on upgrade
* debian/rules: remove “-combine” option from Build.sh invocation
  (LP: #375604)

15. By Luca Falavigna

debian/control: build-depend on locales instead of locales-all,
Ubuntu does not provide the latter.

14. By Thorsten Glaser

* Reword package description, avoid things not of interest to
  a Debian user; Closes: #505882
* Switch from patching copyright to merely prepending information
* Remove all patches, as they have been integrated upstream; add
  ‘-DMKSH_BINSHREDUCED’ to CPPFLAGS to enable the functionality
* New upstream version; complete ChangeLog:
  - [tg] Add check for naming the output file “scn” instead of “a.out”
    or “a.exe” when compiling scn.c, for Haiku, from Adam “replaced” Hoka
  - [tg] Rewrite utf_backch macro and x_bs2 function into a combined
    x_bs3 function for the Emacs editing mode, to optimise them and get
    rid of the use of __typeof__ (suggested by Anders “ragge” Magnusson
    after the problem was spot by replaced) and one of the uses of the
    statements-as-expressions feature
  - [ahoka] Add mirtoconf check for nice(3), missing on Haiku
  - [tg] Remove all uses of the statements-as-expressions feature by
    rewriting the source code accordingly and optimising some parts
  - [tg] Recognise nwcc (Nils Weller’s C compiler) in Build.sh
  - [tg] If <strings.h> exists, pull it in for strcasecmp(3)
  - [tg] Welcome QNX/Neutrino; work around broken /bin/ed
  - [tg] Simplify, shorten, speed up PS1 in dot.mkshrc
  - [tg] Remove some dead code courtesy of scan-build native runs
  - [tg] Add some casts to prevent LLVM+Clang warnings
  - [tg] Work around llvm-gcc-4.2.1 -Wformat pickyness
  - [tg] Add new Build.sh option ‘-llvm’ (clang, llvm-gcc)
  - [tg] Speed up mirtoconf if ‘-DMKSH_ASSUME_UTF8’ is set
  - [tg] Add the workaround for Debian #492377 into the main mirtoconf
    function (hiding gcc errors during the configure phase) because
    Gentoo has similar scanner issues; reported by Hanno Böck
  - [tg] If an MKSH_SMALL has arc4random(3), skip the rand(3)/srand(3)
    fall-back altogether to shrink size, also removed need for time(3)
  - [tg] Fix alias expansion recursion check if the word to be expanded
    is immediately followed by end of input, add test case; spotted by
    Michael Hlavinka in pdksh and mksh; RedHat #474115
  - [tg] Fix string/wdstring confusion preventing bashiop (&>foo) to
    work inside a function, add regression test, limit to 99 fds
  - [tg] change regression tests to ‘set -U’ or ‘set +U̲ instead of
    ‘set -o utf8-hack’, as well as query using ‘$-’ ipv ‘$(set +o)’
    (easier and more reliable)
  - [tg] Add comment to regression tests which can fail on slow machines
    or Cygwin environments due to timing issues
  - [tg] Remove a lot of superfluous casts, improve type cleanliness
  - [tg] Insert a couple of /* CONSTCOND */ for lint
* New source package and build structure:
  - distfile is now packaged *inside* the orig tarball instead of repak-
    kaged, similar to PostgreSQL
  - debian/rules “patch” target takes care of it, as per Policy Manual
  - debian-specific things (debian/ directory and all patches) are kept
    in a publically accessible CVS repository
  - VCS-CVS and VCS-Browser fields have been added to debian/control
  - source is extracted to ./mksh and built, using relative paths to the
    source code, in ./build/full and ./build/small; both are .cvsignore’d
  - most files now carry an RCS ID
  - paths in mksh.install, mksh.manpages, rules have been adjusted
* word-wrap debian/control lines to 80c
* add build dependency on cpio (for distfile extraction)
* for non-pbuilder testsuite runs (needed on gnubber), rename the ./manual
  file tested for to ./attended to clarify its purpose
* debian/rules: share code instead of duplicating it
* debian/rules: fix testsuite use of $? and $x (gmake wants $$? and $$x)
* debian/rules: use sensible stamp files and new paths, coming along with
  the new “patch” target
* remove the ‘-Q’ option from Build.sh invocation, which is gone

13. By Thorsten Glaser

* Apply upstream changeset 10048D15ABE2EA76C75:
  - Bring back automatic -o posix setting if the shell is invoked
    as “sh” or “-sh” (unless compiled with MKSH_SMALL), add
    regression test
  - If -o posix is set, do not keep file descriptors created via
    I/O redirection, as Korn Shells do, private; add regression
    test; Debian Closes: #499139; reported by Markus Schaber and
    Agustin Martin Domingo
* Change mksh-internal version number to document aberration from
  pristine source
* Add DM-Upload-Allowed control field to prepare for future updates
* Add workaround to “posix-mode-2” regression test to cope for GNU
  getopt idiocy to not stop argument parsing upon encountering the
  first non-flag argument: “ln -s mksh -sh” tries to parse -s and -h

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:ubuntu/maverick/mksh
This branch contains Public information 
Everyone can see this information.

Subscribers