Browse Source

new upstream release

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

+ 5 - 2
a/advancecomp/advancecomp-vl.spec

@@ -1,8 +1,8 @@
 Summary: Recompression utilities for .PNG, .MNG and .ZIP files
 Summary(ja): .PNG や .MNG 、.ZIP ファイルの再圧縮ユーティリティ
 Name: advancecomp
-Version: 1.19
-Release: 2%{?_dist_release}
+Version: 1.20
+Release: 1%{?_dist_release}
 
 License: GPLv2
 Group:	Applications/Archiving
@@ -58,6 +58,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
 
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.20-1
+- new upstream release
+
 * Fri Sep 26 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.19-2
 - changed Group to Applications/Archiving
 

+ 4 - 1
f/filezilla/filezilla-vl.spec

@@ -1,5 +1,5 @@
 Name:           filezilla
-Version:        3.10.0.2
+Version:        3.12.0.2
 Release:        1%{?_dist_release}
 Summary:        FileZilla is a cross-platform graphical FTP, FTPS and SFTP client
 Summary(ja):    FileZilla - クロスプラットフォームのグラフィカルな FTP/FTPS/SFTP クライアント
@@ -134,6 +134,9 @@ fi || :
 
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 3.12.0.2-1
+- new upstream release
+
 * Sat Jan 24 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> - 3.10.0.2-1
 - new upstream release
 

+ 39 - 11
g/guake/guake-vl.spec

@@ -3,17 +3,24 @@
 Summary:	Drop-down terminal for GNOME Desktop Environment
 Summary(ja): 	GNOME 用のドロップダウン式の端末エミュレータ
 Name:		guake
-Version:	0.4.4
-Release: 	2%{?_dist_release}
+Version:	0.8.4
+Release: 	1%{?_dist_release}
 Source0:	%{name}-%{version}.tar.gz
 #Source1:	guake-0.4.1-ja.po
-Patch0:         0001-Fix-focus-issue-on-gnome-shell.patch
-Patch1:         0001-Fix-notification.patch
+#Patch0:         0001-Fix-focus-issue-on-gnome-shell.patch
+#Patch1:         0001-Fix-notification.patch
+#Patch2:         0001-Let-allow-the-signal.SIGTERM-to-fail.patch
+#Patch3:         0001-Fix-regex-to-include-the-port-number-when-there-is-o.patch
+# Upstream patch at https://github.com/Guake/guake/pull/75
+#Patch4:         0001-Include-bpython-and-ipython-as-interpreters.patch
 
 License:	GPLv2+
 Group:		Applications/Accessories
 URL:		http://guake.org/
 
+Requires: gnome-python
+Requires: python-keybinder
+
 Requires(pre):	GConf2
 Requires(post): GConf2
 Requires(preun):GConf2
@@ -23,8 +30,11 @@ BuildRequires: gtk2-devel, pygtk2-devel
 BuildRequires: vte, GConf2-devel, libffi-devel
 BuildRequires: desktop-file-utils
 BuildRequires: intltool, gettext
+BuildRequires: gnome-common
 BuildRoot:	%{_tmppath}/%{name}-%{version}-root
 
+Vendor:		Project Vine
+Distribution:	Vine Linux
 Packager:	kazutaka
 
 %description
@@ -46,10 +56,14 @@ sed -i 's/Encoding=UTF-8//g' data/guake.desktop.in data/guake-prefs.desktop.in
 sed -i 's/Categories=GNOME;GTK;Utility;TerminalEmulator;/Categories=GNOME;GTK;Utility;/g' \
         data/guake.desktop.in
 
-%patch0 -p1
-%patch1 -p1
+#%patch0 -p1
+#%patch1 -p1
+#%patch2 -p1
+#%patch3 -p1
+#%patch4 -p1
 
 %build
+./autogen.sh
 %configure --disable-static \
            --disable-schemas-install
 %{__make} %{?_smp_mflags}
@@ -63,7 +77,7 @@ sed -i 's/Categories=GNOME;GTK;Utility;TerminalEmulator;/Categories=GNOME;GTK;Ut
 rm -f %{buildroot}%{_libdir}/%{name}/globalhotkeys.la
 
 if [ "%{python_sitearch}" != "%{python_sitelib}" ]; then
-  mv %{buildroot}%{python_sitelib}/%{name}/* %{buildroot}%{python_sitearch}/%{name}/
+  mv %{buildroot}/usr/lib/ %{buildroot}%{_libdir}
 fi
 
 %check
@@ -106,7 +120,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 
 %files -f %{name}.lang
 %defattr(-,root,root)
-%doc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
+%doc AUTHORS COPYING ChangeLog INSTALL NEWS README.rst
 %{_bindir}/%{name}
 %{_bindir}/%{name}-prefs
 %{_datadir}/%{name}
@@ -115,21 +129,35 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %{_datadir}/dbus-1/services/org.guake.Guake.service
 %{_datadir}/icons/hicolor/*/
 %{_datadir}/pixmaps/%{name}
