diff options
| -rw-r--r-- | debian/changelog | 21 | ||||
| -rw-r--r-- | debian/control | 26 | ||||
| -rw-r--r-- | debian/copyright | 52 | ||||
| -rw-r--r-- | debian/docs | 1 | ||||
| -rw-r--r-- | debian/gbp.conf | 3 | ||||
| -rwxr-xr-x | debian/rules | 19 | ||||
| -rw-r--r-- | debian/source/format | 1 | ||||
| -rw-r--r-- | debian/watch | 3 |
8 files changed, 126 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..04fca69 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,21 @@ +qt6gtk2 (0.4-0vanir1) unstable; urgency=medium + + * d/control, d/copyright, d/watch: Update homepage. + * New upstream version 0.4. + * Update Standards-Version to 4.7.2. + + -- Unit 193 <unit193@unit193.net> Thu, 13 Mar 2025 00:00:10 -0400 + +qt6gtk2 (0.3-0vanir1) unstable; urgency=medium + + * New upstream release. + * d/copyright: Bump years. + * Bump Standards-Version to 4.7.0. + + -- Unit 193 <unit193@unit193.net> Sat, 05 Oct 2024 03:16:16 -0400 + +qt6gtk2 (0.2-0vanir1) unstable; urgency=medium + + * Initial release. + + -- Unit 193 <unit193@unit193.net> Sat, 07 Jan 2023 19:31:11 -0500 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3797105 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +Source: qt6gtk2 +Section: x11 +Priority: optional +Maintainer: Unit 193 <unit193@unit193.net> +Build-Depends: debhelper-compat (= 13), + libx11-dev, + libgtk2.0-dev, + qt6-base-dev, + qt6-base-private-dev, +Rules-Requires-Root: no +Standards-Version: 4.7.2 +Homepage: https://www.opencode.net/trialuser/qt6gtk2/ + +Package: qt6gtk2 +Architecture: any +Multi-Arch: same +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: GTK 2 integration plugins for Qt6 + This package contains the GTK 2 style and platform theme, for proper usage + it requires that you have a functional GTK 2 theme selected. + . + To enable it for all Qt applications, export QT_QPA_PLATFORMTHEME=qt6gtk2 + or 'gtk2', 'qt5gtk2' also work for compatibility reasons. + . + To avoid visual bugs, ensure that the environment variable QT_STYLE_OVERRIDE + is not set before usage. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..901efe3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,52 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: qt6gtk2 +Source: https://www.opencode.net/trialuser/qt6gtk2 + +Files: * +Copyright: 2015, The Qt Company Ltd. * + 2016-2024, Ilya Kotov <forkotov02@ya.ru> +License: GPL-2+ + +Files: debian/* +Copyright: 2023-2024, Unit 193 <unit193@unit193.net> +License: BSD-3-Clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +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 <https://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". diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..5474c60 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +pristine-tar = True +sign-tags = True diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2e45a9c --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk +export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +%: + dh $@ + +override_dh_auto_configure: + ln -s /usr/bin/qmake6 ./qmake + PATH=`pwd`:$(PATH) dh_auto_configure + +override_dh_clean: + dh_clean qmake 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) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..b9054bc --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts="searchmode=plain" \ +https://www.opencode.net/trialuser/qt6gtk2/-/tags archive/v?\d[\d.]+/@PACKAGE@-@ANY_VERSION@@ARCHIVE_EXT@ |
