This commit is contained in:
parent
cb51bf4926
commit
d5ed9fb593
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3c3033511f3b04731f18d08c3e0d9375382d68d656af32281881fd2bf68edde5
|
|
||||||
size 2797721
|
|
3
vym-1.11.0.tar.bz2
Normal file
3
vym-1.11.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1e9899ebea3c4bb6d6599c1ea0454d35abc997457bf5d40014095beea6717983
|
||||||
|
size 2800006
|
21
vym.changes
21
vym.changes
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 24 14:11:36 CEST 2007 - uwedr@suse.de
|
||||||
|
|
||||||
|
- Feature: Improved ascii export
|
||||||
|
- Bugfix: Present flag now does not set down arrows any longer
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
|
||||||
|
|
||||||
|
- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
|
||||||
|
|
||||||
|
- Version: 1.11.0
|
||||||
|
- Feature: Added patches from Till Maas for better path handling to ease
|
||||||
|
integration into various operating systems
|
||||||
|
- Feature: Added patch from Till Maas to use xdg-open as default browser
|
||||||
|
- Feature: Added patch from ????? to sort branches lexically
|
||||||
|
- Feature: Added patches from Juha Ruotsalainen for compiling on win32
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
|
Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
|
||||||
|
|
||||||
|
20
vym.spec
20
vym.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package vym (Version 1.10.1)
|
# spec file for package vym (Version 1.11.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -18,7 +18,7 @@ Url: http://www.insilmaril.de/vym/index.html
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: VYM (View Your Mind) generate and manipulate maps which show your thoughts
|
Summary: VYM (View Your Mind) generate and manipulate maps which show your thoughts
|
||||||
Version: 1.10.1
|
Version: 1.11.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Source0: %name-%version.tar.bz2
|
Source0: %name-%version.tar.bz2
|
||||||
Source1: %name.desktop
|
Source1: %name.desktop
|
||||||
@ -41,7 +41,7 @@ Authors:
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
qmake -o Makefile vym.pro INSTALLDIR=%{buildroot}/usr
|
qmake -o Makefile vym.pro PREFIX=%_prefix #PREFIX=%{buildroot}/usr
|
||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -50,7 +50,7 @@ install -m 0644 icons/vym.png $RPM_BUILD_ROOT%{_prefix}/share/pixmaps
|
|||||||
mkdir -p $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
mkdir -p $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
||||||
install -m 0644 README.txt LICENSE.txt INSTALL.txt $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
install -m 0644 README.txt LICENSE.txt INSTALL.txt $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
||||||
install -m 0644 doc/*.pdf $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
install -m 0644 doc/*.pdf $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}
|
||||||
make install
|
%makeinstall INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||||
%suse_update_desktop_file -i %name Office ProjectManagement
|
%suse_update_desktop_file -i %name Office ProjectManagement
|
||||||
mkdir -p $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
|
mkdir -p $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
|
||||||
install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
|
install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/opt/kde3/share/mimelnk/application/
|
||||||
@ -68,6 +68,18 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
#%doc demos
|
#%doc demos
|
||||||
%doc %{_defaultdocdir}/%{name}
|
%doc %{_defaultdocdir}/%{name}
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 24 2007 - uwedr@suse.de
|
||||||
|
- Feature: Improved ascii export
|
||||||
|
- Bugfix: Present flag now does not set down arrows any longer
|
||||||
|
* Tue Oct 23 2007 - uwedr@suse.de
|
||||||
|
- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
|
||||||
|
* Fri Oct 19 2007 - uwedr@suse.de
|
||||||
|
- Version: 1.11.0
|
||||||
|
- Feature: Added patches from Till Maas for better path handling to ease
|
||||||
|
integration into various operating systems
|
||||||
|
- Feature: Added patch from Till Maas to use xdg-open as default browser
|
||||||
|
- Feature: Added patch from ????? to sort branches lexically
|
||||||
|
- Feature: Added patches from Juha Ruotsalainen for compiling on win32
|
||||||
* Tue Oct 16 2007 - uwedr@suse.de
|
* Tue Oct 16 2007 - uwedr@suse.de
|
||||||
- Bugfix: included <typeinfo> for compiling in beta
|
- Bugfix: included <typeinfo> for compiling in beta
|
||||||
* Thu Oct 04 2007 - uwedr@suse.de
|
* Thu Oct 04 2007 - uwedr@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user