pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

The version of pkgin in pkgsrc is newer than this one. Confirmed with maintainer.



Module Name:	pkgsrc-wip
Committed By:	D'Arcy Cain <darcy%NetBSD.org@localhost>
Pushed By:	darcy
Date:		Tue Jul 25 10:41:22 2017 -0400
Changeset:	7a7c3698a90a2a1bbed6a2d728260233d6f882b2

Removed Files:
	pkgin/DESCR
	pkgin/MESSAGE
	pkgin/Makefile
	pkgin/PLIST
	pkgin/distinfo

Log Message:
The version of pkgin in pkgsrc is newer than this one.
Confirmed with maintainer.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=7a7c3698a90a2a1bbed6a2d728260233d6f882b2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 pkgin/DESCR    |  4 ---
 pkgin/MESSAGE  | 11 -------
 pkgin/Makefile | 94 ----------------------------------------------------------
 pkgin/PLIST    |  5 ----
 pkgin/distinfo |  5 ----
 5 files changed, 119 deletions(-)

diffs:
diff --git a/pkgin/DESCR b/pkgin/DESCR
deleted file mode 100644
index ca3c33698a..0000000000
--- a/pkgin/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-pkgin is aimed at being an apt / yum like tool for managing
-pkgsrc binary packages. It relies on pkg_summary(5) for
-installation, removal and upgrade of packages and associated
-dependencies, using a remote repository.
diff --git a/pkgin/MESSAGE b/pkgin/MESSAGE
deleted file mode 100644
index 8495a15ed6..0000000000
--- a/pkgin/MESSAGE
+++ /dev/null
@@ -1,11 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.5 2009/12/03 12:33:31 imilh Exp $
-
-First steps before using pkgin.
-
-. Modify ${PKG_SYSCONFDIR}/pkgin/repositories.conf to suit your platform
-. Initialize the database :
-
-	# pkgin update
-
-===========================================================================
diff --git a/pkgin/Makefile b/pkgin/Makefile
deleted file mode 100644
index 7f7d2ad2b0..0000000000
--- a/pkgin/Makefile
+++ /dev/null
@@ -1,94 +0,0 @@
-# $NetBSD: Makefile,v 1.85 2015/03/08 17:16:20 imilh Exp $
-
-GHCOMMIT=		9ae23f0f08685a2fe7a08cff1ca52533489ea3cf
-DISTNAME=		${GHCOMMIT}
-PKGNAME=		pkgin-0.8.0.20150308
-CATEGORIES=		pkgtools
-MASTER_SITES=		https://github.com/NetBSDfr/pkgin/archive/
-
-MAINTAINER=		imil%NetBSD.org@localhost
-HOMEPAGE=		http://pkgin.net/
-COMMENT=		Apt / yum like tool for managing pkgsrc binary packages
-LICENSE=		modified-bsd
-
-EGDIR=			${PREFIX}/share/examples/${PKGBASE}
-CONF_FILES=		${EGDIR}/repositories.conf.example		\
-			${PKG_SYSCONFDIR}/${PKGBASE}/repositories.conf
-
-OWN_DIRS+=		${PKG_SYSCONFDIR}/${PKGBASE}
-INSTALLATION_DIRS+=	bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1 ${EGDIR}
-
-WRKSRC=			${WRKDIR}/pkgin-${GHCOMMIT}
-
-BUILD_DEFS+=		PKGIN_REPOSITORY_URL
-BUILD_DEFS+=		VARBASE
-
-SUBST_CLASSES+=		path
-SUBST_STAGE.path=	pre-configure
-SUBST_MESSAGE.path=	Adjusting path.
-SUBST_FILES.path=	Makefile.in actions.c pkgin.1
-SUBST_SED.path=		-e "s|/usr/pkg/etc|${PKG_SYSCONFDIR}|g"
-SUBST_SED.path+=	-e "s|/usr/sbin|${PKG_TOOLS_BIN}|g"
-SUBST_SED.path+=	-e "s|/var|${VARBASE}|g"
-SUBST_SED.path+=	-e "s|/usr/pkg|${PREFIX}|g"
-SUBST_SED.path+=	-e "s|!=.*uname -p|=	${MACHINE_ARCH}|g"
-
-GNU_CONFIGURE=		yes
-USE_FEATURES=		nbcompat
-USE_TOOLS+=		nroff
-
-.include "../../mk/bsd.prefs.mk"
-
-.if ${OPSYS} == "NetBSD"
-SUBST_CLASSES+=		osrel
-SUBST_STAGE.osrel=	pre-configure
-SUBST_MESSAGE.osrel=	Adjusting repository OS release
-SUBST_FILES.osrel=	REPOSITORIES
-SUBST_SED.osrel=	-e "s|@OSREL@|${OS_VERSION:C/_.*//}|"
-.endif
-
-CFLAGS.SunOS+=		-D_FILE_OFFSET_BITS=64
-
-MAKE_ENV+=		MACHINE_ARCH=${MACHINE_ARCH}
-
-DEPENDS+=		pkg_install>=20130901:../../pkgtools/pkg_install
-
-# those have official repositories
-.if !empty(PKGIN_REPOSITORY_URL)
-pre-install:
-	${ECHO} ${PKGIN_REPOSITORY_URL} >> ${WRKSRC}/repositories.conf
-.elif ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "Minix"
-pre-install:
-	${GREP} -i ${OPSYS} ${WRKSRC}/REPOSITORIES >> 			\
-		${WRKSRC}/repositories.conf
-.endif
-
-do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/pkgin ${DESTDIR}${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/pkgin.1				\
-		${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
-.if !empty(MANINSTALL:Mcatinstall)
-.  if defined(CATMAN_SECTION_SUFFIX) && !empty(CATMAN_SECTION_SUFFIX:M[Yy][Ee][Ss])
-	${INSTALL_MAN} ${WRKSRC}/pkgin.cat1				\
-		${DESTDIR}${PREFIX}/${PKGMANDIR}/cat1/pkgin.1
-.  else
-	${INSTALL_MAN} ${WRKSRC}/pkgin.cat1				\
-		${DESTDIR}${PREFIX}/${PKGMANDIR}/cat1/pkgin.0
-.  endif
-.endif
-	${INSTALL_DATA} ${WRKSRC}/repositories.conf			\
-		${DESTDIR}${EGDIR}/repositories.conf.example
-	${INSTALL_DATA} ${WRKSRC}/preferred.conf			\
-		${DESTDIR}${EGDIR}/preferred.conf.example
-
-# libfetch has no builtin.mk and is included in NetBSD>=5
-.if ${OPSYS} != "NetBSD" || \
-	(${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-4].*))
-.	include "../../net/libfetch/buildlink3.mk"
-.endif
-
-.include "../../archivers/libarchive/buildlink3.mk"
-.include "../../databases/sqlite3/buildlink3.mk"
-.include "../../net/libfetch/buildlink3.mk"
-.include "../../security/openssl/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/pkgin/PLIST b/pkgin/PLIST
deleted file mode 100644
index 2d58da3b34..0000000000
--- a/pkgin/PLIST
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST,v 1.5 2015/02/02 14:33:35 imilh Exp $
-bin/pkgin
-man/man1/pkgin.1
-share/examples/pkgin/preferred.conf.example
-share/examples/pkgin/repositories.conf.example
diff --git a/pkgin/distinfo b/pkgin/distinfo
deleted file mode 100644
index 1b8189fd80..0000000000
--- a/pkgin/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.82 2015/03/08 17:16:20 imilh Exp $
-
-SHA1 (9ae23f0f08685a2fe7a08cff1ca52533489ea3cf.tar.gz) = faf2d61101a3af8698230b784b7e0db15e8cff53
-RMD160 (9ae23f0f08685a2fe7a08cff1ca52533489ea3cf.tar.gz) = 121bcc99d0ead2f8bf86991a201f91c48c57faf0
-Size (9ae23f0f08685a2fe7a08cff1ca52533489ea3cf.tar.gz) = 197202 bytes


Home | Main Index | Thread Index | Old Index