Github messages for voidlinux
 help / color / mirror / Atom feed
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: Fri, 11 Mar 2022 14:09:58 +0100	[thread overview]
Message-ID: <20220311130958.tA1GtuhpdYoeZUbZMUNSGlB_1_acMio_HW4L0Q3QCYI@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).

![sqlitestudio_full_43](https://user-images.githubusercontent.com/1176293/154484792-f1637eda-5fc8-4e43-b921-d68016064bf5.png)


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: 3140 bytes --]

From a26cda3e9b11a7fc6f02e6307a1e9fe967b00fa1 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                                 |  3 ++
 .../sqlitestudio/files/sqlitestudio.desktop   |  9 ++++
 srcpkgs/sqlitestudio/template                 | 49 +++++++++++++++++++
 3 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/sqlitestudio/files/sqlitestudio.desktop
 create mode 100644 srcpkgs/sqlitestudio/template

diff --git a/common/shlibs b/common/shlibs
index d60e60a87534..67fde0d7f178 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -353,6 +353,9 @@ libpoppler-qt5.so.1 poppler-qt5-0.31.0_1
 libtcl8.6.so tcl-8.6.0_1
 libtk8.6.so tk-8.6.1_3
 libsqlite3.so.0 sqlite-3.38.0_1
+libsqlite3.so.0 sqlite-3.31.1_3
+libcoreSQLiteStudio.so.1 sqlitestudio-3.3.3_1
+libguiSQLiteStudio.so.1 sqlitestudio-3.3.3_1
 libIDL-2.so.0 libIDL-0.8.13_1
 libnspr4.so nspr-4.8_1
 libplc4.so nspr-4.8_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
+}

  parent reply	other threads:[~2022-03-11 13:09 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
2022-03-02 15:03 ` ar-jan
2022-03-05 16:42 ` ar-jan
2022-03-11 13:09 ` ar-jan [this message]
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=20220311130958.tA1GtuhpdYoeZUbZMUNSGlB_1_acMio_HW4L0Q3QCYI@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).