diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-19 16:39:07 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-19 16:39:07 +0100 |
commit | 7caa5b1b4091d63243c29d92361c35edbf11cf31 (patch) | |
tree | 1ba61d129a2dcae6f8780ead88b0fed5d3daaf51 | |
parent | 039a657df2b63b982d33b29715850485405769d3 (diff) | |
download | sciteco-7caa5b1b4091d63243c29d92361c35edbf11cf31.tar.gz |
debianized SciTECO
* prepared for upload to Ubuntu PPA
* debian package will not be in autoconf source distro
* will only build as a non-native package based on a source bundle
that contains scintilla, scinterm and has patches applied
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 21 | ||||
-rw-r--r-- | debian/copyright | 63 | ||||
-rwxr-xr-x | debian/rules | 23 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 116 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..57e7395 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,7 @@ +sciteco (0.1-1ppa1~oneiric1) oneiric; urgency=low + + * initial debianization + * single package with architecture independent files + * only ncurses interface is built for now + + -- Robin Haberkorn <robin.haberkorn@googlemail.com> Tue, 19 Mar 2013 15:19:13 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..688b4fa --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: sciteco +Section: editors +Priority: optional +Maintainer: Robin Haberkorn <robin.haberkorn@googlemail.com> +Build-Depends: debhelper (>= 8), g++ (>= 4:4.4), libglib2.0-dev, libncurses5-dev +Standards-Version: 3.9.2 +Homepage: http://rhaberkorn.github.com/sciteco/ +Vcs-Browser: https://github.com/rhaberkorn/sciteco +Vcs-Git: git://github.com/rhaberkorn/sciteco.git + +Package: sciteco-curses +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Scintilla-based TExt Editor and COrrector + SciTECO is an interactive TECO dialect, similar to Video TECO. + It also adds features from classic Standard TECO-11, + and incorporates many unique new ideas. + It is geared towards UNIX-like operating systems but also + natively supports Microsoft Windows NT. + . + This package contains the ncurses version of SciTECO. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..42b4dc2 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,63 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: SciTECO +Upstream-Contact: robin.haberkorn@googlemail.com +Source: https://github.com/rhaberkorn/sciteco + +Files: debian/* +Copyright: Copyright 2013 Robin Haberkorn <robin.haberkorn@googlemail.com> +License: GPL-3+ + /usr/share/common-licenses/GPL-3 + +Files: sciteco/* +Copyright: Copyright 2012-2013 Robin Haberkorn <robin.haberkorn@googlemail.com> +License: GPL-3+ + /usr/share/common-licenses/GPL-3 + +Files: scintilla/* +Copyright: Copyright 1998-2003 Neil Hodgson <neilh@scintilla.org> +License: + License for Scintilla and SciTE + . + Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> + . + All Rights Reserved + . + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation. + . + NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE + OR PERFORMANCE OF THIS SOFTWARE. + +Files: scintilla/scinterm/* +Copyright: Copyright 2007-2012 Mitchell <mitchell.att.foicica.com> +License: + The MIT License + . + Copyright (c) 2007-2012 Mitchell + . + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7b7396b --- /dev/null +++ b/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ -Dsciteco + +build: + dh_testdir + dh_auto_build -Dscintilla/scinterm + dh_auto_configure -Dsciteco -- \ + --enable-bootstrap \ + --with-scintilla=../scintilla \ + --with-interface=ncurses + dh_auto_build -Dsciteco + touch $@ + +clean: + dh_testdir + dh_auto_clean -Dscintilla/scinterm + dh_auto_clean -Dsciteco + dh_clean diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |