@@ -187,7 +187,7 @@ CONTRIBUTING](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTI
187
187
188
188
Namely ** <span style =" color :red " ><ins >software without a release or tag</ins ></span >,
189
189
cryptocurrency 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
191
191
requirements in full linked above.
192
192
193
193
### Has it been packaged already?
@@ -420,13 +420,18 @@ explanation:
420
420
421
421
The version shouldn't contain unnecessary characters:
422
422
423
- Bad: ` version=r2.18 `
423
+ ~~~ admonish failure title="Bad"
424
+ `version=r2.18`
425
+ or
426
+ `version=v0.24.0`
427
+ ~~~
424
428
425
- Good: ` version=2.18 `
429
+ ~~~ admonish success title="Good"
430
+ `version=2.18`
431
+ or
432
+ `version=0.24.0`
433
+ ~~~
426
434
427
- Bad: ` version=v0.24.0 `
428
-
429
- Good: ` version=0.24.0 `
430
435
- ` revision ` = revision of the package; it can sometimes happen that the package
431
436
has to be changed without updating it to for example fix some
432
437
problem with the currently packaged version; ` revision ` is used
@@ -444,13 +449,15 @@ explanation:
444
449
characters, it mustn't start with an article and it should
445
450
start with an uppercase letter:
446
451
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
+ ~~~
452
457
453
- Good: ` short_desc="Desktop menu" `
458
+ ~~~ admonish success title="Good"
459
+ `short_desc="Desktop menu"`
460
+ ~~~
454
461
455
462
A good choice for ` short_desc ` is the GitHub short description (if the
456
463
packaged project has one):
@@ -500,9 +507,13 @@ explanation:
500
507
501
508
You can then copy the link.
502
509
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
+ ~~~
504
513
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
+ ~~~
506
517
507
518
We need to gather all of this information about `j4-dmenu-desktop` to be able to
508
519
package it.
0 commit comments