Review Board

beta

Add django_evolution to automake

Updated 4 months, 3 weeks ago

Gareth Owen Reviewers
trunk reviewboard
573
None Review Board SVN
Add django_evolution to the automake configuration, including the diffviewer changes.  Also picked up some other missing files.
django_evolution now is installed by automake on my system.

Diff revision 1 (Latest)

  1. trunk/reviewboard/Makefile.am: 1 change [ 1 ]
  2. trunk/reviewboard/admin/Makefile.am: 2 changes [ 1 2 ]
  3. trunk/reviewboard/diffviewer/Makefile.am: 1 change [ 1 ]
  4. trunk/reviewboard/templates/Makefile.am: 1 change [ 1 ]
trunk/reviewboard/Makefile.am
Revision 1440 New Change
81
	djblets/media/images/datagrid/unsort.png \
81
	djblets/media/images/datagrid/unsort.png \
82
	djblets/media/js/datagrid.js \
82
	djblets/media/js/datagrid.js \
83
	djblets/util/templates/deco/box.html \
83
	djblets/util/templates/deco/box.html \
84
	djblets/util/templates/deco/errorbox.html
84
	djblets/util/templates/deco/errorbox.html
85
85
86
evolutiondir = $(rbdir)
87
nobase_evolution_PYTHON = \
88
	django_evolution/__init__.py \
89
	django_evolution/diff.py \
90
	django_evolution/evolve.py \
91
	django_evolution/models.py \
92
	django_evolution/mutations.py \
93
	django_evolution/signature.py \
94
	django_evolution/utils.py \
95
	django_evolution/db/__init__.py \
96
	django_evolution/db/common.py \
97
	django_evolution/db/mysql.py \
98
	django_evolution/db/mysql_old.py \
99
	django_evolution/db/postgresql.py \
100
	django_evolution/db/postgresql_psycopg2.py \
101
	django_evolution/db/sqlite3.py \
102
	django_evolution/management/__init__.py \
103
	django_evolution/management/commands/__init__.py \
104
	django_evolution/management/commands/evolve.py 
105
86
EXTRA_DIST = \
106
EXTRA_DIST = \
87
	$(rb_SCRIPTS) \
107
	$(rb_SCRIPTS) \
88
	$(rb_DATA) \
108
	$(rb_DATA) \
89
	$(nobase_djblets_DATA)
109
	$(nobase_djblets_DATA)
90
110
91
install-data-local:
111
install-data-local:
92
	mkdir -p -m 1777 ${DESTDIR}${rbdir}/search-index
112
	mkdir -p -m 1777 ${DESTDIR}${rbdir}/search-index
trunk/reviewboard/admin/Makefile.am
Revision 1440 New Change
1
rbdir = $(pyexecdir)/reviewboard/admin
1
rbdir = $(pyexecdir)/reviewboard/admin
2
nobase_rb_PYTHON = \
2
nobase_rb_PYTHON = \
3
	__init__.py \
3
	__init__.py \
4
	cache_stats.py \
4
	cache_stats.py \
5
	checks.py \
5
	checks.py \
6
	urls.py \
6
	urls.py \
7
	views.py
7
	views.py \
8
	management/__init__.py
9
10
nobase_rb_DATA = \
11
	fixtures/initial_evolution_schema.json
12
13
EXTRA_DIST = $(nobase_rb_DATA)
8
14
trunk/reviewboard/diffviewer/Makefile.am
Revision 1440 New Change
1
rbdir = $(pyexecdir)/reviewboard/diffviewer
1
rbdir = $(pyexecdir)/reviewboard/diffviewer
2
nobase_rb_PYTHON =			\
2
nobase_rb_PYTHON =			\
3
	__init__.py			\
3
	__init__.py			\
4
	diffutils.py			\
4
	diffutils.py			\
5
	forms.py			\
5
	forms.py			\
6
	models.py			\
6
	models.py			\
7
	myersdiff.py			\
7
	myersdiff.py			\
8
	parser.py			\
8
	parser.py			\
9
	smdiff.py			\
9
	smdiff.py			\
10
	tests.py			\
10
	tests.py			\
11
	views.py			\
11
	views.py			\
12
	evolutions/__init__.py \
13
	evolutions/add_parent_diffs.py \
12
	templatetags/__init__.py	\
14
	templatetags/__init__.py	\
13
	templatetags/difftags.py
15
	templatetags/difftags.py
14
16
15
nobase_rb_DATA =				\
17
nobase_rb_DATA =				\
16
	testdata/foo				\
18
	testdata/foo				\
trunk/reviewboard/templates/Makefile.am
Revision 1440 New Change
1
rbdir = $(pyexecdir)/reviewboard/templates
1
rbdir = $(pyexecdir)/reviewboard/templates
2
nobase_rb_DATA = \
2
nobase_rb_DATA = \
3
	404.html \
4
	500.html \
3
	accounts/login.html \
5
	accounts/login.html \
4
	accounts/prefs.html \
6
	accounts/prefs.html \
5
	accounts/register.html \
7
	accounts/register.html \
6
	admin/base_site.html \
8
	admin/base_site.html \
7
	admin/cache_stats.html \
9
	admin/cache_stats.html \
  1. trunk/reviewboard/Makefile.am: 1 change [ 1 ]
  2. trunk/reviewboard/admin/Makefile.am: 2 changes [ 1 2 ]
  3. trunk/reviewboard/diffviewer/Makefile.am: 1 change [ 1 ]
  4. trunk/reviewboard/templates/Makefile.am: 1 change [ 1 ]