-%{python_sitearch}/%{name}
+%{python_sitearch}/%{name}/*
 %{_mandir}/man1/guake.1*
 %{_sysconfdir}/gconf/schemas/%{name}.schemas
 #%{_sysconfdir}/xdg/autostart/%{name}.desktop
 
 
 %changelog
-* Fri Mar 21 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.4.4-2
-- rebuilt with new toolchain
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.8.4-1
+- new upstream release
+- delete all patches
+- run autogen.sh in %%build
+- added BuildRequires: gnome-common
+- added Requires: gnome-python, python-keybinder
+- fixed %%install
+- fixed %%files and %%doc
+
+* Tue Dec 31 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.4.4-2
+- add some patches from Fedora guake-0.4.4-11.fc21
+ - 0001-Let-allow-the-signal.SIGTERM-to-fail.patch (Patch2)
+ - 0001-Fix-regex-to-include-the-port-number-when-there-is-o.patch (Patch3)
+ - 0001-Include-bpython-and-ipython-as-interpreters.patch (Patch4)
+- add Vendor and Distribution tags
 
 * Sat Jul 28 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.4.4-1
 - new upstream release
 - added Patch1 from Fedora
 - run gtk-update-icon-cache in %%post, %%posutn
 
+
 * Thu Jun 28 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.4.3-2
 - run desktop-file-validate in %%check
 

+ 4 - 1
j/jpegoptim/jpegoptim-vl.spec

@@ -1,5 +1,5 @@
 Name:	jpegoptim
-Version:	1.4.1
+Version:	1.4.3
 Release:	1%{?_dist_release}
 Summary:	Utility to optimize jpeg files
 Summary(ja):	jpeg ファイルを最適化するためのユーティリティ
@@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.4.3-1
+- new upstream release
+
 * Sun Jun 29 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.4.1-1
 - new upstream release
 

+ 4 - 1
k/keybinder/keybinder-vl.spec

@@ -1,7 +1,7 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 
 Name:           keybinder
-Version:        0.3.0
+Version:        0.3.1
 Release:        1%{?_dist_release}
 Summary:        library for registering global keyboard shortcuts
 
@@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.1-1
+- new upstream release
+
 * Sun Jul 15 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.0-1
 - new upstream release
 

+ 4 - 1
o/optipng/optipng-vl.spec

@@ -1,5 +1,5 @@
 Name:          optipng
-Version:       0.7.5
+Version:       0.7.6
 Release:       1%{?_dist_release}
 Summary:       PNG optimizer and converter
 Summary(ja):   PNG オプティマイザ と コンバータ
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.6-1
+- new upstream release
+
 * Sun Jun 29 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.5-1
 - new upstream release
 

+ 4 - 1
p/pngcrush/pngcrush-vl.spec

@@ -1,7 +1,7 @@
 Summary: Pngcrush is an optimizer for PNG files.
 Summary(ja): pngcrush - PNG ファイルの最適化ツール
 Name: pngcrush
-Version: 1.7.76
+Version: 1.8.1
 Release: 1%{?_dist_release}
 URL: http://pmt.sourceforge.net/pngcrush/
 Source:  http://prdownloads.sourceforge.net/pmt/%{name}-%{version}.tar.xz
@@ -62,6 +62,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c
 %{_bindir}/pngcrush
 
 %changelog
+* Sun Apr 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.8.1-1
+- new upstream release
+
 * Tue Jul 01 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.7.76-1
 - new upstream release
 

+ 7 - 8
r/rxvt-unicode/rxvt-unicode-vl.spec

@@ -1,19 +1,18 @@
 Name:           rxvt-unicode
-Version:        9.20
-Release:        2%{?_dist_release}
+Version:        9.22
+Release:        1%{?_dist_release}
 Summary:        Rxvt-unicode is an unicode version of rxvt
-Summary(ja):    rxvt のユニコードバージョン
+Summary(ja):    Rxvt-unicode は rxvt のユニコードバージョンです
 
 Group:          User Interface/X
 License:        GPLv2+
 URL:            http://software.schmorp.de/pkg/rxvt-unicode.html
-
 Source0:        http://dist.schmorp.de/%{name}/%{name}-%{version}.tar.bz2
 Patch0:         rxvt-unicode-scroll-modupdown.patch
 #convert from rxvt origina icon
 Source1:        urxvt.xpm
-
 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
+
 BuildRequires:  desktop-file-utils
 BuildRequires:  fontconfig-devel
 BuildRequires:  freetype2-devel
@@ -101,13 +100,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %doc README.FAQ INSTALL doc/README.xvt doc/etc doc/changes.txt COPYING
 %{_bindir}/*
 %{_mandir}/man*/*
-%{_libdir}/urxvt
 %{_datadir}/applications/*
+%{_libdir}/urxvt
 %{_datadir}/pixmaps/urxvt.xpm
 
 %changelog
-* Thu Dec 18 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 9.20-2
-- rebuilt with perl 5.16.3
+* Sun Jan 24 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> - 9.22-1
+- new upstream release
 
 * Sat May 24 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> - 9.20-1
 - new upstream release