* [gentoo-commits] proj/portage:repoman commit in: /
@ 2015-12-30 23:38 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2015-12-30 23:38 UTC (permalink / raw
To: gentoo-commits
commit: 0cf294d33a466f4a3c537aa82d385ec7f87c7bf3
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 19:26:42 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 19:26:42 2015 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=0cf294d3
Merge branch 'master' of git+ssh://git.gentoo.org/proj/portage
bin/egencache | 70 +++++++++++++++++++-------------
bin/install-qa-check.d/60openrc | 2 +-
bin/save-ebuild-env.sh | 2 +-
man/portage.5 | 7 +++-
misc/emerge-delta-webrsync | 2 +-
pym/portage/emaint/modules/sync/sync.py | 57 ++++++++++++++++++++++----
pym/portage/repository/config.py | 6 ++-
pym/portage/sync/controller.py | 18 +++++---
pym/portage/sync/modules/git/git.py | 11 ++++-
pym/portage/sync/modules/rsync/rsync.py | 17 ++++----
pym/portage/util/_async/AsyncFunction.py | 5 ++-
11 files changed, 139 insertions(+), 58 deletions(-)
^ permalink raw reply [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-14 23:40 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-14 23:40 UTC (permalink / raw
To: gentoo-commits
commit: 4b84f797266b17d3c103ff32a1b1a658e15f5636
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 23:39:39 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May 14 23:39:39 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4b84f797
.travis.yml: Fix the metadata.xsd file copy to find it in the new repoman namespace
.travis.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 5213fee..e0b8b53 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,6 +10,6 @@ script:
- ./setup.py install --root=/tmp/install-root
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- - cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
+ - cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 0:30 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 0:30 UTC (permalink / raw
To: gentoo-commits
commit: aa8893df9c23db8d4b6601905b589e739e0463e4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 00:29:18 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 00:29:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=aa8893df
.travis: Add repoman test suite
.travis.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index e0b8b53..97c5bfb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,8 +8,13 @@ python:
script:
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
+ - sudo rsync -a /tmp/install-root/. /
+ - python -b -Wd -m portage.tests.runTests
+ # repoman test block
+ - repoman/setup.py test
+ - repoman/setup.py install --root=/tmp/install-root
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- sudo rsync -a /tmp/install-root/. /
- - python -b -Wd -m portage.tests.runTests
+ - python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 1:24 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 1:24 UTC (permalink / raw
To: gentoo-commits
commit: 52c696972986cf738837d64ccdd0b2d0c8e02b4c
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 01:23:28 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 01:23:28 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=52c69697
try #2
.travis.yml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 97c5bfb..46d470b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,10 +11,11 @@ script:
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
# repoman test block
- - repoman/setup.py test
- - repoman/setup.py install --root=/tmp/install-root
+ - cd repoman
+ - ./setup.py test
+ - ./setup.py install --root=/tmp/install-root
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- - cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
+ - cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 1:43 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 1:43 UTC (permalink / raw
To: gentoo-commits
commit: 61506741666376cf03691e7951683637727a6e82
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 01:42:39 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 01:42:39 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=61506741
try #3
.travis.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 46d470b..b606f95 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,11 +11,11 @@ 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
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
+ - cd repoman
+ - ./setup.py test
+ - ./setup.py install --root=/tmp/install-root
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 1:58 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 1:58 UTC (permalink / raw
To: gentoo-commits
commit: 77738f03f3b95854b3b923d8dc3dba6767570ff2
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 01:51:25 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 01:51:25 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=77738f03
try #4
.travis.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index b606f95..6046cd1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,12 +8,12 @@ python:
script:
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
+ # prevent repoman tests from trying to fetch metadata.xsd
+ - mkdir -p /tmp/install-root/usr/lib/portage/cnf
+ - cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
# repoman test block
- # prevent repoman tests from trying to fetch metadata.xsd
- - mkdir -p /tmp/install-root/usr/lib/portage/cnf
- - cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- cd repoman
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 2:13 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 2:13 UTC (permalink / raw
To: gentoo-commits
commit: 7c5e6875250e8feb78a2bfe9ac06f2312506f427
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 02:12:00 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 02:12:00 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7c5e6875
try #5
.travis.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.travis.yml b/.travis.yml
index 6046cd1..214bf4c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,5 +17,6 @@ script:
- cd repoman
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
+ - cd ..
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 2:37 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 2:37 UTC (permalink / raw
To: gentoo-commits
commit: 1acad2ed7358f0195722d4205a09d74a5a1728b6
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 02:36:38 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 02:36:38 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1acad2ed
.travis.yml: Add lxml dependency
.travis.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 214bf4c..53e60bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,10 @@ python:
- 3.4
- 3.5
- pypy
+
+# command to install dependencies
+install: "pip install lxml"
+
script:
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 5:02 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 5:02 UTC (permalink / raw
To: gentoo-commits
commit: e9370ffeb57e7bbfc8301dbed6725e178faeb4cb
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 05:01:05 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 05:01:05 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e9370ffe
try chaining the test to the cd command
.travis.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 53e60bc..576ed20 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,8 +18,7 @@ script:
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
# repoman test block
- - cd repoman
- - ./setup.py test
+ - cd repoman && ./setup.py test
- ./setup.py install --root=/tmp/install-root
- cd ..
- sudo rsync -a /tmp/install-root/. /
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 7:23 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 7:23 UTC (permalink / raw
To: gentoo-commits
commit: ff2aeaf114110fee111f8c8f85ab48a787d2d191
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 07:22:03 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 07:22:03 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ff2aeaf1
try all not installed tests before the installs and installed tests
.travis.yml | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index c098c4d..b684fdc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,14 +11,13 @@ install: "pip install lxml"
script:
- ./setup.py test
- - ./setup.py install --root=/tmp/install-root
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- - sudo rsync -a /tmp/install-root/. /
- - python -b -Wd -m portage.tests.runTests
- # repoman test block
+ #- sudo rsync -a /tmp/install-root/. /
- repoman/setup.py test
- repoman/setup.py install --root=/tmp/install-root
+ - ./setup.py install --root=/tmp/install-root
- sudo rsync -a /tmp/install-root/. /
+ - python -b -Wd -m portage.tests.runTests
- python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 8:40 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 8:40 UTC (permalink / raw
To: gentoo-commits
commit: 9c02e8afd218b5d039f3312c278e37d4cd816967
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 02:36:38 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 08:39:17 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=9c02e8af
.travis.yml: Add lxml dependency
.travis.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 214bf4c..53e60bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,10 @@ python:
- 3.4
- 3.5
- pypy
+
+# command to install dependencies
+install: "pip install lxml"
+
script:
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 8:40 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 8:40 UTC (permalink / raw
To: gentoo-commits
commit: 5f39e643ed3e98424d66c2f999755c7ebdd05408
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 00:29:18 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 08:33:03 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5f39e643
.travis: Add repoman test suite
.travis.yml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index e0b8b53..214bf4c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,3 +13,10 @@ script:
- cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- 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 ..
+ - sudo rsync -a /tmp/install-root/. /
+ - python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2016-05-15 8:40 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 8:40 UTC (permalink / raw
To: gentoo-commits
commit: c1baac3481aa126a51c86aaa021dcb7ce65faf7c
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 07:37:19 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 08:39:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c1baac34
Update .gitignore for the repoman/build dir
.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitignore b/.gitignore
index c2dd534..930252f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,5 @@ __pycache__/
*.class
/build
/tags
+
+repoman/build
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
@ 2016-05-15 18:34 ` Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 18:34 UTC (permalink / raw
To: gentoo-commits
commit: e004e7a3be9420790481630ffd9671d2a57a72ae
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 23:39:39 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 18:17:11 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e004e7a3
.travis.yml: Update for the new repoman sub-structure
Fix the metadata.xsd file copy to find it in the new repoman namespace
Add repoman test suite
Add lxml dependency
.travis.yml | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 5213fee..53e60bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,11 +5,22 @@ python:
- 3.4
- 3.5
- pypy
+
+# command to install dependencies
+install: "pip install lxml"
+
script:
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
# prevent repoman tests from trying to fetch metadata.xsd
- mkdir -p /tmp/install-root/usr/lib/portage/cnf
- - cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
+ - cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/
- 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 ..
+ - sudo rsync -a /tmp/install-root/. /
+ - python -b -Wd -m repoman.tests.runTests
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
@ 2016-05-15 18:34 ` Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-05-15 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 7eb06a10ae3eca698fd7bd8f6a7e8592a511ced7
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 07:37:19 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=7eb06a10
Update .gitignore for the repoman/build dir
.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitignore b/.gitignore
index c2dd534..930252f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,5 @@ __pycache__/
*.class
/build
/tags
+
+repoman/build
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
2017-01-06 17:17 [gentoo-commits] proj/portage:master " Brian Dolbec
@ 2017-03-17 1:07 ` Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-03-17 1:07 UTC (permalink / raw
To: gentoo-commits
commit: 676927062dc65324ca68d72690114cff36265d1d
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 17:14:54 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 17:14:54 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=67692706
Merge Coacher:extend-rdepend-suspect repoman updates
commit '021199792ce55bdc0f99bc7791a2b31ba1533d2e'
repoman/pym/repoman/qa_data.py | 3 +++
1 file changed, 3 insertions(+)
^ permalink raw reply [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2017-06-27 20:06 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-06-27 20:06 UTC (permalink / raw
To: gentoo-commits
commit: fbce9594e14dfccf0b67e8edea68fcd1b7639f51
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 20 06:33:51 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May 20 06:33:51 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=fbce9594
Fix typo in RELEASE-NOTES
RELEASE-NOTES | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index a9bcd2f6f..56e9c8923 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,7 +1,7 @@
Release Notes; upgrade information mainly.
Features/major bugfixes are listed in NEWS
-portage-2.3.5
+portage-2.3.6
==================================
* Bug Fixes:
- Bug 612874 depgraph: avoid missed update with slot operator and circ dep
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
2017-05-20 6:32 [gentoo-commits] proj/portage:master " Brian Dolbec
@ 2017-06-27 20:06 ` Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-06-27 20:06 UTC (permalink / raw
To: gentoo-commits
commit: 1e43cb98a2d03d34cb79b3ebac94fc980ef47d8d
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 20 06:27:08 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May 20 06:27:08 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1e43cb98
Updates for a release
RELEASE-NOTES | 29 +++++++++++++++++++++++++++++
setup.py | 2 +-
2 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 2c1cf4058..a9bcd2f6f 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -4,6 +4,35 @@ Features/major bugfixes are listed in NEWS
portage-2.3.5
==================================
* Bug Fixes:
+ - Bug 612874 depgraph: avoid missed update with slot operator and circ dep
+ - Bug 612960 emerge: fix --use-ebuild-visibility to reject binary packages
+ - Bug 613360 emerge: fix --usepkg when ebuild is not available
+ - Bug 591760 EventLoop: implement call_soon for asyncio compat
+ Future: implement add_done_callback for asyncio compat
+ emerge: use asyncio interfaces for spinner during owner lookup
+ - Bug 613132 phase-helpers.sh: Loop over A rather than SRC_URI in __eapi0_pkg_nofetch
+ - Bug 313990 SpawnProcess: fix event loop recursion in _pipe_logger_exit
+ - Bug 490562 pkg_use_display: show masked/forced state of USE_EXPAND flags
+ - Bug 614390 depgraph: trigger slot operator rebuilds via _complete_graph
+ - Bug 614474 emerge: fix --autounmask-continue to work with --getbinpkg
+ - Bug 614108 AsynchronousLock: add async_unlock method
+ - Bug 614116 EbuildBuild: eliminate call to digestgen
+ EbuildBuild: async spawn_nofetch in _fetchonly_exit
+ - Bug 615238 Prevent crash if os.nice() fails
+ - Bug 379899 dosym: Make implicit basename a fatal error
+ - Bug 615982 depgraph._in_blocker_conflict: call _validate_blockers if needed
+ - Bug 612262 man/emerge.1: fix quickpkg input in tb2file section
+ - Bug 617550 Eventloop: fix deadlock involving idle_add/call_soon
+ - Bug 617778 file_copy: replace loff_t with off_t for portability
+ - Bug 618086 file_copy: fix lseek offset after EINTR
+ - Bug 615680 emerge: terminate backtracking early for autounmask changes
+ - Bug 540562 emerge: default --backtrack=10
+ - Bug 294719 emerge: add --onlydeps-with-rdeps=<y|n> option
+
+
+portage-2.3.5
+==================================
+* Bug Fixes:
- Bug 598444 auto-enable --with-bdeps if --usepkg is not enabled
- Bug 611838 use_reduce: reserve missing_white_space_check for invalid tokens
- Bug 612042 depgraph: fix backtracking for slot operator rebuilds
diff --git a/setup.py b/setup.py
index 1ba6f87f8..e47eb7390 100755
--- a/setup.py
+++ b/setup.py
@@ -655,7 +655,7 @@ class build_ext(_build_ext):
setup(
name = 'portage',
- version = '2.3.5',
+ version = '2.3.6',
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] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2017-09-11 21:43 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-09-11 21:43 UTC (permalink / raw
To: gentoo-commits
commit: 05068f028ced074c7cb78aa3e21be434555e4be6
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 16:13:35 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=05068f02
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 20078530e..386591a14 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] || ${TRAVIS_PYTHON_VERSION} == pypy ]] || pip install pysha3"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2017-11-26 17:46 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-11-26 17:46 UTC (permalink / raw
To: gentoo-commits
commit: e182d0dd7d013286bd11f8bf9b6688a282ffd1c4
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 17:32:21 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e182d0dd
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2017-12-05 18:32 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-12-05 18:32 UTC (permalink / raw
To: gentoo-commits
commit: 79f19998e2b5a2f14cf2b48f1665dffc23e33a87
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec 5 18:24:50 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=79f19998
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2017-12-06 0:16 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-12-06 0:16 UTC (permalink / raw
To: gentoo-commits
commit: 74fd23b21875a1be628f0ddb17b9bc6430cb0df0
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec 6 00:13:28 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=74fd23b2
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2018-03-29 21:35 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2018-03-29 21:35 UTC (permalink / raw
To: gentoo-commits
commit: 10a693bf4dd6f72ee3fbb3465dab1b3635feaf1f
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 20:43:41 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=10a693bf
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
@ 2018-03-30 0:48 Brian Dolbec
0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2018-03-30 0:48 UTC (permalink / raw
To: gentoo-commits
commit: 95a1a0d7ca46594c3cb4f7ab578ad5b984fe3243
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 00:43:47 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=95a1a0d7
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /
2018-03-30 4:23 [gentoo-commits] proj/portage:master " Zac Medico
@ 2018-03-30 5:20 ` Zac Medico
0 siblings, 0 replies; 25+ messages in thread
From: Zac Medico @ 2018-03-30 5:20 UTC (permalink / raw
To: gentoo-commits
commit: 7141699c821b9f5075f1e1ed2141f330c9917968
Author: El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Wed Jul 26 22:20:56 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 03:51:21 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7141699c
repoman: .travis.yml: pyyaml python module is needed for builds
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ebcfbeab9..94ed2dcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,8 @@ install:
- "[[ ${TRAVIS_PYTHON_VERSION} == 3.[6789] ]] || pip install pyblake2"
# always install pygost for Streebog
- pip install pygost
+ # pyyaml is needed for building
+ - pip install pyyaml
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
^ permalink raw reply related [flat|nested] 25+ messages in thread
end of thread, other threads:[~2018-03-30 5:21 UTC | newest]
Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-29 21:35 [gentoo-commits] proj/portage:repoman commit in: / Brian Dolbec
-- strict thread matches above, loose matches on Subject: below --
2018-03-30 4:23 [gentoo-commits] proj/portage:master " Zac Medico
2018-03-30 5:20 ` [gentoo-commits] proj/portage:repoman " Zac Medico
2018-03-30 0:48 Brian Dolbec
2017-12-06 0:16 Brian Dolbec
2017-12-05 18:32 Brian Dolbec
2017-11-26 17:46 Brian Dolbec
2017-09-11 21:43 Brian Dolbec
2017-06-27 20:06 Brian Dolbec
2017-05-20 6:32 [gentoo-commits] proj/portage:master " Brian Dolbec
2017-06-27 20:06 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
2017-01-06 17:17 [gentoo-commits] proj/portage:master " Brian Dolbec
2017-03-17 1:07 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
2016-05-15 18:34 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
2016-05-15 18:34 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
2016-05-15 8:40 Brian Dolbec
2016-05-15 8:40 Brian Dolbec
2016-05-15 8:40 Brian Dolbec
2016-05-15 7:23 Brian Dolbec
2016-05-15 5:02 Brian Dolbec
2016-05-15 2:37 Brian Dolbec
2016-05-15 2:13 Brian Dolbec
2016-05-15 1:58 Brian Dolbec
2016-05-15 1:43 Brian Dolbec
2016-05-15 1:24 Brian Dolbec
2016-05-15 0:30 Brian Dolbec
2016-05-14 23:40 Brian Dolbec
2015-12-30 23:38 Brian Dolbec
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox