summaryrefslogtreecommitdiffstats
path: root/site/gitorious/index.php
blob: 2c117ac123ae3d08ea74e3f81e77e1dbae648a3f (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
<?php
/*
    GitHub is one of the worst sites that you could possibly use.
    Copyright (C) 2014, 2015  Francis Rowe <info@gluglug.org.uk>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
?>
<?php
	include_once "../variables.php";
?>
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">

	<link rel="stylesheet" type="text/css" href="../css/main.css" />

	<title>Please do not use Gitorious!</title>

</head>

<body>

	<div class="contain">

		<div id="libreboot" class="section intro">
				
			<h1>Please do not use Gitorious or GitLab!</h1>

			<p>
				Please do not use Gitorious or GitLab to host <?php echo $lbProjectName; ?>. 
				<?php echo $lbProjectNameCapitalized; ?> is a free software project, so this is only a request, and not a restriction on the software.
			</p>
			
			<p>
				<a href="../github/">Don't use github, either.</a>
			</p>

		</div>

		<div class="section">
			<h2>What's wrong with Gitorious?</h2>
				<ul>
					<li>
						They have <a href="https://about.gitlab.com/2015/03/03/gitlab-acquires-gitorious/">completely sold us out</a>
						to a company who's main business model is proprietary software.
					</li>
					<li>
						Gitorious is now owned by GitLab. GitLab is essentially the same as GitHub; there is a 
						free (libre) version of GitLab, but this is bait-and-switch for their so-called <i>enterprise</i>
						version which is proprietary software.
					</li>
					<li>
						The GitLab site itself also runs on a proprietary version of GitLab. GitLab has the same
						<a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">rotten attitude</a>
						as GitHub when it comes to free software.
					</li>
					<li>
						GitLab is permissively licensed, which means that it completely lacks copyleft.
						Anyone (including the main GitLab upstream) can re-release a proprietary version 
						and completely refuse to give out source code.
					</li>
				</ul>

			<p>
				Gitorious now simply uses Free Software for its own benefit, releasing source code under a free license
				only when suited to it's business goals; they are quite happy to violate the rights of their users, for profit
				(since they are now part of GitLab, which has been doing so for quite some time).
			</p>
				
			<p>
				By contrast, the <?php echo $lbProjectName; ?> project adheres strictly to the goals of the Free Software movement, which
				seeks to eliminate proprietary software to the point where all software is free.
			</p>

			<p>
				The proprietary developments in GitLab are unacceptable to
				the <?php echo $lbProjectName; ?> project. Users and developers of 
				<em><a href="http://www.gnu.org/philosophy/free-sw.html">free software</a></em>
				are strongly advised not to use GitLab or Gitorious, for any of their projects. 
			</p>
				
		</div>
	
		<div class="section">

			<h2>Where should I host and share my code?</h2>
				<p>
					Here are a few examples:
				</p>
				<ul>
					<li>
						<a href="http://git-scm.com/doc">Host your own repositories</a>. This is exactly what libreboot does, 
						hosted on a machine that is <i>running</i> libreboot! You can use a frontend like 
						<a href="http://git-scm.com/book/en/v2/Git-on-the-Server-GitWeb">gitweb</a>
						for easy viewing by others.
					</li>
				</ul>

		</div>
		
		<div class="section">

			<p>
				<a href="..">Back to home page</a>
			</p>

		</div>

		<div class="section footer">

<?php
	include "../footer.php";
?>

		</div>
	
	</div>

</body>
</html>