rpms/openvpn/EL-4 .cvsignore, 1.9, 1.10 openvpn.spec, 1.13, 1.14 sources, 1.9, 1.10

Steven Pritchard (steve) fedora-extras-commits at redhat.com
Fri Aug 1 16:57:41 UTC 2008


Author: steve

Update of /cvs/pkgs/rpms/openvpn/EL-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv511

Modified Files:
	.cvsignore openvpn.spec sources 
Log Message:
Update to 2.1_rc9.


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/openvpn/EL-4/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore	21 Mar 2007 22:11:49 -0000	1.9
+++ .cvsignore	1 Aug 2008 16:57:11 -0000	1.10
@@ -1,2 +1,2 @@
-openvpn-2.1_rc2.tar.gz
-openvpn-2.1_rc2.tar.gz.asc
+openvpn-2.1_rc9.tar.gz
+openvpn-2.1_rc9.tar.gz.asc


Index: openvpn.spec
===================================================================
RCS file: /cvs/pkgs/rpms/openvpn/EL-4/openvpn.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- openvpn.spec	21 Mar 2007 22:11:49 -0000	1.13
+++ openvpn.spec	1 Aug 2008 16:57:11 -0000	1.14
@@ -1,29 +1,37 @@
-%define prerelease rc2
+%define prerelease rc9
 
 %define plugins down-root auth-pam
 
 Name:              openvpn
 Version:           2.1
-Release:           0.17%{?prerelease:.%{prerelease}}%{?dist}
+Release:           0.27%{?prerelease:.%{prerelease}}%{?dist}
 Summary:           A full-featured SSL VPN solution
 URL:               http://openvpn.net/
-Source0:           http://openvpn.net/release/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz
 #Source0:           http://openvpn.net/beta/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz
+#Source0:           https://secure.openvpn.net/beta/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz
+Source0:           http://openvpn.net/release/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz
+#Source1:           https://secure.openvpn.net/beta/signatures/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz.asc
 Source1:           http://openvpn.net/signatures/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz.asc
 # Sample 2.0 config files
 Source2:           roadwarrior-server.conf
 Source3:           roadwarrior-client.conf
 # Don't start openvpn by default.
 Patch0:            openvpn-init.patch
-License:           GPL
+License:           GPLv2
 Group:             Applications/Internet
 BuildRoot:         %{_tmppath}/%{name}-%{version}-%{release}-%(id -un)
 BuildRequires:     lzo-devel
 BuildRequires:     openssl-devel
 BuildRequires:     pam-devel
+# For /sbin/ip.
+BuildRequires:     iproute
 # We need /dev/net/tun.
 # This will work with RH9+ dev or udev.
 Requires:          dev >= 0:3.3.2-5
+# For /sbin/ip.
+Requires:          iproute
+# For ifconfig and route.
+Requires:          net-tools
 Requires(pre):     /usr/sbin/useradd
 Requires(post):    /sbin/chkconfig
 Requires(preun):   /sbin/chkconfig, /sbin/service
@@ -54,7 +62,16 @@
 #  --enable-password-save  Allow --askpass and --auth-user-pass passwords to be
 #                          read from a file
 #  --enable-iproute2       Enable support for iproute2
-%configure --enable-pthread --enable-password-save --enable-iproute2
+#  --with-ifconfig-path=PATH   Path to ifconfig tool
+#  --with-iproute-path=PATH    Path to iproute tool
+#  --with-route-path=PATH  Path to route tool
+%configure \
+    --enable-pthread \
+    --enable-password-save \
+    --enable-iproute2 \
+    --with-ifconfig-path=/sbin/ifconfig \
+    --with-iproute-path=/sbin/ip \
+    --with-route-path=/sbin/route
 %{__make}
 
 # Build plugins
@@ -62,7 +79,7 @@
     %{__make} -C plugin/$plugin
 done
 
-%check || :
+%check
 # Test Crypto:
 ./openvpn --genkey --secret key
 ./openvpn --test-crypto --secret key
@@ -149,6 +166,41 @@
 %config %dir %{_sysconfdir}/%{name}/
 
 %changelog
+* Fri Aug 01 2008 Steven Pritchard <steve at kspei.com> 2.1-0.27.rc9
+- Update to 2.1_rc9.
+
+* Sat Jun 14 2008 Steven Pritchard <steve at kspei.com> 2.1-0.26.rc8
+- Update to 2.1_rc8.
+- Update License tag.
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 2.1-0.25.rc7
+- Autorebuild for GCC 4.3
+
+* Tue Jan 29 2008 Steven Pritchard <steve at kspei.com> 2.1-0.24.rc7
+- Update to 2.1_rc7
+- Drop BETA21-userpriv-fixups.patch (upstream)
+
+* Fri Jan 25 2008 Steven Pritchard <steve at kspei.com> 2.1-0.23.rc6
+- Apply update to BETA21-userpriv-fixups.patch from Alon Bar-Lev
+
+* Thu Jan 24 2008 Steven Pritchard <steve at kspei.com> 2.1-0.22.rc6
+- Update to 2.1_rc6
+- Pass paths to ifconfig, ip, and route to configure
+- BR iproute and Require iproute and net-tools
+- Add BETA21-userpriv-fixups.patch from Alon Bar-Lev
+
+* Wed Jan 23 2008 Steven Pritchard <steve at kspei.com> 2.1-0.21.rc5
+- Update to 2.1_rc5
+
+* Wed Dec 05 2007 Steven Pritchard <steve at kspei.com> 2.1-0.20.rc4
+- Remove check macro cruft.
+
+* Thu Apr 26 2007 Steven Pritchard <steve at kspei.com> 2.1-0.19.rc4
+- Update to 2.1_rc4
+
+* Mon Apr 23 2007 Steven Pritchard <steve at kspei.com> 2.1-0.18.rc3
+- Update to 2.1_rc3
+
 * Fri Mar 02 2007 Steven Pritchard <steve at kspei.com> 2.1-0.17.rc2
 - Update to 2.1_rc2
 
@@ -293,7 +345,7 @@
 - Have the version number filled in by autoconf.
 
 * Wed Jul 10 2002 James Yonan <jim at yonan.net> 1.3.1-1
-- Fixed %preun to only remove service on final uninstall
+- Fixed %%preun to only remove service on final uninstall
 
 * Mon Jun 17 2002 bishop clark (LC957) <bishop at platypus.bc.ca> 1.2.2-1
 - Added condrestart to openvpn.spec & openvpn.init.


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/openvpn/EL-4/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources	21 Mar 2007 22:11:49 -0000	1.9
+++ sources	1 Aug 2008 16:57:11 -0000	1.10
@@ -1,2 +1,2 @@
-853c81d2de51d85b5381d4c7f7f074e3  openvpn-2.1_rc2.tar.gz
-4b4319498804b4365fd5c1d3a02e4f3f  openvpn-2.1_rc2.tar.gz.asc
+f435e4ad43cf4323e942da570bae4951  openvpn-2.1_rc9.tar.gz
+8354d0c77fc5bfe12aa286a87efb6f71  openvpn-2.1_rc9.tar.gz.asc




More information about the fedora-extras-commits mailing list