@@ -187,7 +187,7 @@ CONTRIBUTING](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTI
187187
188188Namely ** <span style =" color :red " ><ins >software without a release or tag</ins ></span >,
189189cryptocurrency packages, browser forks, simple shell scripts, themes, prebuilt
190- packages** and more won't likely get accepted. I recommend you to read the
190+ packages** and more won't likely get accepted. I recommend you read the
191191requirements in full linked above.
192192
193193### Has it been packaged already?
@@ -420,13 +420,18 @@ explanation:
420420
421421 The version shouldn't contain unnecessary characters:
422422
423- Bad: ` version=r2.18 `
423+ ~~~ admonish failure title="Bad"
424+ `version=r2.18`
425+ or
426+ `version=v0.24.0`
427+ ~~~
424428
425- Good: ` version=2.18 `
429+ ~~~ admonish success title="Good"
430+ `version=2.18`
431+ or
432+ `version=0.24.0`
433+ ~~~
426434
427- Bad: ` version=v0.24.0 `
428-
429- Good: ` version=0.24.0 `
430435- ` revision ` = revision of the package; it can sometimes happen that the package
431436 has to be changed without updating it to for example fix some
432437 problem with the currently packaged version; ` revision ` is used
@@ -444,13 +449,15 @@ explanation:
444449 characters, it mustn't start with an article and it should
445450 start with an uppercase letter:
446451
447- Bad: ` short_desc="A desktop menu" `
448-
449- Good: ` short_desc="Desktop menu" `
450-
451- Bad: ` short_desc="desktop menu" `
452+ ~~~ admonish failure title="Bad"
453+ `short_desc="A desktop menu"`
454+ or
455+ `short_desc="desktop menu"`
456+ ~~~
452457
453- Good: ` short_desc="Desktop menu" `
458+ ~~~ admonish success title="Good"
459+ `short_desc="Desktop menu"`
460+ ~~~
454461
455462 A good choice for ` short_desc ` is the GitHub short description (if the
456463 packaged project has one):
@@ -500,9 +507,13 @@ explanation:
500507
501508 You can then copy the link.
502509
503- Bad: `https://github.com/enkore/j4-dmenu-desktop/blob/develop/CHANGELOG`
510+ ~~~admonish failure title="Bad"
511+ `https://github.com/enkore/j4-dmenu-desktop/blob/develop/CHANGELOG`
512+ ~~~
504513
505- Good: `https://raw.githubusercontent.com/enkore/j4-dmenu-desktop/develop/CHANGELOG`
514+ ~~~admonish success title="Good"
515+ `https://raw.githubusercontent.com/enkore/j4-dmenu-desktop/develop/CHANGELOG`
516+ ~~~
506517
507518We need to gather all of this information about `j4-dmenu-desktop` to be able to
508519package it.
0 commit comments