Accepting request 56457 from GNOME:Community
I'll take it this way and will clean up the .spec file a bit. Thanks for the transfer. OBS-URL: https://build.opensuse.org/request/show/56457 OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/gnote?expand=0&rev=1
This commit is contained in:
commit
37e351a2f0
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
gnote-0.7.3.tar.bz2
Normal file
3
gnote-0.7.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4853315711baf7647cdae4c2f7d23e22e2b13322605efe3dd98796a06f928321
|
||||||
|
size 1606926
|
10
gnote.changes
Normal file
10
gnote.changes
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 12 16:31:30 UTC 2010 - bitshuffler@opensuse.org
|
||||||
|
|
||||||
|
- Update to 0.7.3.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 4 14:03:43 UTC 2010 - bitshuffler@opensuse.org
|
||||||
|
|
||||||
|
- Initial package
|
||||||
|
|
68
gnote.spec
Normal file
68
gnote.spec
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: gnote
|
||||||
|
Version: 0.7.3
|
||||||
|
Release: 1.0
|
||||||
|
License: GNU GPL v3 or later
|
||||||
|
Group: Productivity/Text/Editors
|
||||||
|
Url: http://live.gnome.org/Gnote
|
||||||
|
Source: %{name}-%{version}.tar.bz2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildRequires: boost-devel >= 1.34
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: gconf2-devel
|
||||||
|
BuildRequires: gnome-doc-utils-devel
|
||||||
|
BuildRequires: gtkmm2-devel >= 2.20
|
||||||
|
BuildRequires: gtkspell-devel
|
||||||
|
BuildRequires: intltool
|
||||||
|
BuildRequires: libpanelappletmm-devel
|
||||||
|
BuildRequires: libuuid-devel
|
||||||
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRequires: libxslt-devel
|
||||||
|
BuildRequires: pcre-devel
|
||||||
|
BuildRequires: update-desktop-files
|
||||||
|
%gconf_schemas_prereq
|
||||||
|
Summary: A Port of Tomboy to C++
|
||||||
|
|
||||||
|
%description
|
||||||
|
It is the same note taking application, including most of the add-ins (more are
|
||||||
|
to come). Synchronization support is being worked on.
|
||||||
|
|
||||||
|
%lang_package
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --disable-static --disable-schemas-install --disable-scrollkeeper --enable-dbus
|
||||||
|
V=1 %__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
%suse_update_desktop_file gnote Utility DesktopUtility
|
||||||
|
%find_gconf_schemas
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%pre -f %{name}.schemas_pre
|
||||||
|
|
||||||
|
%preun -f %{name}.schemas_preun
|
||||||
|
|
||||||
|
%posttrans -f %{name}.schemas_posttrans
|
||||||
|
|
||||||
|
%clean
|
||||||
|
test "%{buildroot}" != "/" && %__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files -f %{name}.schemas_list
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/gnote
|
||||||
|
%{_prefix}/lib/gnote-applet
|
||||||
|
%{_libdir}/bonobo/servers/GNOME_GnoteApplet.server
|
||||||
|
%{_libdir}/gnote
|
||||||
|
%{_datadir}/applications/gnote.desktop
|
||||||
|
%{_datadir}/gnote
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/gnote.*
|
||||||
|
%{_mandir}/man1/gnote.1*
|
||||||
|
|
||||||
|
%files lang -f %{name}.lang
|
Loading…
Reference in New Issue
Block a user