<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abuild, branch v3.3.1</title>
<subtitle>Build script to build alpine 1.9.x
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/'/>
<entry>
<title>==== release 3.3.1 ====</title>
<updated>2019-03-05T11:45:16+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-03-05T11:45:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=0b86c457f32195e9d9646a4ad0b63a6f7302ab16'/>
<id>0b86c457f32195e9d9646a4ad0b63a6f7302ab16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild-tar.static: fix undefined reference errors</title>
<updated>2019-03-05T11:43:50+00:00</updated>
<author>
<name>Oliver Smith</name>
<email>ollieparanoid@bitmessage.ch</email>
</author>
<published>2018-11-27T07:22:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=a54d3ba2aed389fc856ce593316db1045a724163'/>
<id>a54d3ba2aed389fc856ce593316db1045a724163</id>
<content type='text'>
Link against the same libs as abuild-tar and fix the order of the CC
arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Link against the same libs as abuild-tar and fix the order of the CC
arguments.
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild-sign: actually catch errors while signing</title>
<updated>2019-03-05T11:42:15+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defanator@gmail.com</email>
</author>
<published>2019-01-17T10:04:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=2d2be1ca1b0a66a4875750696e6a03ae2e278366'/>
<id>2d2be1ca1b0a66a4875750696e6a03ae2e278366</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild: replace command -v with which to fix build issues</title>
<updated>2019-03-05T11:28:04+00:00</updated>
<author>
<name>Mike Sullivan</name>
<email>mksully22@gmail.com</email>
</author>
<published>2019-02-27T15:28:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=57f2830739e31f9c73d2edaf5103502fbdae6822'/>
<id>57f2830739e31f9c73d2edaf5103502fbdae6822</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow forcing of colored output</title>
<updated>2019-02-25T23:10:16+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@alpinelinux.org</email>
</author>
<published>2019-02-25T23:02:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=0a79fc62c9d0aa30eb42ff4251701eee2368309d'/>
<id>0a79fc62c9d0aa30eb42ff4251701eee2368309d</id>
<content type='text'>
In some cases (ie drone ci) there is no tty available but its still
possible to display colors in the webui.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some cases (ie drone ci) there is no tty available but its still
possible to display colors in the webui.
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild: add support for pkg-config prefix pcprefix</title>
<updated>2019-02-22T13:57:08+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-02-22T13:57:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=376ccc5bd695e792768a679409fbb428defe0770'/>
<id>376ccc5bd695e792768a679409fbb428defe0770</id>
<content type='text'>
Fix issue when two -dev packages provides same pkg-config wil but with
different versions. For example libressl-dev and openssl-dev both ships
libssl.pc and libcrypto.pc, which resulted in automatic provides of
pc:libssl and pc:libcrypto.

apk would end up picking libressl-dev over openssl-dev for packages that
had automatic pc:libssl depends (for example libssl2-dev), when
openssl-dev was the one that was used during build.

To fix this we add support for a pcprefix so we can set
pcprefix="libressl:" in libressl APKBUILD which makes libressl-dev
provide pc:libressl:libssl. This is similar to what we do with
sonameprefix.

We do not yet automatically detect when the prefixed variant should be
used so for now we will have to explicitly add libressl-dev.

ref #9959
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix issue when two -dev packages provides same pkg-config wil but with
different versions. For example libressl-dev and openssl-dev both ships
libssl.pc and libcrypto.pc, which resulted in automatic provides of
pc:libssl and pc:libcrypto.

apk would end up picking libressl-dev over openssl-dev for packages that
had automatic pc:libssl depends (for example libssl2-dev), when
openssl-dev was the one that was used during build.

To fix this we add support for a pcprefix so we can set
pcprefix="libressl:" in libressl APKBUILD which makes libressl-dev
provide pc:libressl:libssl. This is similar to what we do with
sonameprefix.

We do not yet automatically detect when the prefixed variant should be
used so for now we will have to explicitly add libressl-dev.

ref #9959
</pre>
</div>
</content>
</entry>
<entry>
<title>==== release 3.3.0 ====</title>
<updated>2019-01-23T18:22:31+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-01-23T18:22:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=22753f570160c10ad093615f085a925d4643c359'/>
<id>22753f570160c10ad093615f085a925d4643c359</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild: replace $0 with $abuild_path, add $forceroot where missing</title>
<updated>2019-01-10T16:08:51+00:00</updated>
<author>
<name>Disassembler</name>
<email>disassembler@dasm.cz</email>
</author>
<published>2018-10-23T09:02:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=9b04be2f79c893ab7c7394fca0da5929b39396a9'/>
<id>9b04be2f79c893ab7c7394fca0da5929b39396a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild: use pigz to compress control.tar.gz and manpages</title>
<updated>2019-01-10T16:08:51+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-11-08T11:47:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=909623950f17989ad145c6162ce62ee64701f0fc'/>
<id>909623950f17989ad145c6162ce62ee64701f0fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abuild-sign: fall back to libressl if openssl is missing</title>
<updated>2019-01-10T16:08:51+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-11-08T11:43:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/abuild/commit/?id=bbe4a4fdfdc4f5e9014d3316ae36862a30cce597'/>
<id>bbe4a4fdfdc4f5e9014d3316ae36862a30cce597</id>
<content type='text'>
openssl binary may be missing while migrating system from libressl to
openssl. Make sure we can always sign the backage if either is there.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
openssl binary may be missing while migrating system from libressl to
openssl. Make sure we can always sign the backage if either is there.
</pre>
</div>
</content>
</entry>
</feed>
