Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add modclean
@ 2021-06-01  6:35 ReneganRonin
  2021-06-01  6:37 ` ReneganRonin
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ReneganRonin @ 2021-06-01  6:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]

There is a new pull request by ReneganRonin against master on the void-packages repository

https://github.com/ReneganRonin/void-packages modclean
https://github.com/void-linux/void-packages/pull/31239

Add modclean
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/31239.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-modclean-31239.patch --]
[-- Type: text/x-diff, Size: 1544 bytes --]

From 0dba7001fa2bb219ba374d532ff68085d68d1f12 Mon Sep 17 00:00:00 2001
From: "Soc Virnyl S. Estela" <66054069+ReneganRonin@users.noreply.github.com>
Date: Tue, 1 Jun 2021 10:26:30 +0800
Subject: [PATCH] Add modclean

---
 srcpkgs/modclean/template | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 srcpkgs/modclean/template

diff --git a/srcpkgs/modclean/template b/srcpkgs/modclean/template
new file mode 100644
index 000000000000..356b2d2175f3
--- /dev/null
+++ b/srcpkgs/modclean/template
@@ -0,0 +1,35 @@
+# Template file for 'modclean'
+pkgname=modclean
+version=3.0.0beta.1
+revision=1
+wrksrc="modclean-3.0.0-beta.1"
+create_wrksrc="yes"
+hostmakedepends="nodejs"
+makedepends="nodejs"
+depends="nodejs"
+short_desc="Remove unwanted files and directories from your node_modules folder"
+maintainer="Soc Virnyl S. Estela <renegan.ronin@gmail.com>"
+license="MIT"
+homepage="https://github.com/ModClean/modclean"
+distfiles="${homepage}/archive/3.0.0-beta.1.tar.gz"
+checksum=58a39e8b4eed1da8131facfb21a455659144aacd250a73a6efaba31500b901f0
+
+do_build() {
+	cd modclean-3.0.0-beta.1/
+	npm install --no-optional --save
+	./bin/modclean.js -r -a '.bin,bin.js' --ignore='license'
+	vlicense LICENSE
+}
+
+
+do_install() {
+	mv modclean-3.0.0-beta.1/* .
+	rm -rf modclean-3.0.0-beta.1
+	vmkdir usr/bin/
+	vmkdir usr/lib/node_modules/modclean/
+	vcopy "*" usr/lib/node_modules/modclean/
+}
+
+post_install() {
+	ln -sf /usr/lib/node_modules/modclean/bin/modclean.js "$DESTDIR"/usr/bin/modclean
+}

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Add modclean
  2021-06-01  6:35 [PR PATCH] Add modclean ReneganRonin
@ 2021-06-01  6:37 ` ReneganRonin
  2021-06-02  0:40 ` New package: modclean 3.0.0beta.1 abenson
  2021-06-04  5:39 ` [PR PATCH] [Closed]: " ReneganRonin
  2 siblings, 0 replies; 4+ messages in thread
From: ReneganRonin @ 2021-06-01  6:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 393 bytes --]

New comment by ReneganRonin on void-packages repository

https://github.com/void-linux/void-packages/pull/31239#issuecomment-851862570

Comment:
Hello. This is my "first" time creating a package for void. This package is needed for #31205 which im going to fix later. I don't know if it meets the quality requirements though so I left it unchecked. I am still learning and reading the manual.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: New package: modclean 3.0.0beta.1
  2021-06-01  6:35 [PR PATCH] Add modclean ReneganRonin
  2021-06-01  6:37 ` ReneganRonin
@ 2021-06-02  0:40 ` abenson
  2021-06-04  5:39 ` [PR PATCH] [Closed]: " ReneganRonin
  2 siblings, 0 replies; 4+ messages in thread
From: abenson @ 2021-06-02  0:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/31239#issuecomment-852606825

Comment:
Combine this commit into the PR for asar.  Also, make sure the commit messages follow convention.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Closed]: New package: modclean 3.0.0beta.1
  2021-06-01  6:35 [PR PATCH] Add modclean ReneganRonin
  2021-06-01  6:37 ` ReneganRonin
  2021-06-02  0:40 ` New package: modclean 3.0.0beta.1 abenson
@ 2021-06-04  5:39 ` ReneganRonin
  2 siblings, 0 replies; 4+ messages in thread
From: ReneganRonin @ 2021-06-04  5:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1444 bytes --]

There's a closed pull request on the void-packages repository

New package: modclean 3.0.0beta.1
https://github.com/void-linux/void-packages/pull/31239

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-04  5:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-01  6:35 [PR PATCH] Add modclean ReneganRonin
2021-06-01  6:37 ` ReneganRonin
2021-06-02  0:40 ` New package: modclean 3.0.0beta.1 abenson
2021-06-04  5:39 ` [PR PATCH] [Closed]: " ReneganRonin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).