Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] w_scan: remove package
@ 2021-07-22 15:35 UsernameRandomlyGenerated
  2021-07-28  4:46 ` ericonr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: UsernameRandomlyGenerated @ 2021-07-22 15:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/UsernameRandomlyGenerated/void-packages wscan
https://github.com/void-linux/void-packages/pull/32143

w_scan: remove package
Homepage is gone, can't fetch source.

<!-- 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/32143.patch is attached

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

From 8c52bffbc6b3b246e8f78107c2c42adc83c1bf50 Mon Sep 17 00:00:00 2001
From: UsernameRandomlyGenerated <coredavid@tutanota.com>
Date: Thu, 22 Jul 2021 17:33:32 +0200
Subject: [PATCH] w_scan: remove package

Homepage is gone, can't fetch source.
---
 srcpkgs/removed-packages/template        |  1 +
 srcpkgs/w_scan/patches/fix-uint.patch    | 21 ----------------
 srcpkgs/w_scan/patches/musl-time_h.patch | 32 ------------------------
 srcpkgs/w_scan/template                  | 18 -------------
 4 files changed, 1 insertion(+), 71 deletions(-)
 delete mode 100644 srcpkgs/w_scan/patches/fix-uint.patch
 delete mode 100644 srcpkgs/w_scan/patches/musl-time_h.patch
 delete mode 100644 srcpkgs/w_scan/template

diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template
index 42acb4784bc2..d13f191e4a55 100644
--- a/srcpkgs/removed-packages/template
+++ b/srcpkgs/removed-packages/template
@@ -301,6 +301,7 @@ replaces="
  vte-python<=0.28.2_16
  vte290-devel<=0.36.5_5
  vte290<=0.36.5_5
+ w_scan<=20170107_1
  wireguard-go<=0.0.20181222_2
  wireshark-gtk<=3.0.7_1
  libxnoise<=0.2.21_4
diff --git a/srcpkgs/w_scan/patches/fix-uint.patch b/srcpkgs/w_scan/patches/fix-uint.patch
deleted file mode 100644
index 0265ccd217b9..000000000000
--- a/srcpkgs/w_scan/patches/fix-uint.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/Makefile.in	2014-11-22 12:00:00.000000000 +0100
-+++ b/Makefile.in	2016-05-03 23:44:44.859376553 +0200
-@@ -836,7 +836,7 @@
- 	@echo "/* AUTOMATICALLY GENERATED - DO NOT EDIT MANUALLY */" > version.h
- 	@echo "#ifndef W_SCAN_VERSION_H" >> version.h
- 	@echo "#define W_SCAN_VERSION_H" >> version.h
--	@echo "uint version=$(__VERSION);" >> version.h
-+	@echo "unsigned int version=$(__VERSION);" >> version.h
- 	@echo "#endif" >> version.h
- 	@echo "" >> version.h
- 	@chmod a-x version.h
---- a/version.h	2014-11-22 11:59:56.000000000 +0100
-+++ b/version.h	2016-05-03 23:42:59.612376864 +0200
-@@ -1,6 +1,6 @@
- /* AUTOMATICALLY GENERATED - DO NOT EDIT MANUALLY */
- #ifndef W_SCAN_VERSION_H
- #define W_SCAN_VERSION_H
--uint version=20170107;
-+unsigned int version=20170107;
- #endif
- 
diff --git a/srcpkgs/w_scan/patches/musl-time_h.patch b/srcpkgs/w_scan/patches/musl-time_h.patch
deleted file mode 100644
index 81f252aaef55..000000000000
--- a/srcpkgs/w_scan/patches/musl-time_h.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/dump-xml.c	2014-11-22 09:49:26.000000000 +0100
-+++ b/dump-xml.c	2016-05-03 23:36:55.792377942 +0200
-@@ -26,6 +26,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <time.h>
- 
- #include "si_types.h"
- #include "dump-xml.h"
---- a/scan.c	2014-11-23 10:59:26.000000000 +0100
-+++ b/scan.c	2016-05-03 23:39:03.783377563 +0200
-@@ -51,6 +51,7 @@
--#include <sys/poll.h>
-+#include <poll.h>
- #include <unistd.h>
- #include <fcntl.h>
-+#include <time.h>
- #include <signal.h>
- #include <assert.h>
- #include <getopt.h>
---- a/emulate.c	2014-11-22 09:49:26.000000000 +0100
-+++ b/emulate.c	2016-05-03 23:40:41.457377274 +0200
-@@ -3,6 +3,7 @@
- #include <stdint.h>
- #include <string.h>
- #include <ctype.h>
-+#include <time.h>
--#include <sys/errno.h>
-+#include <errno.h>
- #include "emulate.h"
- 
diff --git a/srcpkgs/w_scan/template b/srcpkgs/w_scan/template
deleted file mode 100644
index eae95b0654ee..000000000000
--- a/srcpkgs/w_scan/template
+++ /dev/null
@@ -1,18 +0,0 @@
-# Template file for 'w_scan'
-pkgname=w_scan
-version=20170107
-revision=1
-build_style="gnu-configure"
-hostmakedepends="automake libtool"
-short_desc="Universal ATSC and DVB blind scanner"
-maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
-license="GPL-2.0-only"
-homepage="http://wirbel.htpc-forum.de/w_scan/index2.html"
-distfiles="http://wirbel.htpc-forum.de/w_scan/w_scan-${version}.tar.bz2"
-checksum="38e0f38a7bf06cff6d6ea01652ad4ee60da2cb0e937360468f936da785b46ffe"
-
-CFLAGS="-fcommon"
-
-pre_configure() {
-	autoreconf -if
-}

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

* Re: w_scan: remove package
  2021-07-22 15:35 [PR PATCH] w_scan: remove package UsernameRandomlyGenerated
@ 2021-07-28  4:46 ` ericonr
  2021-07-28  6:23 ` teh-jazzman
  2021-07-28  6:31 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-28  4:46 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32143#issuecomment-888005779

Comment:
LGTM.

@teh-jazzman ok?

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

* Re: w_scan: remove package
  2021-07-22 15:35 [PR PATCH] w_scan: remove package UsernameRandomlyGenerated
  2021-07-28  4:46 ` ericonr
@ 2021-07-28  6:23 ` teh-jazzman
  2021-07-28  6:31 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: teh-jazzman @ 2021-07-28  6:23 UTC (permalink / raw)
  To: ml

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

New comment by teh-jazzman on void-packages repository

https://github.com/void-linux/void-packages/pull/32143#issuecomment-888045478

Comment:
Agreed.

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

* Re: [PR PATCH] [Merged]: w_scan: remove package
  2021-07-22 15:35 [PR PATCH] w_scan: remove package UsernameRandomlyGenerated
  2021-07-28  4:46 ` ericonr
  2021-07-28  6:23 ` teh-jazzman
@ 2021-07-28  6:31 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-28  6:31 UTC (permalink / raw)
  To: ml

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

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

w_scan: remove package
https://github.com/void-linux/void-packages/pull/32143

Description:
Homepage is gone, can't fetch source.

<!-- 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-07-28  6:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-22 15:35 [PR PATCH] w_scan: remove package UsernameRandomlyGenerated
2021-07-28  4:46 ` ericonr
2021-07-28  6:23 ` teh-jazzman
2021-07-28  6:31 ` [PR PATCH] [Merged]: " ericonr

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).