diff options
-rw-r--r-- | debian/changelog | 11 | ||||
-rw-r--r-- | debian/control | 28 | ||||
-rw-r--r-- | debian/copyright | 45 | ||||
-rw-r--r-- | debian/docs | 0 | ||||
-rw-r--r-- | debian/gbp.conf | 4 | ||||
-rwxr-xr-x | debian/rules | 20 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 109 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..fa3bcc3 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +whatsie (4.12.1-1) shopno; urgency=medium + + * New upstream version 4.12.1 + + -- Mubashshir <ahm@jadupc.com> Tue, 07 Mar 2023 23:22:25 +0600 + +whatsie (4.12.0-1) shopno; urgency=medium + + * Initial release. + + -- Mubashshir <ahm@jadupc.com> Tue, 07 Mar 2023 18:40:41 +0600 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5a702f5 --- /dev/null +++ b/debian/control @@ -0,0 +1,28 @@ +Source: whatsie +Section: web +Priority: optional +Maintainer: Mubashshir <ahm@jadupc.com> +Build-Depends: + debhelper-compat (= 13), + qt5-qmake, + libx11-dev, + libx11-xcb-dev, + qtwebengine5-dev, + qtwebengine5-dev-tools, + qtpositioning5-dev, +Standards-Version: 4.6.0 +Homepage: https://github.com/keshavbhatt/whatsie +Vcs-Git: https://git.jadupc.com/pkgs/whatsie -b debian +Vcs-Browser: https://git.jadupc.com/pkgs/whatsie + +Package: whatsie +Architecture: any +Depends: ${shlibs:Depends} +Provides: + whatsapp, + whatsapp-web, +Description: Unofficial client for WhatsApp + WhatSie is a feature rich WhatsApp web client based on + Qt WebEngine for Linux Desktop. + +# vim: ft=yaml:ts=1:et diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..e277008 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,45 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: whatsie +Source: <https://github.com/keshavbhatt/whatsie> + +Files: * +Copyright: 2021 Keshav Bhatt <keshavnrj@gmail.com> +License: MIT + 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. + +Files: debian/* +Copyright: 2023 Mubashshir <ahm@jadupc.com> +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". + +# vim: ft=pkg-config:ts=1:et diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/debian/docs diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..5d61319 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +upstream-tag = upstream/%(version)s +debian-tag = debian/%(version)s +debian-tag-msg = %(pkg)s Debian release %(version)s diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..d80d4da --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +override_dh_usrlocal: + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure --buildsystem=qmake --builddir -- ../src + +override_dh_auto_build: + dh_auto_build --builddir + +override_dh_auto_install: + dh_auto_install --builddir -- INSTALL_ROOT='$$(DESTDIR)' + +override_dh_auto_clean: + dh_auto_clean --builddir 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) |