<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.sbin/pkg/pkg.c, branch releng/11.3</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F11.3</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F11.3'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2018-03-05T07:26:05Z</updated>
<entry>
<title>MFC r326276:</title>
<updated>2018-03-05T07:26:05Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-05T07:26:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=25d4b2c1b89d42d752e23f9935692f481cb272ea'/>
<id>urn:sha1:25d4b2c1b89d42d752e23f9935692f481cb272ea</id>
<content type='text'>
various: general adoption of SPDX licensing ID tags.

Mainly focus on files that use BSD 2-Clause license, however the tool I
was using misidentified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

No functional change intended.
</content>
</entry>
<entry>
<title>Remove extra debug that crept in</title>
<updated>2015-09-08T22:24:20Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-09-08T22:24:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4c79e0d6c177743db3631629aa8a6eead3644ad4'/>
<id>urn:sha1:4c79e0d6c177743db3631629aa8a6eead3644ad4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement pubkey support for the bootstrap</title>
<updated>2015-09-08T21:25:36Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-09-08T21:25:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=61acb4582f75158bd8118a63258ed19524e32357'/>
<id>urn:sha1:61acb4582f75158bd8118a63258ed19524e32357</id>
<content type='text'>
Note that to not interfer with finger print it expects a signature on pkg itself
which is named pkg.txz.pubkeysign

To genrate it:
echo -n "$(sha256 -q pkg.txz)" | openssl dgst -sha256 -sign /thekey \
    -binary -out ./pkg.txz.pubkeysig

Note the "echo -n" which prevent signing the '\n' one would get otherwise

PR:		202622
MFC after:	1 week
</content>
</entry>
<entry>
<title>Fix indentation, no functional changes</title>
<updated>2015-09-08T19:25:15Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-09-08T19:25:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b50756c7599cd98ba90abc1adac357a5d1ed5126'/>
<id>urn:sha1:b50756c7599cd98ba90abc1adac357a5d1ed5126</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Issue warning and refuse to proceed further if the configured</title>
<updated>2015-08-19T18:24:39Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2015-08-19T18:24:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=48f92706898f2cd5f8eaa6161b42433eca114cdf'/>
<id>urn:sha1:48f92706898f2cd5f8eaa6161b42433eca114cdf</id>
<content type='text'>
repository signature_type is unsupported by bootstrap pkg(7).

Previously, when signature_type specified an unsupported method,
the bootstrap pkg(7) would proceed like when signature_type is
"none".  MITM attackers may be able to use this vulnerability and
bypass validation and install their own versions of pkg(8).

At this time, only fingerprint and none are supported by the
bootstrap pkg(7).

FreeBSD's official pkg(8) repository uses the fingerprint method
and is therefore unaffected.

Errata candidate.

Discussed with:	bapt@
Submitted by:	Fabian Keil
Obtained from:	ElectroBSD
</content>
</entry>
<entry>
<title>Allow fetching pkg(8) even if servers/proxies are not passing Content-length</title>
<updated>2015-04-03T17:35:30Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-04-03T17:35:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=cc36fe49264ebb9782cc177227a8b7cecd1bf3f5'/>
<id>urn:sha1:cc36fe49264ebb9782cc177227a8b7cecd1bf3f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Test the return of fetchParseURL(3)</title>
<updated>2015-02-04T00:18:06Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-02-04T00:18:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=79fe80ef1084ced4d21aa303f1ad5f5db5b6b872'/>
<id>urn:sha1:79fe80ef1084ced4d21aa303f1ad5f5db5b6b872</id>
<content type='text'>
CID:		1125811
MFC after:	1 week
</content>
</entry>
<entry>
<title>Plug resources leak</title>
<updated>2015-02-04T00:10:57Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2015-02-04T00:10:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=92947daacfb681797cd651a77b8c8d6cab3b8487'/>
<id>urn:sha1:92947daacfb681797cd651a77b8c8d6cab3b8487</id>
<content type='text'>
CID:		1125813
CID:		1125807
CID:		1125808
MFC after:	1 week
</content>
</entry>
<entry>
<title>When we fail to extract the pkg binaries (for example, / is read-only),</title>
<updated>2014-07-16T00:12:57Z</updated>
<author>
<name>Gavin Atkinson</name>
<email>gavin@FreeBSD.org</email>
</author>
<published>2014-07-16T00:12:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4622bc4e31f19430847e9e8aa96371d9fe4961ee'/>
<id>urn:sha1:4622bc4e31f19430847e9e8aa96371d9fe4961ee</id>
<content type='text'>
give a more helpful error message.

MFC after:	1 week
</content>
</entry>
<entry>
<title>Import libucl 0.4.0</title>
<updated>2014-04-22T22:02:06Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2014-04-22T22:02:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b04a7a0baf6523245034b8ccd06cd0176b8a18cf'/>
<id>urn:sha1:b04a7a0baf6523245034b8ccd06cd0176b8a18cf</id>
<content type='text'>
Adapt pkg(7) to the new libucl API
</content>
</entry>
</feed>
