[Blends-commit] [Git][blends-team/blends][experimental] Recommend python3-psycopg2 and note it in the help

2018-04-10 Thread Ole Streicher
Ole Streicher pushed to branch experimental at Debian Blends Team / blends


Commits:
876a6be3 by Ole Streicher at 2018-04-10T13:15:49+02:00
Recommend python3-psycopg2 and note it in the help

- - - - -


2 changed files:

- debian/control
- devtools/blend-gen-control


Changes:

=
debian/control
=
--- a/debian/control
+++ b/debian/control
@@ -25,6 +25,7 @@ Depends: debconf,
  ${misc:Depends},
  ${python3:Depends}
 Suggests: blends-doc
+Recommends: python3-psycopg2
 Description: Debian Pure Blends common files for developing metapackages
  This package makes life easier when packaging metapackages.  Perhaps
  this will also encourage other people to build metapackages if there are


=
devtools/blend-gen-control
=
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -833,7 +833,7 @@ if __name__ == '__main__':
 
 parser.add_argument("-U", "--udd", dest="udd",
 action="store_true", default=False,
-help="Query UDD instead of apt")
+help="Query UDD instead of apt (needs 
python3-psycopg2)")
 
 parser.add_argument("--udd-host", dest="udd_host",
 default="udd-mirror.debian.net",



View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/876a6be3043cf96e3a1e68c22ab6fe752ec29dab

---
View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/876a6be3043cf96e3a1e68c22ab6fe752ec29dab
You're receiving this email because of your account on salsa.debian.org.
___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit

[Blends-commit] [Git][blends-team/blends][experimental] Fix documentation of lowering priorities

2018-04-10 Thread Ole Streicher
Ole Streicher pushed to branch experimental at Debian Blends Team / blends


Commits:
23652ce1 by Ole Streicher at 2018-04-10T12:53:07+02:00
Fix documentation of lowering priorities

- - - - -


1 changed file:

- devtools/blend-gen-control


Changes:

=
devtools/blend-gen-control
=
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -179,10 +179,8 @@ class Task:
 
 ``Format: https://blends.debian.org/blends/1.1``
 
-then the priorities will be lowered when read:
-
-* ``Recommends`` --> ``Suggests``
-* ``Depends`` --> ``Recommends``
+then the ``Recommends`` priorities will be lowered to ``Suggests``
+when read.
 
 Example:
 



View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/23652ce112620febe871ce3a95dd00c1933cac4a

---
View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/23652ce112620febe871ce3a95dd00c1933cac4a
You're receiving this email because of your account on salsa.debian.org.
___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit

[Blends-commit] [Git][blends-team/blends][experimental] blends-gen-control: read defaults from GENCONTROL_OPTS env var

2018-04-10 Thread Ole Streicher
Ole Streicher pushed to branch experimental at Debian Blends Team / blends


Commits:
dc6f7bc9 by Ole Streicher at 2018-04-10T17:00:51+02:00
blends-gen-control: read defaults from GENCONTROL_OPTS env var

- - - - -


1 changed file:

- devtools/blend-gen-control


Changes:

=
devtools/blend-gen-control
=
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -69,6 +69,10 @@ parser.add_argument("--udd-database", dest="udd_database",
 default="udd",
 help="UDD database name (default: udd)")
 
+if 'GENCONTROL_OPTS' in os.environ:
+opts = parser.parse_args(os.environ['GENCONTROL_OPTS'].split())
+parser.set_defaults(**opts.__dict__)
+
 args = parser.parse_args()
 
 if args.release == "current":



View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/dc6f7bc968c89f3af28a9d99911ba7ddc96bbd06

---
View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/dc6f7bc968c89f3af28a9d99911ba7ddc96bbd06
You're receiving this email because of your account on salsa.debian.org.
___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit

[Blends-commit] [Git][blends-team/blends][experimental] Fix suppression of empty tasks

2018-04-10 Thread Ole Streicher
Ole Streicher pushed to branch experimental at Debian Blends Team / blends


Commits:
e39204f2 by Ole Streicher at 2018-04-10T17:51:27+02:00
Fix suppression of empty tasks

- - - - -


1 changed file:

- devtools/blend-gen-control


Changes:

=
devtools/blend-gen-control
=
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -96,7 +96,7 @@ missing = blend.fix_dependencies()
 
 if args.suppressempty:
 for task in blend.tasks[:]:
-if len(task.recommends) == 0 and len(task.dependencies) > 0:
+if len(task.recommends) == 0 and len(task.dependencies) == 0:
 blend.tasks.remove(task)
 
 if missing and args.missing:



View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/e39204f2ccf596863523bdc853dcbe67d8a638ed

---
View it on GitLab: 
https://salsa.debian.org/blends-team/blends/commit/e39204f2ccf596863523bdc853dcbe67d8a638ed
You're receiving this email because of your account on salsa.debian.org.
___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit