Browse Source

2015-03-15 Ryoichi INAGAKI <ryo1@toki.waseda.jp>

	* task-xfce, xfce4-plaecs-plugin: updated
	* xfce4-{netload,pulseaudio}-plugin: NEW
	


git-svn-id: http://trac.vinelinux.org/repos/projects/specs@9435 ec354946-7b23-47d6-9f5a-488ba84defc7
inagaki 9 years ago
parent
commit
dafbe884aa

+ 41 - 13
t/task-xfce/task-xfce-vl.spec

@@ -1,40 +1,68 @@
 Name: task-xfce
+Version: 4.12.0
+Release: 1%{?_dist_release}
 Summary: Virtual package for Xfce
 Summary(ja): Xfce バーチャルパッケージ
-Version: 4.10.0
-Release: 1%{?_dist_release}
 
 Group: User Interface/Desktops
 License: public domain
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildArch: noarch
-
+# core
 Requires: gtk-xfce-engine
 Requires: libxfce4util libxfce4ui xfconf libexo
 Requires: xfce4-settings
 Requires: xfce4-panel
-Requires: xfce4-mixer
-Requires: xfdesktop xfprint
-Requires: xfwm4 xfwm4-themes
-Requires: xfce4-icon-theme
+Requires: xfdesktop
+Requires: xfwm4 
 Requires: xfce4-appfinder
 Requires: xfce4-session xfce4-session-engines
-Requires: Thunar Terminal orage
+Requires: Thunar 
 Requires: thunar-volman
 Requires: tumbler
 
+# apps
+Requires: mousepad
+Requires: orage
+Requires: parole
+Requires: ristretto
+Requires: xarchiver
+Requires: xfce4-dict
+#Requires: xfce4-mixer
+Requires: xfce4-notifyd
+Requires: xfce4-screenshooter
+Requires: xfce4-taskmanager
+Requires: xfce4-terminal
+#Requires: xfprint
+
+# plugins
+Requires: xfce4-mailwatch-plugin
+Requires: xfce4-pulseaudio-plugin
+Requires: xfce4-wavelan-plugin
+Requires: xfce4-weather-plugin
+Requires: xfce4-xkb-plugin
+
+# themes
+Requires: xfwm4-themes
+Requires: xfce4-icon-theme
+
 %description
 This is a virtual package to install Xfce system packages.
-If you use apt-get for RPM, This package willinstall
-all packages related to XFce automatically.
+If you use apt-get for RPM, this package will install all packages related to Xfce automatically.
 
 %description -l ja
-Xfce を簡単にインストールするための仮想パッケージです。
-apt-get を使ってこのパッケージをインストールすることで、
-関連する Xfce パッケージをまとめてインストールすることができます。
+Xfce デスクトップ環境を簡単にインストールするための仮想パッケージです。
+apt-get を使ってこのパッケージをインストールすることで、関連する Xfce パッケージをまとめてインストールすることができます。
 
 %changelog
+* Sun Mar 15 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.12.0-1
+- Xfce 4.12.0
+- remove Requires: xfce4-mixer, xfprint
+- add Requires: parole, ristretto, xfarchiver, xfce4-dict, xfce4-notifyd
+                xfce4-screenshooter, xfce4-taskmanager, xfce4-terminal,
+                plugins: mailwatch, pulseaudio, wavelan, weather, xkb
+
 * Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.0-1
 - Xfce 4.10.0
 - remove Requires: xfce-utils

+ 201 - 0
x/xfce4-netload-plugin/xfce4-netload-plugin-vl.spec

