initial debian $foo

ubuntu/cosmic
Alf Gaida 9 years ago
parent 0983d8a518
commit e6156d612a

@ -1,20 +0,0 @@
Debian qterminal package git repositories
------------------------------------------
This Git repository contains the following branches:
* master
This branch contains this README file and is otherwise not used.
* debian
This branch tracks the Debian unstable distribution and contains
the current state of last released version of the component.
* pristine-tar
This branch contains the pristine-tar metadata. See pristine-tar(1)
or http://kitenet.net/~joey/code/pristine-tar/ for more information.
* upstream
This branch contains the upstream releases.
-- Andrew Lee (李健秋) <ajqlee@debian.org> Thu, 13 Aug 2015 03:14:31 +0800

5
debian/changelog vendored

@ -0,0 +1,5 @@
qterminal (0.6.0-1) unstable; urgency=medium
* Initial release (Closes: #741173)
-- Alf Gaida <agaida@siduction.org> Sat, 25 Oct 2014 02:58:06 +0200

32
debian/control vendored

@ -0,0 +1,32 @@
Source: qterminal
Section: x11
Priority: extra
Maintainer: LXQt Packaging Team <pkg-lxqt-devel@lists.alioth.debian.org>
Uploaders:
Alf Gaida <agaida@siduction.org>,
ChangZhuo Chen (陳昌倬) <czchen@gmail.com>,
Andrew Lee (李健秋) <ajqlee@debian.org>
Build-Depends:
cmake (>= 3.0.2),
debhelper (>= 9),
libqtermwidget5-0-dev (>= 0.6.0),
libx11-dev,
qtermwidget5-data (>= 0.6.0),
qttools5-dev-tools (>= 5.3),
qttools5-dev (>= 5.3),
qtbase5-private-dev (>= 5.3),
quilt,
Standards-Version: 3.9.6
Homepage: https://github.com/qterminal/qterminal
Vcs-Git: git://anonscm.debian.org/pkg-lxqt/qterminal.git
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/qterminal.git
Package: qterminal
Architecture: any
Depends:
${shlibs:Depends},
${misc:Depends},
libqtermwidget5-0,
Replaces: qterminal-qt5
Description: QT-based multitab terminal emulator
Based on QTermWidget by e_k@users.sourceforge.net

30
debian/copyright vendored

@ -0,0 +1,30 @@
dFormat: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: qterminal
Source: https://github.com/qterminal/qterminal.git
Files: *
Copyright: 2010-2015 Petr Vanek <petr@scribus.info>
License: GPL-2+
Files: debian/*
Copyright: 2012-2015 Alf Gaida <agaida@siduction.org>
2012 Torsten Wohlfarth <towo@siduction.org>
License: GPL-2+
License: GPL-2+
This package 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 2 of the License, or
(at your option) any later version.
.
This package 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, see <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

2
debian/docs vendored

@ -0,0 +1,2 @@
AUTHORS
README

@ -0,0 +1,3 @@
# no manpage planned right now
qterminal: binary-without-manpage usr/bin/qterminal

28
debian/postinst vendored

@ -0,0 +1,28 @@
#!/bin/sh
# postinst script for qterminal
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/qterminal 80
find /home/*/.config -type f -name qterminal\* -exec mv {} {}.dpkg-old \; || exit 0
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0

38
debian/prerm vendored

@ -0,0 +1,38 @@
#!/bin/sh
# postrm script for qterminal
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <overwriter>
# <overwriter-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
update-alternatives --remove x-terminal-emulator /usr/bin/qterminal | exit 0
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0

@ -0,0 +1,2 @@
usr

32
debian/rules vendored

@ -0,0 +1,32 @@
#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
dh $@ --buildsystem cmake --parallel --with quilt
override_dh_auto_configure:
dh_auto_configure -- -DUSE_QT5=1 -DUSE_SYSTEM_QXT=0 -DBUILD_DESIGNER_PLUGIN=0
maintainer-clean:
$(RM) -r checkout
$(RM) -r backport
$(RM) *.build
$(RM) *.changes
$(RM) *.deb
$(RM) *.dsc
$(RM) *.tar.gz
$(RM) *.upload
checkout: maintainer-clean
git clone --depth 1 git://github.com/qterminal/qterminal.git checkout; \
cd checkout; \
cp -a ../debian .; \
echo ""; \
git log -1 | head; \
echo ""
backport: checkout
mv checkout backport

@ -0,0 +1 @@
1.0

@ -0,0 +1,3 @@
# dont put .xyz in the tarball
tar-ignore=.xyz
tar-ignore=.gitignore
Loading…
Cancel
Save