Codebase list fasd / ca3f7e2
Update copyright and remove unused files ChangZhuo Chen (陳昌倬) 7 years ago
3 changed file(s) with 22 addition(s) and 69 deletion(s). Raw diff Collapse all Expand all
00 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
11 Upstream-Name: fasd
2 Source: <url://example.com>
2 Source: https://github.com/clvv/fasd
33
44 Files: *
5 Copyright: <years> <put author's name and email here>
6 <years> <likewise for another author>
7 License: <special license>
8 <Put the license of the package here indented by 1 space>
9 <This follows the format of Description: lines in control file>
10 .
11 <Including paragraphs>
5 Copyright: Copyright (C) 2011, 2012 by Wei Dai
6 License: Expat
127
13 # If you want to use GPL v2 or later for the /debian/* files use
14 # the following clauses, or change it to suit. Delete these two lines
158 Files: debian/*
169 Copyright: 2017 ChangZhuo Chen (陳昌倬) <czchen@debian.org>
17 License: GPL-2+
18 This package is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or
21 (at your option) any later version.
10 License: Expat
11
12 License: Expat
13 Permission is hereby granted, free of charge, to any person obtaining
14 a copy of this software and associated documentation files (the
15 "Software"), to deal in the Software without restriction, including
16 without limitation the rights to use, copy, modify, merge, publish,
17 distribute, sublicense, and/or sell copies of the Software, and to
18 permit persons to whom the Software is furnished to do so, subject to
19 the following conditions:
2220 .
23 This package is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
21 The above copyright notice and this permission notice shall be included
22 in all copies or substantial portions of the Software.
2723 .
28 You should have received a copy of the GNU General Public License
29 along with this program. If not, see <https://www.gnu.org/licenses/>
30 .
31 On Debian systems, the complete text of the GNU General
32 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
33
34 # Please also look if there are files or directories which have a
35 # different copyright/license attached and list them here.
36 # Please avoid picking licenses with terms that are more restrictive than the
37 # packaged work, as it may make Debian's contributions unacceptable upstream.
24 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
27 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
28 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+0
-2
debian/menu.ex less more
0 ?package(fasd):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\
1 title="fasd" command="/usr/bin/fasd"
+0
-38
debian/prerm.ex less more
0 #!/bin/sh
1 # prerm script for fasd
2 #
3 # see: dh_installdeb(1)
4
5 set -e
6
7 # summary of how this script can be called:
8 # * <prerm> `remove'
9 # * <old-prerm> `upgrade' <new-version>
10 # * <new-prerm> `failed-upgrade' <old-version>
11 # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
12 # * <deconfigured's-prerm> `deconfigure' `in-favour'
13 # <package-being-installed> <version> `removing'
14 # <conflicting-package> <version>
15 # for details, see https://www.debian.org/doc/debian-policy/ or
16 # the debian-policy package
17
18
19 case "$1" in
20 remove|upgrade|deconfigure)
21 ;;
22
23 failed-upgrade)
24 ;;
25
26 *)
27 echo "prerm called with unknown argument \`$1'" >&2
28 exit 1
29 ;;
30 esac
31
32 # dh_installdeb will replace this with shell code automatically
33 # generated by other debhelper scripts.
34
35 #DEBHELPER#
36
37 exit 0