summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b2adb156ceee..181b17940d33 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ros-noetic-rosgraph
pkgdesc = ROS - rosgraph contains the rosgraph command-line tool, which prints information about the ROS Computation Graph.
pkgver = 1.16.0
- pkgrel = 1
+ pkgrel = 2
url = https://wiki.ros.org/rosgraph
arch = any
license = BSD
@@ -12,6 +12,8 @@ pkgbase = ros-noetic-rosgraph
depends = python-netifaces
depends = python-rospkg
source = ros-noetic-rosgraph-1.16.0.tar.gz::https://github.com/ros/ros_comm/archive/1.16.0.tar.gz
+ source = frame.patch::https://github.com/ros/ros_comm/pull/2331.patch
sha256sums = 0a51857a50cf646db4af85469cb0e4877b1484f7aa0c00ec65a8be7ff574a886
+ sha256sums = SKIP
pkgname = ros-noetic-rosgraph
diff --git a/PKGBUILD b/PKGBUILD
index eb8fa3b0afe4..4f7c50408d4d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ url='https://wiki.ros.org/rosgraph'
pkgname='ros-noetic-rosgraph'
pkgver='1.16.0'
arch=('any')
-pkgrel=1
+pkgrel=2
license=('BSD')
ros_makedepends=(
@@ -30,11 +30,14 @@ depends=(
)
_dir="ros_comm-${pkgver}/tools/rosgraph"
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/ros/ros_comm/archive/${pkgver}.tar.gz")
-sha256sums=('0a51857a50cf646db4af85469cb0e4877b1484f7aa0c00ec65a8be7ff574a886')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/ros/ros_comm/archive/${pkgver}.tar.gz"
+ "frame.patch"::"https://github.com/ros/ros_comm/pull/2331.patch")
+sha256sums=('0a51857a50cf646db4af85469cb0e4877b1484f7aa0c00ec65a8be7ff574a886'
+ 'SKIP')
prepare() {
- cd "${srcdir}/${_dir}"
+ cd "${srcdir}/ros_comm-${pkgver}"
+ patch -Np1 -i "${srcdir}/frame.patch"
}