summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg
Commit message (Collapse)AuthorAgeFilesLines
* Merge r268728 from head:gavin2014-08-131-1/+2
| | | | | When we fail to extract the pkg binaries (for example, / is read-only), give a more helpful error message.
* MFC: r263650, r263686bapt2014-07-201-2/+2
| | | | Add missing dependency on libm
* MFC: r263648, r264789, r266636bapt2014-07-192-6/+6
| | | | | | | | This brings: - schema validation - xpath-like interface for ucl objects Adapt pkg(7) to the new libucl API
* MFC r263181:bdrewery2014-03-221-0/+4
| | | | Fix ASSUME_ALWAYS_YES not being parsed properly from config after UCL conversion.
* MFC r263180:bdrewery2014-03-221-0/+11
| | | | Fix ABI from /usr/local/etc/pkg.conf not being respected.
* r262400,r262401,r262418bapt2014-03-113-148/+84
| | | | Sync pkg(7) with head
* Implicit include of sys/queue.h instead of relying on gelf.h/libelf.h to ↵bapt2014-01-251-0/+1
| | | | | | | | bring it Newer version of gelf.h and libelf.h does not include sys/queue.h anymore Submitted by: kaiw
* MFC r259266:bdrewery2013-12-193-15/+186
| | | | | | | | | | | | | Fix multi-repository support by properly respecting 'enabled' flag. This will read the REPOS_DIR env/config setting (default is /etc/pkg and /usr/local/etc/pkg/repos) and use the last enabled repository. This can be changed in the environment using a comma-separated list, or in /usr/local/etc/pkg.conf with JSON array syntax of: REPOS_DIR: ["/etc/pkg", "/usr/local/etc/pkg/repos"] Approved by: bapt (mentor)
* MFC r258550:gjb2013-11-301-24/+0
| | | | | | | | Do not create pkg.conf, as it is not necessary anymore and packagesite is deprecated Approved by: re (glebius) Sponsored by: The FreeBSD Foundation
* MFC r258348:bdrewery2013-11-291-2/+2
| | | | | | | Document 'enabled' as boolean instead of string. Approved by: bapt (implicit) Approved by: re (gjb)
* Merge r257945 from head:glebius2013-11-141-2/+2
| | | | | | Do not use just freed memory. Approved by: re (kib)
* MFC r257668:bdrewery2013-11-071-2/+2
| | | | | | | Use proper capitalization for FreeBSD.org Approved by: bapt Approved by: re (gjb)
* MFC r257505:bdrewery2013-11-042-23/+61
| | | | | | | | | | | | | Add -f support to 'pkg bootstrap' and 'pkg add' to force installation of pkg(8) even if already installed. This is useful if you somehow messup pkg(8) and need to reinstall from remote with it already being registered in the pkg(8) /var/db/pkg database. Also add some sanity checks to 'pkg add'. Approved by: bapt Approved by: re (glebius)
* MFC r257378,r257400,r257402,r257440:bdrewery2013-11-032-1/+263
| | | | | | | Add a pkg(7) manpage for bootstrap Approved by: bapt Approved by: re (gjb)
* MFC r257377:bdrewery2013-11-031-0/+9
| | | | | | | | Add a 'pkg bootstrap' command which will bootstrap pkg(8) without forwarding any command to it after installation. Approved by: bapt Approved by: re (gjb)
* MFC: r256770,r257142,r257145,r257146,r257147,r257148,bdrewery2013-10-294-89/+788
| | | | | | | | | | | | | | | | | | | | | r257149,r257150,r257158,r257159,r257164,r257168, r257193 - Support checking signature for pkg bootstrap from remote and for 'pkg add ./pkg.txz' - Be verbose on where pkg is being bootstrapped from. - Add support for reading configuration files from /etc/pkg. For now only /etc/pkg/FreeBSD.conf is supported. - Add test package signing key fingerprint into /etc/keys/pkg/trusted. - Disable fingerprint checking by default for now as the official packages are not yet signed. Approved by: bapt Approved by: re (glebius)
* MFC r257051:bdrewery2013-10-293-1/+9
| | | | | | | | | | | Add support for using "pkg+http://" for the PACKAGESITE. pkg 1.2 is adding this support as well. This should help lessen the confusion on why the default SRV PACKAGESITE does not load in a browser. Approved by: bapt Approved by: re (glebius)
* MFC: r256968, r256971, r256978bapt2013-10-293-3/+108
| | | | | | | | | | | | Improve SRV records support for the pkg(8) bootstrap: - order srv records by priorities - for all entries of the same priority, order randomly respect the weight - select the port where to fetch from respect the port provided in the SRV record Allow to bootstrap by doing pkg add ./a/path/to/a/pkg_package.txz Approved by: re (glebius)
* MFC r256450:bdrewery2013-10-232-3/+6
| | | | | | | | Rename libbsdyml to libyaml, make private, and bump SHLIB_MAJOR to 1.0 Approved by: bapt Approved by: re (glebius)
* Cleanup elf macrosbapt2013-09-111-7/+3
| | | | | | | | Only define EF_MIPS_ABI when not already supplied Remove old now unused ARM macros Reported by: imp Approved by: re (kib)
* Add support to detect arm vs armv6bapt2013-09-101-12/+202
| | | | | | | | | | | | | | | | | | | There are two different versions of the ARM ABI depending on the TARGET_ARCH. As these are sligntly different a package built for one may not work on another. We need to detect which one we are on by parsing the .ARM.attributes section. This will only work on the ARM EABI as this section is part of the ABI definition. As armv6 only supports the ARM EABI this is not a problem for the oabi. Older versions of libelf in FreeBSD fail to read the .ARM.attributes section needed. As armv6 is unsupported on these versions we can assume we are running on arm. Submitted by: andrew Approved by: re (delphij) Obtained from: pkgng git
* Fix detection of arm ABIsbapt2013-07-281-5/+17
| | | | | Submitted by: andrew Obtained from: pkg git
* Fix a bad calloc(3) callbapt2013-06-081-1/+1
| | | | MFC after: 2 weeks
* Fix a typo in DPADD.antoine2013-03-101-1/+1
|
* Fix bootstrapping pkgng by not appending "/latest/" to PACKAGESITE.bapt2013-03-081-1/+1
| | | | Reporter by : Alexander Yerenkow (via irc)
* choose in priority the allocated ABI if any to do the ${ABI} substitution in ↵bapt2013-03-051-1/+1
| | | | | | PACKAGESITE Reviewed by: bdrewery
* Add the ability to correctly read pkg.conf is exists.bapt2013-03-054-171/+501
| | | | | | | | | | | | | | | Only look for boostrap useful options: - PACKAGESITE - ABI - MIRROR_TYPE - ASSUME_ALWAYS_YES While here makes PACKAGESITE expand the ${ABI} variable. Allow to deactivate any SRV record look up (MIRROR_TYPE=none) Use the same mechanism as for pkgng itself: first get configuration out of environment variable and fallback on pkg.conf if exists. Reviewed by: bdrewery
* Do not use deprecated functions from libarchivebapt2013-02-201-2/+2
|
* In case of failure of the pkg boostrap advice the user to either change thebapt2013-02-141-0/+2
| | | | | | | PACKAGESITE they use or install from ports directly indicating where the port is localted in the port collection Submitted by: kientzle
* Directly uses calloc(3) instread of malloc(3) + memset(3)bapt2013-01-141-2/+1
| | | | | Reported by: Jeremy Chadwick <jdc@koitsu.org> MFC after: 3 days
* Remove extraneous space and new-line.matthew2012-12-231-2/+2
| | | | | | Submitted by: pjd, gcooper Approved by: bapt MFC after: 2 weeks
* Third time's the charm. pkg -N output needs to go to stderr.matthew2012-12-231-4/+2
| | | | | Approved by: bapt MFC after: 2 weeks
* Switch from 'pkg -n' to 'pkg -N' as the test for pkgn activationmatthew2012-12-221-2/+2
| | | | | | | | | status. '-n' is already used extensively elsewhere in pkgng (to mean 'dry-run') and this reduces the potential confusion Submitted by: eadler Approved by: bapt MFC after: 2 weeks
* In preparation for making 'pkg -n' the one true method of determiningmatthew2012-12-211-0/+10
| | | | | | | | | whether a system has been configured to use pkgng, cause /usr/sbin/pkg recognise a -n option and exit with a failure code when the pkg port is not installed. Approved by: bapt MFC after: 2 weeks
* if PACKAGESITE url scheme is not 'file://', always try to revolv SRV records andbapt2012-12-054-9/+222
| | | | | | | use them if any. It allows the bootstrap to use directly pkg.FreeBSD.org instead of pkgbeta.FreeBSD.org MFC after: 1 month
* More -Wmissing-variable-declarations fixes.ed2012-10-191-8/+3
| | | | | | | | | | | | | | | | In addition to adding `static' where possible: - bin/date: Move `retval' into extern.h to make it visible to date.c. - bin/ed: Move globally used variables into ed.h. - sbin/camcontrol: Move `verbose' into camcontrol.h and fix shadow warnings. - usr.bin/calendar: Remove unneeded variables. - usr.bin/chat: Make `line' local instead of global. - usr.bin/elfdump: Comment out unneeded function. - usr.bin/rlogin: Use _Noreturn instead of __dead2. - usr.bin/tset: Pull `Ospeed' into extern.h. - usr.sbin/mfiutil: Put global variables in mfiutil.h. - usr.sbin/pkg: Remove unused `os_corres'. - usr.sbin/quotaon, usr.sbin/repquota: Remove unused `qfname'.
* Fix confirmation logic when detecting a ttybapt2012-08-241-3/+3
| | | | Reported by: mjg
* - change ALWAYS_ASSUME_YES to ASSUME_ALWAYS_YES for consistency with pkg(8)bapt2012-08-241-3/+5
| | | | | | | - if not on a tty prompt about the missing pkg(8) but default on 'no' except if ASSUME_ALWAYS_YES is set MFC after: 2 days
* Make pkg bootstrap program ask for confirmation before proceeding.kan2012-07-151-1/+35
| | | | | | | | The previous behaviour was to silently download and install the pkg package, without ever telling user about what it was doing and why. Discussed with: bapt Reviewed by: kib
* Add missing \n when generating pkg.confbapt2012-05-211-1/+1
| | | | | | Reported by: beat Approved by: des (mentor) MFC after: 1 day
* - close the open file after fetchingbapt2012-05-011-3/+27
| | | | | | - create a default /usr/local/etc/pkg.conf Approved by: des (mentor)
* - Use _PATH_TMP instead of hardcoded /tmpbapt2012-04-162-95/+100
| | | | | | | | | | - more style(9) fixes - some refactoring - better error detection - Add the DPADD to Makefile Submitted by: Garrett Cooper <yanegomi@gmail.com> Approved by: des (mentor)
* - Fix style(9) bugs + inconsistenciesbapt2012-04-151-32/+29
| | | | | Submitted by: marius Approved by: des (mentor)
* Do not do double initialisationbapt2012-04-151-2/+2
| | | | | | | style(9) says for (;;) not while (1) Reported by: culot Approved by: des
* add usr.sbin/pkg which is a bootstrap tool for pkgng.bapt2012-04-153-0/+471
it respects PACKAGESITE, PACKAGEROOT, and a new environment variable ABI (if a user want to use a different API from the base one for its packages) it has no man page on purpose to avoid hidding the pkg(8) man page from the pkgng package. for now uses pkgbeta.FreeBSD.org as default mirror to find its package it respects MK_PKGTOOLS Approved by: des (mentor)
OpenPOWER on IntegriCloud