Github messages for voidlinux
 help / color / mirror / Atom feed
From: teh-jazzman <teh-jazzman@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] run-mailcap: update to 3.68
Date: Wed, 13 Oct 2021 10:08:56 +0200	[thread overview]
Message-ID: <20211013080856.6PZqBJ8rh-S86O1nX6EaTR8WoQqsywF-eS18il8scp0@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-33441@inbox.vuxu.org>

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

There is an updated pull request by teh-jazzman against master on the void-packages repository

https://github.com/teh-jazzman/void-packages runmailcap
https://github.com/void-linux/void-packages/pull/33441

run-mailcap: update to 3.68
<!-- 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?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [ ] 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/33441.patch is attached

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

From 58b1152708584cf4582c98aed02539ad2c6b81e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20M=C3=BChlinghaus?= <jazzman@alphabreed.com>
Date: Wed, 13 Oct 2021 10:08:33 +0200
Subject: [PATCH] run-mailcap: update to 3.68

---
 srcpkgs/run-mailcap/patches/tempfile.patch | 16 ----------------
 srcpkgs/run-mailcap/template               | 12 ++++++------
 srcpkgs/run-mailcap/update                 |  2 +-
 3 files changed, 7 insertions(+), 23 deletions(-)
 delete mode 100644 srcpkgs/run-mailcap/patches/tempfile.patch

diff --git a/srcpkgs/run-mailcap/patches/tempfile.patch b/srcpkgs/run-mailcap/patches/tempfile.patch
deleted file mode 100644
index 435074a43dd2..000000000000
--- a/srcpkgs/run-mailcap/patches/tempfile.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Replace unknown "tempfile" tool with "mktemp" from coreutils
-
---- a/run-mailcap	2017-02-21 20:26:27.367144678 +0100
-+++ b/run-mailcap	2017-02-21 20:25:51.576143081 +0100
-@@ -141,9 +141,9 @@
- #   $tmpfile = POSIX::tmpnam($name);
- #   unlink($tmpfile);
- 
--    $cmd  = "tempfile --mode=600";
--    $cmd .= " --prefix $head" if $head;
-+    $cmd  = "mktemp";
-     $cmd .= " --suffix $tail" if $tail;
-+    $cmd .= " $head" if $head;
- 
-     $tmpfile = `$cmd`;
-     chomp($tmpfile);
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index 8eb80e3b58ed..aef16fa059a5 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -1,15 +1,15 @@
 # Template file for 'run-mailcap'
 pkgname=run-mailcap
-version=3.64
-revision=2
-wrksrc="mime-support-${version}ubuntu1"
+version=3.68
+revision=1
+wrksrc="mailcap-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
 license="custom:ad-hoc, custom:Bellcore"
-homepage="http://packages.ubuntu.com/disco/mime-support"
-distfiles="${UBUNTU_SITE}/main/m/mime-support/mime-support_${version}ubuntu1.tar.xz"
-checksum=5007d2ebc25935bfca6d4bdac0efdfc089a38c1be49d19f0422559f666e4f2c4
+homepage="https://packages.ubuntu.com/hirsute/mailcap"
+distfiles="${UBUNTU_SITE}/main/m/mailcap/mailcap_${version}ubuntu1.tar.xz"
+checksum=d5567fef2d81ecdc6b98f7a5a052375cbff000b2255567abe261c0b8371444f0
 
 do_install() {
 	local _aliases="see edit compose print"
diff --git a/srcpkgs/run-mailcap/update b/srcpkgs/run-mailcap/update
index 2e0c92d172bf..9533db4bca88 100644
--- a/srcpkgs/run-mailcap/update
+++ b/srcpkgs/run-mailcap/update
@@ -1,2 +1,2 @@
 version="${version}ubuntu1"
-pkgname="mime-support"
+pkgname="mailcap"

  parent reply	other threads:[~2021-10-13  8:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-09  7:45 [PR PATCH] " teh-jazzman
2021-10-12 19:45 ` [PR REVIEW] " ericonr
2021-10-13  8:00 ` [PR PATCH] [Updated] " teh-jazzman
2021-10-13  8:01 ` [PR REVIEW] " teh-jazzman
2021-10-13  8:08 ` teh-jazzman [this message]
2021-10-29 13:54 ` [PR PATCH] [Merged]: " leahneukirchen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211013080856.6PZqBJ8rh-S86O1nX6EaTR8WoQqsywF-eS18il8scp0@z \
    --to=teh-jazzman@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).