- Update to the fourth beta version
- Shorten the COMMENT line - Point WWW line to a working website
This commit is contained in:
parent
fb7f254470
commit
8f5b0d0149
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=539408
6 changed files with 29 additions and 31 deletions
|
@ -2,12 +2,12 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= fsearch
|
||||
DISTVERSION= 0.1beta2
|
||||
PORTREVISION= 3
|
||||
DISTVERSION= 0.1beta4
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= sysutils
|
||||
|
||||
MAINTAINER= danfe@FreeBSD.org
|
||||
COMMENT= Search utility focusing on performance and advanced features
|
||||
COMMENT= Fast file search utility for Unix-like systems
|
||||
|
||||
LICENSE= GPLv2+
|
||||
LICENSE_FILE= ${WRKSRC}/License
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1493302986
|
||||
SHA256 (cboxdoerfer-fsearch-0.1beta2_GH0.tar.gz) = 46d4bf3a488f426c1044f822a99632c2bb6b85517b6e67ad0e8a507a4c4c526f
|
||||
SIZE (cboxdoerfer-fsearch-0.1beta2_GH0.tar.gz) = 135870
|
||||
TIMESTAMP = 1582545022
|
||||
SHA256 (cboxdoerfer-fsearch-v0.1beta4_GH0.tar.gz) = a8664990194e476f7349c68e7c74c3eb56b5091fd6ef4a9f6581c3e408900464
|
||||
SIZE (cboxdoerfer-fsearch-v0.1beta4_GH0.tar.gz) = 160390
|
||||
|
|
|
@ -1,28 +1,17 @@
|
|||
--- src/string_utils.c.orig 2016-10-16 16:07:25 UTC
|
||||
--- src/string_utils.c.orig 2020-02-24 11:50:22 UTC
|
||||
+++ src/string_utils.c
|
||||
@@ -17,6 +17,7 @@
|
||||
@@ -16,6 +16,7 @@
|
||||
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define _GNU_SOURCE
|
||||
+#include <glib.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <stdint.h>
|
||||
@@ -52,9 +53,6 @@ fourbyte_strstr(const unsigned char *h,
|
||||
return *h ? (char *)h-3 : 0;
|
||||
#include <assert.h>
|
||||
@@ -62,3 +63,19 @@ fs_str_copy (char *dest, char *end, const char *src)
|
||||
return ptr;
|
||||
}
|
||||
|
||||
-#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||
-#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||
-
|
||||
#define BITOP(a,b,op) \
|
||||
((a)[(size_t)(b)/(8*sizeof *(a))] op (size_t)1<<((size_t)(b)%(8*sizeof *(a))))
|
||||
|
||||
@@ -220,3 +218,20 @@ fsearch_strstr (const char *haystack,
|
||||
{
|
||||
return my_strstr (haystack, needle);
|
||||
}
|
||||
+
|
||||
+int
|
||||
+strverscmp (const char *s1,
|
||||
+ const char *s2)
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
--- src/string_utils.h.orig 2016-10-16 16:07:25 UTC
|
||||
--- src/string_utils.h.orig 2020-02-24 11:50:22 UTC
|
||||
+++ src/string_utils.h
|
||||
@@ -28,3 +28,7 @@ const char *
|
||||
fsearch_strcasestr (const char *haystack,
|
||||
const char *needle,
|
||||
size_t needle_len);
|
||||
@@ -30,3 +30,7 @@ char *
|
||||
fs_str_copy (char *dest,
|
||||
char *end,
|
||||
const char *src);
|
||||
+
|
||||
+int
|
||||
+strverscmp (const char *s1,
|
||||
|
|
|
@ -8,4 +8,4 @@ Engine. It is written in C and based on GTK+3. It features:
|
|||
- Fast sort by file name, path, size, or modification time
|
||||
- Customizable interface
|
||||
|
||||
WWW: http://www.fsearch.org/
|
||||
WWW: http://cboxdoerfer.github.io/fsearch/
|
||||
|
|
|
@ -1,16 +1,25 @@
|
|||
bin/fsearch
|
||||
share/applications/fsearch.desktop
|
||||
share/locale/bg/LC_MESSAGES/fsearch.mo
|
||||
share/locale/ca/LC_MESSAGES/fsearch.mo
|
||||
share/locale/de/LC_MESSAGES/fsearch.mo
|
||||
share/locale/el/LC_MESSAGES/fsearch.mo
|
||||
share/locale/es/LC_MESSAGES/fsearch.mo
|
||||
share/locale/fi/LC_MESSAGES/fsearch.mo
|
||||
share/locale/fr/LC_MESSAGES/fsearch.mo
|
||||
share/locale/gl/LC_MESSAGES/fsearch.mo
|
||||
share/locale/hu/LC_MESSAGES/fsearch.mo
|
||||
share/locale/id/LC_MESSAGES/fsearch.mo
|
||||
share/locale/ja/LC_MESSAGES/fsearch.mo
|
||||
share/locale/ko/LC_MESSAGES/fsearch.mo
|
||||
share/locale/lt/LC_MESSAGES/fsearch.mo
|
||||
share/locale/nb_NO/LC_MESSAGES/fsearch.mo
|
||||
share/locale/nl/LC_MESSAGES/fsearch.mo
|
||||
share/locale/pl/LC_MESSAGES/fsearch.mo
|
||||
share/locale/pt/LC_MESSAGES/fsearch.mo
|
||||
share/locale/pt-br/LC_MESSAGES/fsearch.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/fsearch.mo
|
||||
share/locale/ru/LC_MESSAGES/fsearch.mo
|
||||
share/locale/sk/LC_MESSAGES/fsearch.mo
|
||||
share/locale/tr/LC_MESSAGES/fsearch.mo
|
||||
share/locale/uk/LC_MESSAGES/fsearch.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/fsearch.mo
|
||||
share/locale/zh_Hans/LC_MESSAGES/fsearch.mo
|
||||
|
|
Loading…
Reference in a new issue