From: ar-jan <ar-jan@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: sqlitestudio-3.3.3
Date: Tue, 22 Feb 2022 01:26:51 +0100 [thread overview]
Message-ID: <20220222002651.iu3zFbYjQSYuZL5mZ4AWlaAAVVkTYbrefeW0Y6VILXU@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35540@inbox.vuxu.org>
[-- Attachment #1: Type: text/plain, Size: 1542 bytes --]
There is an updated pull request by ar-jan against master on the void-packages repository
https://github.com/ar-jan/void-packages sqlitestudio
https://github.com/void-linux/void-packages/pull/35540
New package: sqlitestudio-3.3.3
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**
<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
#### Benefits
[SQLiteStudio](https://sqlitestudio.pl/) makes it easy to quickly open and inspect a database while navigating your filesystem, my primary use case (it supports much more functionality).

A patch file from https://github.com/void-linux/void-packages/pull/35540.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sqlitestudio-35540.patch --]
[-- Type: text/x-diff, Size: 3061 bytes --]
From e836f6993f01f413d390ad25378641140af046fe Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Fri, 11 Feb 2022 20:12:09 +0100
Subject: [PATCH] New package: sqlitestudio-3.3.3
---
common/shlibs | 2 +
.../sqlitestudio/files/sqlitestudio.desktop | 9 ++++
srcpkgs/sqlitestudio/template | 49 +++++++++++++++++++
3 files changed, 60 insertions(+)
create mode 100644 srcpkgs/sqlitestudio/files/sqlitestudio.desktop
create mode 100644 srcpkgs/sqlitestudio/template
diff --git a/common/shlibs b/common/shlibs
index 32befc92d641..e56e00f789c6 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4114,3 +4114,5 @@ libjvm.so openjdk17-jre-17.0.1+12_1
librttopo.so.1 librttopo-1.1.0_1
libspatialite.so.7 libspatialite-5.0.1_1
mod_spatialite.so.7 libspatialite-5.0.1_1
+libcoreSQLiteStudio.so.1 sqlitestudio-3.3.3_1
+libguiSQLiteStudio.so.1 sqlitestudio-3.3.3_1
diff --git a/srcpkgs/sqlitestudio/files/sqlitestudio.desktop b/srcpkgs/sqlitestudio/files/sqlitestudio.desktop
new file mode 100644
index 000000000000..690363741a80
--- /dev/null
+++ b/srcpkgs/sqlitestudio/files/sqlitestudio.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Type=Application
+Name=SQLiteStudio
+Comment=Database manager to create, edit, and browse SQLite databases
+Icon=/usr/share/icons/hicolor/scalable/apps/sqlitestudio.svg
+Exec=sqlitestudio %f
+Terminal=false
+Categories=Database;Development;Utility;
+MimeType=application/vnd.sqlite3;application/x-sqlite3;
diff --git a/srcpkgs/sqlitestudio/template b/srcpkgs/sqlitestudio/template
new file mode 100644
index 000000000000..5a1e3cc7d36b
--- /dev/null
+++ b/srcpkgs/sqlitestudio/template
@@ -0,0 +1,49 @@
+# Template file for 'sqlitestudio'
+pkgname=sqlitestudio
+version=3.3.3
+revision=1
+archs="~aarch* ~armv*"
+build_style=qmake
+hostmakedepends="qt5-qmake qt5-host-tools"
+makedepends="qt5-devel
+ qt5-script-devel
+ qt5-svg-devel
+ qt5-tools-devel
+ readline-devel
+ sqlite-devel
+ tcl-devel"
+depends="sqlite"
+short_desc="Free, open source, multi-platform SQLite database manager"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="custom:GPL-3.0-only-with-OpenSSL-exception"
+homepage="https://sqlitestudio.pl/"
+distfiles="https://github.com/pawelsalawa/sqlitestudio/archive/$version.tar.gz"
+checksum=f234e1ea87d27e80a1794f86d32116ebd8919d51be63d35a7d0816a77115ce31
+
+do_configure() {
+ mkdir -p ${wrksrc}/output/build/Plugins
+ cd ${wrksrc}/output/build
+ qmake ${wrksrc}/SQLiteStudio3
+ cd ${wrksrc}/output/build/Plugins
+ qmake ${wrksrc}/Plugins
+}
+
+do_build() {
+ cd ${wrksrc}/output/build
+ make
+ cd ${wrksrc}/output/build/Plugins
+ make
+}
+
+do_install() {
+ cd ${wrksrc}/output/build
+ make INSTALL_ROOT=${DESTDIR} install
+ cd ${wrksrc}/output/build/Plugins
+ make INSTALL_ROOT=${DESTDIR} install
+ vinstall ${wrksrc}/SQLiteStudio3/guiSQLiteStudio/img/sqlitestudio.svg 644 usr/share/icons/hicolor/scalable/apps
+ vinstall ${FILESDIR}/sqlitestudio.desktop 644 usr/share/applications
+}
+
+post_install() {
+ vlicense LICENSE
+}
next prev parent reply other threads:[~2022-02-22 0:26 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-11 19:30 [PR PATCH] " ar-jan
2022-02-11 22:21 ` [PR PATCH] [Updated] " ar-jan
2022-02-12 0:17 ` ar-jan
2022-02-13 18:08 ` ar-jan
2022-02-22 0:26 ` ar-jan [this message]
2022-03-02 15:03 ` ar-jan
2022-03-05 16:42 ` ar-jan
2022-03-11 13:09 ` ar-jan
2022-05-13 17:15 ` jackloomen
2022-05-13 18:27 ` ar-jan
2022-05-13 19:53 ` [PR REVIEW] " paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 19:53 ` paper42
2022-05-13 22:42 ` ar-jan
2022-05-14 17:51 ` [PR PATCH] [Updated] " ar-jan
2022-05-14 17:59 ` ar-jan
2022-08-13 2:11 ` github-actions
2022-08-16 12:30 ` ar-jan
2022-11-16 2:11 ` github-actions
2022-12-01 2:10 ` [PR PATCH] [Closed]: " github-actions
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220222002651.iu3zFbYjQSYuZL5mZ4AWlaAAVVkTYbrefeW0Y6VILXU@z \
--to=ar-jan@users.noreply.github.com \
--cc=ml@inbox.vuxu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).