pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
imported py-ruamel-ordereddict as devel/ py-ruamel-ordereddict and updated dependancies accordingly
Module Name: pkgsrc-wip
Committed By: Nils Ratusznik <nils%NetBSD.org@localhost>
Pushed By: nils
Date: Mon May 16 12:41:22 2016 +0200
Changeset: 004d52e24748f6e27051a21fab07570e248daf0c
Modified Files:
Makefile
py-ruamel-yaml/Makefile
Removed Files:
py-ruamel-ordereddict/DESCR
py-ruamel-ordereddict/Makefile
py-ruamel-ordereddict/PLIST
py-ruamel-ordereddict/distinfo
Log Message:
imported py-ruamel-ordereddict as devel/py-ruamel-ordereddict and updated dependancies accordingly
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=004d52e24748f6e27051a21fab07570e248daf0c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 -
py-ruamel-ordereddict/DESCR | 11 -----------
py-ruamel-ordereddict/Makefile | 17 -----------------
py-ruamel-ordereddict/PLIST | 11 -----------
py-ruamel-ordereddict/distinfo | 6 ------
py-ruamel-yaml/Makefile | 2 +-
6 files changed, 1 insertion(+), 47 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 28f67ac..ed6cb5e 100644
--- a/Makefile
+++ b/Makefile
@@ -3446,7 +3446,6 @@ SUBDIR+= py-rpyc
SUBDIR+= py-rql
SUBDIR+= py-rsistent
SUBDIR+= py-ruamel-base
-SUBDIR+= py-ruamel-ordereddict
SUBDIR+= py-ruamel-yaml
SUBDIR+= py-ruffus
SUBDIR+= py-sage
diff --git a/py-ruamel-ordereddict/DESCR b/py-ruamel-ordereddict/DESCR
deleted file mode 100644
index c72f787..0000000
--- a/py-ruamel-ordereddict/DESCR
+++ /dev/null
@@ -1,11 +0,0 @@
-This is an implementation of an ordered dictionary with Key Insertion Order
-(KIO: updates of values do not affect the position of the key),
-Key Value Insertion Order (KVIO, an existing key’s position is removed and
-put at the back).
-The standard library module OrderedDict, implemented later, implements
-a subset of ordereddict functionality.
-
-Sorted dictionaries are also provided.
-Currently only with Key Sorted Order (KSO, no sorting function can be
-specified but you can specify a transform to apply on the key before
-comparison (e.g. string.lower)).
diff --git a/py-ruamel-ordereddict/Makefile b/py-ruamel-ordereddict/Makefile
deleted file mode 100644
index a76ed0e..0000000
--- a/py-ruamel-ordereddict/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD$
-
-DISTNAME= ruamel.ordereddict-0.4.9
-PKGNAME= ${PYPKGPREFIX}-ruamel-ordereddict-0.4.9
-CATEGORIES= devel
-MASTER_SITES= ${MASTER_SITE_PYPI:=r/ruamel.ordereddict/}
-
-MAINTAINER= gde%llew.me@localhost
-HOMEPAGE= https://bitbucket.org/ruamel/ordereddict
-COMMENT= Version of dict that keeps keys in insertion resp. sorted order
-LICENSE= mit
-
-PYTHON_VERSIONS_INCOMPATIBLE= 33 34 35
-
-.include "../../lang/python/application.mk"
-.include "../../lang/python/egg.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/py-ruamel-ordereddict/PLIST b/py-ruamel-ordereddict/PLIST
deleted file mode 100644
index 92a6e73..0000000
--- a/py-ruamel-ordereddict/PLIST
+++ /dev/null
@@ -1,11 +0,0 @@
-@comment $NetBSD$
-${PYSITELIB}/_ordereddict.so
-${PYSITELIB}/${EGG_NAME}-nspkg.pth
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/ruamel/ordereddict/__init__.py
-${PYSITELIB}/ruamel/ordereddict/__init__.pyc
-${PYSITELIB}/ruamel/ordereddict/__init__.pyo
diff --git a/py-ruamel-ordereddict/distinfo b/py-ruamel-ordereddict/distinfo
deleted file mode 100644
index 095d20c..0000000
--- a/py-ruamel-ordereddict/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD$
-
-SHA1 (ruamel.ordereddict-0.4.9.tar.gz) = 842c764866a9e099cdc0ecc9477789fa4387d775
-RMD160 (ruamel.ordereddict-0.4.9.tar.gz) = 978e9a264c407850e7f0c74268719ee20068bb99
-SHA512 (ruamel.ordereddict-0.4.9.tar.gz) = 556988c457b60b8763b4eeffad4a8f44d96c22f8aca702ac6f883bd9ddf13af38aa46f804f95e256b900f9f25e473beb1c86a62f6da66d19ca770878dc8ca3ca
-Size (ruamel.ordereddict-0.4.9.tar.gz) = 53707 bytes
diff --git a/py-ruamel-yaml/Makefile b/py-ruamel-yaml/Makefile
index 1751f66..b0f64bd 100644
--- a/py-ruamel-yaml/Makefile
+++ b/py-ruamel-yaml/Makefile
@@ -15,7 +15,7 @@ DEPENDS+= ${PYPKGPREFIX}-ruamel-base>=1.0.0:../../wip/py-ruamel-base
# for python < 3.0
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} < 30
-DEPENDS+= ${PYPKGPREFIX}-ruamel-ordereddict>=0.4.9:../../wip/py-ruamel-ordereddict
+DEPENDS+= ${PYPKGPREFIX}-ruamel-ordereddict>=0.4.9:../../devel/py-ruamel-ordereddict
.endif
.include "../../lang/python/application.mk"
Home |
Main Index |
Thread Index |
Old Index