rpms/akmods/F-18 akmods-shutdown, NONE, 1.1 akmods-shutdown.service, NONE, 1.1 akmods.service.in, NONE, 1.1 akmods.service, 1.2, NONE
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23037
Added Files:
akmods-shutdown akmods-shutdown.service akmods.service.in
Removed Files:
akmods.service
Log Message:
Add new files.
--- NEW FILE akmods-shutdown ---
#!/bin/bash
#
# akmods-shutdown - Helper script to build kernel modules on shutdown
# Copyright (c) 2012 Richard shaw <hobbes1069(a)gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
echo "Building modules for all installed kernels."
for kernel in /usr/src/kernels/*; do
kernel=$(basename $kernel)
/usr/sbin/akmods --force --kernels $kernel
done
--- NEW FILE akmods-shutdown.service ---
[Unit]
Description=Builds and install new kmods from akmod packages
Before=shutdown.service reboot.service halt.service
Conflicts=shutdown.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=-/usr/sbin/akmods --from-init
[Install]
WantedBy=multi-user.target
--- NEW FILE akmods.service.in ---
[Unit]
Description=Builds and install new kmods from akmod packages
Before=prefdm.service
[Service]
Type=oneshot
RemainAfterExit=true
ExecStart=-/usr/sbin/akmods --from-init
[Install]
WantedBy=multi-user.target
--- akmods.service DELETED ---
11 years, 10 months
rpms/akmods/F-18 akmods.spec,1.15,1.16 akmodsposttrans,1.2,1.3
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22863
Modified Files:
akmods.spec akmodsposttrans
Log Message:
* Fri Jun 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.5.1-2
- Add service file to run again on shutdown.
- Add conditional for Fedora 18 to specify correct systemd graphical service.
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/F-18/akmods.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- akmods.spec 12 Apr 2012 22:25:58 -0000 1.15
+++ akmods.spec 31 Dec 2012 14:26:51 -0000 1.16
@@ -1,6 +1,6 @@
Name: akmods
-Version: 0.4.0
-Release: 4%{?dist}
+Version: 0.5.1
+Release: 2%{?dist}
Summary: Automatic kmods build and install tool
Group: System Environment/Kernel
@@ -10,8 +10,10 @@
Source1: akmods.1
Source2: akmodsbuild
Source3: akmodsbuild.1
-Source4: akmods.service
+Source4: akmods.service.in
Source5: akmodsposttrans
+Source6: akmods-shutdown
+Source7: akmods-shutdown.service
BuildArch: noarch
@@ -49,11 +51,11 @@
%prep
-echo nothing to prep
+echo Nothing to prep.
%build
-echo nothing to build
+echo Nothing to build.
%install
@@ -63,8 +65,17 @@
install -D -pm 0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/akmods.1
install -D -pm 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -pm 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
-install -D -pm 0644 %{SOURCE4} %{buildroot}%{_unitdir}/akmods.service
-install -D -pm 0755 %{SOURCE5} %{buildroot}%{_sysconfdir}/kernel/postinst.d/akmods
+install -D -pm 0755 %{SOURCE6} %{buildroot}%{_bindir}/akmods-shutdown
+install -D -pm 0755 %{SOURCE5} %{buildroot}%{_sysconfdir}/kernel/postinst.d/akmodsposttrans
+install -D -pm 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods-shutdown.service
+
+%if 0%{?fedora} >= 18
+sed "s|@SERVICE(a)|display-manager.service|" %{SOURCE4} >\
+ %{buildroot}%{_unitdir}/akmods.service
+%else
+sed "s|@SERVICE(a)|prefdm.service|" %{SOURCE4} >\
+ %{buildroot}%{_unitdir}/akmods.service
+%endif
%pre
@@ -79,6 +90,7 @@
if [ $1 -eq 1 ] ; then
# Initial installation
/bin/systemctl enable akmods.service >/dev/null 2>&1 || :
+ /bin/systemctl enable akmods-shutdown.service >/dev/null 2>&1 || :
fi
%preun
@@ -86,20 +98,28 @@
# Package removal, not upgrade
/bin/systemctl --no-reload disable akmods.service > /dev/null 2>&1 || :
/bin/systemctl stop akmods.service > /dev/null 2>&1 || :
+ /bin/systemctl --no-reload disable akmods-shutdown.service > /dev/null 2>&1 || :
+ /bin/systemctl stop akmods-shutdown.service > /dev/null 2>&1 || :
fi
%files
%{_bindir}/akmodsbuild
+%{_bindir}/akmods-shutdown
%{_sbindir}/akmods
-%{_sysconfdir}/kernel/postinst.d/akmods
+%{_sysconfdir}/kernel/postinst.d/akmodsposttrans
%{_unitdir}/akmods.service
+%{_unitdir}/akmods-shutdown.service
%{_usrsrc}/akmods
%attr(-,akmods,akmods) %{_localstatedir}/cache/akmods
%{_mandir}/man1/*
%changelog
+* Fri Jun 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.5.1-2
+- Add service file to run again on shutdown.
+- Add conditional for Fedora 18 to specify correct systemd graphical service.
+
* Thu Apr 12 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.4.0-4
- Rebuilt
Index: akmodsposttrans
===================================================================
RCS file: /cvs/free/rpms/akmods/F-18/akmodsposttrans,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- akmodsposttrans 1 Feb 2009 13:21:31 -0000 1.2
+++ akmodsposttrans 31 Dec 2012 14:26:51 -0000 1.3
@@ -1,6 +1,6 @@
#!/bin/bash -
#
-# akmodposttras - Calls akmods for newly installed kernels
+# akmodposttrans - Calls akmods for newly installed kernels
#
# Copyright (c) 2009 Thorsten Leemhuis <fedora(a)leemhuis.info>
#
11 years, 10 months
rpms/akmods/devel akmods.spec,1.16,1.17
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22549
Modified Files:
akmods.spec
Log Message:
* Fri Jun 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.5.1-2
- Add service file to run again on shutdown.
- Add conditional for Fedora 18 to specify correct systemd graphical service.
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/devel/akmods.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- akmods.spec 22 Dec 2012 16:02:20 -0000 1.16
+++ akmods.spec 31 Dec 2012 14:15:10 -0000 1.17
@@ -1,6 +1,6 @@
Name: akmods
Version: 0.5.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Automatic kmods build and install tool
Group: System Environment/Kernel
@@ -51,15 +51,11 @@
%prep
-%if 0%{?fedora} >= 18
-sed -i "s|@SERVICE(a)|display-manager.service|" %{SOURCE4}
-%else
-sed -i "s|@SERVICE(a)|prefdm.service|" %{SOURCE4}
-%endif
+echo Nothing to prep.
%build
-echo nothing to build
+echo Nothing to build.
%install
@@ -70,9 +66,16 @@
install -D -pm 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -pm 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
install -D -pm 0755 %{SOURCE6} %{buildroot}%{_bindir}/akmods-shutdown
-install -D -pm 0644 %{SOURCE4} %{buildroot}%{_unitdir}/akmods.service
-install -D -pm 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods-shutdown.service
install -D -pm 0755 %{SOURCE5} %{buildroot}%{_sysconfdir}/kernel/postinst.d/akmodsposttrans
+install -D -pm 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods-shutdown.service
+
+%if 0%{?fedora} >= 18
+sed "s|@SERVICE(a)|display-manager.service|" %{SOURCE4} >\
+ %{buildroot}%{_unitdir}/akmods.service
+%else
+sed "s|@SERVICE(a)|prefdm.service|" %{SOURCE4} >\
+ %{buildroot}%{_unitdir}/akmods.service
+%endif
%pre
@@ -113,7 +116,7 @@
%changelog
-* Fri Jun 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.5.1-1
+* Fri Jun 01 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.5.1-2
- Add service file to run again on shutdown.
- Add conditional for Fedora 18 to specify correct systemd graphical service.
11 years, 10 months
rpms/meka/F-17 meka.spec,1.3,1.4
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/meka/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21251
Modified Files:
meka.spec
Log Message:
* Mon Dec 17 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.2.20120503svn
- Fixed supported archs (BZ #2611)
Index: meka.spec
===================================================================
RCS file: /cvs/nonfree/rpms/meka/F-17/meka.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- meka.spec 5 May 2012 16:59:18 -0000 1.3
+++ meka.spec 31 Dec 2012 13:20:24 -0000 1.4
@@ -3,7 +3,7 @@
Name: meka
Version: 0.80
-Release: 0.1.20120503svn%{?dist}
+Release: 0.2.20120503svn%{?dist}
Summary: Sega 8-bit machine emulator
License: MEKA and non-commercial
@@ -17,6 +17,9 @@
Source1: %{name}.sh
Source2: %{name}.desktop
+# This is package contains ix86 asm code
+ExclusiveArch: i686 x86_64
+
BuildRequires: allegro5-devel
BuildRequires: allegro5-addon-audio-devel
BuildRequires: allegro5-addon-image-devel
@@ -124,6 +127,9 @@
%changelog
+* Mon Dec 17 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.2.20120503svn
+- Fixed supported archs (BZ #2611)
+
* Sat May 05 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.1.20120503svn
- Updated to an upstream preview of version 0.80
- Minor clean up for rpm >= 4.9
11 years, 10 months
rpms/meka/F-18 meka.spec,1.3,1.4
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/meka/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21104
Modified Files:
meka.spec
Log Message:
* Mon Dec 17 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.2.20120503svn
- Fixed supported archs (BZ #2611)
Index: meka.spec
===================================================================
RCS file: /cvs/nonfree/rpms/meka/F-18/meka.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- meka.spec 5 May 2012 16:58:15 -0000 1.3
+++ meka.spec 31 Dec 2012 13:19:37 -0000 1.4
@@ -3,7 +3,7 @@
Name: meka
Version: 0.80
-Release: 0.1.20120503svn%{?dist}
+Release: 0.2.20120503svn%{?dist}
Summary: Sega 8-bit machine emulator
License: MEKA and non-commercial
@@ -17,6 +17,9 @@
Source1: %{name}.sh
Source2: %{name}.desktop
+# This is package contains ix86 asm code
+ExclusiveArch: i686 x86_64
+
BuildRequires: allegro5-devel
BuildRequires: allegro5-addon-audio-devel
BuildRequires: allegro5-addon-image-devel
@@ -124,6 +127,9 @@
%changelog
+* Mon Dec 17 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.2.20120503svn
+- Fixed supported archs (BZ #2611)
+
* Sat May 05 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.1.20120503svn
- Updated to an upstream preview of version 0.80
- Minor clean up for rpm >= 4.9
11 years, 10 months
rpms/meka/devel meka.spec,1.3,1.4
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/meka/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv20919
Modified Files:
meka.spec
Log Message:
* Mon Dec 17 2012 Andrea Musuruane <musuruan(a)gmail.com> 0.80-0.2.20120503svn
- Fixed supported archs (BZ #2611)
11 years, 10 months
rpms/unrar/devel unrar.spec,1.26,1.27
by Conrad Meyer
Author: konradm
Update of /cvs/nonfree/rpms/unrar/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17661
Modified Files:
unrar.spec
Log Message:
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-3
- Try at #2357 again :). Instead of arbitrary date, use rpm %version
Index: unrar.spec
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- unrar.spec 30 Dec 2012 22:53:14 -0000 1.26
+++ unrar.spec 30 Dec 2012 23:44:11 -0000 1.27
@@ -1,8 +1,6 @@
-%global date 2012.12.30
-
Name: unrar
Version: 4.2.4
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Utility for extracting, testing and viewing RAR archives
License: Freeware with further limitations
Group: Applications/Archiving
@@ -29,9 +27,8 @@
Summary: Decompress library for RAR v3 archives
Group: System Environment/Libraries
-Provides: unrardate%{_isa} = %{date}
# Packages using libunrar must Requires this:
-#{?unrardate:Requires: unrardate%{_isa} = %{unrardate}}
+#{?unrar_version:Requires: libunrar%{_isa} = %{unrar_version}}
%description -n libunrar
The libunrar library allows programs linking against it to decompress
@@ -80,7 +77,7 @@
mkdir -p %{buildroot}%{_sysconfdir}/rpm
cat > %{buildroot}%{_sysconfdir}/rpm/macros.unrar << EOF
# unrar RPM Macros
-%unrardate %{date}
+%unrar_version %{version}
EOF
touch -r license.txt %{buildroot}%{_sysconfdir}/rpm/macros.unrar
@@ -127,6 +124,9 @@
%changelog
+* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-3
+- Try at #2357 again :). Instead of arbitrary date, use rpm %%version
+
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-2
- Add RPM dependency check to ensure dependent packages break at install time
rather than use time (#2357) (derived from live555 package)
11 years, 10 months
rpms/unrar/devel unrar.spec,1.25,1.26
by Conrad Meyer
Author: konradm
Update of /cvs/nonfree/rpms/unrar/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16472
Modified Files:
unrar.spec
Log Message:
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-2
- Add RPM dependency check to ensure dependent packages break at install time
rather than use time (#2357) (derived from live555 package)
Index: unrar.spec
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- unrar.spec 30 Dec 2012 22:12:28 -0000 1.25
+++ unrar.spec 30 Dec 2012 22:53:14 -0000 1.26
@@ -1,6 +1,8 @@
+%global date 2012.12.30
+
Name: unrar
Version: 4.2.4
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Utility for extracting, testing and viewing RAR archives
License: Freeware with further limitations
Group: Applications/Archiving
@@ -12,6 +14,7 @@
Patch0: unrar-3.9.10-missing-recvol-symbols.patch
Patch1: unrar-4.2.3-fix-build.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
Requires(post): chkconfig
Requires(preun): chkconfig
@@ -26,6 +29,10 @@
Summary: Decompress library for RAR v3 archives
Group: System Environment/Libraries
+Provides: unrardate%{_isa} = %{date}
+# Packages using libunrar must Requires this:
+#{?unrardate:Requires: unrardate%{_isa} = %{unrardate}}
+
%description -n libunrar
The libunrar library allows programs linking against it to decompress
existing RAR v3 archives.
@@ -69,6 +76,13 @@
# handle alternatives
touch %{buildroot}%{_bindir}/unrar
+# RPM Macros support
+mkdir -p %{buildroot}%{_sysconfdir}/rpm
+cat > %{buildroot}%{_sysconfdir}/rpm/macros.unrar << EOF
+# unrar RPM Macros
+%unrardate %{date}
+EOF
+touch -r license.txt %{buildroot}%{_sysconfdir}/rpm/macros.unrar
%clean
@@ -108,10 +122,15 @@
%files -n libunrar-devel
%defattr(-,root,root,-)
%doc license.txt readme.txt
+%config %{_sysconfdir}/rpm/macros.unrar
%{_includedir}/*
%changelog
+* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-2
+- Add RPM dependency check to ensure dependent packages break at install time
+ rather than use time (#2357) (derived from live555 package)
+
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-1
- Bump version (#2508)
- Fix unrar-4.2.3-fix-build.patch diff to have context
11 years, 10 months
rpms/unrar/devel unrar.spec,1.24,1.25
by Conrad Meyer
Author: konradm
Update of /cvs/nonfree/rpms/unrar/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14781
Modified Files:
unrar.spec
Log Message:
Oops, reference bug #2508 in rpm changelog
Index: unrar.spec
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- unrar.spec 30 Dec 2012 22:08:36 -0000 1.24
+++ unrar.spec 30 Dec 2012 22:12:28 -0000 1.25
@@ -113,7 +113,7 @@
%changelog
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-1
-- Bump version
+- Bump version (#2508)
- Fix unrar-4.2.3-fix-build.patch diff to have context
* Thu May 28 2012 Marcos Mello <marcosfrm AT gmail DOT com> - 4.2.3-1
11 years, 10 months
rpms/unrar/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 unrar-4.2.3-fix-build.patch, 1.1, 1.2 unrar.spec, 1.23, 1.24
by Conrad Meyer
Author: konradm
Update of /cvs/nonfree/rpms/unrar/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14646
Modified Files:
.cvsignore sources unrar-4.2.3-fix-build.patch unrar.spec
Log Message:
* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-1
- Bump version
- Fix unrar-4.2.3-fix-build.patch diff to have context
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 3 Jun 2012 21:14:44 -0000 1.9
+++ .cvsignore 30 Dec 2012 22:08:36 -0000 1.10
@@ -1 +1 @@
-unrarsrc-4.2.3.tar.gz
+unrarsrc-4.2.4.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 3 Jun 2012 21:14:44 -0000 1.9
+++ sources 30 Dec 2012 22:08:36 -0000 1.10
@@ -1 +1 @@
-6c6c778dc08246065c89f67fe06a7134 unrarsrc-4.2.3.tar.gz
+8ea9d1b4139474b282d76e627a2de3e4 unrarsrc-4.2.4.tar.gz
unrar-4.2.3-fix-build.patch:
makefile.unix | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: unrar-4.2.3-fix-build.patch
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar-4.2.3-fix-build.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unrar-4.2.3-fix-build.patch 3 Jun 2012 21:14:44 -0000 1.1
+++ unrar-4.2.3-fix-build.patch 30 Dec 2012 22:08:36 -0000 1.2
@@ -1,14 +1,29 @@
---- unrar/makefile.unix.orig 2012-05-15 02:31:03.000000000 -0300
-+++ unrar/makefile.unix 2012-05-28 11:52:22.544857061 -0300
-@@ -117 +117 @@
+--- unrar/makefile.unix.orig 2012-12-30 14:05:10.517876487 -0800
++++ unrar/makefile.unix 2012-12-30 14:05:10.519876460 -0800
+@@ -114,22 +114,22 @@
+ uninstall: uninstall-unrar
+
+ clean:
- @rm -f *.o *.bak *~
+ @rm -f *.o *.bak *~ unrar
-@@ -119 +119 @@
+
-unrar: clean $(OBJECTS) $(UNRAR_OBJ)
+unrar: $(OBJECTS) $(UNRAR_OBJ)
-@@ -125 +125 @@
+ @rm -f unrar
+ $(LINK) -o unrar $(LDFLAGS) $(OBJECTS) $(UNRAR_OBJ) $(LIBS)
+ $(STRIP) unrar
+
+ sfx: WHAT=SFX_MODULE
-sfx: clean $(OBJECTS)
+sfx: $(OBJECTS)
-@@ -132 +132 @@
+ @rm -f default.sfx
+ $(LINK) -o default.sfx $(LDFLAGS) $(OBJECTS)
+ $(STRIP) default.sfx
+
+ lib: WHAT=RARDLL
+ lib: CXXFLAGS+=$(LIBFLAGS)
-lib: clean $(OBJECTS) $(LIB_OBJ)
+lib: $(OBJECTS) $(LIB_OBJ)
+ @rm -f libunrar.so
+ $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
+
Index: unrar.spec
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- unrar.spec 3 Jun 2012 21:14:44 -0000 1.23
+++ unrar.spec 30 Dec 2012 22:08:36 -0000 1.24
@@ -1,5 +1,5 @@
Name: unrar
-Version: 4.2.3
+Version: 4.2.4
Release: 1%{?dist}
Summary: Utility for extracting, testing and viewing RAR archives
License: Freeware with further limitations
@@ -112,6 +112,10 @@
%changelog
+* Sun Dec 30 2012 Conrad Meyer <konrad(a)tylerc.org> - 4.2.4-1
+- Bump version
+- Fix unrar-4.2.3-fix-build.patch diff to have context
+
* Thu May 28 2012 Marcos Mello <marcosfrm AT gmail DOT com> - 4.2.3-1
- New version
- Include all header files in the -devel package (#1988)
11 years, 10 months