Commit c941e454 authored by 吴洲洋's avatar 吴洲洋

delete src/vppe/build-root/ files

parent 57212f96
...@@ -139,7 +139,7 @@ func main() { ...@@ -139,7 +139,7 @@ func main() {
//} //}
//system //system
system, err := ioutil.ReadFile(*in + "/template/config_system.template") system, err := ioutil.ReadFile("/opt/5gc/template/config_system.template")
if err != nil { if err != nil {
fmt.Println("读取 config_system 模板文件失败") fmt.Println("读取 config_system 模板文件失败")
} else { } else {
...@@ -183,7 +183,7 @@ func main() { ...@@ -183,7 +183,7 @@ func main() {
//} //}
//n4 //n4
n4, err := ioutil.ReadFile(*in + "/template/n4.template") n4, err := ioutil.ReadFile("/opt/5gc/template/n4.template")
if err != nil { if err != nil {
fmt.Println("读取 n4 模板文件失败") fmt.Println("读取 n4 模板文件失败")
} else { } else {
...@@ -202,12 +202,12 @@ func main() { ...@@ -202,12 +202,12 @@ func main() {
} }
//startup //startup
startup, err := ioutil.ReadFile(*in + "/template/startup_original.template") startup, err := ioutil.ReadFile("/opt/5gc/template/startup_original.template")
if err != nil { if err != nil {
fmt.Println("读取 startup_debug 模板文件失败") fmt.Println("读取 startup_debug 模板文件失败")
} else { } else {
startupTemplate := string(startup) startupTemplate := string(startup)
newStartup := strings.Replace(startupTemplate, "@CONFIG_SYSTEM@", c.VppConfigure.Startup.ConfigSystem, 1) newStartup := strings.Replace(startupTemplate, "@CONFIG_SYSTEM@", "/opt/5gc/config_system.sh", 1)
newStartup = strings.Replace(newStartup, "@PCI_ADDR_ID_ENTRY@", "0000:"+c.VppConfigure.Startup.PciAddrIdEntry, 1) newStartup = strings.Replace(newStartup, "@PCI_ADDR_ID_ENTRY@", "0000:"+c.VppConfigure.Startup.PciAddrIdEntry, 1)
newStartup = strings.Replace(newStartup, "@PCI_ADDR_ID_EXPORT@", "0000:"+c.VppConfigure.Startup.PciAddrIdExport, 1) newStartup = strings.Replace(newStartup, "@PCI_ADDR_ID_EXPORT@", "0000:"+c.VppConfigure.Startup.PciAddrIdExport, 1)
newStartup = strings.Replace(newStartup, "@VPP_PLUGINS_PATH@", c.VppConfigure.Startup.VppPluginsPath, 1) newStartup = strings.Replace(newStartup, "@VPP_PLUGINS_PATH@", c.VppConfigure.Startup.VppPluginsPath, 1)
...@@ -247,7 +247,7 @@ func main() { ...@@ -247,7 +247,7 @@ func main() {
func (c *configure) readYaml(inPath string) *configure { func (c *configure) readYaml(inPath string) *configure {
yamlFile, err := ioutil.ReadFile(inPath + "/configure.yaml") yamlFile, err := ioutil.ReadFile(inPath)
if err != nil { if err != nil {
log.Print("Configure file is not exit") log.Print("Configure file is not exit")
} }
......
No preview for this file type
...@@ -40,7 +40,7 @@ function vpp(){ ...@@ -40,7 +40,7 @@ function vpp(){
sudo systemctl stop vpp sudo systemctl stop vpp
#rm install package #rm install package
sudo rm -rf $VPPINSTALL sudo rm -rf $VPPINSTALL
clear_all
sleep 1; sleep 1;
echo "install buptvppe finished!!!" echo "install buptvppe finished!!!"
...@@ -114,6 +114,8 @@ function clear_all() ...@@ -114,6 +114,8 @@ function clear_all()
rm -rf $VPPPATH/${BUILD_ROOT}/build-vpp-native; rm -rf $VPPPATH/${BUILD_ROOT}/build-vpp-native;
rm -rf $VPPPATH/${BUILD_ROOT}/install-vpp-native; rm -rf $VPPPATH/${BUILD_ROOT}/install-vpp-native;
rm -rf $VPPPATH/${BUILD_ROOT}/install-vpp_debug-native; rm -rf $VPPPATH/${BUILD_ROOT}/install-vpp_debug-native;
rm -rf $VPPPATH/${BUILD_ROOT}/*.deb
rm -rf $VPPPATH/${BUILD_ROOT}/vpp_20.05-rc0~582*
} }
function help() function help()
......
set interface state up
set interface ip address 192.168.10.10/24
create gtpu tunnel src 192.168.10.10 dst teid 1 encap-vrf-id 0 decap-next node ip4-lookup
ip route add 192.169.0.0/24 via gtpu_tunnel0
set interface state up
set interface ip address 192.168.30.10/24
ip route add 0.0.0.0/0 via
File added
...@@ -31,25 +31,27 @@ DPDK_EXPORT="" ...@@ -31,25 +31,27 @@ DPDK_EXPORT=""
DPDK_ENTRY="" DPDK_ENTRY=""
function init_configure(){ function init_configure(){
yaml="$1"
# vpp # vpp
config_system=$($current/yq r $configure/configure.yaml vpp.startup.config_system) mkdir -p /opt/5gc
$current/replace -i $configure -o $configure cp -r $configure/template /opt/5gc
mv $configure/config_system.sh $current $current/replace -i $yaml -o $configure
mv $configure/config_system.sh /opt/5gc
mv $configure/startup_debug.conf /etc/vpp mv $configure/startup_debug.conf /etc/vpp
# arp # arp
UEIP=$($current/yq r $configure/configure.yaml vpp.ip_link.ueip) UEIP=$($current/yq r $yaml vpp.ip_link.ueip)
PREFIX=$($current/yq r $configure/configure.yaml vpp.ip_link.ueIPPrefix) PREFIX=$($current/yq r $yaml vpp.ip_link.ueIPPrefix)
INTER=$($current/yq r $configure/configure.yaml vpp.ip_link.vppHost) INTER=$($current/yq r $yaml vpp.ip_link.vppHost)
VPPEXPORT=$($current/yq r $configure/configure.yaml vpp.ip_link.vppHostIP) VPPEXPORT=$($current/yq r $yaml vpp.ip_link.vppHostIP)
MAC=$(ifconfig $INTER|grep ether|awk '{print $2}') MAC=$(ifconfig $INTER|grep ether|awk '{print $2}')
# nat # nat
UE_IP=$($current/yq r $configure/configure.yaml vpp.ip_link.ueip) UE_IP=$($current/yq r $yaml vpp.ip_link.ueip)
UE_IP_PREFIX=$($current/yq r $configure/configure.yaml vpp.ip_link.ueIPPrefix) UE_IP_PREFIX=$($current/yq r $yaml vpp.ip_link.ueIPPrefix)
SNAT_INTER=$($current/yq r $configure/configure.yaml vpp.ip_link.snatInter) SNAT_INTER=$($current/yq r $yaml vpp.ip_link.snatInter)
SNAT_IP=$($current/yq r $configure/configure.yaml vpp.ip_link.snatIP) SNAT_IP=$($current/yq r $yaml vpp.ip_link.snatIP)
VPPHOST=$($current/yq r $configure/configure.yaml vpp.ip_link.vppHost) VPPHOST=$($current/yq r $yaml vpp.ip_link.vppHost)
DPDK_EXPORT=$($current/yq r $configure/configure.yaml vpp.ip_link.gtpu_export) DPDK_EXPORT=$($current/yq r $yaml vpp.ip_link.gtpu_export)
DPDK_ENTRY=$($current/yq r $configure/configure.yaml vpp.ip_link.gtpu_entry) DPDK_ENTRY=$($current/yq r $yaml vpp.ip_link.gtpu_entry)
} }
...@@ -95,6 +97,7 @@ echo "start arp" ...@@ -95,6 +97,7 @@ echo "start arp"
echo "arp startup failed" echo "arp startup failed"
else else
echo "arp $pid2 startup success" echo "arp $pid2 startup success"
return 0
fi fi
} }
...@@ -200,11 +203,11 @@ function main() { ...@@ -200,11 +203,11 @@ function main() {
help help
exit exit
fi fi
init_configure
until [ -z "$1" ]; do until [ -z "$1" ]; do
case "$1" in case "$1" in
--start) --o)
init_configure $2
start_vpp start_vpp
start_n4 start_n4
start_arp start_arp
......
Format: 1.0
Source: vpp
Binary: vpp vpp-dbg vpp-dev libvppinfra libvppinfra-dev vpp-plugin-core vpp-plugin-dpdk vpp-api-python python3-vpp-api
Architecture: amd64
Version: 20.05-rc0~582-g1339dce8f
Checksums-Md5:
c6799a1a73f586cbd49cb6be0ea0dea9 142524 libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
ab50de832bfc4c1a7af6443d196e5db3 161572 libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
8a47d3a8bcab84b934a78562a0f2eaf9 24168 python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
093ec881d553f080db1d06f0957230f1 24124 vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
f833280bfe4a664cfde2924827d3973f 39907440 vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
2291467cbaf312f5125f18147c62c9a8 985528 vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
c3e2d77d208ddb4d70af7c31e1c67a00 2707304 vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
7cb4de611de26a5bb7ce5b4f6b753209 3830768 vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
9b5ea676e4cab05ca853239333b263a4 2649180 vpp_20.05-rc0~582-g1339dce8f_amd64.deb
Checksums-Sha1:
f4995085c59859aa2342bf4a3fe6f2356e85eda1 142524 libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
478e9fdcbbda362b0c552ef956741e7e16a4df1c 161572 libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
20cf61a9e724beb810a9853d5fdb578ed72943cf 24168 python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
022a80245edf072efe23c8f913d0b9bc0103267b 24124 vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
4fdfc85e9bc553c2863b21b71c1787a3814274e3 39907440 vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
8ef9deb5b15de83f63828da80d40cc8b9a6f4059 985528 vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
93c9fc2bc94390f148380c4f7ff45985d774180c 2707304 vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
99e484c21e47baa7a49f8141956fb186be9f712a 3830768 vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
21e19bfcfe3f678b6fbeba40b529bfa25f8756d7 2649180 vpp_20.05-rc0~582-g1339dce8f_amd64.deb
Checksums-Sha256:
e5193d91a79c336f03ce721a805516ef13bb1ab930119688e2a7abbe2eaece94 142524 libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
a921d40f8f8c612919cd9139f8a47f89d3a205b96f7a1542f09cd7ae416bdf5b 161572 libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
d6904cf1c1e9654f6cc1433415f08c65c92038b02c83e130aa3fd47749e0348a 24168 python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
65d8c4bfa3c662422796d96e30885c90a5d6fb8b91788718dc704d8653661d34 24124 vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
fbab0d38bef3acc15e31aec99fec333f23843b681454b55e3df651d8568b645f 39907440 vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
369192bd7242cc47de06a2c9ae9378941cac20f38e7baf25feaa724ca26da0be 985528 vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
8004717d98339cc4478b25014e28d42209113dc8720aae74b9d1fae1a7347f10 2707304 vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
7732ba44397c0884b51e7b89b68fe79af655730aa51e373b850c587ed0807cb1 3830768 vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
adca64c06e081fcb3a4acfa40b2450b119070e02505e40d95670083dd78c6e81 2649180 vpp_20.05-rc0~582-g1339dce8f_amd64.deb
Build-Origin: Ubuntu
Build-Architecture: amd64
Build-Date: Thu, 24 Dec 2020 00:25:38 -0800
Installed-Build-Depends:
autoconf (= 2.69-11),
automake (= 1:1.15.1-3ubuntu2),
autopoint (= 0.19.8.1-6ubuntu0.3),
autotools-dev (= 20180224.1),
base-files (= 10.1ubuntu2.8),
base-passwd (= 3.5.44),
bash (= 4.4.18-2ubuntu1.2),
binutils (= 2.30-21ubuntu1~18.04.2),
binutils-common (= 2.30-21ubuntu1~18.04.2),
binutils-x86-64-linux-gnu (= 2.30-21ubuntu1~18.04.2),
bsdmainutils (= 11.1.2ubuntu1),
bsdutils (= 1:2.31.1-0.4ubuntu3.5),
build-essential (= 12.4ubuntu1),
bzip2 (= 1.0.6-8.1ubuntu0.2),
coreutils (= 8.28-1ubuntu1),
cpp (= 4:7.4.0-1ubuntu2.3),
cpp-7 (= 7.5.0-3ubuntu1~18.04),
cpp-8 (= 8.4.0-1ubuntu1~18.04),
dash (= 0.5.8-2.10),
debconf (= 1.5.66ubuntu1),
debhelper (= 11.1.6ubuntu2),
debianutils (= 4.8.4),
dh-autoreconf (= 17),
dh-python (= 3.20180325ubuntu2),
dh-strip-nondeterminism (= 0.040-1.1~build1),
dh-systemd (= 11.1.6ubuntu2),
diffutils (= 1:3.6-1),
dpkg (= 1.19.0.5ubuntu2.3),
dpkg-dev (= 1.19.0.5ubuntu2.3),
e2fsprogs (= 1.44.1-1ubuntu1.3),
fdisk (= 2.31.1-0.4ubuntu3.5),
file (= 1:5.32-2ubuntu0.3),
findutils (= 4.6.0+git+20170828-2),
g++ (= 4:7.4.0-1ubuntu2.3),
g++-7 (= 7.5.0-3ubuntu1~18.04),
gcc (= 4:7.4.0-1ubuntu2.3),
gcc-7 (= 7.5.0-3ubuntu1~18.04),
gcc-7-base (= 7.5.0-3ubuntu1~18.04),
gcc-8 (= 8.4.0-1ubuntu1~18.04),
gcc-8-base (= 8.4.0-1ubuntu1~18.04),
gettext (= 0.19.8.1-6ubuntu0.3),
gettext-base (= 0.19.8.1-6ubuntu0.3),
grep (= 3.1-2build1),
groff-base (= 1.22.3-10),
gzip (= 1.6-5ubuntu1),
hostname (= 3.20),
init-system-helpers (= 1.51),
install-info (= 6.5.0.dfsg.1-2),
intltool-debian (= 0.35.0+20060710.4),
libacl1 (= 2.2.52-3build1),
libarchive-zip-perl (= 1.60-1ubuntu0.1),
libasan4 (= 7.5.0-3ubuntu1~18.04),
libasan5 (= 8.4.0-1ubuntu1~18.04),
libatomic1 (= 8.4.0-1ubuntu1~18.04),
libattr1 (= 1:2.4.47-2build1),
libaudit-common (= 1:2.8.2-1ubuntu1),
libaudit1 (= 1:2.8.2-1ubuntu1),
libbinutils (= 2.30-21ubuntu1~18.04.2),
libblkid1 (= 2.31.1-0.4ubuntu3.5),
libbsd0 (= 0.8.7-1ubuntu0.1),
libbz2-1.0 (= 1.0.6-8.1ubuntu0.2),
libc-bin (= 2.27-3ubuntu1),
libc-dev-bin (= 2.27-3ubuntu1.4),
libc6 (= 2.27-3ubuntu1.4),
libc6-dev (= 2.27-3ubuntu1.4),
libcap-ng0 (= 0.7.7-3.1),
libcc1-0 (= 8.4.0-1ubuntu1~18.04),
libcilkrts5 (= 7.5.0-3ubuntu1~18.04),
libcom-err2 (= 1.44.1-1ubuntu1.3),
libcroco3 (= 0.6.12-2),
libdb5.3 (= 5.3.28-13.1ubuntu1.1),
libdebconfclient0 (= 0.213ubuntu1),
libdpkg-perl (= 1.19.0.5ubuntu2.3),
libexpat1 (= 2.2.5-3ubuntu0.2),
libext2fs2 (= 1.44.1-1ubuntu1.3),
libfdisk1 (= 2.31.1-0.4ubuntu3.5),
libffi6 (= 3.2.1-8),
libfile-stripnondeterminism-perl (= 0.040-1.1~build1),
libgcc-7-dev (= 7.5.0-3ubuntu1~18.04),
libgcc-8-dev (= 8.4.0-1ubuntu1~18.04),
libgcc1 (= 1:8.4.0-1ubuntu1~18.04),
libgcrypt20 (= 1.8.1-4ubuntu1.2),
libgdbm-compat4 (= 1.14.1-6),
libgdbm5 (= 1.14.1-6),
libglib2.0-0 (= 2.56.4-0ubuntu0.18.04.6),
libgmp10 (= 2:6.1.2+dfsg-2),
libgomp1 (= 8.4.0-1ubuntu1~18.04),
libgpg-error0 (= 1.27-6),
libicu60 (= 60.2-3ubuntu3.1),
libisl19 (= 0.19-1),
libitm1 (= 8.4.0-1ubuntu1~18.04),
liblsan0 (= 8.4.0-1ubuntu1~18.04),
liblz4-1 (= 0.0~r131-2ubuntu3),
liblzma5 (= 5.2.2-1.3),
libmagic-mgc (= 1:5.32-2ubuntu0.3),
libmagic1 (= 1:5.32-2ubuntu0.3),
libmount1 (= 2.31.1-0.4ubuntu3.5),
libmpc3 (= 1.1.0-1),
libmpdec2 (= 2.4.2-1ubuntu1),
libmpfr6 (= 4.0.1-1),
libmpx2 (= 8.4.0-1ubuntu1~18.04),
libncursesw5 (= 6.1-1ubuntu1.18.04),
libpam-modules (= 1.1.8-3.6ubuntu2.18.04.1),
libpam-modules-bin (= 1.1.8-3.6ubuntu2.18.04.1),
libpam-runtime (= 1.1.8-3.6ubuntu2.18.04.1),
libpam0g (= 1.1.8-3.6ubuntu2.18.04.1),
libpcre3 (= 2:8.39-9),
libperl5.26 (= 5.26.1-6ubuntu0.3),
libpipeline1 (= 1.5.0-1),
libpython-stdlib (= 2.7.15~rc1-1),
libpython2.7-minimal (= 2.7.17-1~18.04ubuntu1.2),
libpython2.7-stdlib (= 2.7.17-1~18.04ubuntu1.2),
libpython3-stdlib (= 3.6.7-1~18.04),
libpython3.6-minimal (= 3.6.9-1~18.04ubuntu1.3),
libpython3.6-stdlib (= 3.6.9-1~18.04ubuntu1.3),
libquadmath0 (= 8.4.0-1ubuntu1~18.04),
libreadline7 (= 7.0-3),
libseccomp2 (= 2.4.1-0ubuntu0.18.04.2),
libselinux1 (= 2.7-2build2),
libsigsegv2 (= 2.12-1),
libsmartcols1 (= 2.31.1-0.4ubuntu3.5),
libsqlite3-0 (= 3.22.0-1ubuntu0.2),
libss2 (= 1.44.1-1ubuntu1.3),
libssl1.1 (= 1.1.1-1ubuntu2.1~18.04.7),
libstdc++-7-dev (= 7.5.0-3ubuntu1~18.04),
libstdc++6 (= 8.4.0-1ubuntu1~18.04),
libsystemd0 (= 237-3ubuntu10.33),
libtimedate-perl (= 2.3000-2),
libtinfo5 (= 6.1-1ubuntu1.18.04),
libtool (= 2.4.6-2),
libtsan0 (= 8.4.0-1ubuntu1~18.04),
libubsan0 (= 7.5.0-3ubuntu1~18.04),
libubsan1 (= 8.4.0-1ubuntu1~18.04),
libudev1 (= 237-3ubuntu10.33),
libunistring2 (= 0.9.9-0ubuntu2),
libuuid1 (= 2.31.1-0.4ubuntu3.7),
libxml2 (= 2.9.4+dfsg1-6.1ubuntu1.2),
libzstd1 (= 1.3.3+dfsg-2ubuntu1.1),
linux-libc-dev (= 4.15.0-129.132),
login (= 1:4.5-1ubuntu2),
m4 (= 1.4.18-1),
make (= 4.1-9.1ubuntu1),
man-db (= 2.8.3-2ubuntu0.1),
mawk (= 1.3.3-17ubuntu3),
mime-support (= 3.60ubuntu1),
ncurses-base (= 6.1-1ubuntu1.18.04),
ncurses-bin (= 6.1-1ubuntu1.18.04),
patch (= 2.7.6-2ubuntu1.1),
perl (= 5.26.1-6ubuntu0.3),
perl-base (= 5.26.1-6ubuntu0.3),
perl-modules-5.26 (= 5.26.1-6ubuntu0.3),
po-debconf (= 1.0.20),
python (= 2.7.15~rc1-1),
python-all (= 2.7.15~rc1-1),
python-minimal (= 2.7.15~rc1-1),
python2.7 (= 2.7.17-1~18.04ubuntu1.2),
python2.7-minimal (= 2.7.17-1~18.04ubuntu1.2),
python3 (= 3.6.7-1~18.04),
python3-all (= 3.6.7-1~18.04),
python3-distutils (= 3.6.9-1~18.04),
python3-lib2to3 (= 3.6.9-1~18.04),
python3-minimal (= 3.6.7-1~18.04),
python3-pkg-resources (= 39.0.1-2),
python3-setuptools (= 39.0.1-2),
python3.6 (= 3.6.9-1~18.04ubuntu1.3),
python3.6-minimal (= 3.6.9-1~18.04ubuntu1.3),
readline-common (= 7.0-3),
sed (= 4.4-2),
sysvinit-utils (= 2.88dsf-59.10ubuntu1),
tar (= 1.29b-2ubuntu0.1),
util-linux (= 2.31.1-0.4ubuntu3.5),
xz-utils (= 5.2.2-1.3),
zlib1g (= 1:1.2.11.dfsg-0ubuntu2)
Environment:
DEB_BUILD_OPTIONS="parallel=4"
LANG="en_US.UTF-8"
MAKEFLAGS="w -- TAG=vpp_debug PLATFORM=vpp"
SOURCE_DATE_EPOCH="1608797876"
Format: 1.8
Date: Thu, 24 Dec 2020 00:17:56 -0800
Source: vpp
Binary: vpp vpp-dbg vpp-dev libvppinfra libvppinfra-dev vpp-plugin-core vpp-plugin-dpdk vpp-api-python python3-vpp-api
Architecture: amd64
Version: 20.05-rc0~582-g1339dce8f
Distribution: unstable
Urgency: low
Maintainer: fd.io VPP Packaging Team <vpp-dev@fd.io>
Changed-By: fd.io VPP <vpp-dev@fd.io>
Description:
libvppinfra - Vector Packet Processing--runtime libraries
libvppinfra-dev - Vector Packet Processing--runtime libraries
python3-vpp-api - VPP Python3 API bindings
vpp - Vector Packet Processing--executables
vpp-api-python - VPP Python API bindings
vpp-dbg - Vector Packet Processing--debug symbols
vpp-dev - Vector Packet Processing--development support
vpp-plugin-core - Vector Packet Processing--runtime core plugins
vpp-plugin-dpdk - Vector Packet Processing--runtime dpdk plugin
Changes:
vpp (20.05-rc0~582-g1339dce8f) unstable; urgency=low
.
* no description
Checksums-Sha1:
f4995085c59859aa2342bf4a3fe6f2356e85eda1 142524 libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
478e9fdcbbda362b0c552ef956741e7e16a4df1c 161572 libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
20cf61a9e724beb810a9853d5fdb578ed72943cf 24168 python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
022a80245edf072efe23c8f913d0b9bc0103267b 24124 vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
4fdfc85e9bc553c2863b21b71c1787a3814274e3 39907440 vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
8ef9deb5b15de83f63828da80d40cc8b9a6f4059 985528 vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
93c9fc2bc94390f148380c4f7ff45985d774180c 2707304 vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
99e484c21e47baa7a49f8141956fb186be9f712a 3830768 vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
b391603d474cedb77be172157a4a7ce04a710c9f 9104 vpp_20.05-rc0~582-g1339dce8f_amd64.buildinfo
21e19bfcfe3f678b6fbeba40b529bfa25f8756d7 2649180 vpp_20.05-rc0~582-g1339dce8f_amd64.deb
Checksums-Sha256:
e5193d91a79c336f03ce721a805516ef13bb1ab930119688e2a7abbe2eaece94 142524 libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
a921d40f8f8c612919cd9139f8a47f89d3a205b96f7a1542f09cd7ae416bdf5b 161572 libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
d6904cf1c1e9654f6cc1433415f08c65c92038b02c83e130aa3fd47749e0348a 24168 python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
65d8c4bfa3c662422796d96e30885c90a5d6fb8b91788718dc704d8653661d34 24124 vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
fbab0d38bef3acc15e31aec99fec333f23843b681454b55e3df651d8568b645f 39907440 vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
369192bd7242cc47de06a2c9ae9378941cac20f38e7baf25feaa724ca26da0be 985528 vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
8004717d98339cc4478b25014e28d42209113dc8720aae74b9d1fae1a7347f10 2707304 vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
7732ba44397c0884b51e7b89b68fe79af655730aa51e373b850c587ed0807cb1 3830768 vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
fb9ceadac2e039a94a9a4cbc12be943912e241b179c48aa95e28a6c38673af34 9104 vpp_20.05-rc0~582-g1339dce8f_amd64.buildinfo
adca64c06e081fcb3a4acfa40b2450b119070e02505e40d95670083dd78c6e81 2649180 vpp_20.05-rc0~582-g1339dce8f_amd64.deb
Files:
c6799a1a73f586cbd49cb6be0ea0dea9 142524 net extra libvppinfra-dev_20.05-rc0~582-g1339dce8f_amd64.deb
ab50de832bfc4c1a7af6443d196e5db3 161572 net extra libvppinfra_20.05-rc0~582-g1339dce8f_amd64.deb
8a47d3a8bcab84b934a78562a0f2eaf9 24168 net extra python3-vpp-api_20.05-rc0~582-g1339dce8f_amd64.deb
093ec881d553f080db1d06f0957230f1 24124 net extra vpp-api-python_20.05-rc0~582-g1339dce8f_amd64.deb
f833280bfe4a664cfde2924827d3973f 39907440 net extra vpp-dbg_20.05-rc0~582-g1339dce8f_amd64.deb
2291467cbaf312f5125f18147c62c9a8 985528 net extra vpp-dev_20.05-rc0~582-g1339dce8f_amd64.deb
c3e2d77d208ddb4d70af7c31e1c67a00 2707304 net extra vpp-plugin-core_20.05-rc0~582-g1339dce8f_amd64.deb
7cb4de611de26a5bb7ce5b4f6b753209 3830768 net extra vpp-plugin-dpdk_20.05-rc0~582-g1339dce8f_amd64.deb
440d5d95403ef1e3bbd19f14242c9d36 9104 net extra vpp_20.05-rc0~582-g1339dce8f_amd64.buildinfo
9b5ea676e4cab05ca853239333b263a4 2649180 net extra vpp_20.05-rc0~582-g1339dce8f_amd64.deb
...@@ -4,14 +4,14 @@ Binary: vpp-ext-deps ...@@ -4,14 +4,14 @@ Binary: vpp-ext-deps
Architecture: amd64 Architecture: amd64
Version: 20.05-8 Version: 20.05-8
Checksums-Md5: Checksums-Md5:
bc43a8d4322f0165a98395e4b7c89681 27119876 vpp-ext-deps_20.05-8_amd64.deb 60edd9380e7fc7afa95aafc2591fd072 27106984 vpp-ext-deps_20.05-8_amd64.deb
Checksums-Sha1: Checksums-Sha1:
0666bbabe4bbf1ce305f4af0150ab3e069cbac56 27119876 vpp-ext-deps_20.05-8_amd64.deb a630d6be1676b8e9f9f34f0c7955bef30711ecd9 27106984 vpp-ext-deps_20.05-8_amd64.deb
Checksums-Sha256: Checksums-Sha256:
7d17ef6d1e1303c5b387c422c265e54324dd6310ed052d5b5da0db992be7e0bd 27119876 vpp-ext-deps_20.05-8_amd64.deb e14aac6af4507732852055c872e61cf954c6cab5040d63a8240c192207655afc 27106984 vpp-ext-deps_20.05-8_amd64.deb
Build-Origin: Ubuntu Build-Origin: Ubuntu
Build-Architecture: amd64 Build-Architecture: amd64
Build-Date: Thu, 24 Dec 2020 00:13:00 -0800 Build-Date: Thu, 24 Dec 2020 01:14:38 -0800
Installed-Build-Depends: Installed-Build-Depends:
autoconf (= 2.69-11), autoconf (= 2.69-11),
automake (= 1:1.15.1-3ubuntu2), automake (= 1:1.15.1-3ubuntu2),
...@@ -165,4 +165,4 @@ Environment: ...@@ -165,4 +165,4 @@ Environment:
DEB_BUILD_OPTIONS="parallel=4" DEB_BUILD_OPTIONS="parallel=4"
LANG="en_US.UTF-8" LANG="en_US.UTF-8"
MAKEFLAGS="w" MAKEFLAGS="w"
SOURCE_DATE_EPOCH="1608787877" SOURCE_DATE_EPOCH="1608800692"
Format: 1.8 Format: 1.8
Date: Wed, 23 Dec 2020 21:31:17 -0800 Date: Thu, 24 Dec 2020 01:04:52 -0800
Source: vpp-ext-deps Source: vpp-ext-deps
Binary: vpp-ext-deps Binary: vpp-ext-deps
Architecture: amd64 Architecture: amd64
...@@ -15,11 +15,11 @@ Changes: ...@@ -15,11 +15,11 @@ Changes:
. .
* Version 20.05 * Version 20.05
Checksums-Sha1: Checksums-Sha1:
5988cebae18b3bb692d1b0ded1f71dc9096bda7d 5519 vpp-ext-deps_20.05-8_amd64.buildinfo fbaf4dbb363d3d7414b34224223c1439dfdbe080 5519 vpp-ext-deps_20.05-8_amd64.buildinfo
0666bbabe4bbf1ce305f4af0150ab3e069cbac56 27119876 vpp-ext-deps_20.05-8_amd64.deb a630d6be1676b8e9f9f34f0c7955bef30711ecd9 27106984 vpp-ext-deps_20.05-8_amd64.deb
Checksums-Sha256: Checksums-Sha256:
af9e814708ebeea93c1d3a69cd3131395bc67f844c881cb6fd946b33d01fa02f 5519 vpp-ext-deps_20.05-8_amd64.buildinfo b8e73b327cfc0df96223b2348384400cb2f2daaec3cce9aae1e617e145dc44cd 5519 vpp-ext-deps_20.05-8_amd64.buildinfo
7d17ef6d1e1303c5b387c422c265e54324dd6310ed052d5b5da0db992be7e0bd 27119876 vpp-ext-deps_20.05-8_amd64.deb e14aac6af4507732852055c872e61cf954c6cab5040d63a8240c192207655afc 27106984 vpp-ext-deps_20.05-8_amd64.deb
Files: Files:
72c80d162880f1c962035ebfc1a83da7 5519 net extra vpp-ext-deps_20.05-8_amd64.buildinfo 129cdb159babbad1ef5c31a6246be4b0 5519 net extra vpp-ext-deps_20.05-8_amd64.buildinfo
bc43a8d4322f0165a98395e4b7c89681 27119876 net extra vpp-ext-deps_20.05-8_amd64.deb 60edd9380e7fc7afa95aafc2591fd072 27106984 net extra vpp-ext-deps_20.05-8_amd64.deb
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment