<feed xmlns='http://www.w3.org/2005/Atom'>
<title>boca.git/Makefile, branch master</title>
<subtitle>This is an administration system to held programming contests</subtitle>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/'/>
<entry>
<title>Do not overwrite Apache's configuration directory</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-03T23:45:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=b3d5664549235a4b1bc172397deed7b2d1ec8ec5'/>
<id>b3d5664549235a4b1bc172397deed7b2d1ec8ec5</id>
<content type='text'>
The package boca-web tried to modify Apache's configuration directory,
which is forbidden by the Debian Policy and triggers Lintian error
apache2-reverse-dependency-ships-file-in-not-allowed-directory.

This direct modification was also unnecessary, as it was redone by the
post installation maintainer script.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The package boca-web tried to modify Apache's configuration directory,
which is forbidden by the Debian Policy and triggers Lintian error
apache2-reverse-dependency-ships-file-in-not-allowed-directory.

This direct modification was also unnecessary, as it was redone by the
post installation maintainer script.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add clean rule to the Makefile</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-03T19:48:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=e3ed13ce5dc654fb36f94ffb2a20744cff2cd77f'/>
<id>e3ed13ce5dc654fb36f94ffb2a20744cff2cd77f</id>
<content type='text'>
A clean rule was added to the Makefile, to remove compiled binaries.
This fixes Lintian's tag source-contains-prebuilt-binary.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A clean rule was added to the Makefile, to remove compiled binaries.
This fixes Lintian's tag source-contains-prebuilt-binary.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable compiler optimisations</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-03T14:21:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=d73ed8c16a6eaf84a8a40d529668534edb38b443'/>
<id>d73ed8c16a6eaf84a8a40d529668534edb38b443</id>
<content type='text'>
The tools safeexec and boca-submit-run-root-wrapper are now built with
optimisations (gcc optimisation level 2).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The tools safeexec and boca-submit-run-root-wrapper are now built with
optimisations (gcc optimisation level 2).
</pre>
</div>
</content>
</entry>
<entry>
<title>Use automatic variables to compile tools/safeexec</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-02T23:56:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=7c0f371cfb3ad3d876325dd0e8e2f9e74e8b5e22'/>
<id>7c0f371cfb3ad3d876325dd0e8e2f9e74e8b5e22</id>
<content type='text'>
Replace redundant recipe for tools/safeexec rule with automatic
variables:
* `$^` expands to the names of all rule's prerequistes
* `$@` expands to the name of the rule's target

Further information is available in
https://www.gnu.org/software/make/manual/make.html.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace redundant recipe for tools/safeexec rule with automatic
variables:
* `$^` expands to the names of all rule's prerequistes
* `$@` expands to the name of the rule's target

Further information is available in
https://www.gnu.org/software/make/manual/make.html.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Apache HTTPD commands from Makefile</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-02T19:23:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=f17e3be93d425f5554a806c0e847c34504a68873'/>
<id>f17e3be93d425f5554a806c0e847c34504a68873</id>
<content type='text'>
The package Makefile contained Apache HTTPD commands, and some of them
were repeated in the boca-web post installation maintainer script. The
commands were removed from the Makefile, as this requires having a valid
apache2 installation as a build dependency.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The package Makefile contained Apache HTTPD commands, and some of them
were repeated in the boca-web post installation maintainer script. The
commands were removed from the Makefile, as this requires having a valid
apache2 installation as a build dependency.
</pre>
</div>
</content>
</entry>
<entry>
<title>Populate dbgsym packages with debug symbols</title>
<updated>2023-03-04T01:24:15+00:00</updated>
<author>
<name>Davi Antônio da Silva Santos</name>
<email>antoniossdavi@gmail.com</email>
</author>
<published>2023-03-02T02:33:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=f7f89a2ece36fd4a9d7b0a69e563832fff318035'/>
<id>f7f89a2ece36fd4a9d7b0a69e563832fff318035</id>
<content type='text'>
Generate debug symbols by adding the `-g` flag to the `gcc` command and
populate the dbgsym packages generated by the tooling with the required
debug symbols.

This fixes the following Lintian warnings:
* boca-autojudge-dbgsym: debug-file-with-no-debug-symbols
* boca-submission-tools-dbgsym: debug-file-with-no-debug-symbols
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Generate debug symbols by adding the `-g` flag to the `gcc` command and
populate the dbgsym packages generated by the tooling with the required
debug symbols.

This fixes the following Lintian warnings:
* boca-autojudge-dbgsym: debug-file-with-no-debug-symbols
* boca-submission-tools-dbgsym: debug-file-with-no-debug-symbols
</pre>
</div>
</content>
</entry>
<entry>
<title>chmods in the postinst</title>
<updated>2018-08-29T13:17:19+00:00</updated>
<author>
<name>cassio</name>
<email>cassiopc@gmail.com</email>
</author>
<published>2018-08-29T13:17:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=b117763dfafeec631c47a8fca6880400c5c6d854'/>
<id>b117763dfafeec631c47a8fca6880400c5c6d854</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>forcing chmod no postinstall</title>
<updated>2018-08-29T13:03:37+00:00</updated>
<author>
<name>cassio</name>
<email>cassiopc@gmail.com</email>
</author>
<published>2018-08-29T13:03:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=893c493314e12631d90c724ce2c985174cc24f17'/>
<id>893c493314e12631d90c724ce2c985174cc24f17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix install</title>
<updated>2018-08-29T11:44:16+00:00</updated>
<author>
<name>cassio</name>
<email>cassiopc@gmail.com</email>
</author>
<published>2018-08-29T11:44:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=b3d6ce4d2c1650d2e99787f372c51d88d07d65d6'/>
<id>b3d6ce4d2c1650d2e99787f372c51d88d07d65d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>some fixes to boca-fixssh and new updates</title>
<updated>2018-08-29T11:33:16+00:00</updated>
<author>
<name>cassio</name>
<email>cassiopc@gmail.com</email>
</author>
<published>2018-08-29T11:33:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.devlucas.me/boca.git/commit/?id=46ef517c23a4a9319bc64cdde3f2fd56ecbb9c45'/>
<id>46ef517c23a4a9319bc64cdde3f2fd56ecbb9c45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
