aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog5
-rw-r--r--debian/control28
-rw-r--r--debian/copyright45
-rw-r--r--debian/docs0
-rw-r--r--debian/gbp.conf4
-rwxr-xr-xdebian/rules20
-rw-r--r--debian/source/format1
7 files changed, 103 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c8ca3ca
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+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..6f6f2d8
--- /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://builder.jadupc.com/git/pkgs/whatsie -b debian
+Vcs-Browser: https://builder.jadupc.com/git/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)