Browse Source

thunderbird: fix branding
gnu-efi: NEW PACKAGE
others: new upstream release

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

Takemikaduchi 8 years ago
parent
commit
bb39adfb42

+ 4 - 1
c/chromium/chromium-vl.spec

@@ -12,7 +12,7 @@ Name:           chromium
 Summary:        Google's opens source browser project
 Summary(ja):    Googleのオープンソースウェブブラウザ
 #'
-Version:        44.0.2403.155
+Version:        44.0.2403.157
 Release:        1%{?_dist_release}
 License:        BSD-3-Clause, LGPL-2.1+
 Group:          Applications/Internet
@@ -357,6 +357,9 @@ fi || :
 
 
 %changelog
+* Sat Aug 22 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.157-1
+- update to 44.0.2403.157
+
 * Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.155-1
 - update to 44.0.2403.155
 

+ 10 - 4
f/firefox/firefox-vl.spec

@@ -1,7 +1,7 @@
 # do not include minor version number in MOZILLA_FIVE_HOME
-%global ffmajor 37.0
-%global geckomajor 37.0
-%global ffminor 1
+%global ffmajor 40.0
+%global geckomajor 40.0
+%global ffminor 2
 %global ffversion %{ffmajor}%{?ffminor:.%{ffminor}}
 %define ffdir %{_libdir}/firefox
 %global langpackdir %{ffdir}/langpacks
@@ -139,7 +139,7 @@ BuildRequires:  curl-devel
 BuildRequires:  wget
 # 
 BuildRequires:  gstreamer-devel
-BuildRequires:  gstreamer-plugins-devel
+BuildRequires:  gstreamer-plugins-base-devel
 BuildRequires:  pulseaudio-libs-devel
 
 Requires:       desktop-file-utils >= %{desktop_file_utils_version}
@@ -449,6 +449,12 @@ fi
 #---------------------------------------------------------------------
 
 %changelog
+* Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 40.0.2-1
+- update to 40.0.2
+- add BuildRequires:  gstreamer-plugins-base-devel
+- remove BuildRequires:  gstreamer-plugins-devel
+- update startup script (SOURCE21) 
+
 * Sun Apr 12 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 37.0.1-1
 - update to 37.0.1
 

+ 3 - 5
f/firefox/firefox.vine.sh.in

@@ -178,11 +178,9 @@ VINE_LANGPACK_CONFIG="$MOZ_EXTENSIONS_PROFILE_DIR/.vine-langpack-install"
 # MOZ_DISABLE_LANGPACKS disables language packs completely
 MOZILLA_DOWN=0
 if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
-    if [ -x $MOZ_XUL_DIR/mozilla-xremote-client ]; then
-        # Is firefox running?
-        $MOZ_XUL_DIR/mozilla-xremote-client -a firefox 'ping()' > /dev/null 2>&1
-        MOZILLA_DOWN=$?
-    fi
+    # Is firefox running?
+    exec ps ax | grep $MOZ_PROGRAM | grep -v grep > /dev/null 2>&1
+    MOZILLA_DOWN=$?
 fi
 
 # Modify language pack configuration only when firefox is not running 

+ 92 - 0
g/gnu-efi/gnu-efi-vl.spec

