[bijiben] Initial import (#919265)

Pierre-Yves Luyten pyluyten at fedoraproject.org
Thu May 9 21:46:56 UTC 2013


commit 0acd16181af84c1572c09c9f2011a018f4bb52ce
Author: Pierre-Yves Luyten <py at luyten.fr>
Date:   Thu May 9 23:46:42 2013 +0200

    Initial import (#919265)

 .gitignore   |    1 +
 bijiben.spec |  133 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources      |    1 +
 3 files changed, 135 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..4e77acd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/bijiben-3.8.1.tar.xz
diff --git a/bijiben.spec b/bijiben.spec
new file mode 100644
index 0000000..9fc56bd
--- /dev/null
+++ b/bijiben.spec
@@ -0,0 +1,133 @@
+Name:		bijiben
+Version:	3.8.1
+Release:	2%{?dist}
+Summary:	Simple Note Viewer
+
+# Bijiben is GPLv3+ apart a few files "LGPLv2 or LGPLv3"
+# And ligd is LGPLv2+
+License:	GPLv3+ and LGPLv3 and LGPLv2+
+Url:		http://www.gnome.org
+Source0:	http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.8/%{name}-%{version}.tar.xz
+
+BuildRequires:	clutter-gtk-devel >=  1.4.2
+BuildRequires:	desktop-file-utils
+BuildRequires:	intltool
+BuildRequires:	itstool
+BuildRequires:	gettext
+BuildRequires:	glib2-devel >= 2.28.0
+BuildRequires:	gtk3-devel >= 3.5.19
+BuildRequires:	libuuid-devel
+BuildRequires:	libxml2-devel
+BuildRequires:	libzeitgeist-devel >= 0.3.18
+BuildRequires:	tracker-devel => 0.15.2
+BuildRequires:	webkitgtk3-devel >= 1.11.91
+BuildRequires:	yelp-tools
+
+
+# libgd is not meant to be installed as a system-wide shared library.
+# It is just a way for GNOME applications to share widgets and other common
+# code on an ad-hoc basis.
+Provides: bundled(libgd)
+
+
+%description
+Simple note editor which emphasis on visuals : quickly write
+notes, quickly find it back.
+
+
+%prep
+%setup -q
+
+%build
+%configure \
+	--disable-static
+make %{?_smp_mflags}
+
+
+%install
+make install DESTDIR=%{buildroot} INSTALL="/usr/bin/install -p"
+
+# Validates the .desktop
+desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
+
+# Creates the file for all locales
+%find_lang %{name} --with-gnome
+
+%post
+/usr/bin/update-desktop-database &> /dev/null || :
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+/usr/bin/update-desktop-database &> /dev/null || :
+if [ $1 -eq 0 ] ; then
+    /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
+    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    /usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+%files -f %{name}.lang
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_bindir}/%{name}
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/glib-2.0/schemas/org.gnome.bijiben.gschema.xml
+# co-own these directories
+%dir %{_datadir}/gnome-shell
+%dir %{_datadir}/gnome-shell/search-providers
+
+%{_datadir}/gnome-shell/search-providers/bijiben-search-provider.ini
+%{_datadir}/icons/hicolor/*/apps/%{name}.png
+%{_datadir}/icons/hicolor/*/apps/%{name}.svg
+%{_datadir}/%{name}
+
+%{_libexecdir}/%{name}-shell-search-provider
+%{_datadir}/dbus-1/services/org.gnome.Bijiben.SearchProvider.service
+
+%changelog
+* Thu May 09 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.8.1-2
+- Remove news duplicate, obsolete autoreconf and libgd.la exclude
+
+* Thu Apr 18 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.8.1-1
+- New release
+
+* Wed Mar 27 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.8.0-1
+- New release
+
+* Mon Mar 18 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.92-1
+- New release
+
+* Fri Mar 15 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.91-3
+- Fix icon update (timestamp) in post
+- BuildRequire desktop-file-utils
+
+* Wed Mar 13 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.91-2
+- Patch to get rid of GPLv2+
+- Patch to use static link to libgd
+- Use find_lang
+- Remove define for url_ver
+- desktop-file-validate
+- update timestamp for icons
+- BuildRequire gettext
+- BuildRequire yelp-tools
+- Provides bundled libgd
+- Don't "clean"
+
+* Sun Mar 10 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.91-1
+- Fix BuildRequires
+- Update desktop database
+- Add it
+
+* Sun Feb 17 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.90-1
+- Bump release
+
+* Sat Feb 02 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.5-1
+- Add cs.
+
+* Mon Jan 14 2013 Pierre-Yves Luyten <py at luyten.fr> - 3.7.4-1
+- Add ca pt zh. Remove upstreamed patch.
+
+* Mon Dec 17 2012 Pierre-Yves Luyten <py at luyten.fr> - 3.7.3-1
+- Initial package
diff --git a/sources b/sources
index e69de29..19d047e 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+a0408da19baf0a6d0f8b7dc4319239f5  bijiben-3.8.1.tar.xz


More information about the scm-commits mailing list