forked from pool/sqlitebrowser
Accepting request 519297 from home:wolfi323:branches:server:database
- update to version 3.10.0 - switch back to cmake build - use system antlr on openSUSE, the problems seem to be fixed - unconditionally build with Qt5, Qt4 support has been dropped in this release OBS-URL: https://build.opensuse.org/request/show/519297 OBS-URL: https://build.opensuse.org/package/show/server:database/sqlitebrowser?expand=0&rev=27
This commit is contained in:
parent
d9b1cdae76
commit
42d686af91
3
sqlitebrowser-3.10.0.tar.gz
Normal file
3
sqlitebrowser-3.10.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:608475b5956bc7ebbfc80515a96b814abe9e0f9f2b040ac19fd8608d80163a56
|
||||
size 1990333
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0d2e06a69927ba1d0b955f3261ce70c61befc5bd5ddaa06752dae8bb4219ed8
|
||||
size 1704713
|
@ -1,3 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 29 09:16:42 UTC 2017 - wbauer@tmo.at
|
||||
|
||||
- update to version 3.10.0
|
||||
* Highlights
|
||||
- DBHub.io integration
|
||||
+ Uploading and downloading of databases works
|
||||
+ Branching, forking, starring works, as does creating tags and releases
|
||||
+ There's a 100MB per database limit at the moment though, as it's still in development
|
||||
+ Backups aren't done on it (yet), so don't use it as your only place for storing important things (!!!)
|
||||
+ The front page is... not great. We're working on it.
|
||||
+ Still lots of upcoming stuff needing to be done. An API to query your databases, a cli, merging, discussions/issues
|
||||
+ Please report bugs, ideas, suggestions (etc) on the dbhub.io repo issue tracker as you find them.
|
||||
- Many plot improvements (NULL values, progress dialog, remember settings, better colours, and bug fixes)
|
||||
- Better table editing (foreign key editor, toggling the WITHOUT ROWID flag, temporary tables, ...)
|
||||
- Better Import CSV dialog. It can now handle multiple CSV files at once
|
||||
- Improved Index dialog and better index handling in general
|
||||
- Better handling of virtual tables
|
||||
- Filter improvements (ranges, NULL search)
|
||||
- The usual improvements to the grammar parser
|
||||
* See the full list of changes under
|
||||
https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.10.0
|
||||
- switch back to cmake build
|
||||
- use system antlr on openSUSE, the problems seem to be fixed
|
||||
- unconditionally build with Qt5, Qt4 support has been dropped in
|
||||
this release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 19 12:38:53 UTC 2017 - hpj@urpla.net
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: sqlitebrowser
|
||||
Version: 3.9.1
|
||||
Version: 3.10.0
|
||||
Release: 0
|
||||
Summary: Create, design and edit SQLite Databases
|
||||
License: GPL-3.0+ or MPL-2.0
|
||||
@ -36,7 +36,8 @@ Requires(postun): update-desktop-files
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
# not on SLE-12
|
||||
%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
|
||||
#BuildRequires: antlr-devel
|
||||
BuildRequires: antlr-devel
|
||||
%endif
|
||||
BuildRequires: libqt5-linguist-devel
|
||||
BuildRequires: pkgconfig(Qt5Gui)
|
||||
BuildRequires: pkgconfig(Qt5Network)
|
||||
@ -44,9 +45,6 @@ BuildRequires: pkgconfig(Qt5PrintSupport)
|
||||
BuildRequires: pkgconfig(Qt5Test)
|
||||
BuildRequires: pkgconfig(Qt5Widgets)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
%else
|
||||
BuildRequires: libqt4-devel
|
||||
%endif
|
||||
|
||||
%description
|
||||
SQLite Database Browser is a freeware, public domain, open source visual tool
|
||||
@ -71,21 +69,17 @@ to:
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%if 0%{?suse_version} == 1315 && ! 0%{?is_opensuse}
|
||||
%qmake CONFIG+=debug
|
||||
%else
|
||||
%qmake5 CONFIG+=debug
|
||||
%endif
|
||||
%cmake \
|
||||
-DBUILD_SHARED_LIBS=OFF \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
install -Dm 0755 src/%{name} %{buildroot}/%{_bindir}/%{name}
|
||||
install -Dm 0644 distri/%{name}.desktop.appdata.xml %{buildroot}/%{_datadir}/appdata/%{name}.desktop.appdata.xml
|
||||
install -Dm 0644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/%{name}.1
|
||||
install -Dm 0644 src/icons/%{name}.png %{buildroot}/%{_datadir}/pixmaps/%{name}.png
|
||||
install -Dm 0644 src/icons/%{name}.png %{buildroot}/%{_datadir}/icons/hicolor/256x256/apps/%{name}.png
|
||||
mkdir -p %{buildroot}/%{_datadir}/applications
|
||||
%cmake_install
|
||||
mkdir -p %{buildroot}/%{_bindir} %{buildroot}/%{_datadir}/{applications,pixmaps}
|
||||
install -D -m 0644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/%{name}.1
|
||||
install -m 0644 images/%{name}.png %{buildroot}/%{_datadir}/pixmaps/%{name}.png
|
||||
cat > %{buildroot}/%{_datadir}/applications/%{name}.desktop << EOF
|
||||
[Desktop Entry]
|
||||
Categories=Application;Network;GNOME;GTK;System;X-SuSE-ServiceConfiguration;
|
||||
|
Loading…
Reference in New Issue
Block a user