@@ -0,0 +1,92 @@
+Summary:        Building EFI Applications Using the GNU Toolchain
+Name:           gnu-efi
+Version:        3.0.2
+Release:        1%{?_dist_release}
+
+Group:          System Environment/Libraries
+License:        BSD
+URL:            http://sourceforge.net/projects/gnu-efi/
+Source0:        %{name}-%{version}.tar.bz2
+
+Patch0:         0001-Add-setjmp-back-once-again.patch
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+Packager:       Takemikaduchi
+
+%global efidir  vine
+
+%ifarch x86_64
+%global efiarch x86_64
+%endif
+%ifarch %{ix86}
+%global efiarch ia32
+%endif
+
+
+%description
+Develop EFI applications for ARM-64, ARM-32, x86_64, IA-64 (IPF),
+and IA-32 (x86) platforms using the GNU toolchain and the EFI
+development environment.
+
+
+%package        devel
+Summary:        Development tools for %{name}
+Summary(ja):    %{name} の開発環境
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+
+%description    devel
+Header files and libraries for building a extension library for the %{name}.
+
+
+%package        utils
+Summary:        Utilities for EFI systems
+Group:          Applications/System
+
+%description utils
+This package contains utilties for debugging and developing EFI systems.
+
+
+%prep
+%setup -q
+%patch0 -p1
+
+%build
+make
+make apps
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install INSTALLROOT=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir}
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+mkdir -p $RPM_BUILD_ROOT%{_libdir}/gnuefi
+mv $RPM_BUILD_ROOT%{_libdir}/*.lds $RPM_BUILD_ROOT%{_libdir}/*.o $RPM_BUILD_ROOT%{_libdir}/gnuefi
+
+mkdir -p $RPM_BUILD_ROOT/boot/efi/EFI/%{efidir}/
+mv %{efiarch}/apps/{route80h.efi,modelist.efi} $RPM_BUILD_ROOT/boot/efi/EFI/%{efidir}/
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%doc README.gnuefi README.efilib README.elilo ChangeLog
+%defattr(-,root,root,-)
+%{_libdir}/*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/efi
+
+%files utils
+%dir /boot/efi/EFI/%{efidir}/
+%attr(0644,root,root) /boot/efi/EFI/%{efidir}/*.efi
+
+
+%changelog
+* Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.2-1
+- initial build based on fedora

+ 6 - 2
g/gpsd/gpsd-vl.spec

@@ -5,7 +5,7 @@ Summary: Service daemon for mediating access to a GPS
 Summary(ja): GPS にアクセスするためのサービスデーモン
 
 Name: gpsd
-Version: 3.11
+Version: 3.15
 Release: 1%{?_dist_release}
 
 Group: System Environment/Daemons
@@ -155,6 +155,7 @@ fi
 %{_bindir}/gpsprof
 %{_bindir}/gpsmon
 %{_bindir}/gpsctl
+%{_bindir}/ntpshmmon
 %{_libdir}/libgps*.so.*
 /lib/udev/gpsd*
 %{python_sitearch}/gps*
@@ -166,6 +167,7 @@ fi
 %{_mandir}/man1/gpsprof.1*
 %{_mandir}/man1/gpsmon.1*
 %{_mandir}/man1/gpsctl.1*
+%{_mandir}/man1/ntpshmmon.1*
 
 %files devel
 %defattr(-,root,root,-)
@@ -180,7 +182,6 @@ fi
 %{_mandir}/man3/libQgpsmm.3*
 %{_mandir}/man3/libgps.3*
 %{_mandir}/man3/libgpsmm.3*
-%{_mandir}/man3/libgpsd.3*
 %{_mandir}/man5/gpsd_json.5*
 %{_mandir}/man5/srec.5*
 
@@ -210,6 +211,9 @@ fi
 
 
 %changelog
+* Sat Aug 22 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.15-1
+- new upstream release
+
 * Sat Dec 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.11-1
 - new upstream release
 - change BuildRequires: eudev-libudev-devel instead of libudev-devel

+ 56 - 24
g/grub/grub-vl.spec

@@ -1,4 +1,4 @@
-%define efi_support 0
+%define efi_support 1
 
 %ifarch %{ix86}
 %define _host_cpu i386
@@ -12,7 +12,7 @@ Summary: grub - a Multiboot boot loader.
 Summary(ja): grub - マルチブートローダ
 Name: grub
 Version: 0.97
-Release: 4%{?_dist_release}
+Release: 6%{?_dist_release}
 License: GPL
 Group: System Environment/Base
 URL: http://www.gnu.org/software/grub/
@@ -20,26 +20,37 @@ URL: http://www.gnu.org/software/grub/
 Source0: ftp://alpha.gnu.org/gnu/grub/%{name}-%{version}.tar.gz
 Source1: %{defshell}
 
+# This is from
 # http://git.kernel.org/?p=boot/grub-fedora/grub-fedora.git;a=summary
-Patch1: grub-fedora-15.patch
-
-#Patch10: grub-0.97-prototypes.patch
-#Patch100: ext3_256byte_inode.diff
-#Patch110: grub-0.97-ext4-support.patch
-#Patch120: grub-0.97-build-id=none.patch
-#Patch130: grub-0.97-tinfo.patch
+Patch0: grub-fedora-18.patch
+Patch1: 0001-Fix-strange-compilation-problem.patch
+Patch2: 0003-Move_network-disable-earlier.patch
+Patch3: 0005-Fix-Apple-CD-fixup.patch
+Patch4: 0006-Avoid-broken-uefi-fs.patch
+Patch5: 0007-fix-uefi-stride.patch
+Patch6: 0008-fix-gop.patch
+
+# for Vine
+Patch1000: grub-fedora-18-uninitialized.patch
+Patch1001: grub-fedora-18-static-efi.patch
+Patch1002: grub-0.97-grub-install-vine.patch
 
 ExclusiveArch: %{ix86} x86_64
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 Requires(post): install-info, sed, grep, coreutils
 Requires(preun): install-info
 Requires: mktemp
+Requires: util-linux
 BuildRequires: ncurses-devel >= 5.6
 BuildRequires: glibc-static
 %ifarch x86_64
 BuildRequires: compat32-glibc-devel
 BuildRequires: compat32-glibc-static
 %endif
+%if %{efi_support}
+BuildRequires: gnu-efi >= 3.0e-9
+%endif
+BuildRequires: texinfo
 
 %description
 GNU GRUB is a Multiboot boot loader. 
@@ -64,23 +75,30 @@ GNU GRUB はマルチブートローダです。
 作業を担当します。カーネルは、それを受けて、オペレーティング
 システムの他の部分 (通常は GNU) を初期化します。
 
+
 %prep
 %setup -q
-%patch1 -p1 -b .fedora
-#%patch10 -p1 -b .prototypes
-#%patch100 -p1 -b .ext3_256byte_inode
-#%patch110 -p1 -b .ext4
-#%patch120 -p1 -b .build-id
-#%patch130 -p1 -b .ncurses5
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch1000 -p1
+%patch1001 -p1
+%patch1002 -p1
 
 # Modify grub to show the full version number
-sed -i 's/0\.97/%{version}-%{release}/' configure.in
+sed -i 's/0\.97/%{version}-%{release}/' configure.ac
 
 %build
-autoreconf
-autoconf
+autoreconf -if
 GCCVERS=$(gcc --version | head -1 | cut -d\  -f3 | cut -d. -f1)
-CFLAGS="-Os -g -fno-strict-aliasing -Wall -Werror -Wno-shadow -Wno-unused"
+# add "-fno-reorder-functions"
+# https://bugzilla.redhat.com/show_bug.cgi?id=718722
+# https://bugs.launchpad.net/ubuntu/+source/grub/+bug/837815
+CFLAGS="-Os -g -fno-strict-aliasing -Wall -Werror -Wno-shadow -Wno-unused -fno-reorder-functions"
 if [ "$GCCVERS" == "4" ]; then
   CFLAGS="$CFLAGS -Wno-pointer-sign"
 fi
@@ -88,15 +106,18 @@ export CFLAGS
 
 %if %{efi_support}
 %configure --sbindir=/sbin \
-  --disable-auto-linux-mem-opt
+  --disable-auto-linux-mem-opt \
+  --datarootdir=%{_datadir} \
   --with-platform=efi
 %__make
 mv efi/grub.efi .
 make clean
 %endif
-
+autoreconf -if
 CFLAGS="$CFLAGS -static" 
+export CFLAGS
 %configure --sbindir=/sbin \
+  --datarootdir=%{_datadir} \
   --disable-auto-linux-mem-opt
 %__make
 
@@ -142,7 +163,7 @@ fi
 %doc COPYING INSTALL README AUTHORS BUGS ChangeLog NEWS THANKS TODO MAINTENANCE
 /boot/grub
 %if %{efi_support}
-%attr(0755,root,root) /boot/efiu/EFI/vine
+%attr(0755,root,root) /boot/efi/EFI/vine
 %endif
 %{_syssbindir}/*
 %{_sbindir}/*
@@ -153,6 +174,17 @@ fi
 %{_mandir}/man*/*
 
 %changelog
+* Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.97-6
+- add Patch 2,3,4,5,6 from fedora
+- add Requires: util-linux
+- update Patch1002 (grub-0.97-grub-install-vine.patch)
+
+* Sun Jun 14 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.97-5
+- add BuildRequires: texinfo,gnu-efi
+- update Patch0 from fedora
+- add Patch1 from fedora
+- add Patch1000,1001,1002
+
 * Fri May 27 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-4
 - switch to grub-fedora.git to support new features (ext4/efi/...)
 
@@ -187,13 +219,13 @@ fi
 * Tue Sep 5 2006 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl5
 - add initrd in menu.lst file created by defaultmenu.sh
 
-* Thu Jun 26 2006 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl4
+* Mon Jun 26 2006 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl4
 - fix date of previous changelog entry
 - escape macro of past changelog entries
 - change Source1: menu.lst.vine to defautmenu.sh
 - invoke defaultmenu.sh on %%post scriptlet
 
-* Thu Jun 21 2006 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl3
+* Wed Jun 21 2006 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl3
 - remove Requires: ncurses, gpm, bash
 
 * Thu May 12 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.97-0vl2

+ 4 - 1
nonfree/self-build-chromium-extra-plugins/chromium-extra-plugins-vl.spec

@@ -1,7 +1,7 @@
 Summary:        The proprietary plugins for chromium
 Summary(ja):    Chromium 用プロプライエタリプラグイン
 Name:           chromium-extra-plugins
