-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
272 lines (253 loc) · 11.7 KB
/
index.htm
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>Gentoo Mono Handbook</title>
</head>
<body><a href="https://github.com/ArsenShnurkov/gentoo-mono-handbook"><img alt="Fork me on GitHub" id="forkme" src="images/forkme.png" align="right" width="100" /></a>
<table><tr><td valign="top">
<h1>Gentoo Mono Handbook</h1>
</td><td valign="top">
<br />
</td></tr></table>
<a href="recommended_readings.htm">What to read before starting .ebuild writing?</a>
<br />
<a href="what-to-package.htm">What to package</a>
<h3>Tarballs</h3>
<a href="where-to-store-tarballs.htm">where to store tarballs</a>
<br />
<a href="http-get-file-size.htm">How to obtain file size through HTTP</a>
<!--
<br />
<a href="OTABS.htm">OTABS</a>, proposed tag format for sources tarballs: ${CATEGORY}/${PN}/${PF}.tar.gz or similar
<br />
<a href="git-lfs.htm">dev-vcs/git-lfs</a>
<br />
since it is impossible to stay under unpaid quota on git-lfs without rewriting history, it is better to use OTABS
-->
<br />
<a href="calculating-the-last-component-of-version.htm">calculating the last component of version</a>
<h3>Ebuild processing phases</h3>
<img src="https://devmanual.gentoo.org/ebuild-writing/functions/diagram.png" alt="https://devmanual.gentoo.org/ebuild-writing/functions/diagram.png" />
<br />
<a href="https://devmanual.gentoo.org/ebuild-writing/functions/">https://devmanual.gentoo.org/ebuild-writing/functions/</a>
<br />
<a href="https://github.com/gentoo/portage/blob/master/doc/package/ebuild/phases.docbook">https://github.com/gentoo/portage/blob/master/doc/package/ebuild/phases.docbook</a>
<br />
<a href="https://archives.gentoo.org/gentoo-dev/message/aab4352449fefbf31c39b687c9204c9a">src_fetch / pkg_fetch</a>
<h3>ebuild name and settings</h3>
<a href="categories.htm">Which category to use for a new ebuild?</a>
<br />
<a href="ebuild-names-for-prerelease-builds.htm">How to construct ebuild names for prerelease builds?</a>
<br />
<a href="lecenses.htm">How to check short license name?</a>
<br />
<a href="use-flags.htm">Which USE flags are recommended for what purpose?</a>
<br />
<a href="metadata.xml.htm">metadata.xml</a>
<br />
<a href="eclasses.htm">Which .eclass-es to inherit?</a>
<br />
<a href="Using_versionator_to_cut_version.htm">Using versionator to cut version</a>
<br />
<a href="use_dotnet.htm">USE_DOTNET</a>
<br />
<a href="How-to-install-localized-applications.htm">How to install localized applications?</a>
<br />
<a href="overlay-name.htm">what is current overlay name?</a> <font style="color:red">that's non universal</font>
<br />
what is current overlay URL? <font style="color:red">we don't know</font>
<br />
<a href="conditional-URI-s.htm">conditional URI-s</a>
<h3>src_unpack</h3>
How to obtain source code from
<br />
<a href="github.htm">github.com (GIT)</a>,
<br />
<a href="bitbucket.htm">bitbucket.org (GIT, Mercurial)</a>
<br />
<a href="codeplex.htm">codeplex (Mercurial)</a>
<br />
<a href="sourceforge-cvs.htm">sourceforge (CVS)</a> <font style="color:red">we don't know</font>
<br />
<br />
<a href="what-to-do-with-binaries.htm">What to do with binaries?</a>
<h3>src_prepare</h3>
<a href="how-to-restore-nuget-packages-for-solution.htm">How to restore nuget packages for solution</a>
<br />
<a href="how-to-create-patch-with-git-for-a-new-release-of-ebuild.htm">How to create patch with git for a new release of ebuild</a>
<br />
<a href="types-of-project-files.htm">types of project files</a>
<br />
<a href="nuget-icon.htm">nuget icon</a>
<h3>src_compile</h3>
<strong>versioning and defines</strong>
<br />
<a href="assembly-version.htm">Assembly version</a>, <a href="Assembly-name.htm">Assembly name</a>
<br />
<a href="define.htm">how to pass #define from .ebuild into compiler?</a> <font style="color:red">we don't know</font>
<br />
<a href="pc-files.htm">.pc-files</a>
<br />
<strong>compiling</strong>
<br />
<a href="assembly-debug-version.htm">assembly debug version</a>
<br />
<a href="building.htm"><strong>exbuild</strong> = How to compile solutions and projects with assemblies (executables and dynamic libraries) ?</a>
<br />
<a href="mdtool-build.htm">mdtool build</a>
<br />
<a href="pinvoke.htm">PInvoke</a>
<br />
<a href="IL-Repack/index.htm">IL-Repack</a>
<br />
<a href="building-nupkg.htm">How to build .nupkg from .nuspec?</a> (see <a href="https://github.com/gentoo/dotnet/blob/a54e1710c21e4d6f1126b96a5ce99cbe304c7f2b/eclass/nupkg.eclass#L75-L89">enuspec</a>)
<br />
<strong>sigining and strongnames</strong>
<br />
<a href="how-to-make-signed-assembly.htm">How to make signed assembly?</a>
<br />
<a href="gac.htm">Installing strongnamed assemblies into GAC</a>
<br />
<a href="mono.snk.htm">mono.snk - installation and usage</a>
<br />
<a href="InternalsVisibleTo.htm">InternalsVisibleTo</a>
<br />
<strong>packaging</strong>
<br />
<a href="building-nupkg.htm">store for locally built packages</a>
<br />
using packages from monodevelop
<br />
<a href="packaging-from-csproj-with-nuget.htm">packaging from .csproj with nuget</a>
<br />
<strong>AOT, documentation</strong>
<br />
<a href="AOT-compilation.htm">AOT compilation</a>
<br />
How to compile documentation (<a href="http://stackoverflow.com/questions/8548826/c-sharp-documentation-generator-that-runs-on-mono">SO8548826</a>):
<br />
<a href="http://www.mono-project.com/docs/tools+libraries/tools/monodoc/">monodoc</a>
<br />
<a href="https://github.com/Geaz/sharpDox">sharpDox</a>
<br />
<a href="https://github.com/jagregory/docu">docu</a>
<br />
<a href="https://github.com/dotnet/docfx">DocFX</a>
<br />
SHFB (ex sandcastle)
<br />
Doxygen (unmanaged)
<h3>src_test</h3>
<a href="test/index.htm">testing with portage</a>
<br />
<a href="test/autotools.htm">testing with autotools</a>
<br />
<a href="NUnit.htm">NUnit</a>,
<a href="xUnit.htm">xUnit</a>,
<br />
(<a href="http://www.rhyous.com/programming-development/csharp-unit-test-tutorial/">C# unit test tutorial (en-US)</a>,
<a href="http://habrahabr.ru/post/181255/">testing in monodevelop (ru-RU)</a>)
<br />
<a href="InternalsVisibleTo.htm">InternalsVisibleTo</a>
<br />
<h3>src_install</h3>
<a href="locations.htm">Where to place compiled binaries in file system according to File Hierarchy Standart 3.0 ?</a>
<br />
Local nuget repository (see <a href="https://github.com/gentoo/dotnet/blob/a54e1710c21e4d6f1126b96a5ce99cbe304c7f2b/eclass/nupkg.eclass#L91-L100">enupkg</a>)
<br />
Where to install documentation for applications and libraries in filesystem?<font style="color:red">we don't know</font>
<br />
Where to document .ebuild files ? <font style="color:red">we don't know</font>
<br />
<a href="daemons.htm">How to install daemons?</a>
<br />
<a href="pkg-config/index.htm">pkg-config</a>
<h3>pkg_postinst<sup><a href="https://devmanual.gentoo.org/ebuild-writing/functions/pkg_postinst/">devmanual</a></sup> / pkg_prerm</h3>
${D} = Path to the temporary install directory
<br />
How to determine the location of proper GAC? <font style="color:red">we don't know</font>
<br />
<a href="adonet-data-providers.htm">How to register ADO .NET data providers in machine.config ?</a> <font style="color:red">we don't know</font>
<br />
How to install web applications with gentoo utilities for web applications maintenance? <font style="color:red">we don't know</font>
<br />
How to determine the location of used mono environment, if several of them are installed ? <font style="color:red">we don't know</font>
<br />
How to make mono portable? <font style="color:red">we don't know</font>
<br />
How to make mono slotted? <font style="color:red">we don't know</font>
<br />
How to make monodevelop slotted? <font style="color:red">we don't know</font>
<h3>merge</h3>
<a href="how-to-force-merge-despite-of-collisions.htm">How to force merge despite of collisions</a>
<h2>Caches</h2>
<a href="https://github.com/vaeth/eix/issues/18">https://github.com/vaeth/eix/issues/18</a>
<br />
egencache --repo=gentoo --update
<br />
<a href="https://wiki.gentoo.org/wiki/Overlay/eix-sync">https://wiki.gentoo.org/wiki/Overlay/eix-sync</a>
<br />
emerge --regen
<h2>Local repository of nuget packages</h2>
<a href="nuget-icon.htm">nuget icon</a>
<br />
<a href="building-nupkg.htm"><strong>nuget</strong> packages - How to build and install them (.nupkg) from sources ?</a>
<br />
<a href="enuspec-and-enupkg.htm">enuspec & enupkg</a>
<h3>general programming questions</h3>
<a href="How-to-modify-the-code-of-mono.htm">How to modify the code of mono</a>
<br />
<a href="compilation-to-native-code.htm">Compilation to native code</a>
<br />
<a href="github/index.htm">working with github</a>
<br />
<a href="gtk-plus-packaging/index.htm">GTK packaging</a>
<br />
<a href="signals.htm">How to work with signals (from <strong>signal.h</strong>)?</a>
<br />
<a href="xml-files/index.htm">How to patch XML-files</a>
<br />
<a href="git/gitattributes.htm">.gitattributes</a>
<br />
<a href="git/gitignore.htm">.gitignore</a>
<br />
<br />
Where to find examples/templates for ebuilds for various types of applications
<br />
<a href="library.htm">library</a> (.dll file)
<br />
<a href="msbuild/index.htm">MSBuild .target files and MSBuild Task libraries</a>
<br />
<a href="msbuild/sdks.htm">MSBuild SDKs</a>
<br />
<a href="application.htm">application</a> (.exe file with make_wrapper)
<br />
<a href="service.htm">services</a> with <strong>mono-service</strong>,
<br />
<a href="daemons/index.htm">Daemons</a>
<br />
<a href="adonet-provider.htm">ADO .NET providers</a>
<br />
<a href="ef-provider.htm">EF providers</a>
<br />
<a href="monodevelop-plugin.htm">Monodevelop plugins</a>
<br />
<a href="web-applications/index.htm">web applications</a>
<br />
<a href="webapps-xsp.htm">xsp-server hosted</a>
<br />
<font style="color:red">(we don't have other docs beside <a href="https://github.com/gentoo/dotnet/">dotnet overlay</a> ebuilds!)</font>
<br />
<br />
<a href="is-it-possible-to-run-portage-with-IronPython.htm">is it possible to run portage with IronPython ?</a> <font style="color:red">no</font>
<br />
<a href="What-is-DLR.htm">What is DLR</a> <font style="color:red">we don't know</font>
<br />
<a href="http://gppg.codeplex.com/">GPPG</a>/<a href="http://gplex.codeplex.com/">GPLEX</a>, are pretty straightforward reimplementations of LEX/YACC in C#.
<h3>Obsolete topics</h3>
<a href="howto-add-gentoo-dotnet-overlay-from-github.htm">How to use cutting edge version of dotnet overlay from github?</a>
<br />
<a href="how-to-create-a-github-repository-programmatically-through-GitHub-API.htm">How to create a github repository programmatically through GitHub API?</a>
</body>
</html>