diff options
author | wiz <wiz@pkgsrc.org> | 2020-12-04 13:39:45 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2020-12-04 13:39:45 +0000 |
commit | 3404f6acf69a92149e6cbf4ac48d84219c7e6e9d (patch) | |
tree | ad9a6410c45b155c54f7ed3a1c55d377e3a71d8a /pkgtools/pkgin | |
parent | a514f5a1b7fafb1f52f74358c452df024407ce68 (diff) | |
download | pkgsrc-3404f6acf69a92149e6cbf4ac48d84219c7e6e9d.tar.gz |
pkgin: comment out pkg_install dependency
pkg_install required by mk is newer than what is required here, and the
DEPENDS here will always pull in the package even if the base system provides
a newer version.
Bump PKGREVISION.
Diffstat (limited to 'pkgtools/pkgin')
-rw-r--r-- | pkgtools/pkgin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkgin/Makefile b/pkgtools/pkgin/Makefile index e6b79eb2dd3..24fbb6b23c9 100644 --- a/pkgtools/pkgin/Makefile +++ b/pkgtools/pkgin/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.108 2020/11/05 09:08:58 ryoon Exp $ +# $NetBSD: Makefile,v 1.109 2020/12/04 13:39:45 wiz Exp $ DISTNAME= pkgin-20.11.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= pkgtools MASTER_SITES= ${MASTER_SITE_GITHUB:=NetBSDfr/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -46,7 +46,7 @@ SUBST_SED.osrel= -e "s|@OSREL@|${OS_VERSION:C/_.*//}|" CFLAGS.SunOS+= -D_FILE_OFFSET_BITS=64 -DEPENDS+= pkg_install>=20200701:../../pkgtools/pkg_install +#DEPENDS+= pkg_install>=20200701:../../pkgtools/pkg_install # those have official repositories .if !empty(PKGIN_REPOSITORY_URL) |