-Version:        44.0.2403.155
+Version:        44.0.2403.157
 Release:        1%{?_dist_release}
 License:        BSD-3-Clause, LGPL-2.1+
 Group:          Applications/Internet
@@ -41,6 +41,9 @@ install -m644 opt/google/chrome/PepperFlash/* %{buildroot}%{_libdir}/chromium/Pe
 %{_libdir}/chromium/PepperFlash/
 
 %changelog
+* Sun Aug 23 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.157-1
+- new upstream release
+
 * Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.155-1
 - new upstream release
 

+ 4 - 1
nonfree/self-build-chromium-extra-plugins/self-build-chromium-extra-plugins-vl.spec

@@ -6,7 +6,7 @@
 Summary:    The proprietary plugins for chromium
 Summary(ja):    Chromium 用プロプライエタリプラグイン
 Name:		self-build-%{pkgname}
-Version:	44.0.2403.155
+Version:	44.0.2403.157
 Release: 	1%{?_dist_release}
 Source0:	%{pkgname}-vl.spec
 
@@ -80,6 +80,9 @@ package manager.
 %{_datadir}/%{name}/*
 
 %changelog
+* Sun Aug 23 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.157-1
+- new upstream release
+
 * Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2403.155-1
 - new upstream release
 

+ 22 - 12
t/thunderbird/thunderbird-vl.spec

@@ -2,7 +2,7 @@
 %define tbmajor 38.1.0
 #%define tbversion %{tbmajor}.10
 %define tbversion %{tbmajor}
-%define tbrelease 1%{?_dist_release}
+%define tbrelease 2%{?_dist_release}
 
 # The tarball is pretty inconsistent with directory structure.
 # Sometimes there is a top level directory.  That goes here.
@@ -46,17 +46,20 @@ Group:		Applications/Internet
 
 Source0:	ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%{tbversion}/source/thunderbird-%{version}.source.tar.bz2
 Source1:	ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%{tbversion}/linux-x86_64/xpi/ja.xpi
-Source1010:	mozconfig-thunderbird-vine6
-Source1020:	mozconfig-thunderbird-vine7
+# from https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/6.0/source/thunderbird-6.0.source.tar.bz2
+Source2:	thunderbird-legacy-aurora.tar.bz2
 Source12:	thunderbird-vine-default-prefs.js
 Source20:	thunderbird.desktop
 Source21:	thunderbird.vine.sh.in
 Source30:	thunderbird-open-browser.sh
-Source40:	thunderbird-unofficial-brandig-tb-brand.properties
-Source41:	thunderbird-unofficial-brandig-tb-brand.dtd
-Source42:	thunderbird-unofficial-brandig-tb-ja-brand.properties
-Source43:	thunderbird-unofficial-brandig-tb-ja-brand.dtd
+Source40:	thunderbird-unofficial-branding-tb-brand.properties
+Source41:	thunderbird-unofficial-branding-tb-brand.dtd
+Source42:	thunderbird-unofficial-branding-tb-ja-brand.properties
+Source43:	thunderbird-unofficial-branding-tb-ja-brand.dtd
+Source44:	tb-about-wordmark.png
 Source100:	find-external-requires
+Source1010:	mozconfig-thunderbird-vine6
+Source1020:	mozconfig-thunderbird-vine7
 
 # locale sources
 #%define MOZ_BUILD_LOCALES "ja"
@@ -72,7 +75,7 @@ Source100:	find-external-requires
 Patch0:         thunderbird-version.patch
 
 # customization patches
-Patch1:		thunderbird-38.0.1-default-a4-paper.patch
+Patch1:		thunderbird-38.1.0-default-a4-paper.patch
 
 
 # Linux specific
@@ -159,10 +162,8 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{version_internal}/' %{P:%%PATCH0} \
     > version.patch
 %{__patch} -p1 -b --suffix .version --fuzz=0 < version.patch
 
-cd mozilla
 %patch1 -p1 -b .default-a4
 
-cd -
 %{__rm} -f .mozconfig
 %if %{build_vine6}
 %{__cp} %{SOURCE1010} .mozconfig
@@ -171,9 +172,11 @@ cd -
 %{__cp} %{SOURCE1020} .mozconfig
 %endif
 
-# setup unofficial branding name
+# setup legacy aurora branding name
+tar xvjf %{SOURCE2} 
 %{__cp} %{SOURCE40} mail/branding/aurora/locales/en-US/brand.properties
 %{__cp} %{SOURCE41} mail/branding/aurora/locales/en-US/brand.dtd
+%{__cp} %{SOURCE44} mail/branding/aurora/content/about-wordmark.png
 
 %patch100 -p1 -b .addons
 %if %{build_vine6}
@@ -324,8 +327,9 @@ unzip %{SOURCE1} -d lang_tmp
 %{__cp} %{SOURCE42} lang_tmp/chrome/ja/locale/ja/branding/brand.properties
 %{__cp} %{SOURCE43} lang_tmp/chrome/ja/locale/ja/branding/brand.dtd
 
+%{__mkdir_p} -p $RPM_BUILD_ROOT%{mozappdir}/langpacks
 cd lang_tmp; \
-zip -r $RPM_BUILD_ROOT%{mozappdir}/extensions/langpack-ja@thunderbird.mozilla.org.xpi chrome chrome.manifest install.rdf
+zip -r $RPM_BUILD_ROOT%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org.xpi chrome chrome.manifest install.rdf
 
 
 %clean
@@ -368,6 +372,12 @@ fi
 #===============================================================================
 
 %changelog
+* Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 38.1.0-2
+- update startup script (SOURCE21)
+- update Patch1
+- add Source2 (thunderbird-legacy-aurora.tar.bz2)
+- add Source44 (tb-about-wordmark.png)
+
 * Sat Jul 11 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 38.1.0-1
 - new upstream release
 

+ 6 - 4
u/udisks2/udisks2-vl.spec

@@ -12,8 +12,8 @@
 
 Summary: Storage Management Service
 Name: udisks2
-Version: 2.1.5
-Release: 2%{?_dist_release}
+Version: 2.1.6
+Release: 1%{?_dist_release}
 License: GPLv2+
 Group: System Environment/Libraries
 URL: http://www.freedesktop.org/wiki/Software/udisks
@@ -134,8 +134,7 @@ rm -rf $RPM_BUILD_ROOT
 /lib/udev/rules.d/80-udisks2.rules
 %{_bindir}/udisksctl
 %{_syssbindir}/umount.udisks2
-%dir %{_prefix}/lib/udisks2
-%{_prefix}/lib/udisks2/udisksd
+%{_libexecdir}/udisks2/udisksd
 %{_libdir}/libudisks2.so.*
 %{_libdir}/girepository-1.0/UDisks-2.0.typelib
 %{_datadir}/bash-completion/completions/udisksctl
@@ -159,6 +158,9 @@ rm -rf $RPM_BUILD_ROOT
 
 #
 %changelog
+* Sun Aug 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.6-1
+- new upstream release
+
 * Sun May 24 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.5-2
 - remove unused files
 - change path of umount.udisks2

+ 4 - 1
w/webkitgtk4/webkitgtk4-vl.spec

@@ -6,7 +6,7 @@
         cp -p %1 _license_files/$(echo '%1' | sed -e 's!/!.!g')
 
 Name:           webkitgtk4
-Version:        2.8.4
+Version:        2.8.5
 Release:        1%{?_dist_release}
 Summary:        GTK+ Web content engine library
 
@@ -165,6 +165,9 @@ make %{?_smp_mflags} -C %{_target_platform}
 %{_datadir}/gir-1.0/WebKit2WebExtension-4.0.gir
 
 %changelog
+* Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.5-1
+- new upstream release
+
 * Sun Jul 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-1
 - new upstream release
 

+ 7 - 1
w/wine/wine-vl.spec

@@ -1,4 +1,4 @@
-%define pkg_major_version 1.7.48
+%define pkg_major_version 1.7.50
 %define pkg_name wine
 %define pkg_release 1%{?_dist_release}
 
@@ -576,6 +576,12 @@ fi
 
 #--------------------------------------------------------------------
 %changelog
+* Sun Aug 23 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.50-1
+- update to 1.7.50
+
+* Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.49-1
+- update to 1.7.49
+
 * Sat Aug 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.48-1
 - update to 1.7.48