@@ -0,0 +1,201 @@
+%global minor_version 1.2
+
+Name:           xfce4-netload-plugin
+Version:        1.2.4
+Release:        3%{?_dist_release}
+Summary:        Network-load monitor for the Xfce panel
+Summary(ja):    Xfce パネル用のネットワーク負荷モニタ
+
+Group:          User Interface/Desktops
+License:        GPLv2+
+URL:            http://goodies.xfce.org/projects/panel-plugins/%{name}
+Source0:        http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+BuildRequires:  gettext, intltool
+BuildRequires:  libxfce4ui-devel >= 4.7.0
+BuildRequires:  libxml2-devel
+BuildRequires:  xfce4-panel-devel >= 4.7.0
+Requires:       xfce4-panel >= 4.7.0
+
+%description
+A network-load monitor plugin for the Xfce panel.
+
+
+%prep
+%setup -q
+
+%build
+%configure
+make %{?_smp_mflags}
+
+
+%install
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+%find_lang %{name}
+
+rm -f %{buildroot}/%{_libdir}/xfce4/panel/plugins/libnetload.la
+
+%clean
+rm -rf %{buildroot}
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING ChangeLog README
+%{_datadir}/icons/hicolor/*/*/*
+%{_libdir}/xfce4/panel/plugins/libnetload.so
+%{_datadir}/xfce4/panel-plugins/*.desktop
+
+
+%changelog
+* Sun Mar 15 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.2.4-3
+- Initial build for Vine Linux
+
+* Sat Feb 28 2015 Kevin Fenzi <kevin@scrye.com> 1.2.4-2
+- Rebuild for Xfce 4.12
+
+* Sat Nov 22 2014 Kevin Fenzi <kevin@scrye.com> 1.2.4-1
+- Update to 1.2.4. Fixes bug #1157193
+
+* Sun Nov 16 2014 Kevin Fenzi <kevin@scrye.com> 1.2.3-1
+- Update to 1.2.3
+
+* Tue Nov 04 2014 Kevin Fenzi <kevin@scrye.com> 1.2.2-1
+- Update to 1.2.2.
+
+* Tue Oct 28 2014 Kevin Fenzi <kevin@scrye.com> 1.2.0-6
+- Add patch to increase network interface name length to 20.
+- Fixes bug #1002329
+
+* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
+* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Fri Jul 20 2012 Kevin Fenzi <kevin@scrye.com> - 1.2.0-1
+- Update to 1.2.0 
+
+* Sun Apr 15 2012 Kevin Fenzi <kevin@scrye.com> - 1.1.0-4
+- Rebuild for Xfce 4.10(pre2)
+
+* Thu Apr 05 2012 Kevin Fenzi <kevin@scrye.com> - 1.1.0-3
+- Rebuild for Xfce 4.10
+
+* Fri Mar 09 2012 Christoph Wickert <cwickert@fedoraproject.org> - 1.1.0-2
+- Don't use libxecdir if possible
+
+* Sat Jan 14 2012 Christoph Wickert <cwickert@fedoraproject.org> - 1.1.0-1
+- Update to 1.1.0
+- Add VCS key
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.0.0-4
+- Rebuild for new libpng
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Fri Dec 10 2010 Christoph Wickert <cwickert@fedoraproject.org> - 1.0.0-2
+- Rebuild for xfce4-panel 4.7
+
+* Fri Dec 10 2010 Christoph Wickert <cwickert@fedoraproject.org> - 1.0.0-1
+- Update to 1.0.0
+- Remove all patches (upstreamed)
+
+* Wed Sep 09 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-12
+- Fix bar colors (#505214)
+
+* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jun 29 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-10
+- Bring back tooltips in GTK 2.16 with Dimitar Zhekov's patch (#508637)
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sun Jan 18 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-8
+- Rebuild for Xfce 4.6 (Beta 3)
+
+* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.0-7
+- Autorebuild for GCC 4.3
+
+* Sat Aug 25 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-6
+- Rebuild for BuildID feature
+- Update license tag
+
+* Sat Apr 28 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-5
+- Rebuild for Xfce 4.4.1
+
+* Mon Jan 22 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-4
+- Rebuild for Xfce 4.4.
+- Patch to compile with -Wl,--as-needed (bugzilla.xfce.org #2782)
+
+* Thu Oct 05 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-3
+- Bump release for devel checkin.
+
+* Wed Sep 13 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-2
+- BR perl(XML::Parser).
+
+* Mon Sep 04 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-1
+- Update to 0.4 on XFCE 4.3.90.2.
+- Remove bufsize-patch for now.
+
+* Mon Sep 04 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.3-7
+- Mass rebuild for Fedora Core 6.
+
+* Tue Apr 11 2006 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-6
+- Require xfce4-panel.
+
+* Sat Feb 18 2006 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-5
+- Rebuild for Fedora Extras 5.
+- Modify bufsize-patch.
+
+* Thu Feb 02 2006 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-4
+- Add bufsize-patch (#179686).
+
+* Thu Dec 01 2005 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-3
+- Add libxfcegui4-devel BuildReqs.
+- Fix %%defattr.
+
+* Mon Nov 14 2005 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-2
+- Initial Fedora Extras version.
+- Rebuild for XFCE 4.2.3.
+- disable-static instead of removing .a files.
+
+* Fri Sep 23 2005 Christoph Wickert <fedora wickert at arcor de> - 0.3.3-1.fc4.cw
+- Updated to version 0.3.3.
+- Add libxml2 BuildReqs.
+
+* Sat Jul 09 2005 Christoph Wickert <fedora wickert at arcor de> - 0.3.2-1.fc4.cw
+- Updated to version 0.3.2.
+- Rebuild for Core 4.
+
+* Wed Apr 13 2005 Christoph Wickert <fedora wickert at arcor de> - 0.3.1-1.fc3.cw
+- Updated to version 0.3.1.
+
+* Wed Apr 13 2005 Christoph Wickert <fedora wickert at arcor de> - 0.2.3-1.fc3.cw
+- Initial RPM release.

+ 5 - 2
x/xfce4-places-plugin/xfce4-places-plugin-vl.spec

@@ -1,8 +1,8 @@
 Name: 		xfce4-places-plugin
+Version:        1.7.0
+Release: 	1%{?_dist_release}
 Summary:        GNOME's Places menu plugin for the Xfce panel
 Summary(ja):    Xfce パネル用 GNOME Places メニュープラグイン
-Version:        1.6.0
-Release: 	2%{?_dist_release}
 
 Group: 		User Interface/Desktops
 License:	GPLv2+
@@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/xfce4/panel/plugins/places.desktop
 
 %changelog
+* Sun Mar 15 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.7.0-1
+- new upstream release
+
 * Mon Mar  2 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.6.0-2
 - rebuilt with libxfce4util 4.12.1
 

+ 85 - 0
x/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-vl.spec

@@ -0,0 +1,85 @@
+%global xfceversion 4.12
+%global versnum 0.2
+
+Name:		xfce4-pulseaudio-plugin
+Version:	0.2.1
+Release:	2%{?_dist_release}
+Summary:	Pulseaudio plugin for Xfce4
+Summary(ja):	Xfce 用の Pulseaudio プラグイン
+
+Group: 		User Interface/Desktops
+License:	GPLv2+
+URL:		https://github.com/andrzej-r/xfce4-pulseaudio-plugin
+Source0:	http://archive.xfce.org/src/panel-plugins/%{name}/%{versnum}/%{name}-%{version}.tar.bz2
+
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-root
+BuildRequires:	intltool
+BuildRequires:	libxfce4ui-devel >= %{xfceversion}
+BuildRequires:	libxfce4util-devel >= %{xfceversion}
+BuildRequires:	xfce4-panel-devel >= %{xfceversion}
+BuildRequires:	pulseaudio-libs-devel >= 0.9.19
+BuildRequires:	glib2-devel >= 2.24.0
+BuildRequires:	gtk3-devel >= 3.6.0
+BuildRequires:	xfconf-devel >= 4.6.0
+
+%description
+Pulseaudio panel plugin for Xfce Desktop Environment
+
+%prep
+%setup -q
+
+# remove empty files
+rm -f AUTHORS README
+
+%build
+%configure
+make %{?_smp_mflags} V=1
+
+%install
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+
+# remove libtool archives
+find %{buildroot} -name '*.la' -exec rm -f {} ';'
+
+# remove zero-length files
+rm -f %{buildroot}/%{defaultdocdir}/AUTHORS
+rm -f %{buildroot}/%{defaultdocdir}/README
+
+%clean
+rm -rf %{buildroot}
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING ChangeLog
+%{_datadir}/xfce4/panel/plugins/*.desktop
+%{_libdir}/xfce4/panel/plugins/libpulseaudio-plugin.so
+%{_datadir}/icons/hicolor/48x48/apps/%{name}*
+%{_datadir}/icons/hicolor/scalable/apps/%{name}*
+
+%changelog
+* Sun Mar 15 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.2.1-2
+- Initial build for Vine Linux
+
+* Sun Mar 08 2015 Mukundan Ragavan <nonamedotc@fedoraproject.org> - 0.2.1-1
+- Update to 0.2.1
+- Bug fix update
+
+* Fri Mar 06 2015 Mukundan Ragavan <nonamedotc@fedoraproject.org> - 0.2.0-1
+- Update to 0.2.0
+
+* Sun Mar 01 2015 Mukundan Ragavan <nonamedotc@fedoraproject.org> - 0.1.0-1
+- New package