2013-08-29 15:21:13 +01:00
|
|
|
%define version @PACKAGE_VERSION@
|
|
|
|
%define lib_version @GENERIC_RELEASE@
|
2015-06-05 15:29:52 +01:00
|
|
|
%define python_version %(%{__python} -c "import sys; print '%s.%s' % (sys.version_info[0], sys.version_info[1])")%{nil}
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
%if 0%{?fedora} >= 17
|
|
|
|
%define with_kernel_modules_extra 1
|
|
|
|
%else
|
|
|
|
%define with_kernel_modules_extra 0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Name: core
|
|
|
|
Summary: Common Open Research Emulator for use with network namespaces
|
|
|
|
License: BSD
|
|
|
|
Prefix: /usr
|
2015-06-05 15:29:47 +01:00
|
|
|
Release: 1%{?dist}
|
2013-08-29 15:21:13 +01:00
|
|
|
Source: core-%{version}.tar.gz
|
2013-12-04 21:45:42 +00:00
|
|
|
URL: http://www.nrl.navy.mil/itd/ncs/products/core
|
2013-08-29 15:21:13 +01:00
|
|
|
Version: %{version}
|
2017-08-17 23:25:12 +01:00
|
|
|
%description
|
2013-08-29 15:21:13 +01:00
|
|
|
The Common Open Research Emulator provides Python modules and a GUI for
|
|
|
|
building virtual networks using Linux network namespace containers and bridging.
|
|
|
|
|
|
|
|
%package daemon
|
|
|
|
Summary: Common Open Research Emulator daemon back-end
|
|
|
|
Group: System Tools
|
2015-06-05 15:29:47 +01:00
|
|
|
Requires: bash bridge-utils ebtables iproute libev python net-tools
|
|
|
|
%if 0%{?el6}
|
|
|
|
Requires: procps
|
|
|
|
%else
|
|
|
|
Requires: procps-ng
|
|
|
|
%endif
|
2013-08-29 15:21:13 +01:00
|
|
|
%if %{with_kernel_modules_extra}
|
2015-05-22 01:55:33 +01:00
|
|
|
Requires: kernel-modules-extra
|
2013-08-29 15:21:13 +01:00
|
|
|
%endif
|
2017-02-10 16:31:44 +00:00
|
|
|
%if 0%{?fedora} >= 25
|
|
|
|
Requires: iproute-tc
|
|
|
|
%endif
|
2015-06-05 15:29:47 +01:00
|
|
|
BuildRequires: make automake autoconf libev-devel python-devel bridge-utils ebtables iproute net-tools ImageMagick help2man
|
|
|
|
%if 0%{?el6}
|
|
|
|
BuildRequires: procps
|
|
|
|
%else
|
|
|
|
BuildRequires: procps-ng
|
|
|
|
%endif
|
2017-02-10 16:31:44 +00:00
|
|
|
%if 0%{?fedora} >= 25
|
|
|
|
BuildRequires: iproute-tc
|
|
|
|
%endif
|
2013-08-29 15:21:13 +01:00
|
|
|
Provides: core-daemon
|
|
|
|
# python-sphinx
|
|
|
|
%description daemon
|
|
|
|
The Common Open Research Emulator provides Python modules for building virtual
|
2017-08-17 23:25:12 +01:00
|
|
|
networks using Linux network namespace containers and bridging.
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
%package gui
|
|
|
|
Summary: Common Open Research Emulator GUI front-end
|
|
|
|
Group: System Tools
|
2015-11-04 23:48:43 +00:00
|
|
|
Requires: tcl tk xterm
|
2013-08-29 15:21:13 +01:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: make automake autoconf
|
|
|
|
Provides: core-gui
|
|
|
|
%description gui
|
|
|
|
The Common Open Research Emulator canvas-based Tcl/Tk GUI for easily drawing
|
2017-08-17 23:25:12 +01:00
|
|
|
virtual network topologies.
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
./bootstrap.sh
|
|
|
|
# not using --disable-gui/--disable-daemon, because RPM expects both to be
|
|
|
|
# installed by this build process
|
|
|
|
# assume Fedora, using systemd startup script
|
2015-12-29 16:15:08 +00:00
|
|
|
CFLAGS="-fno-strict-aliasing $RPM_OPT_FLAGS" %configure --with-startup=systemd
|
2013-08-29 15:21:13 +01:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
|
|
|
%post daemon
|
|
|
|
# don't run EMANE with realtime option under Fedora
|
|
|
|
sed -i 's/emane_realtime = True/emane_realtime = False/' /etc/core/core.conf
|
|
|
|
|
2016-01-29 19:16:33 +00:00
|
|
|
%preun daemon
|
|
|
|
if [ "$1" -eq 0 ]; then
|
|
|
|
systemctl stop core-daemon.service > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
if [ -x @SBINDIR@/core-cleanup ]; then
|
|
|
|
@SBINDIR@/core-cleanup > /dev/null 2>&1 || true
|
|
|
|
fi
|
|
|
|
fi
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
%postun
|
|
|
|
|
|
|
|
%files gui
|
|
|
|
%{_bindir}/core-gui
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir @CORE_LIB_DIR@
|
|
|
|
%dir @CORE_LIB_DIR@/addons
|
2013-08-29 15:21:13 +01:00
|
|
|
@CORE_LIB_DIR@/addons/ipsecservice.tcl
|
|
|
|
@CORE_LIB_DIR@/annotations.tcl
|
|
|
|
@CORE_LIB_DIR@/api.tcl
|
|
|
|
@CORE_LIB_DIR@/canvas.tcl
|
|
|
|
@CORE_LIB_DIR@/cfgparse.tcl
|
|
|
|
@CORE_LIB_DIR@/core-bsd-cleanup.sh
|
|
|
|
@CORE_LIB_DIR@/core.tcl
|
|
|
|
@CORE_LIB_DIR@/debug.tcl
|
|
|
|
@CORE_LIB_DIR@/editor.tcl
|
|
|
|
@CORE_LIB_DIR@/exceptions.tcl
|
|
|
|
@CORE_LIB_DIR@/exec.tcl
|
|
|
|
@CORE_LIB_DIR@/filemgmt.tcl
|
|
|
|
@CORE_LIB_DIR@/gpgui.tcl
|
|
|
|
@CORE_LIB_DIR@/graph_partitioning.tcl
|
|
|
|
@CORE_LIB_DIR@/help.tcl
|
|
|
|
%{_datadir}/applications/core-gui.desktop
|
|
|
|
%{_datadir}/pixmaps/core-gui.xpm
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%dir %{_datadir}/%{name}/icons
|
|
|
|
%dir %{_datadir}/%{name}/icons/normal
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/icons/normal/antenna.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/ap.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/core-icon.png
|
|
|
|
%{_datadir}/%{name}/icons/normal/core-icon.xbm
|
|
|
|
%{_datadir}/%{name}/icons/normal/core-logo-275x75.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/document-properties.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/gps-diagram.xbm
|
|
|
|
%{_datadir}/%{name}/icons/normal/host.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/hub.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/lanswitch.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/mdr.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/oval.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/pc.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/rj45.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router_black.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router_green.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router_purple.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router_red.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/router_yellow.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/simple.xbm
|
|
|
|
%{_datadir}/%{name}/icons/normal/text.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/thumb-unknown.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/tunnel.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/wlan.gif
|
|
|
|
%{_datadir}/%{name}/icons/normal/xen.gif
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/icons/svg
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/icons/svg/ap.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/cel.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/hub.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/lanswitch.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/mdr.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/otr.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/rj45.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router_black.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router_green.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router_purple.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router_red.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/router_yellow.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/start.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/tunnel.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/vlan.svg
|
|
|
|
%{_datadir}/%{name}/icons/svg/xen.svg
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/icons/tiny
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/icons/tiny/ap.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/arrow.down.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/arrow.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/arrow.up.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/blank.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/button.play.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/button.stop.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/cel.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/delete.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/document-new.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/document-properties.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/document-save.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/edit-delete.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/eraser.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/fileopen.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/folder.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/host.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/hub.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/lanswitch.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/link.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/marker.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/mdr.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/mobility.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/moboff.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/observe.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/oval.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/pc.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/ping.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/plot.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/rectangle.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/rj45.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router_black.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router_green.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router_purple.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router_red.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/router_yellow.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/run.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/script_pause.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/script_play.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/script_stop.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/select.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/start.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/stock_connect.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/stock_disconnect.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/stop.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/text.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/trace.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/tunnel.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/twonode.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/view-refresh.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/wlan.gif
|
|
|
|
%{_datadir}/%{name}/icons/tiny/xen.gif
|
|
|
|
@CORE_LIB_DIR@/initgui.tcl
|
|
|
|
@CORE_LIB_DIR@/ipv4.tcl
|
|
|
|
@CORE_LIB_DIR@/ipv6.tcl
|
|
|
|
@CORE_LIB_DIR@/linkcfg.tcl
|
|
|
|
@CORE_LIB_DIR@/mobility.tcl
|
|
|
|
@CORE_LIB_DIR@/nodecfg.tcl
|
|
|
|
@CORE_LIB_DIR@/nodes.tcl
|
|
|
|
@CORE_LIB_DIR@/ns2imunes.tcl
|
|
|
|
@CORE_LIB_DIR@/plugins.tcl
|
|
|
|
@CORE_LIB_DIR@/services.tcl
|
|
|
|
@CORE_LIB_DIR@/tooltips.tcl
|
|
|
|
@CORE_LIB_DIR@/topogen.tcl
|
|
|
|
@CORE_LIB_DIR@/traffic.tcl
|
|
|
|
@CORE_LIB_DIR@/util.tcl
|
|
|
|
@CORE_LIB_DIR@/version.tcl
|
|
|
|
@CORE_LIB_DIR@/widget.tcl
|
|
|
|
@CORE_LIB_DIR@/wlanscript.tcl
|
|
|
|
@CORE_LIB_DIR@/wlan.tcl
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples
|
|
|
|
%dir %{_datadir}/%{name}/examples/configs
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/configs/sample10-kitchen-sink.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample1-bg.gif
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample1.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample1.scen
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample2-ssh.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample3-bgp.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample4-bg.jpg
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample4-nrlsmf.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample4.scen
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample5-mgen.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample6-emane-rfpipe.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample7-emane-ieee80211abg.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample8-ipsec-service.imn
|
|
|
|
%{_datadir}/%{name}/examples/configs/sample9-vpn.imn
|
|
|
|
%doc %{_mandir}/man1/core-gui.1.gz
|
|
|
|
|
|
|
|
%files daemon
|
|
|
|
%config @CORE_CONF_DIR@/core.conf
|
|
|
|
%config @CORE_CONF_DIR@/perflogserver.conf
|
|
|
|
%config @CORE_CONF_DIR@/xen.conf
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%dir %{_datadir}/%{name}/examples
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/controlnet_updown
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples/corens3
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/corens3/ns3lte.py*
|
|
|
|
%{_datadir}/%{name}/examples/corens3/ns3wifi.py*
|
|
|
|
%{_datadir}/%{name}/examples/corens3/ns3wifirandomwalk.py*
|
|
|
|
%{_datadir}/%{name}/examples/corens3/ns3wimax.py*
|
2015-12-29 15:43:47 +00:00
|
|
|
%{_datadir}/%{name}/examples/emanemanifest2core.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/emanemodel2core.py*
|
|
|
|
%{_datadir}/%{name}/examples/findcore.py*
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples/hooks
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/hooks/configuration_hook.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/datacollect_hook.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/perflogserver.py*
|
|
|
|
%{_datadir}/%{name}/examples/hooks/perflogstart.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/perflogstop.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/sessiondatacollect.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/timesyncstart.sh
|
|
|
|
%{_datadir}/%{name}/examples/hooks/timesyncstop.sh
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples/myservices
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/myservices/__init__.py*
|
|
|
|
%{_datadir}/%{name}/examples/myservices/README.txt
|
|
|
|
%{_datadir}/%{name}/examples/myservices/sample.py*
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples/netns
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/netns/basicrange.py*
|
2015-12-29 15:43:47 +00:00
|
|
|
%{_datadir}/%{name}/examples/netns/daemonnodes.py*
|
2013-09-04 18:16:31 +01:00
|
|
|
%{_datadir}/%{name}/examples/netns/distributed.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/netns/emane80211.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/howmanynodes.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/iperf-performance-chain.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/iperf-performance.sh
|
|
|
|
%{_datadir}/%{name}/examples/netns/ospfmanetmdrtest.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/switch.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/switchtest.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/twonodes.sh
|
|
|
|
%{_datadir}/%{name}/examples/netns/wlanemanetests.py*
|
|
|
|
%{_datadir}/%{name}/examples/netns/wlantest.py*
|
2015-05-22 01:55:53 +01:00
|
|
|
%dir %{_datadir}/%{name}/examples/services
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_datadir}/%{name}/examples/services/sampleFirewall
|
|
|
|
%{_datadir}/%{name}/examples/services/sampleIPsec
|
|
|
|
%{_datadir}/%{name}/examples/services/sampleVPNClient
|
|
|
|
%{_datadir}/%{name}/examples/services/sampleVPNServer
|
|
|
|
%{_datadir}/%{name}/examples/stopsession.py*
|
|
|
|
%doc %{_mandir}/man1/core-cleanup.1.gz
|
|
|
|
%doc %{_mandir}/man1/core-daemon.1.gz
|
2014-08-04 18:21:58 +01:00
|
|
|
%doc %{_mandir}/man1/core-manage.1.gz
|
2013-08-29 15:21:13 +01:00
|
|
|
%doc %{_mandir}/man1/coresendmsg.1.gz
|
|
|
|
%doc %{_mandir}/man1/core-xen-cleanup.1.gz
|
|
|
|
%doc %{_mandir}/man1/netns.1.gz
|
|
|
|
%doc %{_mandir}/man1/vcmd.1.gz
|
|
|
|
%doc %{_mandir}/man1/vnoded.1.gz
|
2015-12-29 18:50:28 +00:00
|
|
|
/etc/logrotate.d/core-daemon
|
2013-08-29 15:21:13 +01:00
|
|
|
/etc/systemd/system/core-daemon.service
|
2015-06-05 15:29:52 +01:00
|
|
|
%{python_sitearch}/core_python_netns-1.0-py%{python_version}.egg-info
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitearch}/netns.so
|
|
|
|
%{python_sitearch}/vcmd.so
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core
|
2017-08-19 00:35:26 +01:00
|
|
|
%{python_sitelib}/core/sdt.py*
|
|
|
|
%{python_sitelib}/core/service.py*
|
|
|
|
%{python_sitelib}/core/coreserver.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/addons
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/addons/__init__.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/api
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/api/coreapi.py*
|
|
|
|
%{python_sitelib}/core/api/data.py*
|
|
|
|
%{python_sitelib}/core/api/__init__.py*
|
|
|
|
%{python_sitelib}/core/broker.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/bsd
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/bsd/__init__.py*
|
|
|
|
%{python_sitelib}/core/bsd/netgraph.py*
|
|
|
|
%{python_sitelib}/core/bsd/nodes.py*
|
|
|
|
%{python_sitelib}/core/bsd/vnet.py*
|
|
|
|
%{python_sitelib}/core/bsd/vnode.py*
|
|
|
|
%{python_sitelib}/core/conf.py*
|
|
|
|
%{python_sitelib}/core/constants.py*
|
|
|
|
%{python_sitelib}/core/coreobj.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/emane
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/emane/bypass.py*
|
|
|
|
%{python_sitelib}/core/emane/commeffect.py*
|
|
|
|
%{python_sitelib}/core/emane/emane.py*
|
|
|
|
%{python_sitelib}/core/emane/ieee80211abg.py*
|
|
|
|
%{python_sitelib}/core/emane/__init__.py*
|
|
|
|
%{python_sitelib}/core/emane/nodes.py*
|
|
|
|
%{python_sitelib}/core/emane/rfpipe.py*
|
2016-09-06 16:15:55 +01:00
|
|
|
%{python_sitelib}/core/emane/tdma.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/emane/universal.py*
|
|
|
|
%{python_sitelib}/core/__init__.py*
|
|
|
|
%{python_sitelib}/core/location.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/misc
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/misc/event.py*
|
|
|
|
%{python_sitelib}/core/misc/__init__.py*
|
|
|
|
%{python_sitelib}/core/misc/ipaddr.py*
|
|
|
|
%{python_sitelib}/core/misc/LatLongUTMconversion.py*
|
|
|
|
%{python_sitelib}/core/misc/quagga.py*
|
|
|
|
%{python_sitelib}/core/misc/utils.py*
|
|
|
|
%{python_sitelib}/core/misc/utm.py*
|
2015-05-22 01:55:08 +01:00
|
|
|
%{python_sitelib}/core/misc/xmldeployment.py*
|
2015-02-19 17:20:42 +00:00
|
|
|
%{python_sitelib}/core/misc/xmlparser.py*
|
|
|
|
%{python_sitelib}/core/misc/xmlparser0.py*
|
2015-05-22 01:55:08 +01:00
|
|
|
%{python_sitelib}/core/misc/xmlparser1.py*
|
2015-02-19 17:20:42 +00:00
|
|
|
%{python_sitelib}/core/misc/xmlsession.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/misc/xmlutils.py*
|
2015-02-19 17:20:42 +00:00
|
|
|
%{python_sitelib}/core/misc/xmlwriter.py*
|
|
|
|
%{python_sitelib}/core/misc/xmlwriter0.py*
|
|
|
|
%{python_sitelib}/core/misc/xmlwriter1.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/mobility.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/netns
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/netns/__init__.py*
|
|
|
|
%{python_sitelib}/core/netns/nodes.py*
|
|
|
|
%{python_sitelib}/core/netns/vif.py*
|
|
|
|
%{python_sitelib}/core/netns/vnet.py*
|
|
|
|
%{python_sitelib}/core/netns/vnodeclient.py*
|
|
|
|
%{python_sitelib}/core/netns/vnode.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/corens3
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/corens3/constants.py*
|
|
|
|
%{python_sitelib}/corens3/__init__.py*
|
|
|
|
%{python_sitelib}/corens3/obj.py*
|
2015-06-05 15:29:52 +01:00
|
|
|
%{python_sitelib}/corens3_python-@COREDPY_VERSION@-py%{python_version}.egg-info
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/phys
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/phys/__init__.py*
|
|
|
|
%{python_sitelib}/core/phys/pnodes.py*
|
2015-06-05 15:29:52 +01:00
|
|
|
%{python_sitelib}/core_python-@COREDPY_VERSION@-py%{python_version}.egg-info
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/services
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/services/bird.py*
|
|
|
|
%{python_sitelib}/core/services/__init__.py*
|
2015-02-19 17:20:42 +00:00
|
|
|
%{python_sitelib}/core/services/dockersvc.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/services/nrl.py*
|
|
|
|
%{python_sitelib}/core/services/quagga.py*
|
|
|
|
%{python_sitelib}/core/services/security.py*
|
2015-12-29 15:43:47 +00:00
|
|
|
%{python_sitelib}/core/services/startup.py*
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/services/ucarp.py*
|
|
|
|
%{python_sitelib}/core/services/utility.py*
|
|
|
|
%{python_sitelib}/core/services/xorp.py*
|
|
|
|
%{python_sitelib}/core/session.py*
|
2016-01-29 20:02:52 +00:00
|
|
|
%dir %{python_sitelib}/core/xen
|
2013-08-29 15:21:13 +01:00
|
|
|
%{python_sitelib}/core/xen/__init__.py*
|
|
|
|
%{python_sitelib}/core/xen/xenconfig.py*
|
|
|
|
%{python_sitelib}/core/xen/xen.py*
|
|
|
|
%{_sbindir}/core-cleanup
|
|
|
|
%{_sbindir}/core-daemon
|
2014-07-15 21:30:45 +01:00
|
|
|
%{_sbindir}/core-manage
|
2013-08-29 15:21:13 +01:00
|
|
|
%{_sbindir}/coresendmsg
|
|
|
|
%{_sbindir}/core-xen-cleanup
|
|
|
|
%{_sbindir}/netns
|
|
|
|
%{_sbindir}/vcmd
|
|
|
|
%{_sbindir}/vnoded
|
|
|
|
|
|
|
|
%changelog
|
2017-08-31 23:33:28 +01:00
|
|
|
* Fri Sep 01 2017 CORE Developers <core-dev@nrl.navy.mil> - 5.0
|
2017-08-17 23:25:12 +01:00
|
|
|
- Added Ryu SD and Open vSwitch services, code cleanup and refactoring
|
2016-09-06 15:33:44 +01:00
|
|
|
* Fri Jun 5 2015 CORE Developers <core-dev@pf.itd.nrl.navy.mil> - 4.8
|
2015-05-22 01:56:52 +01:00
|
|
|
- Support for NRL Network Modeling Framework (NMF) XML representation, bugfixes
|
2014-08-04 18:21:58 +01:00
|
|
|
* Wed Aug 6 2014 Jeff Ahrenholz <core-dev@pf.itd.nrl.navy.mil> - 4.7
|
|
|
|
- EMANE 0.9.1, asymmetric links, bugfixes
|
2013-08-29 15:21:13 +01:00
|
|
|
* Thu Aug 22 2013 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.6
|
|
|
|
- cored now core-daemon, core now core-gui for CORE 4.6 release
|
|
|
|
* Wed Apr 3 2013 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.5
|
|
|
|
- split into gui and daemon RPMs for CORE 4.5 release
|
|
|
|
* Tue Sep 4 2012 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.4
|
|
|
|
- update files list for CORE 4.4 release, removed info file
|
|
|
|
* Tue Feb 7 2012 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.3
|
|
|
|
- update files list for CORE 4.3 release, freshen dependencies
|
|
|
|
* Tue Aug 16 2011 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.2
|
|
|
|
- update for CORE 4.2 release; use dir variables, more arch independent
|
|
|
|
* Mon Dec 13 2010 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.1
|
|
|
|
- update for CORE 4.1 release; added calls to ldconfig and removal of pyc files
|
|
|
|
* Wed Aug 4 2010 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 4.0
|
|
|
|
- update for CORE 4.0 release for Python and network namespaces
|
|
|
|
* Thu Sep 10 2009 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 3.5
|
|
|
|
- update for CORE 3.5 release to include init script
|
|
|
|
* Fri May 29 2009 Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com> - 3.4
|
|
|
|
- initial spec file for CORE 3.4 release
|
|
|
|
|