--- nano-2.1.11.orig/debian/nano.doc-base.manual +++ nano-2.1.11/debian/nano.doc-base.manual @@ -0,0 +1,9 @@ +Document: nano +Title: GNU nano User Manual +Author: Chris Allegreta, David Lawrence Ramsey and others. +Abstract: This manual describes the usage of the GNU nano text editor. +Section: Editors + +Format: info +Index: /usr/share/info/nano.info.gz +Files: /usr/share/info/nano* --- nano-2.1.11.orig/debian/nano-tiny.1 +++ nano-2.1.11/debian/nano-tiny.1 @@ -0,0 +1,63 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" nano-tiny.1 is copyright 2002 by +.\" Jordi Mallach +.\" +.\" This is free documentation, see the latest version of the GNU General +.\" Public License for copying conditions. There is NO warranty. +.\" +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH NANO-TINY 1 "February 20, 2002" +.\" Please adjust this date whenever revising the manpage. +.\" +.SH NAME +nano-tiny \- Nano's ANOther editor, an enhanced free Pico Clone +.SH SYNOPSIS +.B nano-tiny +.RI [options]\ [+LINE] " file" +.br +.SH DESCRIPTION +This manual page documents briefly the +.B nano-tiny +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invoke bold face and italics, +.\" respectively. +\fBnano\fP is a small, free and friendly editor which aims to replace +Pico, the default editor included in the non-free Pine package. Rather +than just copying Pico's look and feel, +.B nano +also implements some missing (or disabled by default) features in Pico, +such as "search and replace" and "goto line number". +.br +.B nano-tiny +is a special, minimal build of the program, aimed for Debian's boot-floppies +or emergency disks. +.SH OPTIONS +.TP +.B \-V (\-\-version) +Show the current version number and author. +.TP +.B \-h (\-\-help) +Display a summary of command line options. +.TP +See the \fBnano\fP(1) manpage for the complete documentation of nano. +.SH BUGS +Please send any comments or bug reports to +.br +.B nano@nano-editor.org. +.br +The nano mailing list is available from +.br +.B nano-devel@lists.sourceforge.net. +To subscribe, email to nano-devel-request@lists.sourceforge.net with a +subject of "subscribe". +.SH HOMEPAGE +http://www.nano-editor.org/ +.SH AUTHOR +Chris Allegretta , et al (see AUTHORS for details). +This manual page was originally written by Jordi Mallach +, for the Debian system (but may be +used by others). --- nano-2.1.11.orig/debian/nano-tiny.manpages +++ nano-2.1.11/debian/nano-tiny.manpages @@ -0,0 +1,2 @@ +debian/nano-tiny.1 +debian/nano-tiny.fr.1 --- nano-2.1.11.orig/debian/control +++ nano-2.1.11/debian/control @@ -0,0 +1,58 @@ +Source: nano +Section: editors +Priority: optional +Maintainer: Jordi Mallach +Uploaders: Steve Langasek +Build-Depends: dpkg-dev (>= 1.13.9), debhelper (>= 7), groff, libncurses5-dev, libncursesw5-dev, libslang2-dev, quilt +Standards-Version: 3.8.3 +Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/nano +Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/nano/ +Homepage: http://www.nano-editor.org/ + +Package: nano +Architecture: any +Priority: important +Depends: ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info, ${misc:Depends} +Provides: editor +Suggests: spell +Conflicts: nano-tiny (<= 1.0.0-1), pico, alpine-pico (<= 0.99+dfsg-1) +Replaces: pico +Description: small, friendly text editor inspired by Pico + GNU nano is an easy-to-use text editor originally designed as a replacement + for Pico, the ncurses-based editor from the non-free mailer package Pine + (itself now available under the Apache License as Alpine). + . + However, nano also implements many features missing in pico, including: + - feature toggles; + - interactive search and replace (with regular expression support); + - go to line (and column) command; + - auto-indentation and color syntax-highlighting; + - filename tab-completion and support for multiple buffers; + - full internationalization support. + +Package: nano-tiny +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: editor +Description: small, friendly text editor inspired by Pico - tiny build + GNU nano is an easy-to-use text editor originally designed as a replacement + for Pico, the ncurses-based editor from the non-free mailer package Pine + (itself now available under the Apache License as Alpine). + . + This package contains a build of GNU nano with many features disabled, for + environments such as rescue disks where resources are limited. + +Package: nano-udeb +Architecture: any +Section: debian-installer +Priority: standard +XC-Package-Type: udeb +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: editor +Description: small, friendly text editor inspired by Pico - udeb + GNU nano is an easy-to-use text editor originally designed as a replacement + for Pico, the ncurses-based editor from the non-free mailer package Pine + (itself now available under the Apache License as Alpine). + . + This package contains a build of GNU nano with many features disabled, for + use in debian-installer. --- nano-2.1.11.orig/debian/rules +++ nano-2.1.11/debian/rules @@ -0,0 +1,152 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/quilt/quilt.make + +PACKAGE=nano + +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +confflags= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +confflags= --build $(DEB_BUILD_GNU_TYPE) +endif + +CFLAGS = -Wall -g +CFTINY = -Wall -g -Os -fomit-frame-pointer +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +nanobuild=$(CURDIR)/build-nano +tinybuild=$(CURDIR)/build-tiny +udebbuild=$(CURDIR)/build-udeb + +ARCH=$(shell dpkg --print-architecture) + +COMMON_CONFIG := --cache-file=$(CURDIR)/config.cache \ + --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info --srcdir='..' \ + --sysconfdir=/etc $(confflags) + +build: patch build-stamp +build-stamp: build-arch +build-arch: build-nano-stamp build-tiny-stamp build-udeb-stamp + +build-nano-stamp: build-nano +build-nano: + dh_testdir + + [ -d $(nanobuild) ] || mkdir $(nanobuild) + cd $(nanobuild) && ../configure $(COMMON_CONFIG) \ + --disable-wrapping-as-root && \ + $(MAKE) CFLAGS="$(CFLAGS)" + touch build-nano-stamp + +build-tiny-stamp: build-tiny +build-tiny: + dh_testdir + + [ -d $(tinybuild) ] || mkdir $(tinybuild) + cd $(tinybuild) && ../configure $(COMMON_CONFIG) \ + --enable-tiny --disable-speller --disable-justify \ + --disable-tabcomp --disable-nls --disable-wrapping \ + --with-slang && \ + $(MAKE) CFLAGS="$(CFTINY)" + touch build-tiny-stamp + +build-udeb-stamp: build-udeb +build-udeb: + dh_testdir + + [ -d $(udebbuild) ] || mkdir $(udebbuild) + cd $(udebbuild) && ../configure $(COMMON_CONFIG) \ + --enable-tiny --disable-speller --disable-justify \ + --disable-tabcomp --disable-nls --disable-wrapping \ + --with-slang && \ + $(MAKE) CFLAGS="$(CFTINY)" + touch build-udeb-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -rf *-stamp + + -rm -rf $(nanobuild) $(tinybuild) $(udebbuild) + -rm -f config.h + -rm -f intl/libintl.h config.cache +# -rm -f po/*.gmo + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + cd $(nanobuild) && \ + $(MAKE) install prefix=$(CURDIR)/debian/nano/usr \ + bindir=$(CURDIR)/debian/nano/bin + + mkdir -p $(CURDIR)/debian/nano/usr/share/doc/nano/examples + cp $(nanobuild)/doc/nanorc.sample \ + $(CURDIR)/debian/nano/usr/share/doc/nano/examples + + cp debian/nano-menu.xpm $(CURDIR)/debian/nano/usr/share/nano/ + cp debian/nanorc $(CURDIR)/debian/nano/etc/nanorc + rm -rf $(CURDIR)/debian/nano/usr/share/nano/man-html + + cd $(tinybuild) && \ + $(MAKE) install prefix=$(CURDIR)/debian/nano-tiny/usr \ + bindir=$(CURDIR)/debian/nano-tiny/bin + mv debian/nano-tiny/bin/nano debian/nano-tiny/bin/nano-tiny + rm -rf $(CURDIR)/debian/nano-tiny/usr/share/man + rm -rf $(CURDIR)/debian/nano-tiny/usr/share/nano/man-html + rm -f $(CURDIR)/debian/nano-tiny/bin/rnano + + cd $(udebbuild) && \ + $(MAKE) install prefix=$(CURDIR)/debian/nano-udeb/usr \ + bindir=$(CURDIR)/debian/nano-udeb/bin + rm -rf $(CURDIR)/debian/nano-udeb/usr + rm -f $(CURDIR)/debian/nano-udeb/bin/rnano + +binary-indep: + +binary-arch: build-arch install + dh_testdir + dh_testroot + dh_installdocs -a + dh_installexamples -a + dh_installmenu -a + dh_installman -a + dh_installinfo -pnano doc/texinfo/nano.info + rm -f debian/nano/usr/share/info/dir \ + debian/nano/usr/share/info/dir.old + # We don't want info docs in -tiny + -rm -r debian/nano-tiny/usr/share/info + dh_installchangelogs ChangeLog -a + dh_link -a +ifneq (,$(findstring hurd,$(DEB_HOST_ARCH_OS))) + rm -rf $(CURDIR)/debian/nano/usr/bin +endif +# dh_desktop -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install patch unpatch --- nano-2.1.11.orig/debian/nano.docs +++ nano-2.1.11/debian/nano.docs @@ -0,0 +1,8 @@ +AUTHORS +BUGS +NEWS +README +THANKS +TODO +UPGRADE +doc/faq.html --- nano-2.1.11.orig/debian/compat +++ nano-2.1.11/debian/compat @@ -0,0 +1 @@ +7 --- nano-2.1.11.orig/debian/watch +++ nano-2.1.11/debian/watch @@ -0,0 +1,3 @@ +version=2 +ftp://ftp.gnu.org/gnu/nano/nano-(.*)\.tar\.gz \ + debian uupdate --- nano-2.1.11.orig/debian/copyright +++ nano-2.1.11/debian/copyright @@ -0,0 +1,69 @@ +This package was debianized by Jordi Mallach on +Wed, 8 Dec 1999 19:39:12 +0100. + +It was downloaded from http://www.nano-editor.org/dist/v2.0/ + +Upstream authors: Chris Allegretta + David Lawrence Ramsey + +Copyright: + +Copyright © 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Free Software Foundation, Inc. + +Licence: + +Program sources and other auxiliary files +----------------------------------------- + +You are free to distribute this software under the terms of +the GNU General Public License version 3 or any later version. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301, USA. + +Program documentation +--------------------- + +You are free to distribute GNU nano's documentation under the terms +of the GNU Free Documentation Licence version 1.2. Additionally, the +documentation is alternatively licenced under the terms of the +GNU General Public License version 3 or any later version. + + + This document is dual-licensed. You may distribute and/or modify it under the + terms of either of the following licenses: + + * The GNU General Public License, as published by the Free Software + Foundation, version 3 or (at your option) any later version. You should + have received a copy of the GNU General Public License along with this + program. If not, see . + + * The GNU Free Documentation License, as published by the Free Software + Foundation, version 1.2 or (at your option) any later version, with no + Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You + should have received a copy of the GNU Free Documentation License along with + this program. If not, see . + +Packaging +--------- + +All Debian packaging files are licenced under the terms of the +GNU General Public License version 3, or (at your option) any later version. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL-3 file. +The complete text of the GNU Free Documentation License can be found in +/usr/share/common-licenses/GFDL-1.2. --- nano-2.1.11.orig/debian/nano.postinst +++ nano-2.1.11/debian/nano.postinst @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then + update-alternatives --install /usr/bin/editor editor /bin/nano 40 \ + --slave /usr/share/man/man1/editor.1.gz editor.1.gz \ + /usr/share/man/man1/nano.1.gz + update-alternatives --install /usr/bin/pico pico /bin/nano 10 \ + --slave /usr/share/man/man1/pico.1.gz pico.1.gz \ + /usr/share/man/man1/nano.1.gz +fi + +#DEBHELPER# --- nano-2.1.11.orig/debian/nano.prerm +++ nano-2.1.11/debian/nano.prerm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "$1" != "upgrade" ]; then + update-alternatives --remove editor /bin/nano + update-alternatives --remove pico /bin/nano +fi + +#DEBHELPER# --- nano-2.1.11.orig/debian/nano.desktop +++ nano-2.1.11/debian/nano.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Name=Nano +Name[es]=Nano +Name[ca]=Nano +Name[gl]=Nano +Comment=Pico-like text editor +Comment[es]=Editor de textos parecido a Pico +Comment[ca]=Editor de textes semblant a Pico +Comment[gl]=Editor de textos semellante ó Pico +Exec=nano +Icon=/usr/share/nano/nano-menu.xpm +Terminal=true +Type=Application --- nano-2.1.11.orig/debian/nano-menu.xpm +++ nano-2.1.11/debian/nano-menu.xpm @@ -0,0 +1,279 @@ +/* XPM */ +static char * nano_menu_xpm[] = { +"32 32 244 2", +" c None", +". c #E5E5E5", +"+ c #AAE8E8", +"@ c #A4E8E8", +"# c #9BDADA", +"$ c #AEAEAE", +"% c #98E8E8", +"& c #D5D5D5", +"* c #8ECDCD", +"= c #8AA9A9", +"- c #97D6D6", +"; c #DFDFDF", +"> c #77E2E2", +", c #D3D3D3", +"' c #85C4C4", +") c #6C8B8B", +"! c #505050", +"~ c #112B2B", +"{ c #060606", +"] c #070707", +"^ c #BCBCBC", +"/ c #85F0F0", +"( c #DCDCDC", +"_ c #6CAAAA", +": c #515151", +"< c #121212", +"[ c #535353", +"} c #A3E2E2", +"| c #B3BABA", +"1 c #3E3E3E", +"2 c #0F0F0F", +"3 c #010101", +"4 c #0C0C0C", +"5 c #0E0E0E", +"6 c #181818", +"7 c #A8E6E6", +"8 c #D0E7E7", +"9 c #AEECEC", +"0 c #9E9E9E", +"a c #424242", +"b c #131313", +"c c #141414", +"d c #365555", +"e c #E3E3E3", +"f c #A0B8B8", +"g c #222222", +"h c #101010", +"i c #080808", +"j c #2D4C4C", +"k c #D7E7E7", +"l c #A3D4D4", +"m c #5D5D5D", +"n c #282828", +"o c #212121", +"p c #2D2D2D", +"q c #323232", +"r c #252525", +"s c #1B1B1B", +"t c #1C1C1C", +"u c #232323", +"v c #292929", +"w c #A2C1C1", +"x c #89EFEF", +"y c #ECECEC", +"z c #8FD3D3", +"A c #A1B3B3", +"B c #686868", +"C c #747474", +"D c #7FB7B7", +"E c #494949", +"F c #3C3C3C", +"G c #5B6D6D", +"H c #B8B8B8", +"I c #93DCDC", +"J c #A4ECEC", +"K c #BECFCF", +"L c #696969", +"M c #2E2E2E", +"N c #333333", +"O c #353535", +"P c #3B3B3B", +"Q c #93B2B2", +"R c #C5E9E9", +"S c #56F5F5", +"T c #828282", +"U c #262626", +"V c #525252", +"W c #344A4A", +"X c #6C6C6C", +"Y c #84C3C3", +"Z c #B5EAEA", +"` c #A1EDED", +" . c #CBDEDE", +".. c #3D3D3D", +"+. c #484848", +"@. c #4C4C4C", +"#. c #B6B6B6", +"$. c #94EEEE", +"%. c #CEE8E8", +"&. c #2F2F2F", +"*. c #799898", +"=. c #9EE3E3", +"-. c #BEE9E9", +";. c #5D6868", +">. c #4E4E4E", +",. c #555555", +"'. c #606060", +"). c #A2E1E1", +"!. c #C0E9E9", +"~. c #343434", +"{. c #A3A3A3", +"]. c #A7ECEC", +"^. c #507070", +"/. c #5B5B5B", +"(. c #626262", +"_. c #587777", +":. c #E1E1E1", +"<. c #D1D1D1", +"[. c #1D1D1D", +"}. c #393939", +"|. c #6B6B6B", +"1. c #AFEEEE", +"2. c #E0E0E0", +"3. c #495D5D", +"4. c #666666", +"5. c #749393", +"6. c #AAAAAA", +"7. c #191919", +"8. c #6B8B8B", +"9. c #EBEBEB", +"0. c #90CFCF", +"a. c #5A5A5A", +"b. c #A8A8A8", +"c. c #B1EBEB", +"d. c #74F2F2", +"e. c #808080", +"f. c #303030", +"g. c #88A7A7", +"h. c #B0EBEB", +"i. c #89A6A6", +"j. c #636363", +"k. c #9CBBBB", +"l. c #4C7D7D", +"m. c #404040", +"n. c #3D5C5C", +"o. c #C9E8E8", +"p. c #202020", +"q. c #363636", +"r. c #BBDCDC", +"s. c #E2E2E2", +"t. c #364646", +"u. c #436363", +"v. c #C7E8E8", +"w. c #CECECE", +"x. c #0D0D0D", +"y. c #324444", +"z. c #CEECEC", +"A. c #8FCECE", +"B. c #2C2C2C", +"C. c #7A7A7A", +"D. c #C6E8E8", +"E. c #9D9D9D", +"F. c #090909", +"G. c #596767", +"H. c #C1EDED", +"I. c #799E9E", +"J. c #87A6A6", +"K. c #A2EDED", +"L. c #707070", +"M. c #2A2A2A", +"N. c #878787", +"O. c #B7EAEA", +"P. c #526C6C", +"Q. c #C2C2C2", +"R. c #364A4A", +"S. c #8CABAB", +"T. c #9BEDED", +"U. c #ADEBEB", +"V. c #242424", +"W. c #273B3B", +"X. c #0F1919", +"Y. c #111111", +"Z. c #CCCCCC", +"`. c #B8CECE", +" + c #355F5F", +".+ c #AAC0C0", +"++ c #1E1E1E", +"@+ c #2A4040", +"#+ c #BBE8E8", +"$+ c #71A7A7", +"%+ c #649C9C", +"&+ c #555E5E", +"*+ c #D2E7E7", +"=+ c #637575", +"-+ c #2B2B2B", +";+ c #89A0A0", +">+ c #5E6D6D", +",+ c #7B7B7B", +"'+ c #8DEFEF", +")+ c #374F4F", +"!+ c #7CA3A3", +"~+ c #294242", +"{+ c #88A1A1", +"]+ c #CCE8E8", +"^+ c #303737", +"/+ c #526B6B", +"(+ c #AAE0E0", +"_+ c #9EEDED", +":+ c #DDDDDD", +"<+ c #0B1111", +"[+ c #97BDBD", +"}+ c #DAE6E6", +"|+ c #284242", +"1+ c #414747", +"2+ c #6B7777", +"3+ c #87A2A2", +"4+ c #89B0B0", +"5+ c #7B9595", +"6+ c #A4A4A4", +"7+ c #B4BDBD", +"8+ c #1F1F1F", +"9+ c #ACE2E2", +"0+ c #648484", +"a+ c #747979", +"b+ c #7A7F7F", +"c+ c #979C9C", +"d+ c #676767", +"e+ c #737373", +"f+ c #757575", +"g+ c #629B9B", +"h+ c #DCE6E6", +"i+ c #DEE2E2", +"j+ c #949494", +"k+ c #646464", +"l+ c #395555", +"m+ c #8E8E8E", +"n+ c #B3B3B3", +"o+ c #ABE4E4", +"p+ c #98E9E9", +"q+ c #7CF1F1", +"r+ c #DCE7E7", +"s+ c #A9E6E6", +"t+ c #9BE7E7", +"u+ c #79EEEE", +" ", +" ", +" ", +" ", +" . + @ # $ % & * = - ; ", +" > , ' ) ! ~ { ] ^ / ( _ : < ] < < [ } ", +" | 1 2 3 3 { 4 5 6 7 8 9 0 a 2 5 b c 5 c c d e ", +" f g c h i 4 c c j k l m n o p q r s s t u v w ", +" x y z A B c s o C D E F G H I J K L M N O P Q R ", +" S T s U M V W X Y Z ` .P ..+.@.#.$. ", +" %.m U &...! *.=.. -.;.>.,.'.). ", +" !.~.U O >.{.]. . ^./.(._.:. ", +" <.[.&.}.|.1. 2.3.'.4.5.%. ", +" 6.7.p }.8.9. 0.[ a.4.b.c. ", +" d.e.7.f.}.g.h. . i.! V j.k.h. ", +" R [ 7.U }.H . l.m.E n.( ", +" o.p.7.U q.r. s.t.N F u.v. ", +" w.x.7.U y.z. A.B.N N C.D. ", +" E.F.7.U G.H. . I.u v p J.K. ", +" . L.4 7.M.N.O. . P.t p.p Q. ", +" ].R.4 7.p S.T. U.1 7.V.W.e ", +" . X.Y.7.N Z. `.[.7.g +. ", +" .+x.b ++@+#+ . $+s ++p.T $. ", +" . %+i 7.p.&+*+ . =+7.p.-+;+R ", +" . >+4 7.-+,+'+ U.)+7.p.n !+. ", +" . ~+< 7.p {+]+ O.^+7.p.q /+(+. _+. :+ ", +" Z <+b 7.}.[+ }+|+7.U N 1+2+3+4+5+6+ ", +" 7+4 x.8+N 9+ . 0+7.U N @.4.a+b+c+w ", +" ^ d+e+f+g+h+ i+j+k+l+L m+n+o+p+ ", +" q+q+. r+ q+s.s+t+u+. ", +" ", +" "}; --- nano-2.1.11.orig/debian/nano-tiny.prerm +++ nano-2.1.11/debian/nano-tiny.prerm @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ "$1" != "upgrade" ]; then + update-alternatives --remove editor /bin/nano-tiny +fi + +#DEBHELPER# --- nano-2.1.11.orig/debian/nanorc +++ nano-2.1.11/debian/nanorc @@ -0,0 +1,299 @@ +## Sample initialization file for GNU nano. +## +## Please note that you must have configured nano with --enable-nanorc +## for this file to be read! Also note that this file should not be in +## DOS or Mac format, and that characters specially interpreted by the +## shell should not be escaped here. +## +## To make sure a value is disabled, use "unset