pkgsrc-WIP-changes archive

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

+py-qstylizer in wip



Module Name:	pkgsrc-wip
Committed By:	K.I.A.Derouiche <kamelderouiche%yahoo.com@localhost>
Pushed By:	jihbed
Date:		Sat Nov 5 09:28:02 2022 +0000
Changeset:	8a0ef34c1869538b6df503643984105a8f5a2009

Modified Files:
	Makefile
Added Files:
	py-qstylizer/DESCR
	py-qstylizer/Makefile
	py-qstylizer/PLIST
	py-qstylizer/distinfo
	py-qstylizer/patches/patch-setup.py

Log Message:
+py-qstylizer in wip

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

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

diffstat:
 Makefile                            |  1 +
 py-qstylizer/DESCR                  |  2 ++
 py-qstylizer/Makefile               | 25 +++++++++++++++++++++++++
 py-qstylizer/PLIST                  | 35 +++++++++++++++++++++++++++++++++++
 py-qstylizer/distinfo               |  6 ++++++
 py-qstylizer/patches/patch-setup.py | 13 +++++++++++++
 6 files changed, 82 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index ae936ce127..d348926d83 100644
--- a/Makefile
+++ b/Makefile
@@ -4528,6 +4528,7 @@ SUBDIR+=	py-qmath
 SUBDIR+=	py-qnet
 SUBDIR+=	py-qrng
 SUBDIR+=	py-qsymm
+SUBDIR+=	py-qstylizer
 SUBDIR+=	py-qtawesome
 SUBDIR+=	py-qtconsole
 SUBDIR+=	py-qt-thread-updater
diff --git a/py-qstylizer/DESCR b/py-qstylizer/DESCR
new file mode 100644
index 0000000000..4f9f5c02c3
--- /dev/null
+++ b/py-qstylizer/DESCR
@@ -0,0 +1,2 @@
+qstylizer is a python package designed to help with the
+construction of PyQt/PySide stylesheets.
diff --git a/py-qstylizer/Makefile b/py-qstylizer/Makefile
new file mode 100644
index 0000000000..770119e465
--- /dev/null
+++ b/py-qstylizer/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD$
+
+GITHUB_PROJECT=	qstylizer
+GITHUB_TAG=	719c0845d01e724e1f826622b9362435b1e72d73
+DISTNAME=	0.2.2
+PKGNAME=	${PYPKGPREFIX}-${GITHUB_PROJECT}-${DISTNAME}
+CATEGORIES=	x11 python
+MASTER_SITES=	${MASTER_SITE_GITHUB:=blambright/}
+DIST_SUBDIR=	${GITHUB_PROJECT}
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	https://github.com/blambright/qstylizer/
+COMMENT=	Qt Stylesheet Generator for PyQt/PySide
+LICENSE=	mit
+
+#BUILD_DEPENDS+=	${PYPKGPREFIX}-pbr>=0:../../devel/py-pbr
+DEPENDS+=		${PYPKGPREFIX}-inflection-[0-9]*:../../textproc/py-inflection
+DEPENDS+=		${PYPKGPREFIX}-tinycss2-[0-9]*:../../textproc/py-tinycss2
+
+WRKSRC=		${WRKDIR}/qstylizer-${GITHUB_TAG}
+
+USE_LANGUAGES=	# none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-qstylizer/PLIST b/py-qstylizer/PLIST
new file mode 100644
index 0000000000..2e2aeea177
--- /dev/null
+++ b/py-qstylizer/PLIST
@@ -0,0 +1,35 @@
+@comment $NetBSD$
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/qstylizer/__init__.py
+${PYSITELIB}/qstylizer/__init__.pyc
+${PYSITELIB}/qstylizer/__init__.pyo
+${PYSITELIB}/qstylizer/descriptor/__init__.py
+${PYSITELIB}/qstylizer/descriptor/__init__.pyc
+${PYSITELIB}/qstylizer/descriptor/__init__.pyo
+${PYSITELIB}/qstylizer/descriptor/prop.py
+${PYSITELIB}/qstylizer/descriptor/prop.pyc
+${PYSITELIB}/qstylizer/descriptor/prop.pyo
+${PYSITELIB}/qstylizer/descriptor/pseudoprop.py
+${PYSITELIB}/qstylizer/descriptor/pseudoprop.pyc
+${PYSITELIB}/qstylizer/descriptor/pseudoprop.pyo
+${PYSITELIB}/qstylizer/descriptor/pseudostate.py
+${PYSITELIB}/qstylizer/descriptor/pseudostate.pyc
+${PYSITELIB}/qstylizer/descriptor/pseudostate.pyo
+${PYSITELIB}/qstylizer/descriptor/qclass.py
+${PYSITELIB}/qstylizer/descriptor/qclass.pyc
+${PYSITELIB}/qstylizer/descriptor/qclass.pyo
+${PYSITELIB}/qstylizer/descriptor/stylerule.py
+${PYSITELIB}/qstylizer/descriptor/stylerule.pyc
+${PYSITELIB}/qstylizer/descriptor/stylerule.pyo
+${PYSITELIB}/qstylizer/descriptor/subcontrol.py
+${PYSITELIB}/qstylizer/descriptor/subcontrol.pyc
+${PYSITELIB}/qstylizer/descriptor/subcontrol.pyo
+${PYSITELIB}/qstylizer/parser.py
+${PYSITELIB}/qstylizer/parser.pyc
+${PYSITELIB}/qstylizer/parser.pyo
+${PYSITELIB}/qstylizer/style.py
+${PYSITELIB}/qstylizer/style.pyc
+${PYSITELIB}/qstylizer/style.pyo
diff --git a/py-qstylizer/distinfo b/py-qstylizer/distinfo
new file mode 100644
index 0000000000..a6441bea32
--- /dev/null
+++ b/py-qstylizer/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+BLAKE2s (qstylizer/0.2.2.tar.gz) = e64d98eeffee931f38f98f1e83b278d8a9ace4a8c246ab748c9e9f3088fb2d84
+SHA512 (qstylizer/0.2.2.tar.gz) = 682f10462965a93b36f0e44b75885b9d60b4d3cd03369976b977c9b928afed4e930b6b7ef26850bdb7b40ef2a31db35a9778738582dae8715f54c1f00a957fb3
+Size (qstylizer/0.2.2.tar.gz) = 20752 bytes
+SHA1 (patch-setup.py) = b7c72ffa2c517547f72922324a48392a9c842046
diff --git a/py-qstylizer/patches/patch-setup.py b/py-qstylizer/patches/patch-setup.py
new file mode 100644
index 0000000000..a8551efd4d
--- /dev/null
+++ b/py-qstylizer/patches/patch-setup.py
@@ -0,0 +1,13 @@
+$NetBSD$
+
+--- setup.py.orig	2022-09-03 16:00:00.000000000 +0000
++++ setup.py
+@@ -4,5 +4,5 @@ from setuptools import setup
+ 
+ setup(
+     setup_requires=['pbr'],
+-    pbr=True,
+-)
+\ No newline at end of file
++    pbr=False,
++)


Home | Main Index | Thread Index | Old Index