* [gentoo-commits] proj/portage:repoman commit in: /, repoman/
@ 2016-05-14 18:33 Brian Dolbec
2016-05-15 23:51 ` [gentoo-commits] proj/portage:master " Brian Dolbec
0 siblings, 1 reply; 7+ messages in thread
From: Brian Dolbec @ 2016-05-14 18:33 UTC (permalink / raw
To: gentoo-commits
commit: 3f524aa39a4849fc92ad37ee538a45d09b3133c4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 18:29:17 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May 14 18:29:40 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3f524aa3
Test bump versions
repoman/setup.py | 2 +-
setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/repoman/setup.py b/repoman/setup.py
index b7b8ee2..07b14dc 100755
--- a/repoman/setup.py
+++ b/repoman/setup.py
@@ -612,7 +612,7 @@ def get_manpages():
setup(
name = 'repoman',
- version = '2.3.0',
+ version = '2.3.0_rc1',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-portage@gentoo.org',
diff --git a/setup.py b/setup.py
index c487ddf..75c4bcb 100755
--- a/setup.py
+++ b/setup.py
@@ -615,7 +615,7 @@ def get_manpages():
setup(
name = 'portage',
- version = '2.2.28',
+ version = '2.3.0_rc1',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-portage@gentoo.org',
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
2016-05-14 18:33 [gentoo-commits] proj/portage:repoman commit in: /, repoman/ Brian Dolbec
@ 2016-05-15 23:51 ` Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2016-05-15 23:51 UTC (permalink / raw
To: gentoo-commits
commit: 3f524aa39a4849fc92ad37ee538a45d09b3133c4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 18:29:17 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May 14 18:29:40 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3f524aa3
Test bump versions
repoman/setup.py | 2 +-
setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/repoman/setup.py b/repoman/setup.py
index b7b8ee2..07b14dc 100755
--- a/repoman/setup.py
+++ b/repoman/setup.py
@@ -612,7 +612,7 @@ def get_manpages():
setup(
name = 'repoman',
- version = '2.3.0',
+ version = '2.3.0_rc1',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-portage@gentoo.org',
diff --git a/setup.py b/setup.py
index c487ddf..75c4bcb 100755
--- a/setup.py
+++ b/setup.py
@@ -615,7 +615,7 @@ def get_manpages():
setup(
name = 'portage',
- version = '2.2.28',
+ version = '2.3.0_rc1',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-portage@gentoo.org',
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
@ 2016-05-15 23:51 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2016-05-15 23:51 UTC (permalink / raw
To: gentoo-commits
commit: a20f14fba4989f45949febdc29c95b189ce170bf
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 05:16:33 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 18:28:08 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a20f14fb
repoman: Set current working directory in repoman's setup.py
Fixes issues with running it from the portage parent directory.
.travis.yml | 6 ++----
repoman/setup.py | 2 ++
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 53e60bc..c098c4d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,9 +18,7 @@ script:
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
# repoman test block
- - cd repoman
- - ./setup.py test
- - ./setup.py install --root=/tmp/install-root
- - cd ..
+ - repoman/setup.py test
+ - repoman/setup.py install --root=/tmp/install-root
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m repoman.tests.runTests
diff --git a/repoman/setup.py b/repoman/setup.py
index 62c5b62..a4726ba 100755
--- a/repoman/setup.py
+++ b/repoman/setup.py
@@ -23,6 +23,8 @@ import os.path
import subprocess
import sys
+# change the cwd to this one
+os.chdir(os.path.dirname(os.path.realpath(__file__)))
# TODO:
# - smarter rebuilds of docs w/ 'install_docbook' and 'install_epydoc'.
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
2016-05-15 19:35 [gentoo-commits] proj/portage:repoman commit in: repoman/, / Brian Dolbec
@ 2016-05-15 23:51 ` Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2016-05-15 23:51 UTC (permalink / raw
To: gentoo-commits
commit: a0f8dd2a2a4e420d13f37c5816792bf01195e5b0
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 19:34:14 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 19:34:14 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a0f8dd2a
Initial NEWS, RELEASE-NOTES updates for a test release
NEWS | 5 +++++
RELEASE-NOTES | 11 +++++++++++
repoman/RELEASE-NOTES | 10 +++++++++-
3 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/NEWS b/NEWS
index 48dd7f2..acdfcd8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
News (mainly features/major bug fixes)
+portage-2.3.0_rc1
+-----------------
+* New split release for the repoman Q/A tool
+* Includes the stage2 rewite of the repoman code base
+
portage-2.2.26
--------------
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index efd446a..2f9f4ad 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,17 @@
Release Notes; upgrade information mainly.
Features/major bugfixes are listed in NEWS
+portage-2.3.0_rc1
+==================================
+* Initial test release of the now split portage/repoman pkgs
+* Bug Fixes:
+ - Bug 577720 Colorize packages in user sets
+ - Bug 577126 egencache --write-timestamp: use write_atomic
+* portageq: Case-insensitive match maintainer emails
+* qa: gcc-warnings: force text mode w/grep
+* qa-checks: change "herd" to "maintainer"
+* qa-checks: executable-issues: improve logic & output
+
portage-2.2.28
==================================
* Bug Fixes:
diff --git a/repoman/RELEASE-NOTES b/repoman/RELEASE-NOTES
index 5daf588..b8ae8b3 100644
--- a/repoman/RELEASE-NOTES
+++ b/repoman/RELEASE-NOTES
@@ -3,5 +3,13 @@ Features/major bugfixes are listed in NEWS
repoman-2.3.0_rc1
==================================
-* initial release
+* Initial test release
* Bug Fixes:
+ - Bug 579460 Disable the $ID header check
+ - Bug 546010 Handle removed packages in vcs_files_to_cps
+ - Bug 581594 Fix commit 8e7971169c2 missing self in func() parameters
+ - Bug 581598 Add InvalidPackageName exception trap
+ - Bug 405017 Fix copyright update
+* Includes the stage2 re-writes, the checks are now in a modular system
+ which is not yet fully plug-in capable. Becoming fully plug-in capable and
+ configurable is to be done in the stage3 rewites.
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
@ 2017-02-08 8:28 Zac Medico
0 siblings, 0 replies; 7+ messages in thread
From: Zac Medico @ 2017-02-08 8:28 UTC (permalink / raw
To: gentoo-commits
commit: ab8217c8ebb6bf340c62b195168015c8d8c4a7ab
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 8 08:06:19 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Feb 8 08:07:55 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ab8217c8
.travis.yml: test python 3.6
.travis.yml | 1 +
repoman/runtests | 1 +
runtests | 1 +
3 files changed, 3 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ded5893c8..7fe3c06aa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,7 @@ python:
- 3.3
- 3.4
- 3.5
+ - 3.6
- pypy
# command to install dependencies
diff --git a/repoman/runtests b/repoman/runtests
index 599eddab6..53eb64510 100755
--- a/repoman/runtests
+++ b/repoman/runtests
@@ -31,6 +31,7 @@ PYTHON_SUPPORTED_VERSIONS = [
PYTHON_NICE_VERSIONS = [
'pypy',
'3.5',
+ '3.6',
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
diff --git a/runtests b/runtests
index 913576893..64e62bb69 100755
--- a/runtests
+++ b/runtests
@@ -31,6 +31,7 @@ PYTHON_SUPPORTED_VERSIONS = [
PYTHON_NICE_VERSIONS = [
'pypy',
'3.5',
+ '3.6',
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
@ 2019-10-15 15:03 Manuel Rüger
0 siblings, 0 replies; 7+ messages in thread
From: Manuel Rüger @ 2019-10-15 15:03 UTC (permalink / raw
To: gentoo-commits
commit: a934cafcf928b9e8cf2aaf749dca68fa6fa689d7
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 14 23:22:57 2019 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 15:02:36 2019 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a934cafc
Add python-3.8, drop python-3.4 from testing
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
.travis.yml | 15 +++++----------
repoman/runtests | 6 +++---
runtests | 6 +++---
tox.ini | 9 ++++-----
4 files changed, 15 insertions(+), 21 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index ab0b8d304..b1b4bf26b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,12 @@
language: python
python:
- 2.7
- - 3.4
- 3.5
- 3.6
+ - 3.7
+ - 3.8-dev
- pypy
-# See https://github.com/travis-ci/travis-ci/issues/9815
-matrix:
- include:
- - python: 3.7
- dist: xenial
- sudo: required
-
# command to install dependencies
install:
- pip install tox
@@ -21,8 +15,9 @@ script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
- - if [[ ${TRAVIS_PYTHON_VERSION} == ?.? ]]; then
- tox -e py${TRAVIS_PYTHON_VERSION/./};
+ - if [[ ${TRAVIS_PYTHON_VERSION/-dev/} == ?.? ]]; then
+ TOX_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION/-dev/};
+ tox -e py${TOX_PYTHON_VERSION/./};
else
tox -e ${TRAVIS_PYTHON_VERSION};
fi
diff --git a/repoman/runtests b/repoman/runtests
index e208ab61d..1ef52f482 100755
--- a/repoman/runtests
+++ b/repoman/runtests
@@ -24,14 +24,14 @@ import tempfile
# These are the versions we fully support and require to pass tests.
PYTHON_SUPPORTED_VERSIONS = [
'2.7',
- '3.4',
'3.5',
- '3.6'
+ '3.6',
+ '3.7'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy',
- '3.7'
+ '3.8'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
diff --git a/runtests b/runtests
index 7c3ebb1ca..50d7b8251 100755
--- a/runtests
+++ b/runtests
@@ -24,14 +24,14 @@ import tempfile
# These are the versions we fully support and require to pass tests.
PYTHON_SUPPORTED_VERSIONS = [
'2.7',
- '3.4',
'3.5',
- '3.6'
+ '3.6',
+ '3.7'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy',
- '3.7'
+ '3.8'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
diff --git a/tox.ini b/tox.ini
index f49bd413f..378ff01e3 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,15 +1,14 @@
[tox]
-envlist = py27,py34,py35,py36,py37,pypy,pypy3
+envlist = py27,py35,py36,py37,py38,pypy,pypy3
skipsdist = True
[testenv]
deps =
pygost
pyyaml
- py34: lxml!=4.2.0,<4.4.0
- py27,py35,py36,py37,pypy,pypy3: lxml!=4.2.0
- py27,py34,py35,pypy: pyblake2
- py27,py34,py35,pypy: pysha3
+ py27,py35,py36,py37,py38,pypy,pypy3: lxml!=4.2.0
+ py27,py35,pypy: pyblake2
+ py27,py35,pypy: pysha3
setenv =
PYTHONPATH={toxinidir}/lib
commands =
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
@ 2020-12-31 1:03 Zac Medico
0 siblings, 0 replies; 7+ messages in thread
From: Zac Medico @ 2020-12-31 1:03 UTC (permalink / raw
To: gentoo-commits
commit: 57c13cb8630a7ee78d714a4cc15bceb3d0fd2838
Author: Manuel Rüger <manuel <AT> rueg <DOT> eu>
AuthorDate: Wed Dec 30 14:40:54 2020 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Dec 31 01:02:45 2020 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=57c13cb8
Test with Python 3.10
Closes: https://github.com/gentoo/portage/pull/649
Signed-off-by: Manuel Rüger <manuel <AT> rueg.eu>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
.travis.yml | 5 +++--
repoman/runtests | 5 +++--
runtests | 5 +++--
tox.ini | 4 ++--
4 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index d2935fdab..3a40617fb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,11 @@
-dist: bionic
+dist: focal
language: python
python:
- 3.6
- 3.7
- 3.8
- - 3.9-dev
+ - 3.9
+ - 3.10-dev
- pypy3
# command to install dependencies
diff --git a/repoman/runtests b/repoman/runtests
index 3edaaf0a8..5137b5e6e 100755
--- a/repoman/runtests
+++ b/repoman/runtests
@@ -24,12 +24,13 @@ PYTHON_SUPPORTED_VERSIONS = [
'2.7',
'3.6',
'3.7',
- '3.8'
+ '3.8',
+ '3.9'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy3',
- '3.9'
+ '3.10'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
diff --git a/runtests b/runtests
index 685a7d9c7..c062f46cb 100755
--- a/runtests
+++ b/runtests
@@ -23,12 +23,13 @@ import tempfile
PYTHON_SUPPORTED_VERSIONS = [
'3.6',
'3.7',
- '3.8'
+ '3.8',
+ '3.9'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy3',
- '3.9'
+ '3.10'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
diff --git a/tox.ini b/tox.ini
index d6c8cf3b3..8aabbd2ce 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py36,py37,py38,py39,pypy3
+envlist = py36,py37,py38,py39,py310,pypy3
skipsdist = True
[testenv]
@@ -7,7 +7,7 @@ deps =
pylint
pygost
pyyaml
- py36,py37,py38,py39,pypy3: lxml!=4.2.0
+ py36,py37,py38,py39,py310,pypy3: lxml!=4.2.0
setenv =
PYTHONPATH={toxinidir}/lib
commands =
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-12-31 1:03 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-14 18:33 [gentoo-commits] proj/portage:repoman commit in: /, repoman/ Brian Dolbec
2016-05-15 23:51 ` [gentoo-commits] proj/portage:master " Brian Dolbec
-- strict thread matches above, loose matches on Subject: below --
2016-05-15 19:35 [gentoo-commits] proj/portage:repoman commit in: repoman/, / Brian Dolbec
2016-05-15 23:51 ` [gentoo-commits] proj/portage:master commit in: /, repoman/ Brian Dolbec
2016-05-15 23:51 Brian Dolbec
2017-02-08 8:28 Zac Medico
2019-10-15 15:03 Manuel Rüger
2020-12-31 1:03 Zac Medico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox