Accepting request 1003859 from editors
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/1003859 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vym?expand=0&rev=46
This commit is contained in:
commit
d78b84994c
@ -1,8 +1,68 @@
|
|||||||
|
vym (2.8.27.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Fri, 31 Dec 2021 18:14:00 +0100
|
||||||
|
|
||||||
|
vym (2.8.0.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Tue, 30 Apr 2021 18:14:00 +0100
|
||||||
|
|
||||||
|
vym (2.7.570.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Tue, 14 May 2019 17:14:00 +0100
|
||||||
|
|
||||||
|
vym (2.7.1.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Tue, 14 May 2019 17:14:00 +0100
|
||||||
|
|
||||||
|
vym (2.7.0.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Mon, 15 Apr 2019 10:44:00 +0100
|
||||||
|
|
||||||
|
vym (2.6.11.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Tue, 14 Nov 2017 13:15:00 +0100
|
||||||
|
|
||||||
|
vym (2.6.8.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Sun, 19 Mar 2017 18:15:00 +0100
|
||||||
|
|
||||||
|
vym (2.6.7.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Tue, 24 Jan 2017 12:15:00 +0100
|
||||||
|
|
||||||
|
vym (2.6.3.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Thu, 29 Oct 2016 07:15:00 +0100
|
||||||
|
|
||||||
|
vym (2.6.2.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Uwe Drechsel <vym@insilmaril.de> Thu, 27 Oct 2016 07:15:00 +0100
|
||||||
|
|
||||||
vym (2.6.0.1) unstable; urgency=low
|
vym (2.6.0.1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
||||||
-- Uwe Drechsel <vym@insilmaril.de> Sat, 17 Aug 2016 13:04:00 +0100
|
-- Uwe Drechsel <vym@insilmaril.de> Thu, 15 Aug 2016 07:15:00 +0100
|
||||||
|
|
||||||
vym (2.5.22.1) unstable; urgency=low
|
vym (2.5.22.1) unstable; urgency=low
|
||||||
|
|
||||||
|
1
debian.compat
Normal file
1
debian.compat
Normal file
@ -0,0 +1 @@
|
|||||||
|
9
|
@ -2,7 +2,7 @@ Source: vym
|
|||||||
Section: sectionName
|
Section: sectionName
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Uwe Drechsel <vym@insilmaril.de>
|
Maintainer: Uwe Drechsel <vym@insilmaril.de>
|
||||||
Build-Depends: debhelper (>= 4.1.16)
|
Build-Depends: cmake, debhelper (>= 9)
|
||||||
|
|
||||||
Package: vym
|
Package: vym
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
export DH_VERBOSE=1
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
# This is the debhelper compatibility version to use.
|
# This is the debhelper compatibility version to use.
|
||||||
export DH_COMPAT=4
|
#export DH_COMPAT=4
|
||||||
|
|
||||||
|
export QT_SELECT := qt5
|
||||||
|
|
||||||
CFLAGS = -g
|
CFLAGS = -g
|
||||||
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
||||||
@ -20,8 +22,7 @@ build-stamp:
|
|||||||
dh_testdir
|
dh_testdir
|
||||||
|
|
||||||
# Add here commands to compile the package.
|
# Add here commands to compile the package.
|
||||||
#qmake -o Makefile vym.pro PREFIX=/usr/src/packages/BUILD/debian/vym CONFIG+=RELEASE PREFIX=/usr/src/packages/BUILD/debian/vym/usr
|
cmake . -DCMAKE_INSTALL_DATAROOTDIR="share/vym" -DCMAKE_INSTALL_MANDIR="share/man/man1" -DCMAKE_INSTALL_DOCDIR="share/vym"
|
||||||
qmake -o Makefile vym.pro CONFIG+=RELEASE PREFIX=/usr/src/packages/BUILD/debian/vym/usr
|
|
||||||
make
|
make
|
||||||
lrelease vym.pro
|
lrelease vym.pro
|
||||||
# --- end custom part for compiling
|
# --- end custom part for compiling
|
||||||
@ -51,7 +52,7 @@ install: build
|
|||||||
|
|
||||||
# Add here commands to install the package
|
# Add here commands to install the package
|
||||||
# The DESTDIR Has To Be Exactly /usr/src/packages/BUILD/debian/<nameOfPackage>
|
# The DESTDIR Has To Be Exactly /usr/src/packages/BUILD/debian/<nameOfPackage>
|
||||||
make install PREFIX=/usr/src/packages/BUILD/debian/vym/usr
|
make install DESTDIR=/usr/src/packages/BUILD/debian/vym
|
||||||
# --- end custom part for installing
|
# --- end custom part for installing
|
||||||
|
|
||||||
# Build architecture-independent files here.
|
# Build architecture-independent files here.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
VERSION=2.5.21
|
#TAG=v2.8.8
|
||||||
BRANCH="qt5"
|
BRANCH="develop"
|
||||||
REMOTE="sf"
|
#VERSION=2.8.8
|
||||||
|
REPOSITORY=git@github.com:insilmaril/vym.git
|
||||||
|
3
vym-2.8.41.tar.bz2
Normal file
3
vym-2.8.41.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:58a7449f656e318a27f27a124a85feabbaccffc15927a8069d1381bfc20566d8
|
||||||
|
size 16931329
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:405b6d58ea4a201e7aa32f2b65c61d3bec50f914486d02394842bdd7f8f41f08
|
|
||||||
size 8142944
|
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 8 12:09:50 UTC 2022 - Uwe Drechsel <vym@insilmaril.de>
|
||||||
|
|
||||||
|
- Update to upstream version 2.8.41
|
||||||
|
- bugfixes, some features
|
||||||
|
- switch to cmake
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 17 09:29:43 UTC 2021 - Uwe Drechsel <vym@insilmaril.de>
|
Tue Aug 17 09:29:43 UTC 2021 - Uwe Drechsel <vym@insilmaril.de>
|
||||||
|
|
||||||
|
41
vym.desktop
41
vym.desktop
@ -1,41 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Encoding=UTF-8
|
|
||||||
Exec=vym
|
|
||||||
Name=VYM - View Your Mind
|
|
||||||
Name[de]=VYM - View Your Mind
|
|
||||||
Name[zh_TW]=心智檢視
|
|
||||||
GenericName=Planning and Brainstorming Tool
|
|
||||||
Icon=vym.png
|
|
||||||
MimeType=application/x-vym;
|
|
||||||
Comment=Planning and brainstorming
|
|
||||||
Comment[af]=View Your Mind (Besigitig jou verstand)
|
|
||||||
Comment[sq]=View Your Mind (Shfaq Mendjen Tënde)
|
|
||||||
Comment[ast]=View Your Mind (Ve la to miente)
|
|
||||||
Comment[bn]=View Your Mind (আপনার উদ্দেশ্য প্রদর্শন করুন)
|
|
||||||
Comment[bs]=View Your Mind (Pogledajte svoje misli)
|
|
||||||
Comment[ca@valencia]=View Your Mind (Visualitzeu la vostra ment)
|
|
||||||
Comment[ca]=View Your Mind (Visualitzeu la vostra ment)
|
|
||||||
Comment[zh_CN]=View Your Mind (浏览您的思维)
|
|
||||||
Comment[da]=View Your Mind (Vis dit sind)
|
|
||||||
Comment[et]=View Your Mind (Vaata oma mõtteid)
|
|
||||||
Comment[fi]=View Your Mind (Näytä mielesi)
|
|
||||||
Comment[fr]=View Your Mind (Cartographier vos idées)
|
|
||||||
Comment[gl]=View Your Mind (Vexa a súa mente)
|
|
||||||
Comment[ky]=View Your Mind (Акылыңды иштетип көр)
|
|
||||||
Comment[oc]=View Your Mind (Cartografiar vòstras idèas)
|
|
||||||
Comment[pl]=View Your Mind (Uzewnętrznia myśli)
|
|
||||||
Comment[ro]=View Your Mind (Hărți mentale)
|
|
||||||
Comment[ru]=View Your Mind (Просмотр ваших мыслей)
|
|
||||||
Comment[sl]=View Your Mind (Oglejte si svoje misli)
|
|
||||||
Comment[es]=View Your Mind (Vea su mente)
|
|
||||||
Comment[vi]=View Your Mind (Xem tư duy của bạn)
|
|
||||||
Comment[zh_TW]=VYM 腦力激盪工具
|
|
||||||
|
|
||||||
X-AppInstall-Package=vym
|
|
||||||
X-AppInstall-Popcon=430
|
|
||||||
X-AppInstall-Section=universe
|
|
||||||
X-Ubuntu-Gettext-Domain=app-install-data
|
|
||||||
Categories=Qt;KDE;Office;
|
|
||||||
|
|
||||||
|
|
13
vym.dsc
13
vym.dsc
@ -1,9 +1,18 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: vym
|
Source: vym
|
||||||
Version: 2.4.0
|
Version: 2.8.27
|
||||||
Binary: vym
|
Binary: vym
|
||||||
Maintainer: Uwe Drechsel <vym@insilmaril.de>
|
Maintainer: Uwe Drechsel <vym@insilmaril.de>
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Build-Depends: debhelper (>= 4.1.16),g++, libqt5-dev
|
Build-Depends: cmake,
|
||||||
|
debhelper (>= 9),
|
||||||
|
g++,
|
||||||
|
qtbase5-dev,
|
||||||
|
qttools5-dev-tools,
|
||||||
|
qttools5-dev,
|
||||||
|
qtscript5-dev,
|
||||||
|
libqt5svg5-dev,
|
||||||
|
libdbus-1-dev,
|
||||||
|
libqt5dbus5
|
||||||
Files:
|
Files:
|
||||||
4116086282d260056458a8b96b2d5459 20171606 vym-1.13.32.tar.bz2
|
4116086282d260056458a8b96b2d5459 20171606 vym-1.13.32.tar.bz2
|
78
vym.spec
78
vym.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package vym
|
# spec file for package vym
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,30 +17,31 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: vym
|
Name: vym
|
||||||
Version: 2.8.8
|
Version: 2.8.41
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tool to generate and manipulate thought maps
|
Summary: Tool to generate and manipulate thought maps
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
Group: Productivity/Office/Other
|
Group: Productivity/Office/Other
|
||||||
URL: http://www.insilmaril.de/vym/index.html
|
URL: http://www.insilmaril.de/vym/index.html
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
Source1: %{name}.xml
|
Source1: debian.dirs
|
||||||
Source2: %{name}.desktop
|
Source2: debian.docs
|
||||||
Source3: x-%{name}.desktop
|
Source3: makedist.config
|
||||||
Source4: debian.dirs
|
|
||||||
Source5: debian.docs
|
BuildRequires: cmake
|
||||||
Source6: makedist.config
|
BuildRequires: pkgconfig
|
||||||
%if 0%{?fedora_version}
|
BuildRequires: pkgconfig(dbus-1)
|
||||||
BuildRequires: qt5-qtbase-devel
|
|
||||||
BuildRequires: qt5-qtsvg-devel
|
BuildRequires: cmake(Qt5Core) >= 5.15.2
|
||||||
BuildRequires: qt5-qttools-devel
|
BuildRequires: cmake(Qt5DBus)
|
||||||
%else
|
BuildRequires: cmake(Qt5LinguistTools)
|
||||||
BuildRequires: libQt5Core-devel
|
BuildRequires: cmake(Qt5Network)
|
||||||
BuildRequires: libQt5Gui-devel
|
BuildRequires: cmake(Qt5PrintSupport)
|
||||||
BuildRequires: libqt5-linguist-devel
|
BuildRequires: cmake(Qt5Script)
|
||||||
BuildRequires: libqt5-qtbase-devel
|
BuildRequires: cmake(Qt5Svg)
|
||||||
BuildRequires: libqt5-qtscript-devel
|
BuildRequires: cmake(Qt5Xml)
|
||||||
BuildRequires: libqt5-qtsvg-devel
|
|
||||||
|
%if 0%{?suse_version}
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -58,28 +59,24 @@ overview over complex contexts, to sort ideas etc.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
lrelease-qt5 vym.pro
|
%global cmake_options \\\
|
||||||
qmake-qt5 -o Makefile vym.pro PREFIX=%{_datadir} BINDIR=%{_bindir} CONFIG+=RELEASE
|
-DCMAKE_INSTALL_DATAROOTDIR="share/vym" \\\
|
||||||
make %{?_smp_mflags}
|
-DCMAKE_INSTALL_MANDIR="%{_mandir}/man1" \\\
|
||||||
|
-DCMAKE_INSTALL_DOCDIR="%{_defaultdocdir}/%{name}"
|
||||||
|
|
||||||
|
%cmake %{cmake_options}
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{_datadir}/vym
|
%cmake_install
|
||||||
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
|
||||||
install -m 0644 icons/vym.png %{buildroot}%{_datadir}/pixmaps
|
|
||||||
mkdir -p %{buildroot}%{_defaultdocdir}/%{name}
|
|
||||||
install -m 0644 README.md LICENSE.txt %{buildroot}%{_defaultdocdir}/%{name}
|
|
||||||
install -m 0644 doc/*.pdf %{buildroot}%{_defaultdocdir}/%{name}
|
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install INSTALL_ROOT=%{buildroot}
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/applications
|
%if 0%{?suse_version}
|
||||||
install -Dm644 %{SOURCE2} %{buildroot}%{_datadir}/applications
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_mandir}/man1
|
|
||||||
install -m 0644 doc/vym.1.gz %{buildroot}%{_mandir}/man1
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/mime/packages
|
|
||||||
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}/mime/packages/
|
|
||||||
%suse_update_desktop_file -i vym Office ProjectManagement
|
%suse_update_desktop_file -i vym Office ProjectManagement
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Make scripts executable already installed with cmake above
|
||||||
|
chmod 755 %{buildroot}%{_datadir}/%{name}/scripts/vivym
|
||||||
|
chmod 755 %{buildroot}%{_datadir}/%{name}/scripts/vym-addmail.rb
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if test -x usr/bin/update-mime-database ; then
|
if test -x usr/bin/update-mime-database ; then
|
||||||
@ -89,7 +86,12 @@ fi
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_datadir}/applications/*
|
%{_datadir}/applications/*
|
||||||
%{_datadir}/pixmaps/*
|
|
||||||
|
# Directories can be owned by multiple packages:
|
||||||
|
%dir %{_datadir}/icons/hicolor/48x48
|
||||||
|
%dir %{_datadir}/icons/hicolor/48x48/apps
|
||||||
|
|
||||||
|
%{_datadir}/icons/*/*/*/*.*
|
||||||
%{_bindir}/vym
|
%{_bindir}/vym
|
||||||
%{_datadir}/vym
|
%{_datadir}/vym
|
||||||
|
|
||||||
|
9
vym.xml
9
vym.xml
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
|
||||||
<mime-type type="application/x-vym">
|
|
||||||
<comment xml:lang="en">VYM - View Your Mind files</comment>
|
|
||||||
<glob pattern="*.vym" />
|
|
||||||
<glob pattern="*.vyp" />
|
|
||||||
<glob pattern="*.vys" />
|
|
||||||
</mime-type>
|
|
||||||
</mime-info>
|
|
@ -1,7 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Comment=VYM (View Your Mind) File
|
|
||||||
Type=MimeType
|
|
||||||
MimeType=application/x-vym
|
|
||||||
Icon=vym
|
|
||||||
Patterns=*.vym;*.vyp;*.vys;*.VYM;*.VYP;*.VYS;
|
|
Loading…
Reference in New Issue
Block a user