summaryrefslogtreecommitdiffstats
path: root/INFO.yaml
blob: eb32801bdd44aa9e1ab62fdfc3df29628fd1adf8 (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
---
project: 'OPNFV documentation project (opnfvdocs)'
project_creation_date: 'March 31, 2015'
project_category: 'Documentation'
lifecycle_state: 'Incubation'
project_lead: &opnfv_opnfvdocs_ptl
    name: 'Sofia Wallin'
    email: 'sofia.wallin@ericsson.com'
    id: 'sofiawallin'
    company: 'ericsson.com'
    timezone: 'Unknown'
primary_contact: *opnfv_opnfvdocs_ptl
issue_tracking:
    type: 'jira'
    url: 'https://jira.opnfv.org/projects/DOCS'
    key: 'DOCS'
mailing_list:
    type: 'mailman2'
    url: 'opnfv-tech-discuss@lists.opnfv.org'
    tag: '[opnfvdocs]'
realtime_discussion:
    type: irc
    server: 'freenode.net'
    channel: '#opnfv-opnfvdocs'
meetings:
    - type: 'gotomeeting+irc'
      agenda:  # eg: 'https://wiki.opnfv.org/display/'
      url:  # eg: 'https://global.gotomeeting.com/join/819733085'
      server: 'freenode.net'
      channel: '#opnfv-meeting'
      repeats: 'weekly'
      time:  # eg: '16:00 UTC'
repositories:
    - 'opnfvdocs'
committers:
    - <<: *opnfv_opnfvdocs_ptl
    - name: 'Christopher Price'
      email: 'christopher.price@est.tech'
      company: 'est.tech'
      id: 'ChristopherPrice'
    - name: 'Fatih Degirmenci'
      email: 'fdegir@gmail.com'
      company: 'gmail.com'
      id: 'fdegir'
    - name: 'Ryota Mibu'
      email: 'r-mibu@cq.jp.nec.com'
      company: 'cq.jp.nec.com'
      id: 'r-mibu'
tsc:
    # yamllint disable rule:line-length
    approval: 'http//ircbot.wl.linuxfoundation.org/meetings/opnfv-meeting/2015/opnfv-meeting.2015-03-31-13.56.html'
    # yamllint enable rule:line-length
PATCH_DIR}/$$name; \ git format-patch --no-signature \ -o ${PATCH_DIR}/$$name -N armband-workbench-root' @find ${PATCH_DIR} -name '*.patch' -exec sed -i -e '1d' {} \; # Apply patches from patches/* to respective submodules # For repos pinned in Fuel@OPNFV's config.mk, checkout pinned commit first .PHONY: patches-import patches-import: submodules-init @cd ${SUBMOD_DIR}/fuel-agent && git checkout -q ${FUEL_AGENT_COMMIT} @cd ${SUBMOD_DIR}/fuel-astute && git checkout -q ${ASTUTE_COMMIT} @cd ${SUBMOD_DIR}/fuel-library && git checkout -q ${FUELLIB_COMMIT} @cd ${SUBMOD_DIR}/fuel-mirror && git checkout -q ${FUEL_MIRROR_COMMIT} @cd ${SUBMOD_DIR}/fuel-nailgun-agent && \ git checkout -q ${FUEL_NAILGUN_AGENT_COMMIT} @cd ${SUBMOD_DIR}/fuel-web && git checkout -q ${NAILGUN_COMMIT} @git submodule -q foreach ' \ mkdir -p ${PATCH_DIR}/$$name; \ git tag armband-workbench-root; \ git checkout -q -b armband-workbench; \ if [ ! -z "$$(ls ${PATCH_DIR}/$$name/)" ]; then \ echo "-- patching $$name"; \ git am --whitespace=nowarn \ --committer-date-is-author-date \ ${PATCH_DIR}/$$name/*.patch; \ fi' # Pass down clean/deepclean/build to Fuel@OPNFV .PHONY: clean clean: submodules-init $(MAKE) -e --no-print-directory -C ${FUEL_BASE}/build clean .PHONY: deepclean deepclean: submodules-init $(MAKE) -e --no-print-directory -C ${FUEL_BASE}/build deepclean .PHONY: build build: $(MAKE) -e --no-print-directory -C ${FUEL_BASE}/build all .PHONY: release release: export LC_ALL=en_US.UTF-8 release: submodules-clean patches-import build