- update to 1.0-beta7
- changes: * move commands man pages from section 1 to 8 * pkg check can now be run as a user (will print the missing dependencies if any) * better handling of database creation error * new option -f to install subcommand to force reinstallation of a package * new option -f to upgrade subcommand to force reinstallation of the whole set of packages * pkg audit can now take a package: name-version in argument
This commit is contained in:
parent
c943fd9a22
commit
355300b9b8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292071
2 changed files with 32 additions and 32 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= pkg
|
||||
DISTVERSION= 1.0-beta6
|
||||
DISTVERSION= 1.0-beta7
|
||||
CATEGORIES= ports-mgmt
|
||||
MASTER_SITES= LOCAL/portmgr \
|
||||
http://files.etoilebsd.net/pkg/
|
||||
|
@ -18,37 +18,28 @@ LICENSE= BSD
|
|||
|
||||
USE_BZIP2= yes
|
||||
|
||||
#define PKG_DEPENDS to nothing to avoid infinite loop looking for pkg :)
|
||||
.if defined(WITH_PKGNG)
|
||||
PKG_DEPENDS=
|
||||
.undef INSTALLS_DEPENDS
|
||||
.if !exists(${LOCALBASE}/sbin/pkg)
|
||||
PKG_BIN= ${WRKSRC}/pkg-static/pkg-static
|
||||
.endif
|
||||
.endif
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
MANCOMPRESSED= yes
|
||||
|
||||
MAKE_ENV+= WITHOUT_PROFILE=yes
|
||||
|
||||
MAN1= pkg.1 \
|
||||
pkg-add.1 \
|
||||
pkg-autoremove.1 \
|
||||
pkg-backup.1 \
|
||||
pkg-create.1 \
|
||||
pkg-delete.1 \
|
||||
pkg-info.1 \
|
||||
pkg-install.1 \
|
||||
pkg-query.1 \
|
||||
pkg-register.1 \
|
||||
pkg-repo.1 \
|
||||
pkg-search.1 \
|
||||
pkg-update.1 \
|
||||
pkg-updating.1 \
|
||||
pkg-upgrade.1 \
|
||||
pkg-version.1 \
|
||||
pkg-which.1
|
||||
MAN8= pkg.8 \
|
||||
pkg-add.8 \
|
||||
pkg-autoremove.8 \
|
||||
pkg-backup.8 \
|
||||
pkg-create.8 \
|
||||
pkg-delete.8 \
|
||||
pkg-info.8 \
|
||||
pkg-install.8 \
|
||||
pkg-query.8 \
|
||||
pkg-register.8 \
|
||||
pkg-repo.8 \
|
||||
pkg-search.8 \
|
||||
pkg-update.8 \
|
||||
pkg-updating.8 \
|
||||
pkg-upgrade.8 \
|
||||
pkg-version.8 \
|
||||
pkg-which.8
|
||||
MAN5= pkg.conf.5
|
||||
|
||||
PLIST_FILES= sbin/pkg \
|
||||
|
@ -59,13 +50,22 @@ PLIST_FILES= sbin/pkg \
|
|||
lib/libpkg.so \
|
||||
lib/libpkg.a
|
||||
|
||||
post-install:
|
||||
@${INSTALL_SCRIPT} ${WRKSRC}/ports/pkg2ng ${PREFIX}/sbin
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
#define PKG_DEPENDS to nothing to avoid infinite loop looking for pkg :)
|
||||
.if defined(WITH_PKGNG)
|
||||
PKG_DEPENDS=
|
||||
.undef INSTALLS_DEPENDS
|
||||
.if !exists(${LOCALBASE}/sbin/pkg)
|
||||
PKG_BIN= ${WRKSRC}/pkg-static/pkg-static
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if ${OSVERSION} < 800505
|
||||
IGNORE= not supported on 7.x or early 8.0
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${INSTALL_SCRIPT} ${WRKSRC}/ports/pkg2ng ${PREFIX}/sbin
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (pkg-1.0-beta6.tar.bz2) = a663f6285881c26b0286f053924f1218b90a3e1010c1e1dcf5cd51439393c2d6
|
||||
SIZE (pkg-1.0-beta6.tar.bz2) = 1469115
|
||||
SHA256 (pkg-1.0-beta7.tar.bz2) = 68861baa4a5628bf0d2e8083783d122e5a194ccf0fe904ffa85d35042e422100
|
||||
SIZE (pkg-1.0-beta7.tar.bz2) = 1471475
|
||||
|
|
Loading…
Reference in a new issue