Compare commits
8 Commits
backports/
...
ubuntu/plu
Author | SHA1 | Date | |
---|---|---|---|
d98b7b4e2d | |||
f9ae2bedbc | |||
460f18c46f | |||
27db06429c | |||
09fe3b2054 | |||
b21ec8171d | |||
4b69a6e307 | |||
bbc76c535c |
15
debian/changelog
vendored
15
debian/changelog
vendored
@ -1,8 +1,17 @@
|
|||||||
qtilitools (0.1.1~git20231009-0ubuntu1~ppa1) jammy; urgency=medium
|
qtilitools (0.1.2+really0.1.2-0ubuntu1) plucky; urgency=medium
|
||||||
|
|
||||||
* Backport to Jammy.
|
* Upstream now offers releases, so dropping git.
|
||||||
|
* Added watch file.
|
||||||
|
|
||||||
-- Simon Quigley <tsimonq2@ubuntu.com> Fri, 17 Nov 2023 11:58:16 -0600
|
-- Walter Lapchynski <wxl@ubuntu.com> Sun, 02 Feb 2025 22:54:57 +0000
|
||||||
|
|
||||||
|
qtilitools (0.1.2+git20240107-0ubuntu1) plucky; urgency=medium
|
||||||
|
|
||||||
|
* New upstream snapshot.
|
||||||
|
* Remove patch applied upstream.
|
||||||
|
* Bump Standards-Version to 4.7.0, no changes needed.
|
||||||
|
|
||||||
|
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 19 Oct 2024 15:08:00 -0500
|
||||||
|
|
||||||
qtilitools (0.1.1~git20231009-0ubuntu1) noble; urgency=medium
|
qtilitools (0.1.1~git20231009-0ubuntu1) noble; urgency=medium
|
||||||
|
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -5,7 +5,7 @@ Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
|||||||
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
||||||
Rules-Requires-Root: no
|
Rules-Requires-Root: no
|
||||||
Build-Depends: cmake, debhelper-compat (= 13)
|
Build-Depends: cmake, debhelper-compat (= 13)
|
||||||
Standards-Version: 4.6.2
|
Standards-Version: 4.7.0
|
||||||
Homepage: https://jpnaude.github.io/Qtilities/
|
Homepage: https://jpnaude.github.io/Qtilities/
|
||||||
Vcs-Browser: https://git.lubuntu.me/Lubuntu/qtilitools-packaging
|
Vcs-Browser: https://git.lubuntu.me/Lubuntu/qtilitools-packaging
|
||||||
Vcs-Git: https://git.lubuntu.me/Lubuntu/qtilitools-packaging.git
|
Vcs-Git: https://git.lubuntu.me/Lubuntu/qtilitools-packaging.git
|
||||||
|
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -8,7 +8,7 @@ Copyright: 2023 Qtilities Team
|
|||||||
License: BSD-3
|
License: BSD-3
|
||||||
|
|
||||||
Files: debian/*
|
Files: debian/*
|
||||||
Copyright: 2023 Simon Quigley <tsimonq2@ubuntu.com>
|
Copyright: 2023-2024 Simon Quigley <tsimonq2@ubuntu.com>
|
||||||
License: BSD-3
|
License: BSD-3
|
||||||
|
|
||||||
License: BSD-3
|
License: BSD-3
|
||||||
|
79
debian/patches/fix-syntax.patch
vendored
79
debian/patches/fix-syntax.patch
vendored
@ -1,79 +0,0 @@
|
|||||||
Description: <short description, required>
|
|
||||||
<long description that can span multiple lines, optional>
|
|
||||||
Author: <name and email of author, optional>
|
|
||||||
Origin: <upstream|backport|vendor|other>, <URL, required except if Author is present>
|
|
||||||
Bug: <URL to the upstream bug report if any, implies patch has been forwarded, optional>
|
|
||||||
Bug-<Vendor>: <URL to the vendor bug report if any, optional>
|
|
||||||
Forwarded: <URL|no|not-needed, useless if you have a Bug field, optional>
|
|
||||||
Applied-Upstream: <version|URL|commit, identifies patches merged upstream, optional>
|
|
||||||
Reviewed-by: <name and email of a reviewer, optional>
|
|
||||||
Last-Update: 2023-11-17 <YYYY-MM-DD, last update of the meta-information, optional>
|
|
||||||
---
|
|
||||||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|
||||||
--- a/bin/qtls-translate
|
|
||||||
+++ b/bin/qtls-translate
|
|
||||||
@@ -35,26 +35,29 @@
|
|
||||||
#
|
|
||||||
# Update translation files.
|
|
||||||
#===============================================================================
|
|
||||||
-function usage
|
|
||||||
-{
|
|
||||||
+
|
|
||||||
+usage() {
|
|
||||||
printf "\nUse: lxqt-transupdate [source directory]\n"
|
|
||||||
exit 0
|
|
||||||
}
|
|
||||||
|
|
||||||
-function lxqt_transupdate
|
|
||||||
-{
|
|
||||||
- if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then usage; fi
|
|
||||||
+lxqt_transupdate() {
|
|
||||||
+ if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
|
||||||
+ usage
|
|
||||||
+ fi
|
|
||||||
|
|
||||||
# Test for supported Qt version
|
|
||||||
- local qtVersion_=$(qmake -query QT_VERSION|cut -d'.' -f1)
|
|
||||||
- local qVersions_=(5 6)
|
|
||||||
+ local qtVersion_=$(qmake -query QT_VERSION | cut -d'.' -f1)
|
|
||||||
+ local qVersions_="5 6"
|
|
||||||
|
|
||||||
- if echo "${qVersions_[@]}" | grep -qw "$qtVersion_"; then supported_=1; fi
|
|
||||||
+ case $qVersions_ in
|
|
||||||
+ *"$qtVersion_"*) supported_=1 ;;
|
|
||||||
+ esac
|
|
||||||
|
|
||||||
if [ -z "$supported_" ]; then
|
|
||||||
printf "\nError: Qt%s is not supported. (Supported versions are: " "$qtVersion_"
|
|
||||||
- printf "%s" "${qVersions_[0]}"
|
|
||||||
- printf ", %s" "${qVersions_[@]:1}"
|
|
||||||
+ printf "%s" "${qVersions_%% *}"
|
|
||||||
+ printf ", %s" "${qVersions_#* }"
|
|
||||||
printf ')\n\n'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
@@ -62,11 +65,15 @@ function lxqt_transupdate
|
|
||||||
local sourcedir_=
|
|
||||||
local templates_=$(find . -name \*.ts | grep -v '_')
|
|
||||||
|
|
||||||
- if [ -d "$1" ]; then sourcedir_="$1"; fi
|
|
||||||
+ if [ -d "$1" ]; then
|
|
||||||
+ sourcedir_="$1"
|
|
||||||
+ fi
|
|
||||||
|
|
||||||
for i in $templates_; do
|
|
||||||
- local transdir_=$(dirname $i)
|
|
||||||
- if [ "$sourcedir_" == "" ]; then sourcedir_=$(dirname $transdir_); fi
|
|
||||||
+ local transdir_=$(dirname "$i")
|
|
||||||
+ if [ "$sourcedir_" = "" ]; then
|
|
||||||
+ sourcedir_=$(dirname "$transdir_")
|
|
||||||
+ fi
|
|
||||||
local cmdUpdateTemplate="lupdate $sourcedir_ -ts $i -locations absolute -no-obsolete"
|
|
||||||
local cmdUpdateLanguage="lupdate $sourcedir_ -ts $transdir_/*_*.ts -locations absolute -no-obsolete"
|
|
||||||
|
|
||||||
@@ -79,4 +86,5 @@ function lxqt_transupdate
|
|
||||||
printf "\n"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
+
|
|
||||||
lxqt_transupdate "${@}"
|
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -1 +0,0 @@
|
|||||||
fix-syntax.patch
|
|
2
debian/source/lintian-overrides
vendored
Normal file
2
debian/source/lintian-overrides
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# We are using a manually-generated upstream tarball
|
||||||
|
qtilitools source: debian-watch-file-is-missing
|
5
debian/watch
vendored
Normal file
5
debian/watch
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
version=4
|
||||||
|
opts="searchmode=plain, \
|
||||||
|
dversionmangle=s/\~(really)(\d\.)*(\d)*//, \
|
||||||
|
filenamemangle=s/(@ANY_VERSION@)/qtilitools-$1.tar.gz/" \
|
||||||
|
https://api.github.com/repos/qtilities/@PACKAGE@/releases https:\/\/api.github.com\/repos\/qtilities\/@PACKAGE@\/tarball\/@ANY_VERSION@
|
Loading…
x
Reference in New Issue
Block a user