Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions build-aux/build-debs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ printf '%s\n' "1:${OVN_BASE}-pf9-${PF9_VERSION}-${BUILD_NUMBER}" > $TEAMCITY_ROO
# configure.ac gets the dot-separated binary version via pf9_patch_ovn_binary_version
sed -i "s/__PF9_OVN_BUILD_VERSION__/$PF9_OVN_BUILD_VERSION/g" "$ROOT/debian/changelog"

# dpkg-buildpackage only reads the TOPMOST changelog entry. An upstream rebase can
# prepend a new "ovn (X.Y.Z-1)" entry above ours, silently shipping unversioned debs.
ACTUAL_VER=$(cd "$ROOT" && dpkg-parsechangelog -S Version)
if [ "$ACTUAL_VER" != "$PF9_OVN_BUILD_VERSION" ]; then
echo "ERROR: top debian/changelog entry is '$ACTUAL_VER', expected '$PF9_OVN_BUILD_VERSION'."
echo "The Platform9 changelog entry must be the topmost entry in debian/changelog."
exit 1
fi

pf9_patch_ovn_binary_version

# --- OVS CONFIGURATION ---
Expand Down
12 changes: 6 additions & 6 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ovn (25.09.4-1) unstable; urgency=low
[ OVN team ]
* New upstream version

-- OVN team <dev@openvswitch.org> Tue, 16 Jun 2026 12:11:30 -0400

ovn (__PF9_OVN_BUILD_VERSION__) unstable; urgency=medium
[ Platform9 Systems ]
* ovn-northd: added changes to support l2 only ports
* container: added support to build ovn container using custom changes

-- Platform9 Systems <info@platform9.com> Tue, 16 Dec 2025 22:00:00 -0800

ovn (25.09.4-1) unstable; urgency=low
[ OVN team ]
* New upstream version

-- OVN team <dev@openvswitch.org> Tue, 16 Jun 2026 12:11:30 -0400

ovn (25.09.3-1) unstable; urgency=low
[ OVN team ]
* New upstream version
Expand Down
Loading