repos / dbin

📦 Poor man's package manager.
git clone https://github.com/xplshn/dbin.git

commit
1ae5445
parent
b95277b
author
xplshn
date
2025-08-29 03:17:56 +0000 UTC
dbin: 1.4, 1.5, 1.6, 1.7: Filter out packages without a description

Signed-off-by: xplshn <[email protected]>
4 files changed,  +12, -4
M misc/cmd/dbinRepoIndexGenerators/1.4/generator.go
+3, -1
 1@@ -598,7 +598,9 @@ func main() {
 2 						//	fmt.Printf("[pkgforge-go]: repo filter: %s#%s contains bad word (%s)", item.Name, item.PkgId, "bindings")
 3 						//} */
 4 						item.PkgId = strings.Replace(item.PkgId, "#", ".", -1)
 5-						filteredItems = append(filteredItems, item)
 6+						if item.Description != "No Description Provided" {
 7+							filteredItems = append(filteredItems, item)
 8+						}
 9 					}
10 					*items = filteredItems
11 				},
M misc/cmd/dbinRepoIndexGenerators/1.5/generator.go
+3, -1
 1@@ -598,7 +598,9 @@ func main() {
 2 						//	fmt.Printf("[pkgforge-go]: repo filter: %s#%s contains bad word (%s)", item.Name, item.PkgId, "bindings")
 3 						//} */
 4 						item.PkgId = strings.Replace(item.PkgId, "#", ".", -1)
 5-						filteredItems = append(filteredItems, item)
 6+						if item.Description != "No Description Provided" {
 7+							filteredItems = append(filteredItems, item)
 8+						}
 9 					}
10 					*items = filteredItems
11 				},
M misc/cmd/dbinRepoIndexGenerators/1.6/generator.go
+3, -1
 1@@ -598,7 +598,9 @@ func main() {
 2 						//	fmt.Printf("[pkgforge-go]: repo filter: %s#%s contains bad word (%s)", item.Name, item.PkgId, "bindings")
 3 						//} */
 4 						item.PkgId = strings.Replace(item.PkgId, "#", ".", -1)
 5-						filteredItems = append(filteredItems, item)
 6+						if item.Description != "No Description Provided" {
 7+							filteredItems = append(filteredItems, item)
 8+						}
 9 					}
10 					*items = filteredItems
11 				},
M misc/cmd/dbinRepoIndexGenerators/1.7/generator.go
+3, -1
 1@@ -598,7 +598,9 @@ func main() {
 2 						//	fmt.Printf("[pkgforge-go]: repo filter: %s#%s contains bad word (%s)", item.Name, item.PkgId, "bindings")
 3 						//} */
 4 						item.PkgId = strings.Replace(item.PkgId, "#", ".", -1)
 5-						filteredItems = append(filteredItems, item)
 6+						if item.Description != "No Description Provided" {
 7+							filteredItems = append(filteredItems, item)
 8+						}
 9 					}
10 					*items = filteredItems
11 				},