Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] plocate: update to 1.1.6,
@ 2021-04-06  8:24 mobinmob
  2021-04-06 12:09 ` Duncaen
  2021-04-06 12:09 ` [PR PATCH] [Closed]: " Duncaen
  0 siblings, 2 replies; 3+ messages in thread
From: mobinmob @ 2021-04-06  8:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages plocate
https://github.com/void-linux/void-packages/pull/30038

plocate: update to 1.1.6,
fix scrips in files/ to save the db in /var/lib/plocate/plocate.db

@Duncaen, please review.

<!-- 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
- [ ] 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/30038.patch is attached

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

From a08031f5c7cd6359c15eda1a3c3280ee38197c6f Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Tue, 6 Apr 2021 11:18:51 +0300
Subject: [PATCH] plocate: update to 1.1.6, fix scrips in files/ to save the db
 in /var/lib/plocate/plocate.db

---
 srcpkgs/plocate/files/plocate.cron-daily | 2 +-
 srcpkgs/plocate/files/pupdatedb          | 2 +-
 srcpkgs/plocate/template                 | 7 +++----
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/plocate/files/plocate.cron-daily b/srcpkgs/plocate/files/plocate.cron-daily
index 099ba5ce69af..e20c53def2b8 100644
--- a/srcpkgs/plocate/files/plocate.cron-daily
+++ b/srcpkgs/plocate/files/plocate.cron-daily
@@ -2,4 +2,4 @@
 set -e
 plocate-build /var/lib/mlocate/mlocate.db /var/lib/mlocate/plocate.db.new
 chgrp _plocate /var/lib/mlocate/plocate.db.new
-mv /var/lib/mlocate/plocate.db.new /var/lib/mlocate/plocate.db
+mv /var/lib/mlocate/plocate.db.new /var/lib/plocate/plocate.db
diff --git a/srcpkgs/plocate/files/pupdatedb b/srcpkgs/plocate/files/pupdatedb
index 08fdbd0748ab..817cea5bc05d 100644
--- a/srcpkgs/plocate/files/pupdatedb
+++ b/srcpkgs/plocate/files/pupdatedb
@@ -5,4 +5,4 @@ dbdir=${1:-${DBDIR:-/var/lib/mlocate}}
 mupdatedb -o "${dbdir}/mlocate.db"
 plocate-build "${dbdir}/mlocate.db" "${dbdir}/plocate.db.new"
 chgrp _plocate "${dbdir}/plocate.db.new"
-mv "${dbdir}/plocate.db.new" "${dbdir}/plocate.db"
+mv "${dbdir}/plocate.db.new" /var/lib/plocate/plocate.db
diff --git a/srcpkgs/plocate/template b/srcpkgs/plocate/template
index 590edee47e82..bb8d8c785359 100644
--- a/srcpkgs/plocate/template
+++ b/srcpkgs/plocate/template
@@ -1,6 +1,6 @@
 # Template file for 'plocate'
 pkgname=plocate
-version=1.0.7
+version=1.1.6
 revision=1
 build_style=meson
 hostmakedepends="pkg-config"
@@ -11,7 +11,7 @@ maintainer="Duncaen <duncaen@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://plocate.sesse.net/"
 distfiles="https://plocate.sesse.net/download/plocate-${version}.tar.gz"
-checksum=528541eede06170aa16488b2c24abad2e527a12053a62a4a49d0eac3a41e21d3
+checksum=bff5d80874639003ffba34a37778081ca0a75f89ea0ca3d1bee9309332bfdbd3
 
 system_accounts="_plocate"
 
@@ -26,8 +26,7 @@ if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
 fi
 
 post_install() {
-	# replace daily cronjob with our own version
-	rm ${DESTDIR}/etc/cron.daily/plocate
+	# install a daily cronjob
 	vinstall ${FILESDIR}/plocate.cron-daily 744 etc/cron.daily plocate-build
 	vbin ${FILESDIR}/pupdatedb
 }

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

* Re: plocate: update to 1.1.6,
  2021-04-06  8:24 [PR PATCH] plocate: update to 1.1.6, mobinmob
@ 2021-04-06 12:09 ` Duncaen
  2021-04-06 12:09 ` [PR PATCH] [Closed]: " Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: Duncaen @ 2021-04-06 12:09 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/30038#issuecomment-814068516

Comment:
https://github.com/void-linux/void-packages/pull/27991

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

* Re: [PR PATCH] [Closed]: plocate: update to 1.1.6,
  2021-04-06  8:24 [PR PATCH] plocate: update to 1.1.6, mobinmob
  2021-04-06 12:09 ` Duncaen
@ 2021-04-06 12:09 ` Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: Duncaen @ 2021-04-06 12:09 UTC (permalink / raw)
  To: ml

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

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

plocate: update to 1.1.6,
https://github.com/void-linux/void-packages/pull/30038

Description:
fix scripts in files/ to save the db in /var/lib/plocate/plocate.db

@Duncaen, please review.

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


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06  8:24 [PR PATCH] plocate: update to 1.1.6, mobinmob
2021-04-06 12:09 ` Duncaen
2021-04-06 12:09 ` [PR PATCH] [Closed]: " Duncaen

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