summaryrefslogtreecommitdiff
blob: 6690a17a39505cfb756eb8aca30e7103c792677c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
GLEP: 35
Title: Automated consistency check for ebuilds
Author: Adrian Lambeck <adrian@basicsedv.de>
Type: Standards Track
Status: Deferred
Version: 1
Created: 2005-03-12
Last-Modified: 2017-11-09
Post-History: 2005-03-12
Content-Type: text/x-rst
---


Abstract
========

This proposal is meant to enhance productivity for Gentoo developers.
It aims to reduce the number of trivial bugs by automatically detecting them
through a consistency check that is performed before checking and on a regular
basis through the whole tree.
Why bother with trivial bugs when automated tests find them ?
Save time and improve quality !


Motivation
==========

When browsing `bugs.gentoo.org`_ you will find Bugs that take away a good
amount of scarce developing time that could be used otherwise.  These are
trivial bugs, i.e. wrong SRC_URI or cycles in DEPEND. Even worst - these bugs
are sometimes reported several times so that they need to be marked as
duplicates.  Bugs of that kind are easy to find and easy to fix. By using
automatic checks on a regular schedule these bugs can be found.  Users have to
be asked NOT to commit these bugs to `bugs.gentoo.org`_.  So there will
(hopefully) be fewer bugs that need to be checked and assigned and they might
get fixed faster.

.. _bugs.gentoo.org: http://bugs.gentoo.org

The Bugs found should be kept in an automatically generated list so that users
can see that the problem has been caught and that it is being worked on.


Specification
=============

Checks need to be performed for every ebuild.

A report needs to be generated

	- links to the specific problem need to be included
	- reports need to be send to the groups responsible
	
Checks could be:

	- cycles within DEPEND
	- invalid SRC_URI
	- "non-official" USE Flags
	- Packages within DEPEND that are "*" for the arch specified
	- broken shell scripts with invalid or missing commands
	- inheritance of eclasses
	- ...

There might be other checks and tests that should be run
that have not come to my mind yet. Also I might have suggested something that
is not useful at all.

If there are major problems (needs to be defined) within an ebuild a possible
action could be to disable the ebuild (with ``"-*"``,)  perhaps, and send a
mail to the maintainer.

These kind of errors are not always the fault of the developers.

There should be no compilation or something like that. If an ebuild fails to
build somewhere then the user should file it as a bug as usual.


Implementation
==============

The functionality described could be implemented in three ways:

	1. On the developers machine ("client") where it is run before checking
		only for the ebuilds that changed. (client does not fit here because 
		the server and client should not communicate with each other at all)
	
	2. On the server where checks are run, i.e. once a week.
	
	3. On the "client" AND server 


	Of course there are cons and pros (what came to my mind so far)
	
	1.
		pro: 
			- the tree can not become inconsistent in the first place (? see contra)
			- once an ebuild is checked there is no need to do this again
			- no dedicated machine necessary
			- generate traffic only once on one machine
			- errors that are caught here do not bother later on
		
		contra:
			- the consistency is based on the tool installed 
			 	(what happens when different devs use different versions ?)
			- what happens when the ebuild layout changes and some ebuilds
				do not get updated ?
			 
	2.
		pro:
			- Properties of other ebuilds might change that fit while writing an ebuild
		
		contra:
			- the errors are found when the ebuild is already in CVS
			- the whole tree needs to be checked
			- possibly creates a lot of traffic on every run
				(-> is there an FTP equivalent to HTTP`s HEAD ?)
				
	3. see 1. and 2.

My favorite is 3 . All properties are checked before check-in and 
the properties that change might be checked on a regular basis on the server.
Only solution 3 brings the best from 1 and 2 together while delivering the best result.

I never had a look at portage source but I can imagine that there is a library
that has everything that a developer needs to "query" ebuilds. If not, this
would be a reason for another GLEP (?).

For performance I would use a database (on the server) to store the whole tree before
running the checks. This is not necessary for the "client".


Backwards Compatibility
=======================

Not a problem for this GLEP.


Copyright
=========

This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
Unported License.  To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/3.0/.