Browse Source

New package(giggle,dconf)
Add Requires (gsettings-desktop-schemas)
new upstream release (vte,xorg-x11-drv-*)

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@2090 ec354946-7b23-47d6-9f5a-488ba84defc7

Takemikaduchi 13 years ago
parent
commit
39f20ad3ef

+ 6 - 6
d/dconf/dconf-vl.spec

@@ -1,6 +1,6 @@
 # Basic Information
 Name:		dconf
-Version:	0.5
+Version:	0.5.1
 Release:	1%{?_dist_release}
 License:	LGPL
 Group:		System Environment/Base
@@ -72,9 +72,8 @@ applications which will use %{name}.
 %{_bindir}/dconf
 %{_bindir}/dconf-editor
 %{_libdir}/gio/modules/libdconfsettings.so
-%{_libdir}/girepository-1.0/dconf-0.3.typelib
-%{_libdir}/libdconf.so
-%{_libdir}/libdconf.so.0
+%{_libdir}/girepository-1.0/dconf-1.0.typelib
+%{_libdir}/libdconf.so.*
 %{_libexecdir}/dconf-service
 %{_datadir}/dbus-1/services/ca.desrt.dconf.service
 %{_datadir}/dbus-1/system-services/ca.desrt.dconf.service
@@ -82,13 +81,14 @@ applications which will use %{name}.
 %files devel
 %defattr(-, root, root, -)
 %{_includedir}/dconf/
+%{_libdir}/libdconf.so
 %{_libdir}/pkgconfig/dconf.pc
 %{_datadir}/gtk-doc/html/dconf/
-%{_datadir}/gir-1.0/dconf-0.3.gir
+%{_datadir}/gir-1.0/dconf-1.0.gir
 %{_datadir}/vala/vapi/dconf.deps
 %{_datadir}/vala/vapi/dconf.vapi
 
 %changelog
-* Sun Oct 17 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.5-1
+* Sun Oct 17 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.5.1-1
 - new package. 
 

+ 184 - 0
g/giggle/giggle-vl.spec

@@ -0,0 +1,184 @@
+Name:          giggle
+Version:       0.5
+Release:       1%{?_dist_release}
+Summary:       A Gtk frontend to git
+
+Group:         Development/Tools
+License:       GPLv2+
+URL:           http://live.gnome.org/giggle
+Source0:       http://ftp.gnome.org/pub/GNOME/sources/giggle/0.5/%{name}-%{version}.tar.bz2
+BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires: intltool
+BuildRequires: gettext
+BuildRequires: gtksourceview2-devel
+BuildRequires: glib2-devel
+BuildRequires: gtk2-devel
+BuildRequires: libglade2-devel
+BuildRequires: desktop-file-utils
+BuildRequires: git-core
+BuildRequires: evolution-data-server-devel
+BuildRequires: vte-devel
+BuildRequires: gnome-common
+BuildRequires: libtool autoconf automake
+
+Requires:      git
+
+
+%description
+Giggle is a graphical frontend for the git directory tracker (think of gitk on
+GTK+).
+
+%package devel
+Summary:	Headers for Giggle plugin development
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+
+%description devel
+Headers for developing plugins for Giggle.
+
+%prep
+%setup -q
+
+libtoolize
+aclocal
+autoconf
+autoheader
+automake
+
+%build
+%configure --disable-static
+sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
+sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+desktop-file-install --vendor="fedora"                     \
+  --delete-original                                        \
+  --dir=%{buildroot}%{_datadir}/applications               \
+  %{buildroot}%{_datadir}/applications/giggle.desktop
+
+%find_lang %{name}
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+/sbin/ldconfig
+touch --no-create %{_datadir}/icons/hicolor
+if [ -x %{_bindir}/gtk-update-icon-cache ]; then
+  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+fi
+
+%postun
+/sbin/ldconfig
+touch --no-create %{_datadir}/icons/hicolor
+if [ -x %{_bindir}/gtk-update-icon-cache ]; then
+  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+fi
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING README
+
+%{_bindir}/giggle
+%{_libdir}/*.so.*
+%{_libdir}/giggle/plugins/%{version}/*.so*
+%{_libdir}/giggle/plugins/%{version}/*.xml
+
+%dir %{_datadir}/giggle
+%dir %{_datadir}/giggle/glade
+
+%{_datadir}/giggle/glade/main-window.ui
+%{_datadir}/applications/fedora-giggle.desktop
+
+%{_datadir}/icons/hicolor/16x16/apps/*.png
+%{_datadir}/icons/hicolor/22x22/apps/*.png
+%{_datadir}/icons/hicolor/24x24/apps/*.png
+%{_datadir}/icons/hicolor/32x32/apps/*.png
+%{_datadir}/icons/hicolor/48x48/apps/*.png
+%{_datadir}/icons/hicolor/scalable/apps/*.svg
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/giggle/
+%{_libdir}/*.so
+
+%changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5-1
+- initial build for Vine Linux
+
+
+* Mon Jun 26 2010 Caolán McNamara <caolanm@redhat.com> 0.5-3
+- bump for dependencies
+
+* Fri Jun 11 2010 Mike McGrath <mmcgrath@redhat.com> 0.5-2
+- Release bump for rebuild to fix broken libedataserver dep
+
+* Wed May 05 2010 James Bowes <jbowes@redhat.com> 0.5-1
+- Update to 0.5
+
+* Fri Feb 12 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.4.96-1
+- Update to 0.4.96
+
+* Tue Aug 11 2009 Ville Skyttä <ville.skytta@iki.fi> - 0.4.91-3
+- Use bzipped upstream tarball.
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.91-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Fri Apr 10 2009 Lennart Poettering <lpoetter@redhat.com> - 0.4.91-1 
+- Update to 0.4.91
+
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.90-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Feb 13 2009 Lennart Poettering <lpoetter@redhat.com> - 0.4.90-2
+- Add missing dep
+
+* Fri Feb 13 2009 Lennart Poettering <lpoetter@redhat.com> - 0.4.90-1
+- Update to 0.4.90
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4-2
+- Autorebuild for GCC 4.3
+
+* Wed Dec 12 2007 James Bowes <jbowes@redhat.com> - 0.4-1
+- Update to 0.4
+
+* Sun Oct 14 2007 James Bowes <jbowes@redhat.com> 0.3-5
+- Update gtksourceview2 patch to build against current code.
+
+* Thu Aug 23 2007 James Bowes <jbowes@redhat.com> - 0.3-4
+- Add BR for gtksourceview2-devel
+
+* Thu Aug 23 2007 James Bowes <jbowes@redhat.com> - 0.3-3
+- Mark license as GPLv2+
+
+* Fri Jul  6 2007 Jeremy Katz <katzj@redhat.com> - 0.3-2
+- fix to build against gtksourceview2
+
+* Wed May 09 2007 James Bowes <jbowes@redhat.com> - 0.3-1
+- Update to 0.3
+
+* Thu Mar 29 2007 James Bowes <jbowes@redhat.com> - 0.2-2
+- Add buildrequires for git-core
+
+* Thu Mar 29 2007 James Bowes <jbowes@redhat.com> - 0.2-1
+- Update to 0.2
+
+* Sat Mar 17 2007 James Bowes <jbowes@redhat.com> - 0.1-3
+- Minor specfile fixes from the initial review.
+
+* Fri Mar 09 2007 James Bowes <jbowes@redhat.com> - 0.1-2
+- Use desktop-file-install for the desktop file.
+
+* Wed Mar 07 2007 James Bowes <jbowes@redhat.com> - 0.1-1
+- Initial packaging.

+ 5 - 1
g/gsettings-desktop-schemas/gsettings-desktop-schemas-vl.spec

@@ -1,7 +1,7 @@
 # Basic Information
 Name:		gsettings-desktop-schemas
 Version:	0.0.1
-Release:	1%{?_dist_release}
+Release:	2%{?_dist_release}
 License:	GPL-2
 Group:		System Environment/Base
 Source0:	http://ftp.gnome.org/pub/gnome/sources/%{name}/0.0/%{name}-%{version}.tar.bz2
@@ -18,6 +18,7 @@ Summary(ja):	GSettingsスキーマのコレクション
 # 以下に依存関係を記述してください。
 Requires:	pkgconfig
 Requires:	glib2
+Requires:	dconf
 
 BuildRequires:	pkgconfig
 BuildRequires:	glib2-devel
@@ -70,6 +71,9 @@ fi
 %{_datadir}/glib-2.0/schemas/org.gnome.system.proxy.gschema.xml
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.1-2
+- add Requires: dconf
+
 * Tue Oct 12 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.0.1-1
 - new package.
 

+ 4 - 1
v/vte/vte-vl.spec

@@ -1,7 +1,7 @@
 Summary: An terminal emulator.
 Summary(ja): ターミナルエミュレータ
 Name: vte
-Version: 0.26.0
+Version: 0.26.1
 Release: 1%{?_dist_release}
 License: LGPL
 Group: System Environment/Libraries
@@ -78,6 +78,9 @@ rm -fr $RPM_BUILD_ROOT
 %{_datadir}/pygtk/2.0/defs/vte.defs
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.26.1-1
+- new upstream release
+
 * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.26.0-1
 - new upstream release
 - fix %install, %files

+ 7 - 2
x/xorg-x11-drv-ati/xorg-x11-drv-ati-vl.spec

@@ -5,7 +5,7 @@
 Summary:   Xorg X11 ati video driver
 Summary(ja):   Xorg X11 ati ビデオドライバ
 Name:      xorg-x11-drv-ati
-Version:   6.13.1
+Version:   6.13.2
 Release:   1%{?_dist_release}
 URL:       http://www.x.org
 License:   MIT
@@ -22,6 +22,7 @@ BuildRequires: mesa-libGL-devel
 BuildRequires: libdrm-devel
 BuildRequires: automake autoconf libtool pkgconfig
 BuildRequires: xorg-x11-util-macros
+BuildRequires: libudev-devel
 Requires:  hwdata
 Requires:  xorg-x11-server-Xorg
 
@@ -52,7 +53,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc README.ati
+%doc README
 %{driverdir}/ati_drv.so
 %{driverdir}/radeon_drv.so
 %{_datadir}/hwdata/videoaliases/ati.xinf
@@ -64,6 +65,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man4/radeon.4*
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.13.2-1
+- new upstream release
+- add BuildRequires: libudev-devel
+
 * Sun Jul 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.13.1-1
 - new upstream release
 

+ 5 - 2
x/xorg-x11-drv-glint/xorg-x11-drv-glint-vl.spec

@@ -9,8 +9,8 @@
 Summary:   Xorg X11 glint video driver
 Summary(ja):   Xorg X11 glint ビデオドライバ
 Name:      xorg-x11-drv-glint
-Version:   1.2.4
-Release:   2%{?_dist_release}
+Version:   1.2.5
+Release:   1%{?_dist_release}
 URL:       http://www.x.org
 License:   MIT
 Group:     User Interface/X Hardware Support
@@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man4/glint.4*
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.5-1
+- new upstream release
+
 * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.4-2
 - rebuild with xserver-1.8rc
 

+ 5 - 2
x/xorg-x11-drv-mouse/xorg-x11-drv-mouse-vl.spec

@@ -5,8 +5,8 @@
 Summary:   Xorg X11 mouse input driver
 Summary(ja):   Xorg X11 マウス入力ドライバ
 Name:      xorg-x11-drv-mouse
-Version:   1.5.0
-Release:   2%{?_dist_release}
+Version:   1.6.0
+Release:   1%{?_dist_release}
 URL:       http://www.x.org
 License:   MIT
 Group:     User Interface/X Hardware Support
@@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man4/mousedrv.4*
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.0-1
+- new upstream release
+
 * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.0-2
 - rebuild with xserver-1.8rc
 

+ 5 - 2
x/xorg-x11-drv-synaptics/xorg-x11-drv-synaptics-vl.spec

@@ -5,8 +5,8 @@
 Name:           xorg-x11-drv-synaptics
 Summary:        Xorg X11 synaptics input driver
 Summary(ja):    Xorg X11 synaptics 入力ドライバ
-Version:        1.2.2
-Release:        3%{?_dist_release}
+Version:        1.3.0
+Release:        1%{?_dist_release}
 URL:            http://www.x.org
 License:        MIT
 Group:          User Interface/X Hardware Support
@@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/pkgconfig/xorg-synaptics.pc
 
 %changelog
+* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.0-1
+- new upstream release
+
 * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-3
 - rebuild with rpm-4.8.1 for pkg-config file