-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to python3 (only consumer is news/sabnzbd, which uses python3). Also add quirk for retirement of python2 version.
- Loading branch information
bket
committed
Aug 1, 2020
1 parent
827cc9b
commit fa1ac96
Showing
6 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# $OpenBSD: Makefile,v 1.1000 2020/08/01 08:18:48 kmos Exp $ | ||
# $OpenBSD: Makefile,v 1.1001 2020/08/01 19:07:19 bket Exp $ | ||
|
||
COMMENT = exceptions to pkg_add rules | ||
CATEGORIES = devel databases | ||
DISTFILES = | ||
|
||
# API.rev | ||
PKGNAME = quirks-3.392 | ||
PKGNAME = quirks-3.393 | ||
PKG_ARCH = * | ||
MAINTAINER = Marc Espie <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#! /usr/bin/perl | ||
|
||
# ex:ts=8 sw=4: | ||
# $OpenBSD: Quirks.pm,v 1.1018 2020/08/01 08:18:48 kmos Exp $ | ||
# $OpenBSD: Quirks.pm,v 1.1019 2020/08/01 19:07:19 bket Exp $ | ||
# | ||
# Copyright (c) 2009 Marc Espie <[email protected]> | ||
# | ||
|
@@ -450,6 +450,7 @@ my $stem_extensions = { | |
'py-rarfile' => 'py3-rarfile', | ||
'py-pygfm' => 'py3-pygfm', | ||
'py-humanize' => 'py3-humanize', | ||
'py-sabyenc' => 'py3-sabyenc', | ||
}; | ||
|
||
my $obsolete_reason = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SHA256 (sabyenc-3.3.6.tar.gz) = pMrNAzJXfFKk5BbBhQnd8ryep/iWN6xtZ7UaYUKsfuE= | ||
SIZE (sabyenc-3.3.6.tar.gz) = 9831 | ||
SHA256 (sabyenc3-4.0.2.tar.gz) = 36oL3QF1Kpz94NNJqPTheLBLHPnBvAGLKHlhGSzSu5A= | ||
SIZE (sabyenc3-4.0.2.tar.gz) = 10633 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
@comment $OpenBSD: PLIST,v 1.1.1.1 2019/02/27 04:26:28 bket Exp $ | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/ | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc.so | ||
@comment $OpenBSD: PLIST,v 1.2 2020/08/01 19:07:20 bket Exp $ | ||
@conflict py-sabyenc-* | ||
@pkgpath news/py-sabyenc | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc3-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/ | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc3-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc3-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc3-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt | ||
lib/python${MODPY_VERSION}/site-packages/sabyenc3-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt | ||
@so lib/python${MODPY_VERSION}/site-packages/sabyenc3.so |