summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* */*: Remove obsolete values from PYTHON_COMPATMichał Górny2021-01-311-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Drop most stable hppa keywordsMatt Turner2020-12-311-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-python/lockfile: pbr is BDEPEND-onlySam James2020-08-071-1/+1
| | | | | | | | We don't need pbr at runtime. URL: https://bugs.launchpad.net/pylockfile/+bug/1506679 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/lockfile: port to py3.9David Denoncin2020-08-071-24/+4
| | | | | | | | | Use distutils_enable_{tests,sphinx} Package is deprecated. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: David Denoncin <ddenoncin@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/lockfile: Remove py2.7Michał Górny2020-08-021-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/lockfile: add py38 for python-daemonMatthew Thode2020-04-201-1/+1
| | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
* */*: Drop stable ia64 keywordsMatt Turner2020-04-031-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-python/lockfile: Remove redundant versionsMichał Górny2020-03-273-91/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/lockfile: Stabilize 0.12.2-r2 ALLARCHESMichał Górny2020-03-271-1/+1
| | | | | Closes: https://bugs.gentoo.org/714366 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/lockfile: Mark ALLARCHESMichał Górny2020-03-271-0/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Discontinue Gentoo SuperH portMikle Kolyada2020-03-263-3/+3
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --ignore-arches Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* dev-python/lockfile: x86 stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-python/lockfile: ppc64 stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-python/lockfile: amd64 stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-python/lockfile: ppc stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="ppc" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-python/lockfile: arm stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="arm" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-python/lockfile: sparc stable wrt bug #714366Agostino Sarubbo2020-03-251-1/+1
| | | | | | Package-Manager: Portage-2.3.89, Repoman-2.3.20 RepoMan-Options: --include-arches="sparc" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* */*: Drop stable alpha keywordsMatt Turner2020-01-251-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* */*: Clean PYTHON_COMPAT of obsolete implsMichał Górny2020-01-053-6/+6
| | | | | Closes: https://github.com/gentoo/gentoo/pull/14246 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: [QA] Remove redundant `|| die` guardsDavid Seifert2019-12-111-1/+1
| | | | | | | | | | | | * Since all ebuilds in the tree are EAPI>=4, `|| die` on builtin commands is redundant and dead code. Closes: https://github.com/gentoo/gentoo/pull/13940 Reviewed-by: Ulrich Müller <ulm@gentoo.org> Reviewed-by: Michał Górny <mgorny@gentoo.org> Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org> Signed-off-by: David Seifert <soap@gentoo.org>
* */*: [QA] Fix trivial cases of MissingTestRestrictMichał Górny2019-12-113-0/+3
| | | | | | | | | | | | | | | | | | The result was achieved via the following pipeline: pkgcheck scan -c RestrictTestCheck -R FormatReporter \ --format '{category}/{package}/{package}-{version}.ebuild' | xargs -n32 grep -L RESTRICT | xargs -n32 sed -i -e '/^IUSE=.*test/aRESTRICT="!test? ( test )"' The resulting metadata was compared before and after the change. Few Go ebuilds had to be fixed manually due to implicit RESTRICT=strip added by the eclass. Two ebuilds have to be fixed because of multiline IUSE. Suggested-by: Robin H. Johnson <robbat2@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13942 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/lockfile: EAPI=7Craig Andrews2019-10-151-0/+40
| | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Craig Andrews <candrews@gentoo.org>
* dev-python/lockfile: Python 3.7 compatibilityCraig Andrews2019-10-151-1/+1
| | | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Craig Andrews <candrews@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13282 Signed-off-by: Craig Andrews <candrews@gentoo.org>
* */*: Remove python3_4 PYTHON_COMPAT correctlyMichał Górny2019-04-172-4/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* update pypi HOMEPAGE to avoid redirectionMichael Mair-Keimberger2018-04-262-2/+2
| | | | Closes: https://github.com/gentoo/gentoo/pull/8080
* Replace pypi.python.org with pypi.org in HOMEPAGEMike Gilbert2018-04-192-2/+2
| | | | Bug: https://bugs.gentoo.org/653540
* dev-python/lockfile: Clean old upMichał Górny2018-01-051-43/+0
|
* dev-python/*: Update Manifest hashesMichał Górny2017-12-091-2/+2
|
* dev-python/lockfile: EAPI 6 bump.Patrice Clement2017-10-211-0/+40
| | | | Package-Manager: Portage-2.3.8, Repoman-2.3.3
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-282-2/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* dev-python/lockfile: PYTHON_COMPAT: add python3_6Zac Medico2017-02-122-4/+4
| | | | Package-Manager: Portage-2.3.3, Repoman-2.3.1
* global: Drop dead implementations from PYTHON_COMPATMichał Górny2016-11-012-2/+2
|
* Set appropriate maintainer types in metadata.xml (GLEP 67)Michał Górny2016-01-241-1/+1
|
* Replace all herds with appropriate projects (GLEP 67)Michał Górny2016-01-241-1/+4
| | | | | Replace all uses of herd with appropriate project maintainers, or no maintainers in case of herds requested to be disbanded.
* dev-python/lockfile: Version BumpJustin Lecher2015-11-282-0/+45
| | | | | Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec@gentoo.org>
* dev-python/lockfile: Drop oldJustin Lecher2015-11-234-197/+0
| | | | | Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec@gentoo.org>
* dev-python/lockfile: Stable for HPPA (bug #564588).Jeroen Roovers2015-11-231-1/+1
| | | | | Package-Manager: portage-2.2.25 RepoMan-Options: --ignore-arches
* dev-python/lockfile: arm stable, bug #564588Markus Meier2015-11-221-1/+1
| | | | | Package-Manager: portage-2.2.25 RepoMan-Options: --include-arches="arm"
* dev-python/lockfile: alpha stable wrt bug #564588Agostino Sarubbo2015-11-191-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="alpha"
* dev-python/lockfile: ia64 stable wrt bug #564588Agostino Sarubbo2015-11-161-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="ia64"
* dev-python/lockfile: Depend on threading support in pythonJustin Lecher2015-11-113-0/+3
| | | | | Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>
* dev-python/lockfile: sparc stable wrt bug #564588Agostino Sarubbo2015-11-051-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="sparc"
* dev-python/lockfile: ppc64 stable wrt bug #564588Agostino Sarubbo2015-11-041-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="ppc64"
* dev-python/lockfile: ppc stable wrt bug #564588Agostino Sarubbo2015-11-041-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="ppc"
* dev-python/lockfile: x86 stable wrt bug #564588Agostino Sarubbo2015-11-021-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="x86"
* dev-python/lockfile: amd64 stable wrt bug #564588Agostino Sarubbo2015-11-021-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="amd64"
* Revert "dev-python/lockfile: Drop old"Justin Lecher2015-11-025-1/+196
| | | | This reverts commit b001341676e39eca2364fea454ab5221e7fe2c8d.
* dev-python/lockfile: Drop oldJustin Lecher2015-11-025-196/+1
| | | | | | | | | | | obsoletes: Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=536240 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=560752 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>
* dev-python/lockfile: Remove upper-bound on dev-python/pbrMike Gilbert2015-10-151-1/+5
| | | | Package-Manager: portage-2.2.23_p4
* dev-python/lockfile: Fix installation problems due to file renamingJustin Lecher2015-10-151-1/+1
| | | | | Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>