Compare commits

...
Sign in to create a new pull request.

14 commits

Author SHA1 Message Date
Till Maas
5f33145959 2015-07-30: Retired orphaned package, because it was orphaned for
more than six weeks.
2015-07-30 21:49:23 +02:00
Dennis Gilmore
3bbf889fda - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 2015-07-29 13:33:16 -05:00
David Tardon
982b494a34 rebuild for Boost 1.58 2015-07-22 19:44:42 +02:00
Dennis Gilmore
08d4ef0437 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-19 02:03:16 +00:00
Kalev Lember
0e5d69c99b Rebuilt for GCC 5 C++11 ABI change 2015-05-02 18:31:58 +02:00
Petr Machata
ae7f3319b8 Rebuild for boost 1.57.0 2015-01-27 18:06:46 +01:00
43ad0f7949 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild 2014-08-18 07:56:40 +00:00
Dennis Gilmore
b810ffb077 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-07 22:47:11 -05:00
Petr Machata
f88cc53399 Rebuild for boost 1.55.0 2014-05-23 05:08:14 +02:00
Dennis Gilmore
30696ff1a0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 01:17:32 -05:00
Petr Machata
e4df4ab620 Rebuild for boost 1.54.0 2013-07-30 14:53:35 +02:00
Dennis Gilmore
21e346e258 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 20:49:25 -06:00
Dennis Gilmore
6ea3235d51 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-21 21:47:08 -05:00
Nuno Santos
6030f6a0d2 Patch from upstream to include unistd 2012-06-14 13:44:23 -04:00
4 changed files with 3 additions and 109 deletions

2
.gitignore vendored
View file

@ -1,2 +0,0 @@
/vios-proxy-0.1.tar.gz
/vios-proxy-0.2.tar.gz

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2015-07-30: Retired orphaned package, because it was orphaned for
more than six weeks.

View file

@ -1 +0,0 @@
44ae7be44749691dc69d4e2b3049371e vios-proxy-0.2.tar.gz

View file

@ -1,106 +0,0 @@
Name: vios-proxy
Version: 0.2
Release: 3%{?dist}
Summary: Network proxy between a QEMU host and QEMU guests using virtioserial channels
Group: System Environment/Daemons
License: ASL 2.0
URL: http://git.fedorahosted.org/git/?p=vios-proxy.git
Source0: http://fedorahosted.org/released/vios-proxy/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: boost-devel
BuildRequires: gcc-c++
BuildRequires: cmake >= 2.6.0
%description
The vios-proxy program suite creates a network tunnel between
a server in the QEMU host and a client in a QEMU guest.
The proxy server and client programs open normal TCP network
ports on localhost and the vios-proxy tunnel connects them using
QEMU virtioserial channels.
%package host
Summary: Network proxy using virtioserial for QEMU host
Group: System Environment/Daemons
%description host
The vios-proxy-host daemon runs on a QEMU host. A vios-proxy-host daemon
manages all the proxy connections for a single proxy service on the host.
Multiple vios-proxy-host daemons are required to provide proxy access to
multiple services on the host. A single vios-proxy-host daemon may open
multiple proxy channels to multiple QEMU guests limited only by the
number of virtioserial connections available to each guest.
%package guest
Summary: Network proxy using virtioserial for QEMU guest
Group: System Environment/Daemons
%description guest
The vios-proxy-guest daemon runs on a QEMU client. A vios-proxy-guest daemon
creates a listening network socket on the guest's localhost interface. When
client programs connect to this socket then the vios-proxy-guest daemon opens
a proxy channel to the host through the tunnel.
%package doc
Summary: Documentation for vios-proxy
Group: System Environment/Daemons
%description doc
The vios-proxy program suite creates a network tunnel between
a server in the QEMU host and a client in a QEMU guest.
The proxy server and client programs open normal TCP network
ports on localhost and the vios-proxy tunnel connects them using
QEMU virtioserial channels.
%prep
%setup -q
pushd src
cmake -D CMAKE_INSTALL_PREFIX:STRING="%{_prefix}" -D CMAKE_CXX_FLAGS:STRING="%{optflags}" .
popd
%build
pushd src
make %{?_smp_mflags}
popd
%install
rm -rf $RPM_BUILD_ROOT
pushd src
make install DESTDIR=$RPM_BUILD_ROOT
popd
%clean
rm -rf $RPM_BUILD_ROOT
%files doc
%defattr(-,root,root,-)
%doc README.txt LICENSE NOTICE
%doc doc/
%files host
%defattr(-,root,root,-)
%{_bindir}/vios-proxy-host
%doc %{_mandir}/man1/vios-proxy-host.1.gz
%files guest
%defattr(-,root,root,-)
%{_bindir}/vios-proxy-guest
%doc %{_mandir}/man1/vios-proxy-guest.1.gz
%changelog
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
- Rebuilt for c++ ABI breakage
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Tue Oct 18 2011 Nuno Santos <nsantos@redhat.com> - 0.2-1
- Added man pages
* Mon Sep 19 2011 Chuck Rolke <crolke@redhat.com> 0.1-1
- Initial revision