forked from pool/sqlitebrowser
- update to 3.4.0
+ CSV file import and export code has been extensively modified for better RFC compatibility + support for custom collation sequences. This lets people use SQLite3 databases copied from their Android phone or tablet. + several fixes in our SQL grammar parser + Make adding new rows less confusing by showing automatically generated data by default values, triggers or the PK right after the new row is added + Edit Table dialog: Add option for adding a unique constraint to columns + UI improvements: Show line numbers in the SQL log + Add a database schema pane (can be torn off) + Added a Russian translation, fixed German translation + new Project files feature, for saving metadata about your SQLite Database files + New: Plotting, a quick and dirty way to draw graphs from your table data + Bi-licensed under MPLv2 and GPLv3 - use cmake now instead of old qmake - let make install the sqlitebrowser binary OBS-URL: https://build.opensuse.org/package/show/server:database/sqlitebrowser?expand=0&rev=7
This commit is contained in:
parent
ffa320f409
commit
3766e6f8f6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc9bf217f8cb0fd93a71b541b23acfe4c64ed386d8fc3034eb8e3c9e23adcf20
|
||||
size 305461
|
3
sqlitebrowser-sqlitebrowser-ce41627.tar.bz2
Normal file
3
sqlitebrowser-sqlitebrowser-ce41627.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3b7058358fddb54a84833fdb3ce99fc1fe70a39b9e7bbc21ced57cd2f39a313
|
||||
size 722201
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 8 10:51:35 UTC 2014 - lars@linux-schulserver.de
|
||||
|
||||
- update to 3.4.0
|
||||
+ CSV file import and export code has been extensively modified
|
||||
for better RFC compatibility
|
||||
+ support for custom collation sequences. This lets people use
|
||||
SQLite3 databases copied from their Android phone or tablet.
|
||||
+ several fixes in our SQL grammar parser
|
||||
+ Make adding new rows less confusing by showing automatically
|
||||
generated data by default values, triggers or the PK right after
|
||||
the new row is added
|
||||
+ Edit Table dialog: Add option for adding a unique constraint to columns
|
||||
+ UI improvements: Show line numbers in the SQL log
|
||||
+ Add a database schema pane (can be torn off)
|
||||
+ Added a Russian translation, fixed German translation
|
||||
+ new Project files feature, for saving metadata about your SQLite
|
||||
Database files
|
||||
+ New: Plotting, a quick and dirty way to draw graphs from your
|
||||
table data
|
||||
+ Bi-licensed under MPLv2 and GPLv3
|
||||
- use cmake now instead of old qmake
|
||||
- let make install the sqlitebrowser binary
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 16 19:34:33 UTC 2014 - lars@linux-schulserver.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package sqlitebrowser
|
||||
#
|
||||
# Copyright (c) 2012-2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -15,26 +15,28 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: sqlitebrowser
|
||||
Version: 3.0.2
|
||||
Release: 1
|
||||
License: GPL-3.0+
|
||||
Version: 3.4.0
|
||||
Release: 0
|
||||
Summary: Create, design and edit SQLite Databases
|
||||
Url: https://github.com/rp-/sqlitebrowser/
|
||||
License: GPL-3.0+ and MPL-2.0
|
||||
Group: Productivity/Office/Organizers
|
||||
Url: https://github.com/rp-/sqlitebrowser/
|
||||
# https://github.com/rp-/sqlitebrowser/releases
|
||||
Source0: %{name}-sqlb-%{version}.tar.bz2
|
||||
Source0: sqlitebrowser-sqlitebrowser-ce41627.tar.bz2
|
||||
Source1: sqlitebrowser.1
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: update-desktop-files
|
||||
%endif
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: hicolor-icon-theme
|
||||
BuildRequires: libQtWebKit-devel
|
||||
BuildRequires: libqt4-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: libqt4-devel >= 4.6
|
||||
BuildRequires: sqlite3-devel
|
||||
BuildRequires: update-desktop-files
|
||||
%if 0%{?suse_version} > 1100
|
||||
@ -62,19 +64,18 @@ to:
|
||||
* Examine a log of all SQL commands issued by the application
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-sqlb-%{version}
|
||||
%setup -q -n sqlitebrowser-sqlitebrowser-ce41627
|
||||
|
||||
%build
|
||||
qmake
|
||||
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} .
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
make DESTDIR="%{buildroot}" install
|
||||
mkdir -p %{buildroot}/%{_bindir} %{buildroot}/%{_datadir}/{applications,pixmaps}
|
||||
install -m755 src/sqlitebrowser %{buildroot}/%{_bindir}/
|
||||
install -Dm644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/%{name}.1
|
||||
install -m644 images/%{name}.png %{buildroot}/%{_datadir}/pixmaps/%{name}.png
|
||||
cat >> %{buildroot}/%{_datadir}/applications/%{name}.desktop << EOF
|
||||
cat > %{buildroot}/%{_datadir}/applications/%{name}.desktop << EOF
|
||||
[Desktop Entry]
|
||||
Categories=Application;Network;GNOME;GTK;System;X-SuSE-ServiceConfiguration;
|
||||
StartupNotify=true
|
||||
@ -100,13 +101,13 @@ rm -fr %{buildroot}
|
||||
%desktop_database_postun
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc README.rst LICENSE
|
||||
%doc README.md LICENSE currentrelease
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
%{_bindir}/*
|
||||
%{_datadir}/applications/*
|
||||
%{_datadir}/pixmaps/*
|
||||
%{_datadir}/icons/hicolor/*/apps/sqlitebrowser.png
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user