From 5ca2ede9375a4bb923a5ca97df920fbab042b60a Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Sat, 9 Mar 2024 12:52:40 +0100 Subject: [PATCH] New package: src-1.37 --- srcpkgs/python3-pyqtdeploy/template | 19 +++++++++++++++++++ srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++ srcpkgs/src/template | 19 +++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 srcpkgs/python3-pyqtdeploy/template create mode 100644 srcpkgs/src/patches/rcs_version.patch create mode 100644 srcpkgs/src/template diff --git a/srcpkgs/python3-pyqtdeploy/template b/srcpkgs/python3-pyqtdeploy/template new file mode 100644 index 00000000000000..9ab9ade9f36efd --- /dev/null +++ b/srcpkgs/python3-pyqtdeploy/template @@ -0,0 +1,19 @@ +# Template file for 'python3-pyqtdeploy' +pkgname=python3-pyqtdeploy +version=3.3.0 +revision=1 +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3 python3-toml python3-PyQt5" +checkdepends="python3-toml python3-PyQt5 tox" +short_desc="PyQt Application Deployment Tool" +maintainer="Eloi Torrents " +license="BSD" +homepage="https://www.riverbankcomputing.com/software/pyqtdeploy/" +changelog="https://www.riverbankcomputing.com/hg/pyqtdeploy/raw-file/tip/NEWS" +distfiles="$PYPI_SITE/p/pyqtdeploy/pyqtdeploy-${version}.tar.gz" +checksum=f2802707cca6d38672b3b8f0f3f373f40b2a6b892c0dd1d613ca1e670d10e98b + +post_install() { + vlicense PKG-INFO +} diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch new file mode 100644 index 00000000000000..67d69c1eda15b2 --- /dev/null +++ b/srcpkgs/src/patches/rcs_version.patch @@ -0,0 +1,10 @@ +--- a/src ++++ b/src +@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin): + # rcs --version fails under OS X + # rcs -V throws an obsolescence warning under GNU RCS 5.9.4 + # We choose the more portable option here. +- rawversion = capture_or_die("rcs -V 2>/dev/null") ++ rawversion = capture_or_die("rcs --version 2>/dev/null") + m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion) + return m and polystr(m.group(0)) diff --git a/srcpkgs/src/template b/srcpkgs/src/template new file mode 100644 index 00000000000000..44912996ecece0 --- /dev/null +++ b/srcpkgs/src/template @@ -0,0 +1,19 @@ +# Template file for 'src' +pkgname=src +version=1.37 +revision=1 +build_style=gnu-makefile +hostmakedepends="python3 rcs" +depends="python3 rcs" +checkdepends="python3 pylint shellcheck" +short_desc="Simple Revision Control" +maintainer="Eloi Torrents " +license="BSD-2-Clause" +homepage="http://www.catb.org/~esr/src" +changelog="http://www.catb.org/~esr/src/NEWS.html" +distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz" +checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067 + +post_install() { + vlicense COPYING +}