]> git.ipfire.org Git - pbs.git/blob - Makefile.am
builds: Add UI to delete builds
[pbs.git] / Makefile.am
1 ###############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2017 Pakfire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22 AM_MAKEFLAGS = --no-print-directory
23 AUTOMAKE_OPTIONS = color-tests
24
25 # remove target it the command fails
26 .DELETE_ON_ERROR:
27
28 # keep itermediate files
29 .SECONDARY:
30
31 SUBDIRS = . po
32
33 pythondir = $(pyexecdir)/pakfire
34
35 configsdir = $(sysconfdir)/pakfire
36 crondir = $(sysconfdir)/cron.d
37
38 BUILT_SOURCES =
39 CLEANFILES =
40 DISTCLEANFILES =
41 EXTRA_DIST =
42 INSTALL_DIRS =
43 noinst_DATA =
44
45 @INTLTOOL_POLICY_RULE@
46
47 .PHONY: update-po
48 update-po: po/POTFILES.in
49 $(MAKE) -C po update-po
50
51 po/POTFILES.in: Makefile
52 find $(abs_srcdir)/src -not -path "$(abs_srcdir)/src/third-party/*" | \
53 grep -E "\.(html|py|txt)(\.in)?$$" | \
54 sed -e "s@$(abs_srcdir)/@@g" | \
55 LC_COLLATE=C sort > $@
56
57 DISTCHECK_CONFIGURE_FLAGS = \
58 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
59
60 # ------------------------------------------------------------------------------
61
62 AM_V_XSLT = $(AM_V_XSLT_$(V))
63 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
64 AM_V_XSLT_0 = @echo " XSLT " $@;
65
66 # ------------------------------------------------------------------------------
67
68 dist_doc_DATA = \
69 COPYING \
70 README
71
72 # ------------------------------------------------------------------------------
73
74 dist_bin_SCRIPTS = \
75 src/scripts/pakfire-build-service \
76 src/scripts/pakfire-hub \
77 src/scripts/pakfire-web
78
79 dist_configs_DATA = \
80 pbs.conf.sample
81
82 buildservice_PYTHON = \
83 src/buildservice/__init__.py \
84 src/buildservice/__version__.py \
85 src/buildservice/aws.py \
86 src/buildservice/base.py \
87 src/buildservice/bugtracker.py \
88 src/buildservice/builders.py \
89 src/buildservice/builds.py \
90 src/buildservice/cache.py \
91 src/buildservice/config.py \
92 src/buildservice/constants.py \
93 src/buildservice/database.py \
94 src/buildservice/decorators.py \
95 src/buildservice/distribution.py \
96 src/buildservice/events.py \
97 src/buildservice/git.py \
98 src/buildservice/jobqueue.py \
99 src/buildservice/jobs.py \
100 src/buildservice/keys.py \
101 src/buildservice/messages.py \
102 src/buildservice/mirrors.py \
103 src/buildservice/misc.py \
104 src/buildservice/packages.py \
105 src/buildservice/repository.py \
106 src/buildservice/sessions.py \
107 src/buildservice/settings.py \
108 src/buildservice/sources.py \
109 src/buildservice/uploads.py \
110 src/buildservice/users.py
111
112 buildservicedir = $(pythondir)/buildservice
113
114 BUILT_SOURCES += \
115 src/buildservice/constants.py
116
117 EXTRA_DIST += \
118 src/buildservice/constants.py.in
119
120 CLEANFILES += \
121 src/buildservice/constants.py
122
123 hub_PYTHON = \
124 src/hub/__init__.py \
125 src/hub/builds.py \
126 src/hub/handlers.py \
127 src/hub/jobs.py \
128 src/hub/queue.py \
129 src/hub/uploads.py
130
131 hubdir = $(buildservicedir)/hub
132
133 web_PYTHON = \
134 src/web/__init__.py \
135 src/web/auth.py \
136 src/web/base.py \
137 src/web/bugs.py \
138 src/web/builders.py \
139 src/web/builds.py \
140 src/web/distributions.py \
141 src/web/errors.py \
142 src/web/events.py \
143 src/web/handlers.py \
144 src/web/jobs.py \
145 src/web/keys.py \
146 src/web/mirrors.py \
147 src/web/packages.py \
148 src/web/repos.py \
149 src/web/search.py \
150 src/web/ui_modules.py \
151 src/web/users.py
152
153 webdir = $(buildservicedir)/web
154
155 # ------------------------------------------------------------------------------
156
157 dist_templates_DATA = \
158 src/templates/base.html \
159 src/templates/build-manage.html \
160 src/templates/build-schedule-test.html \
161 src/templates/build-state.html \
162 src/templates/distro-edit.html \
163 src/templates/distro-source-commit-detail.html \
164 src/templates/distro-source-commit-reset.html \
165 src/templates/distro-source-commits.html \
166 src/templates/distro-source-detail.html \
167 src/templates/distro-update-detail.html \
168 src/templates/distro-update-edit.html \
169 src/templates/file-detail.html \
170 src/templates/index.html \
171 src/templates/jobs-abort.html \
172 src/templates/jobs-buildroot.html \
173 src/templates/log.html \
174 src/templates/login.html \
175 src/templates/package-properties.html \
176 src/templates/queue.html \
177 src/templates/search.html \
178 src/templates/source-list.html
179
180 templatesdir = $(datadir)/templates
181
182 templates_bugsdir = $(templatesdir)/bugs
183
184 dist_templates_bugs_modules_DATA = \
185 src/templates/bugs/modules/list.html
186
187 templates_bugs_modulesdir = $(templates_bugsdir)/modules
188
189 dist_templates_builders_DATA = \
190 src/templates/builders/delete.html \
191 src/templates/builders/detail.html \
192 src/templates/builders/edit.html \
193 src/templates/builders/list.html \
194 src/templates/builders/new.html
195
196 templates_buildersdir = $(templatesdir)/builders
197
198 dist_templates_builds_DATA = \
199 src/templates/builds/delete.html \
200 src/templates/builds/index.html \
201 src/templates/builds/show.html
202
203 templates_buildsdir = $(templatesdir)/builds
204
205 dist_templates_builds_messages_DATA = \
206 src/templates/builds/messages/comment.txt \
207 src/templates/builds/messages/failed.txt \
208 src/templates/builds/messages/finished.txt
209
210 templates_builds_messagesdir = $(templates_buildsdir)/messages
211
212 dist_templates_builds_modules_DATA = \
213 src/templates/builds/modules/list.html
214
215 templates_builds_modulesdir = $(templates_buildsdir)/modules
216
217 dist_templates_distros_DATA = \
218 src/templates/distros/index.html \
219 src/templates/distros/show.html
220
221 templates_distrosdir = $(templatesdir)/distros
222
223 dist_templates_errors_DATA = \
224 src/templates/errors/error.html \
225 src/templates/errors/error-400.html \
226 src/templates/errors/error-403.html \
227 src/templates/errors/error-404.html
228
229 templates_errorsdir = $(templatesdir)/errors
230
231 templates_eventsdir = $(templatesdir)/events
232
233 dist_templates_events_modules_DATA = \
234 src/templates/events/modules/list.html \
235 src/templates/events/modules/build-comment.html \
236 src/templates/events/modules/system-message.html \
237 src/templates/events/modules/user-message.html
238
239 templates_events_modulesdir = $(templates_eventsdir)/modules
240
241 templates_jobsdir = $(templatesdir)/jobs
242
243 dist_templates_jobs_messages_DATA = \
244 src/templates/jobs/messages/failed.txt
245
246 templates_jobs_messagesdir = $(templates_jobsdir)/messages
247
248 templates_messagesdir = $(templatesdir)/messages
249
250 dist_templates_mirrors_DATA = \
251 src/templates/mirrors/delete.html \
252 src/templates/mirrors/detail.html \
253 src/templates/mirrors/edit.html \
254 src/templates/mirrors/list.html \
255 src/templates/mirrors/new.html
256
257 templates_mirrorsdir = $(templatesdir)/mirrors
258
259 dist_templates_modules_DATA = \
260 src/templates/modules/build-offset.html \
261 src/templates/modules/build-state-warnings.html \
262 src/templates/modules/build-table.html \
263 src/templates/modules/commits-table.html \
264 src/templates/modules/commit-message.html \
265 src/templates/modules/files-table.html \
266 src/templates/modules/link-to-user.html \
267 src/templates/modules/log-files-table.html \
268 src/templates/modules/modal-base.html \
269 src/templates/modules/modal-build-comment.html \
270 src/templates/modules/modal-build-push.html \
271 src/templates/modules/modal-build-unpush.html \
272 src/templates/modules/packages-files-table.html \
273 src/templates/modules/source-table.html \
274 src/templates/modules/text.html
275
276 templates_modulesdir = $(templatesdir)/modules
277
278 dist_templates_modules_jobs_DATA = \
279 src/templates/modules/jobs/list.html \
280 src/templates/modules/jobs/status.html
281
282 templates_modules_jobsdir = $(templates_modulesdir)/jobs
283
284 dist_templates_repos_DATA = \
285 src/templates/repos/create-custom.html \
286 src/templates/repos/builds.html \
287 src/templates/repos/edit.html \
288 src/templates/repos/show.html
289
290 templates_reposdir = $(templatesdir)/repos
291
292 dist_templates_repos_modules_DATA = \
293 src/templates/repos/modules/list.html
294
295 templates_repos_modulesdir = $(templates_reposdir)/modules
296
297 dist_templates_packages_DATA = \
298 src/templates/packages/index.html \
299 src/templates/packages/name.html \
300 src/templates/packages/show.html \
301 src/templates/packages/view-file.html
302
303 templates_packagesdir = $(templatesdir)/packages
304
305 dist_templates_packages_modules_DATA = \
306 src/templates/packages/modules/dependencies.html \
307 src/templates/packages/modules/info.html
308
309 templates_packages_modulesdir = $(templates_packagesdir)/modules
310
311 dist_templates_users_DATA = \
312 src/templates/users/delete.html \
313 src/templates/users/edit.html \
314 src/templates/users/index.html \
315 src/templates/users/show.html
316
317 templates_usersdir = $(templatesdir)/users
318
319 dist_templates_users_messages_DATA = \
320 src/templates/users/messages/welcome.txt
321
322 templates_users_messagesdir = $(templates_usersdir)/messages
323
324 dist_templates_users_modules_DATA = \
325 src/templates/users/modules/list.html
326
327 templates_users_modulesdir = $(templates_usersdir)/modules
328
329 # ------------------------------------------------------------------------------
330 #
331 dist_static_DATA = \
332 src/static/favicon.ico \
333 src/static/robots.txt
334
335 staticdir = $(datadir)/static
336
337 static_css_DATA = \
338 src/static/css/highlight.css \
339 src/static/css/site.css
340
341 static_cssdir = $(staticdir)/css
342
343 EXTRA_DIST += \
344 src/static/css/_fonts.scss \
345 src/static/css/_icons.scss \
346 src/static/css/site.scss
347
348 CLEANFILES += \
349 src/static/css/site.css
350
351 static_js_DATA = \
352 src/static/js/foundation.min.js \
353 src/static/js/jquery.min.js \
354 src/static/js/pbs.js \
355 src/static/js/prettify.js
356
357 static_jsdir = $(staticdir)/js
358
359 CLEANFILES += \
360 src/static/js/foundation.min.js \
361 src/static/js/jquery.min.js
362
363 dist_static_fonts_DATA = \
364 src/third-party/fonts/prompt/OFL.txt \
365 src/third-party/fonts/prompt/Prompt-Black.ttf \
366 src/third-party/fonts/prompt/Prompt-BlackItalic.ttf \
367 src/third-party/fonts/prompt/Prompt-Bold.ttf \
368 src/third-party/fonts/prompt/Prompt-BoldItalic.ttf \
369 src/third-party/fonts/prompt/Prompt-ExtraBold.ttf \
370 src/third-party/fonts/prompt/Prompt-ExtraBoldItalic.ttf \
371 src/third-party/fonts/prompt/Prompt-ExtraLight.ttf \
372 src/third-party/fonts/prompt/Prompt-ExtraLightItalic.ttf \
373 src/third-party/fonts/prompt/Prompt-Italic.ttf \
374 src/third-party/fonts/prompt/Prompt-Light.ttf \
375 src/third-party/fonts/prompt/Prompt-LightItalic.ttf \
376 src/third-party/fonts/prompt/Prompt-Medium.ttf \
377 src/third-party/fonts/prompt/Prompt-MediumItalic.ttf \
378 src/third-party/fonts/prompt/Prompt-Regular.ttf \
379 src/third-party/fonts/prompt/Prompt-SemiBold.ttf \
380 src/third-party/fonts/prompt/Prompt-SemiBoldItalic.ttf \
381 src/third-party/fonts/prompt/Prompt-Thin.ttf \
382 src/third-party/fonts/prompt/Prompt-ThinItalic.ttf \
383 src/third-party/Font-Awesome/webfonts/fa-brands-400.ttf \
384 src/third-party/Font-Awesome/webfonts/fa-brands-400.woff2 \
385 src/third-party/Font-Awesome/webfonts/fa-regular-400.ttf \
386 src/third-party/Font-Awesome/webfonts/fa-regular-400.woff2 \
387 src/third-party/Font-Awesome/webfonts/fa-solid-900.ttf \
388 src/third-party/Font-Awesome/webfonts/fa-solid-900.woff2
389
390 static_fontsdir = $(staticdir)/fonts
391
392 # ------------------------------------------------------------------------------
393
394 if HAVE_SYSTEMD
395 systemdsystemunit_DATA = \
396 src/systemd/pakfire-hub.service \
397 src/systemd/pakfire-web.service
398
399 CLEANFILES += \
400 $(systemdsystemunit_DATA)
401
402 INSTALL_DIRS += \
403 $(systemdsystemunitdir)
404 endif
405
406 EXTRA_DIST += \
407 src/systemd/pakfire-hub.service.in \
408 src/systemd/pakfire-web.service.in
409
410 dist_database_DATA = \
411 src/database.sql
412
413 databasedir = $(datadir)/database
414
415 dist_cron_DATA = \
416 src/crontab/pakfire-build-service
417
418 EXTRA_DIST += \
419 src/tools/dump-database-schema.sh
420
421 # ------------------------------------------------------------------------------
422
423 substitutions = \
424 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
425 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
426 '|configsdir=$(configsdir)|' \
427 '|bindir=$(bindir)|' \
428 '|datadir=$(datadir)|' \
429 '|localedir=$(localedir)|' \
430 '|templatesdir=$(templatesdir)|' \
431 '|staticdir=$(staticdir)|'
432
433 SED_PROCESS = \
434 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
435 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
436 < $< > $@
437
438 UGLIFYJS_PROCESS = \
439 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
440 $(UGLIFYJS) --compress --mangle -- $< > $@
441
442 %: %.in Makefile
443 $(SED_PROCESS)
444
445 %.css: %.scss
446 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
447 $(SASSC) --style compressed $< > $@
448
449 src/static/css/highlight.css: Makefile
450 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
451 $(PYGMENTIZE) -S xcode -f html -a .highlight > $@
452
453 %.min.js: %.js
454 $(UGLIFYJS_PROCESS)
455
456 src/static/js/foundation.min.js: src/third-party/foundation-sites/dist/js/foundation.js
457 $(UGLIFYJS_PROCESS)
458
459 # ------------------------------------------------------------------------------
460
461 TESTS = \
462 $(dist_check_SCRIPTS)
463
464 TESTS_ENVIRONMENT = \
465 PYTHONPATH="$(abs_top_srcdir)/src" \
466 abs_top_srcdir="$(abs_top_srcdir)"
467
468 dist_check_SCRIPTS = \
469 tests/setup.py \
470 tests/build.py \
471 tests/builder.py \
472 tests/distro.py \
473 tests/message.py \
474 tests/package.py \
475 tests/repo.py \
476 tests/upload.py
477
478 EXTRA_DIST += \
479 tests/test.py
480
481 EXTRA_DIST += \
482 tests/data/beep-1.3-2.ip3.src.pfm \
483 tests/data/beep-1.3-2.ip3.x86_64.pfm