Skip to content

Commit ba0719d

Browse files
authored
Merge pull request #821 from ssurenr/fixbuild
Fix Builds due to process-dependency-links removal
2 parents b8bcfc0 + e38d26b commit ba0719d

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

build-tools/Dockerfile.debian.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ COPY requirements.docs.txt /tmp/requirements.docs.txt
6161

6262
RUN pip install --no-cache-dir --upgrade pip && \
6363
pip install --no-cache-dir setuptools flake8 virtualenv && \
64-
pip install --no-cache-dir --process-dependency-links -r /tmp/requirements.txt && \
64+
pip install --no-cache-dir -r /tmp/requirements.txt && \
6565
pip install --no-cache-dir -r /tmp/requirements.docs.txt && \
6666
go get github.com/wadey/gocovmerge && \
6767
go get golang.org/x/tools/cmd/cover && \

build-tools/Dockerfile.debian.runtime

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY requirements.txt /tmp/requirements.txt
1313
RUN apt-get update && apt-get install -y --no-install-recommends \
1414
git \
1515
&& pip install --no-cache-dir --upgrade pip \
16-
&& pip install --no-cache-dir --process-dependency-links -r /tmp/requirements.txt \
16+
&& pip install --no-cache-dir -r /tmp/requirements.txt \
1717
&& apt-get remove -y git
1818

1919
COPY bigip-virtual-server_v*.json $APPPATH/vendor/src/f5/schemas/

build-tools/Dockerfile.rhel7.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ COPY requirements.docs.txt /tmp/requirements.docs.txt
5656
RUN source scl_source enable python27 && \
5757
pip install --no-cache-dir --upgrade pip && \
5858
pip install --no-cache-dir setuptools flake8 && \
59-
pip install --no-cache-dir --process-dependency-links --ignore-installed -r /tmp/requirements.txt && \
59+
pip install --no-cache-dir --ignore-installed -r /tmp/requirements.txt && \
6060
pip install --no-cache-dir -r /tmp/requirements.docs.txt && \
6161
go get github.com/wadey/gocovmerge && \
6262
go get golang.org/x/tools/cmd/cover && \

build-tools/Dockerfile.rhel7.runtime

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN microdnf --enablerepo=rhel-7-server-rpms --enablerepo=rhel-7-server-optional
3030
go-md2man -in /tmp/help.md -out /help.1 && rm -f /tmp/help.md && \
3131
source scl_source enable python27 && \
3232
pip install --no-cache-dir --upgrade pip && \
33-
pip install --no-cache-dir --process-dependency-links -r /tmp/requirements.txt && \
33+
pip install --no-cache-dir -r /tmp/requirements.txt && \
3434
python -m pip uninstall -y pip && \
3535
adduser ctlr && \
3636
microdnf remove golang-github-cpuguy83-go-md2man git fipscheck fipscheck-lib groff-base \

build-tools/attributions-generator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set -e
88
set -x
99

10-
ATTR_GEN_IMG=f5devcentral/attributions-generator:latest
10+
ATTR_GEN_IMG=f5networksdevel/attributions-generator:latest
1111
docker pull ${ATTR_GEN_IMG}
1212

1313
RUN_ARGS=( \

docs/conf.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
sys.path.insert(0, os.path.abspath('../'))
2525

2626
import f5_sphinx_theme
27-
import recommonmark
28-
import CommonMark
29-
from recommonmark.parser import CommonMarkParser
3027

3128
# -- General configuration ------------------------------------------------
3229

@@ -45,6 +42,7 @@
4542
'sphinx.ext.doctest',
4643
'sphinxjp.themes.basicstrap',
4744
'sphinx.ext.extlinks',
45+
'recommonmark',
4846
'cloud_sptheme.ext.table_styling'
4947
]
5048

@@ -55,11 +53,12 @@
5553
# You can specify multiple suffix as a list of string:
5654
#
5755
# source_suffix = ['.rst', '.md']
58-
source_suffix = ['.rst', '.md']
5956

60-
source_parsers = {
61-
'.md': CommonMarkParser,
62-
}
57+
source_suffix = {
58+
'.rst': 'restructuredtext',
59+
'.txt': 'markdown',
60+
'.md': 'markdown',
61+
}
6362

6463

6564
# The encoding of source files.

pkg/appmanager/appManager_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3422,9 +3422,9 @@ var _ = Describe("AppManager Tests", func() {
34223422
Name: "foo",
34233423
},
34243424
TLS: &routeapi.TLSConfig{
3425-
Termination: "reencrypt",
3426-
Certificate: "cert",
3427-
Key: "key",
3425+
Termination: "reencrypt",
3426+
Certificate: "cert",
3427+
Key: "key",
34283428
DestinationCACertificate: "destCaCert",
34293429
},
34303430
}
@@ -3630,9 +3630,9 @@ var _ = Describe("AppManager Tests", func() {
36303630
TargetPort: intstr.FromInt(80),
36313631
},
36323632
TLS: &routeapi.TLSConfig{
3633-
Termination: "edge",
3634-
Certificate: "cert",
3635-
Key: "key",
3633+
Termination: "edge",
3634+
Certificate: "cert",
3635+
Key: "key",
36363636
InsecureEdgeTerminationPolicy: routeapi.InsecureEdgeTerminationPolicyRedirect,
36373637
},
36383638
}
@@ -3853,9 +3853,9 @@ var _ = Describe("AppManager Tests", func() {
38533853
},
38543854
},
38553855
TLS: &routeapi.TLSConfig{
3856-
Termination: "reencrypt",
3857-
Certificate: "cert",
3858-
Key: "key",
3856+
Termination: "reencrypt",
3857+
Certificate: "cert",
3858+
Key: "key",
38593859
DestinationCACertificate: "destCaCert",
38603860
},
38613861
}

pkg/appmanager/profiles_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,9 @@ var _ = Describe("AppManager Profile Tests", func() {
308308
Name: "foo",
309309
},
310310
TLS: &routeapi.TLSConfig{
311-
Termination: "reencrypt",
312-
Certificate: "cert",
313-
Key: "key",
311+
Termination: "reencrypt",
312+
Certificate: "cert",
313+
Key: "key",
314314
DestinationCACertificate: "destCaCert",
315315
},
316316
}

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
-e git+https://github.com/f5devcentral/f5-ctlr-agent.git@671a0defbea9e7def753adb685cbd9230754f131#egg=f5-ctlr-agent
2+
-e git+https://github.com/f5devcentral/f5-cccl.git@cfaaa7713fddf9fe28400317548d25b104d3b865#egg=f5-cccl

0 commit comments

Comments
 (0)