Version bump, release ready when dev-b is merged back. 10/1910/1
authorTommy Carpenter <tc677g@att.com>
Mon, 2 Dec 2019 20:04:45 +0000 (15:04 -0500)
committerTommy Carpenter <tc677g@att.com>
Mon, 2 Dec 2019 20:04:57 +0000 (15:04 -0500)
Change-Id: I43be2ce9535d454e95c9c9a042bfde0a35031eb6
Signed-off-by: Tommy Carpenter <tc677g@att.com>
src/bindings/rmr-python/Dockerfile-Unit-Test
src/bindings/rmr-python/docs/release-notes.rst
src/bindings/rmr-python/setup.py

index d9ee412..3f0a4f4 100644 (file)
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 # ==================================================================================
+# install a well known working rmr
 FROM python:3.7-alpine
-
-# the alpine image keeps changing; if it fails try searching:
-# https://nexus3.o-ran-sc.org/#browse/search=keyword%3Dalpine3
-#
-# copy NNG and rmr out of the  CI builder nng
-COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:5-a3.9 /usr/local/lib64/libnng.so /usr/local/lib64/libnng.so
-COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:5-a3.9 /usr/local/lib64/librmr_nng.so /usr/local/lib64/librmr_nng.so
+RUN apk update && apk add autoconf automake build-base cmake libtool ninja pkgconfig git
+RUN git clone --branch 1.10.2 https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \
+    && cd rmr \
+    && mkdir build \
+    && cd build \
+    && cmake .. -DPACK_EXTERNALS=1 \
+    && make install
 
 COPY rmr/ /tmp/rmr
 COPY tests/ /tmp/tests
index 7e31581..25ab2ea 100644 (file)
@@ -7,7 +7,7 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
 and this project adheres to `Semantic
 Versioning <http://semver.org/>`__.
 
-[X.X.X] - xxx
+[2.0.0] - 12/2/2019
 --------------------
 
 ::
index 5651e6b..ff3b352 100644 (file)
@@ -32,7 +32,7 @@ def _long_descr():
 
 setup(
     name="rmr",
-    version="1.0.0",
+    version="2.0.0",
     packages=find_packages(),
     author="Tommy Carpenter, E. Scott Daniels",
     description="Python wrapper for RIC RMR",