Package Details: sqliteman 1.2.2-12

Git Clone URL: https://aur.archlinux.org/sqliteman.git (read-only, click to copy)
Package Base: sqliteman
Description: Graphical sqlite3 browser and editor
Upstream URL: http://sqliteman.yarpen.cz/
Licenses: GPL
Submitter: SammysHP
Maintainer: SammysHP
Last Packager: SammysHP
Votes: 9
Popularity: 0.000000
First Submitted: 2018-01-07 15:12 (UTC)
Last Updated: 2018-09-24 12:15 (UTC)

Latest Comments

1 2 Next › Last »

SammysHP commented on 2025-05-18 09:15 (UTC)

Unfortunately there are more fixed required to build the fork. My current progress is here:

# Maintainer: Sven Karsten Greiner <sven@sammyshp.de>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
# Contributor: Roman Porizka <artee@beer.cz>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Semen Soldatov <simplexe@mail.ru>

pkgname=sqliteman
pkgver=1.9.1
pkgrel=1
pkgdesc='Graphical sqlite3 browser and editor'
arch=('x86_64')
url='https://github.com/rparkins999/sqliteman'
license=('GPL-2.0-or-later')
depends=('qscintilla-qt5' 'qt5-base' 'sqlite3')
makedepends=('cmake')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rparkins999/sqliteman/archive/v${pkgver}.tar.gz")
sha256sums=('3e6d90ec8b87470d095349646b6bf098b5f84386436e290f18b8d2acd025ad5e')

build() {
  mkdir -p build
  cd build

  cmake ../${pkgname}-${pkgver}/Sqliteman \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_POLICY_VERSION_MINIMUM=3.5
  make
}

package() {
  cd build
  make DESTDIR="${pkgdir}" install
}

Sqliteman/cmake/modules/FindQScintilla.cmake is not working and the search paths have to be updated. Then there's another issue with buildtime.h.

I don't have the time to fix this at the moment. If someone wants to adopt this package, please let me know. For the meantime I suggest sqlitestudio as a replacement.

SammysHP commented on 2025-05-18 08:32 (UTC) (edited on 2025-05-18 08:35 (UTC) by SammysHP)

@tyjak

CMake 4.0 removed support for versions older than 3.5 and deprecated versions older than 3.10. In addition some policies (use old behavior for specific features) were removed. To fix this, parts of the CMake configuration must be rewritten.

I will try to switch to a fork of sqliteman that appears to be maintained: https://github.com/rparkins999/sqliteman

tyjak commented on 2025-05-18 07:33 (UTC) (edited on 2025-05-18 07:39 (UTC) by tyjak)

Can't install I encountered this error :

==> Lancement de build()…
CMake Error at CMakeLists.txt:6 (CMAKE_MINIMUM_REQUIRED):
  Compatibility with CMake < 3.5 has been removed from CMake.

  Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
  to tell CMake that the project requires at least <min> but has been updated
  to work with policies introduced by <max> or earlier.

  Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.

Try to add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 in PKGBUILD but now I've this error :

CMake Error at CMakeLists.txt:9 (cmake_policy):
  Policy CMP0003 may not be set to OLD behavior because this version of CMake
  no longer supports it.  The policy was introduced in CMake version 2.6.0,
  and use of NEW behavior is now required.

  Please either update your CMakeLists.txt files to conform to the new
  behavior or use an older version of CMake that still supports the old
  behavior.  Run cmake --help-policy CMP0003 for more information.


CMake Error at CMakeLists.txt:10 (cmake_policy):
  Policy CMP0005 may not be set to OLD behavior because this version of CMake
  no longer supports it.  The policy was introduced in CMake version 2.6.0,
  and use of NEW behavior is now required.

  Please either update your CMakeLists.txt files to conform to the new
  behavior or use an older version of CMake that still supports the old
  behavior.  Run cmake --help-policy CMP0005 for more information.

SammysHP commented on 2022-12-02 09:27 (UTC)

@rosenberg

That is a different application not related to this package. The download works for me, have you tried it manually as well?

The sqliteman of this package is discontinued, but the old version can still be used. The website isn't available for years, though.

<deleted-account> commented on 2022-12-02 08:42 (UTC)

The website is down.

Is this the same as: https://sqliteman.dev/?

If not, should this be flagged out-of-date?

SammysHP commented on 2018-09-18 18:19 (UTC)

@simplexe

Thank you! Currently I am on vacation, but I will apply your changes once I am back.

simplexe commented on 2018-09-18 18:12 (UTC)

Update and fix qscintilla-qt5

https://www.pastefile.com/GSQBvt