aboutsummaryrefslogtreecommitdiff
path: root/lang/python/python-gnupg
Commit message (Collapse)AuthorAge
* python-gnupg: Update to 0.5.1Jeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-gnupg: Update to 0.5.0Jeffery To2023-06-29
| | | | | | | This also removes the dependency on gnupg as there are two packages for gpg, gnupg and gnupg2; this library should work with either one. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-packages: Take over maintainership from Daniel GolleJeffery To2023-06-27
| | | | | | | This was requested in https://github.com/openwrt/packages/pull/21227#issuecomment-1567676980. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* python-gnupg: update to version 0.4.7Daniel Golle2021-04-29
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* python-gnupg: Update to 0.4.6Jeffery To2020-04-23
| | | | | | | | | This also updates all package metadata (it appears this information was not updated when the package switched from packaging "gnupg" from PyPI to "python-gnupg"), updates the package to use the default Python package build recipe, and adds a src package. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-packages: Clean up MakefilesJeffery To2020-04-22
| | | | | | | | | | | | | | | | | | | This removes: * Python 3 variants (VARIANT:=python3) * "for Python3" from package titles * Package selection condition from package dependencies, e.g. +PACKAGE_python3-six:python3-light replaced with +python3-light * "Default" package information sections, e.g. Package/python-six/Default removed and package details merged into Package/python3-six * "(Variant for Python3)" from package descriptions Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Rename canned recipes in python3-package.mkJeffery To2020-04-19
| | | | | | | This renames "internal" recipes to use the Python3/ prefix and clarifies the names (RunTarget to Run, Mod to ModSetup, Shebang to FixShebang). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-libraries: Remove Python 2 variantsJeffery To2020-04-02
| | | | | | The Python 2 variants will be added to the abandoned packages feed. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: Use pypi.mk for Python packagesJeffery To2019-10-30
| | | | | | | | | | | | | This updates all Python packages that download their source from PyPi to use pypi.mk. This will allow future improvements/changes to pypi.mk to affect all relevant packages. This also makes it easier for future Python packages to start using pypi.mk, when it's clear how it is used in existing packages. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: add PKG_CPE_ID for cvescannerJan Pavlinec2019-09-24
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* python-gnupg: update to version 0.4.4Daniel Golle2019-03-02
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* python-gnupg: Fix build breakageRosen Penev2018-11-11
| | | | | Apparently := doesn't work here. Why it doesn't should be investigated but for now fix it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* python-gnupg: Use a more standard URL for easier version bumpingRosen Penev2018-11-06
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* python-gnupg: Update to 0.4.3Rosen Penev2018-08-09
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: use local python-package.mk & python3-package.mk filesAlexandru Ardelean2018-01-10
| | | | | | | | | | This guarantees for the package feeds that the mk files will always be available for all packages. Will need to see about external-feed Python packages a bit later. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* python-gnupg: switch to python-gnupg 0.4.1Daniel Golle2017-08-14
| | | | | | | | | | | Aparently there are two python gnupg wrappers around https://pypi.python.org/pypi/python-gnupg/ and https://pypi.python.org/pypi/gnupg/ We used to package the latter, now we switched to the prior. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* python-gnupg: add packageDaniel Golle2017-07-08
Signed-off-by: Daniel Golle <daniel@makrotopia.org>