summaryrefslogtreecommitdiffstats
path: root/INFO.yaml
blob: 1785ca51f4a74e48d11d267ca4b71340bcbf54e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
project: 'kuberef'
project_creation_date: '2020-07-08'
project_category: ''
lifecycle_state: 'Incubation'
project_lead: &opnfv_kuberef_ptl
    name: 'Rihab Banday'
    email: 'rihab.banday@ericsson.com'
    company: 'Ericsson'
    id: 'rihabbanday'
primary_contact: *opnfv_kuberef_ptl
issue_tracking:
    type: 'jira'
    url: 'https://jira.opnfv.org/projects/'
    key: 'kuberef'
mailing_list:
    type: 'groups.io'
    url: 'technical-discuss@lists.opnfv.org'
    tag: '[]'
realtime_discussion:
    type: 'irc'
    server: 'freenode.net'
    channel: '#opnfv'
meetings:
    - type: 'gotomeeting+irc'
      agenda: 'https://wiki.opnfv.org/display/'
      url: ''
      server: 'freenode.net'
      channel: '#opnfv'
      repeats: ''
      time: ''
repositories:
    - kuberef
committers:
    - <<: *opnfv_kuberef_ptl
    - name: 'Trevor Cooper'
      email: 'trevor.cooper@intel.com'
      company: 'intel.com'
      id: 'trev'
    - name: 'Georg Kunz'
      email: 'georg.kunz@ericsson.com'
      company: 'ericsson.com'
      id: 'georgkunz'
    - name: 'James Gu'
      email: 'james.gu@att.com'
      company: 'ATT'
      id: 'jamesgu'
    - name: 'Michael Pedersen'
      email: 'michaelx.pedersen@intel.com'
      company: 'Intel'
      id: 'pedersex'
    - name: 'Victor Morales'
      email: 'v.morales@samsung.com'
      company: 'Samsung'
      id: 'electrocucaracha'
tsc:
    # yamllint disable rule:line-length
    approval: 'https://lists.opnfv.org/g/opnfv-tsc/message/6210'
    changes:
        - type: ''
          name: ''
          link: ''
="k">$(OVS_URL) $(OVS_TAG) @echo "git pull done" $(AT)echo "WITH_LINUX = $(WITH_LINUX)" $(AT)$(MAKE) -C $(WORK_DIR) $(MORE_MAKE_FLAGS) @echo "Make done" force_install: $(AT)sudo make -C $(WORK_DIR) modules_install $(AT)sudo $(MAKE) -C $(WORK_DIR) install install: $(INSTALL_TARGET) # hard way to clean and clobber clean: $(AT)cd $(WORK_DIR) && git clean -xfd *.o clobber: $(AT)rm -rf $(WORK_DIR) $(AT)rm -rf $(OVS_VANILLA) $(AT)rm -rf $(OVS_CUSE) # distclean is for developer who would like to keep the # clone git repo, saving time to fetch again from url distclean: $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f test: @echo "Make test in $(WORK_DIR) (stub) " sanity: @echo "Make sanity in $(WORK_DIR) (stub) " .PHONY: boot # boot ovs is the process to produce the script 'configure' boot $(WORK_DIR)/configure: @echo "booting up ovs" $(AT)cd $(WORK_DIR); ./boot.sh @echo "done booting ovs" boot $(WORK_DIR)/configure: $(TAG_DONE_FLAG) $(WORK_DIR): $(AT)git clone $(OVS_URL) $(AT)mkdir -p $(OVS_VANILLA) $(AT)cp -rf ./* $(OVS_VANILLA) $(AT)mkdir -p $(OVS_CUSE) $(AT)cp -rf ./* $(OVS_CUSE) $(TAG_DONE_FLAG): $(WORK_DIR) $(AT)cd ovs; git checkout $(OVS_TAG) ifneq ($(PATCH_FILE),) $(AT)cd $(WORK_DIR); patch -p1 < ../$(PATCH_FILE) endif $(AT)touch $@