* [gentoo-commits] proj/portage:repoman commit in: /, repoman/
@ 2016-05-14 18:33 Brian Dolbec
0 siblings, 0 replies; 5+ 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] 5+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /, repoman/
@ 2016-05-15 8:40 Brian Dolbec
0 siblings, 0 replies; 5+ messages in thread
From: Brian Dolbec @ 2016-05-15 8:40 UTC (permalink / raw
To: gentoo-commits
commit: b1b36b1a276ebffb1ab161b8ade3d497c897dca4
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 08:39:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b1b36b1a
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] 5+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /, repoman/
2016-05-15 23:51 [gentoo-commits] proj/portage:master commit in: /, repoman/ Brian Dolbec
@ 2016-05-15 18:34 ` Brian Dolbec
0 siblings, 0 replies; 5+ messages in thread
From: Brian Dolbec @ 2016-05-15 18:34 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] 5+ messages in thread
* [gentoo-commits] proj/portage:repoman commit in: /, repoman/
@ 2016-05-15 19:30 Brian Dolbec
0 siblings, 0 replies; 5+ messages in thread
From: Brian Dolbec @ 2016-05-15 19:30 UTC (permalink / raw
To: gentoo-commits
commit: c6ba405265b47588191d3905b3fed724e27ecd02
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 19:28:55 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 19:28:55 2016 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c6ba4052
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..72c30d9 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 teh stage3 rewites.
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/portage:master commit in: /, repoman/
@ 2016-05-15 23:51 Brian Dolbec
2016-05-15 18:34 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
0 siblings, 1 reply; 5+ 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] 5+ messages in thread
end of thread, other threads:[~2016-05-15 23:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-15 23:51 [gentoo-commits] proj/portage:master commit in: /, repoman/ Brian Dolbec
2016-05-15 18:34 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
-- strict thread matches above, loose matches on Subject: below --
2016-05-15 19:30 Brian Dolbec
2016-05-15 8:40 Brian Dolbec
2016-05-14 18:33 Brian Dolbec
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox