diff --git a/.devhelp.metadata b/.devhelp.metadata new file mode 100644 index 0000000..8b994a1 --- /dev/null +++ b/.devhelp.metadata @@ -0,0 +1 @@ +e25a93f80a818bcc53a3befece9a17a5498df98b SOURCES/devhelp-3.8.2.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/devhelp-3.8.2-python2.patch b/SOURCES/devhelp-3.8.2-python2.patch new file mode 100644 index 0000000..f4dd27e --- /dev/null +++ b/SOURCES/devhelp-3.8.2-python2.patch @@ -0,0 +1,30 @@ +diff -up devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.in.python2 devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.in +--- devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.in.python2 2013-10-14 10:59:03.055271977 -0400 ++++ devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.in 2013-10-14 10:57:35.016035127 -0400 +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=devhelp + IAge=3 + _Name=Devhelp support +diff -up devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.python2 devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop +--- devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop.python2 2013-10-14 10:56:59.052955646 -0400 ++++ devhelp-3.8.2/misc/gedit-plugin/devhelp.desktop 2013-10-14 10:57:32.120176311 -0400 +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=devhelp + IAge=3 + Name=Devhelp support +diff -up devhelp-3.8.2/misc/gedit-plugin/devhelp.plugin.python2 devhelp-3.8.2/misc/gedit-plugin/devhelp.plugin +--- devhelp-3.8.2/misc/gedit-plugin/devhelp.plugin.python2 2013-10-14 10:57:16.577509343 -0400 ++++ devhelp-3.8.2/misc/gedit-plugin/devhelp.plugin 2013-10-14 10:58:02.394275280 -0400 +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=devhelp + IAge=3 + Name=Devhelp support diff --git a/SPECS/devhelp.spec b/SPECS/devhelp.spec new file mode 100644 index 0000000..266f0f9 --- /dev/null +++ b/SPECS/devhelp.spec @@ -0,0 +1,578 @@ +### Abstract ### + +Name: devhelp +Version: 3.8.2 +Release: 4%{?dist} +Epoch: 1 +License: GPLv2+ +Group: Development/Tools +Summary: API documention browser +URL: http://live.gnome.org/devhelp +#VCS: git:git://git.gnome.org/devhelp +Source: http://download.gnome.org/sources/devhelp/3.8/devhelp-%{version}.tar.xz + +Patch0: devhelp-3.8.2-python2.patch + +### Dependencies ### + +Requires(post): /usr/bin/gtk-update-icon-cache +Requires(postun): /usr/bin/gtk-update-icon-cache + +### Build Dependencies ### + +BuildRequires: desktop-file-utils >= 0.3 +BuildRequires: gettext +BuildRequires: intltool +BuildRequires: gtk3-devel +BuildRequires: webkitgtk3-devel +BuildRequires: GConf2-devel + +%description +Devhelp is an API documentation browser for the GNOME desktop. +It works natively with API documentation generated by gtk-doc. + +%package devel +Summary: Library to embed Devhelp in other applications +Group: Development/Libraries +Requires: %{name} = %{epoch}:%{version}-%{release} + +%description devel +Devhelp is an API documentation browser for the GNOME desktop. +This package contains a library that can be used for embedding devhelp +into other applications such as IDEs. + +%prep +%setup -q +%patch0 -p1 -b .python2 + +%build +%configure --disable-static +make %{?_smp_mflags} CFLAGS="$CFLAGS -fno-strict-aliasing" + +%install +make install DESTDIR=$RPM_BUILD_ROOT + +find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';' + +mkdir -p $RPM_BUILD_ROOT%{_datadir}/devhelp/books + +%find_lang devhelp + +desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/devhelp.desktop + +%post +/sbin/ldconfig +touch --no-create %{_datadir}/icons/hicolor >&/dev/null || : + +%postun +/sbin/ldconfig +if [ $1 -eq 0 ]; then + glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : + touch --no-create %{_datadir}/icons/hicolor >&/dev/null || : + gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || : +fi + +%posttrans +glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : +gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || : + +%files -f devhelp.lang +%doc AUTHORS COPYING NEWS README misc/devhelp.{el,vim} + +%{_bindir}/devhelp +%{_libdir}/libdevhelp*.so.* + +%{_datadir}/applications/devhelp.desktop +%{_datadir}/devhelp +%{_datadir}/GConf/gsettings/devhelp.convert +%{_datadir}/glib-2.0/schemas/org.gnome.devhelp.gschema.xml +%{_datadir}/icons/hicolor/16x16/apps/devhelp.png +%{_datadir}/icons/hicolor/22x22/apps/devhelp.png +%{_datadir}/icons/hicolor/24x24/apps/devhelp.png +%{_datadir}/icons/hicolor/32x32/apps/devhelp.png +%{_datadir}/icons/hicolor/48x48/apps/devhelp.png +%{_datadir}/icons/hicolor/256x256/apps/devhelp.png + +%dir %{_libdir}/gedit +%dir %{_libdir}/gedit/plugins +%{_libdir}/gedit/plugins/devhelp.* + +%files devel +%{_prefix}/include/devhelp-3.0 +%{_libdir}/libdevhelp*.so +%{_libdir}/pkgconfig/* + +%changelog +* Mon Oct 14 2013 Matthew Barnes - 1:3.8.2-4 +- Load the gedit plugin with python, not python3. (#979450). + +* Sun Oct 13 2013 Matthew Barnes - 1:3.8.2-3 +- Package vim and emacs support files. (#1016792) + +* Wed Jul 16 2013 Matthias Clasen - 1:3.8.2-2 +- Update url + +* Wed May 22 2013 Kalev Lember - 1:3.8.2-1 +- Update to 3.8.2 + +* Wed Apr 17 2013 Richard Hughes - 1:3.8.1-1 +- Update to 3.8.1 + +* Wed Mar 27 2013 Kalev Lember - 1:3.8.0-2 +- Rebuilt for libwebkit2gtk soname bump + +* Tue Mar 26 2013 Kalev Lember - 1:3.8.0-1 +- Update to 3.8.0 + +* Thu Mar 7 2013 Matthias Clasen - 1:3.7.91-1 +- Update to 3.7.91 + +* Fri Feb 22 2013 Kalev Lember - 1:3.7.5-2 +- Rebuilt for libwebkit2gtk soname bump + +* Wed Feb 06 2013 Kalev Lember - 1:3.7.5-1 +- Update to 3.7.5 +- Remove the desktop file vendor prefix + +* Fri Dec 21 2012 Kalev Lember - 1:3.7.3-1 +- Update to 3.7.3 +- Adapt for the GConf to gsettings conversion + +* Wed Nov 14 2012 Kalev Lember - 1:3.6.1-1 +- Update to 3.6.1 +- Drop manual requires from -devel package; these are all picked up + automatically with recent rpmbuild + +* Tue Sep 25 2012 Richard Hughes - 1:3.6.0-1 +- Update to 3.6.0 + +* Tue Sep 18 2012 Kalev Lember - 1:3.5.92-1 +- Update to 3.5.92 + +* Tue Aug 21 2012 Richard Hughes - 1:3.5.5-1 +- Update to 3.5.5 + +* Mon Jul 23 2012 Matthias Clasen - 1:3.4.1-3 +- Fix build (don't install icon cache) + +* Wed Jul 18 2012 Fedora Release Engineering - 1:3.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Apr 16 2012 Richard Hughes - 1:3.4.1-1 +- Update to 3.4.1 + +* Tue Mar 27 2012 Debarshi Ray - 1:3.4.0-1 +- Update to 3.4.0 + +* Tue Mar 6 2012 Matthias Clasen - 1:3.3.91-1 +- Update to 3.3.91 + +* Fri Jan 13 2012 Fedora Release Engineering - 1:3.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Dec 21 2011 Matthias Clasen - 1:3.3.3-1 +- Update to 3.3.3 + +* Tue Oct 11 2011 Matthew Barnes - 1:3.2.0-2 +- Own /usr/lib/gedit and /usr/lib/gedit/plugins (RH bug #744884). + +* Tue Sep 27 2011 Ray - 1:3.2.0-1 +- Update to 3.2.0 + +* Sat May 07 2011 Christopher Aillon - 1:3.0.0-2 +- Update icon cache scriptlet + +* Mon Apr 4 2011 Tomas Bzatek - 3.0.0-1 +- Update to 3.0.0 + +* Wed Mar 23 2011 Matthias Clasen - 2.91.92-1 +- Update to 2.91.92 + +* Tue Mar 8 2011 Matthias Clasen - 2.91.91.2-1 +- Update to 2.91.91.2 + +* Tue Mar 8 2011 Matthias Clasen - 2.91.91.1-1 +- Update to 2.91.91.1 + +* Tue Mar 8 2011 Matthias Clasen - 2.91.91-1 +- Update to 2.91.91 + +* Tue Feb 22 2011 Matthias Clasen - 2.91.90-1 +- 2.91.90 + +* Thu Feb 10 2011 Matthias Clasen - 2.91.5-4 +- Rebuild for newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 1:2.91.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 2.91.5-2 +- Rebuild + +* Mon Jan 10 2011 Matthias Clasen - 2.91.5-1 +- Update to 2.91.5 + +* Sun Jan 9 2011 Matthias Clasen - 2.91.4-1 +- Update to 2.91.4 + +* Fri Dec 3 2010 Matthias Clasen - 2.91.3-1 +- Update to 2.91.3 + +* Mon Nov 15 2010 Kalev Lember - 2.90.5-6 +- Carry epoch over from F14 branch to preserve upgrade path +- Backported upstream patches to fix build with latest gtk3 + +* Thu Sep 09 2010 Bastien Nocera 2.90.5-5 +- Fix broken schemas file, and "disabled_books" usage (#624198) + +* Mon Aug 23 2010 Matthias Clasen - 2.90.5-4 +- Incorporate a few upstream fixes + +* Wed Aug 11 2010 David Malcolm - 2.90.5-3 +- recompiling .py files against Python 2.7 (rhbz#623286) + +* Wed Jul 14 2010 Matthias Clasen - 2.90.5-2 +- Fix platform check to work with GTK3 + +* Wed Jul 14 2010 Matthias Clasen - 2.90.5-1 +- Update to 2.90.5 + +* Sat Jul 3 2010 Matthias Clasen - 2.30.0-2 +- Rebuild against new webkit + +* Mon Mar 29 2010 Matthias Clasen - 2.30.0-1 +- Update to 2.30.0 + +* Mon Feb 08 2010 Matthew Barnes - 2.29.90-1 +- Update to 2.29.90 +- Remove patch for RH bug #543177 (fixed upstream). + +* Wed Dec 02 2009 Matthew Barnes - 2.29.3-2 +- Add patch for RH bug #543177 (missing webkit-1.0 requirement). + +* Tue Dec 01 2009 Bastien Nocera 2.29.3-1 +- Update to 2.29.3 + +* Mon Sep 21 2009 Matthias Clasen - 2.28.0-1 +- Update to 2.28.0 + +* Mon Sep 7 2009 Matthias Clasen - 2.27.92-1 +- Update to 2.27.92 + +* Fri Aug 21 2009 Matthew Barnes - 0.23.1-2 +- Remove patch for GNOME bug #572022 to help fix RH bug #518481. + +* Wed Aug 12 2009 Matthew Barnes - 0.23.1-1 +- Update to 0.23.1 +- Remove patch for GNOME bug #588655 (fixed upstream). + +* Fri Jul 24 2009 Fedora Release Engineering - 0.23-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 15 2009 Matthew Barnes - 0.23-8 +- Add patch for GNOME bug #588655 (work around GLib deprecations). + +* Thu Jul 2 2009 Matthias Clasen - 0.23-7 +- Shrink GConf schemas + +* Sun Mar 08 2009 Rakesh Pandit - 0.23-6 +Bumped to consume new soname in webkit library. + +* Tue Feb 24 2009 Fedora Release Engineering - 0.23-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 16 2009 Matthew Barnes - 0.23-4 +- Disable strict-aliasing checks due to what looks like GLib breakage. + +* Mon Feb 16 2009 - Bastien Nocera - 0.23-3 +- Fix displaying web pages, WebKit doesn't like local filenames as URIs +- Add missing Gconf2-devel BR + +* Fri Jan 23 2009 Matthias Clasen - 0.23-2 +- Cosmetic spec fixes + +* Mon Jan 19 2009 Matthew Barnes - 0.23-1 +- Update to 0.23 + +* Fri Dec 05 2008 Matthew Barnes - 0.22-2 +- Drop the gecko requirement, since it uses WebKit now. + +* Mon Dec 01 2008 Matthew Barnes - 0.22-1 +- Update to 0.22 +- Add BR: WebKit-gtk-devel + +* Mon Dec 01 2008 Ignacio Vazquez-Abrams - 0.21-4 +- Rebuild for Python 2.6 + +* Fri Nov 21 2008 Matthias Clasen - 0.21-3 +- Tweak description + +* Wed Sep 24 2008 Matthias Clasen - 0.21-2 +- Rebuild against newer gecko + +* Mon Sep 22 2008 Matthias Clasen - 0.21-1 +- Update to 0.21 + +* Mon Sep 8 2008 Matthias Clasen - 0.20-1 +- Update to 0.20 + +* Wed Jul 23 2008 Christopher Aillon - 0.19.1-3 +- Rebuild against newer gecko + +* Mon Jul 07 2008 Matthew Barnes - 0.19.1-2 +- Rebuild, just to keep up with F9 package. + +* Mon May 26 2008 Matthew Barnes - 0.19.1-1 +- Update to 0.19.1 + +* Sun May 4 2008 Matthias Clasen - 0.19-5 +- Fix source url + +* Tue Feb 26 2008 Martin Stransky - 0.19-4 +- Rebuild against xulrunner + +* Tue Feb 19 2008 Fedora Release Engineering - 0.19-3 +- Autorebuild for GCC 4.3 + +* Sun Feb 17 2008 Matthew Barnes - 0.19-2.fc9 +- Rebuild with GCC 4.3 + +* Thu Feb 07 2008 Matthew Barnes - 0.19-1.fc9 +- Update to 0.19 + +* Wed Jan 30 2008 Matthias Clasen - 0.18-1 +- Update to 0.18 + +* Wed Jan 16 2008 Matthew Barnes - 0.17-2.fc9 +- Update version requirements based on configure.in. + +* Mon Jan 07 2008 Matthew Barnes - 0.17-1.fc9 +- Update to 0.17 +- Remove patch for GNOME bug #499050 (fixed upstream). + +* Mon Dec 31 2007 Jeremy Katz - 0.16.1-5 +- Rebuild against newer xulrunner + +* Thu Nov 22 2007 Martin Stransky - 0.16.1-4.fc9 +- Rebuild against xulrunner + +* Fri Nov 09 2007 Matthew Barnes - 0.16.1-3.fc9 +- Rebuild against gecko-libs 1.8.1.9. + +* Thu Nov 01 2007 Matthew Barnes - 0.16.1-2.fc9 +- Rebuild against gecko-libs 1.8.1.8. + +* Sat Oct 06 2007 Matthew Barnes - 0.16.1-1.fc8 +- Update to 0.16.1 + +* Tue Sep 11 2007 Matthew Barnes - 0.16-1.fc8 +- Update to 0.16 + +* Wed Aug 8 2007 Christopher Aillon - 0.15-4 +- Rebuild against newer gecko + +* Mon Aug 6 2007 Matthias Clasen - 0.15-3 +- Update license field + +* Fri Jul 20 2007 Kai Engert - 0.15-2.fc8 +- Rebuild against newer gecko + +* Mon Jun 18 2007 Matthew Barnes - 0.15-1.fc8 +- Update to 0.15 + +* Tue Jun 05 2007 - Bastien Nocera - 0.14-4 +- Rebuild again + +* Mon Jun 04 2007 - Bastien Nocera - 0.14-3 +- Rebuild against new libwnck + +* Fri May 25 2007 Christopher Aillon - 0.14-2 +- Rebuild against newer gecko + +* Fri May 18 2007 Matthew Barnes - 0.14-1.fc8 +- Update to 0.14 +- Remove patch for RH bug #230837 (fixed upstream). + +* Mon Apr 23 2007 Matthew Barnes - 0.13-7.fc7 +- Add patch for RH bug #230837 (initialize GThread). + +* Sat Apr 21 2007 Matthias Clasen - 0.13-6 +- Don't install INSTALL + +* Fri Mar 23 2007 Christopher Aillon - 0.13-5 +- Rebuild against newer gecko + +* Wed Feb 28 2007 Matthew Barnes - 0.13-4 +- Rebuild against newer gecko. + +* Mon Feb 5 2007 Matthias Clasen - 0.13-3 +- Fix scriptlet errors + +* Sun Feb 04 2007 Matthew Barnes - 0.13-2.fc7 +- Incorporate suggestions from package review. + +* Sat Feb 03 2007 Matthew Barnes - 0.13-1.fc7 +- Update to 0.13 +- Clean up the spec file. +- Remove devhelp-0.12-transparent.patch (fixed upstream). + +* Thu Dec 21 2006 Christopher Aillon 0.12-10 +- Rebuild against newer gecko + +* Sat Nov 25 2006 Matthias Clasen - 0.12-9 +- Own the /usr/share/devhelp/books directory + +* Fri Oct 27 2006 Christopher Aillon - 0.12-8 +- Rebuild against newer gecko + +* Wed Oct 18 2006 Matthias Clasen - 0.12-7 +- Fix scripts according to the packaging guidelines +- Require pkgconfig in the -devel package + +* Thu Oct 12 2006 Christopher Aillon - 0.12-6.fc6 +- Update requires to the virtual gecko version instead of a specific app + +* Thu Sep 14 2006 Christopher Aillon - 0.12-5.fc6 +- Rebuild + +* Mon Aug 14 2006 Matthias Clasen - 0.12-4.fc6 +- Fix transparent headers + +* Mon Aug 14 2006 Matthew Barnes - 0.12-3 +- Add missing Requires to devel package. + +* Thu Aug 10 2006 Matthew Barnes - 0.12-2 +- Rebuild against firefox, again. + +* Sat Jul 29 2006 Matthias Clasen - 0.12-1 +- Update to 0.12 +- Rebuild against firefox + +* Wed Jul 12 2006 Jesse Keating - 0.11-4 +- rebuild +- bump mozver + +* Sun Feb 12 2006 Christopher Aillon - 0.11-2 +- Rebuild + +* Tue Feb 07 2006 Jesse Keating - 0.11-1.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Sun Dec 18 2005 Ray Strode - 0.11-1 +- Update to 0.11 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Oct 18 2005 Christopher Aillon - 0.10-6 +- Build on ppc64 + +* Wed Aug 17 2005 Jeremy Katz - 0.10-5 +- fix the build + +* Wed Aug 17 2005 Ray Strode 0.10.0-4 +- rebuild + +* Sun Jul 31 2005 Christopher Aillon 0.10.0-3 +- Rebuild against new mozilla + +* Tue Jul 19 2005 Christopher Aillon 0.10.0-2 +- Rebuild against new mozilla +- Add builds for ia64 s390 s390x + +* Thu May 19 2005 Ray Strode 0.10.0-1 +- Update to 0.10.0 (bug #157753) + +* Fri May 13 2005 Christopher Aillon 0.9.3-7 +- Depend on mozilla 1.7.8 + +* Sat Apr 16 2005 Christopher Aillon 0.9.3-6 +- Depend on mozilla 1.7.7 + +* Thu Apr 14 2005 Ray Strode 0.9.3-5 +- Don't crash on typeahead (bug #154398) + +* Wed Mar 9 2005 Christopher Aillon 0.9.3-4 +- Depend on mozilla 1.7.6 + +* Sat Mar 5 2005 Christopher Aillon 0.9.3-3 +- Rebuild against GCC 4.0 + +* Sun Dec 19 2004 Christopher Aillon 0.9.3-2 +- Require mozilla 1.7.5 + +* Sun Dec 19 2004 Christopher Aillon 0.9.3-1 +- Update to 0.9.3 + +* Mon Oct 11 2004 Christopher Aillon 0.9.2-2 +- Rebuild to add ppc once again. + +* Wed Sep 29 2004 Christopher Aillon 0.9.2-1 +- Update to 0.9.2 +- Remove accel patch; its upstreamed now. + +* Sun Sep 26 2004 Christopher Blizzard 0.9.1-6 +- Rebuild without explicit mozilla release + +* Fri Sep 24 2004 Christopher Blizzard 0.9.1-5 +- Rebuild with explicit Mozilla version requires + +* Wed Sep 22 2004 Christopher Aillon 0.9.1-4 +- Rebuilt to pick up new mozilla changes +- Drop ppc from the build since mozilla doesn't build there anymore. + +* Wed Aug 25 2004 Christopher Aillon 0.9.1-3 +- Add Johan Svedberg's patch to add accelerators for back and forward + +* Mon Aug 09 2004 Christopher Aillon +- Rebuild + +* Wed Aug 04 2004 Christopher Aillon +- Update to 0.9.1 +- Remove ld-library patch. It is upstream now. + +* Wed Jun 23 2004 Christopher Aillon +- Update ExclusiveArch + +* Tue Jun 22 2004 Christopher Aillon +- rebuilt + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Wed Apr 21 2004 Colin Walters 0.9-3 +- Update patch to avoid (unlikely) security issue noticed + by Jeremy Katz. + +* Mon Apr 15 2004 Colin Walters 0.9-2 +- Apply patch from George Karabin to + export LD_LIBRARY_PATH (closes bug 120220). + +* Fri Apr 2 2004 Mark McLoughlin 0.9-1 +- Update to 0.9 +- Install the schemas correctly +- Package /usr/bin/devhelp-bin +- Update requires/buildrequires +- Only build on platforms where mozilla is available + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Thu Feb 26 2004 Alexander Larsson 0.8.1-1 +- update to 0.8.1 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Mon Dec 1 2003 Jonathan Blandford 0.7.0-1 +- new version +- Remove .la and .a files. + +* Wed Jul 30 2003 Jonathan Blandford +- remove original devhelp desktop file. + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Sat May 24 2003 Florian La Roche +- add find_lang