Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Leo
aports
Commits
7db92eee
Commit
7db92eee
authored
Aug 30, 2019
by
Leo
Browse files
main/findutils: upgrade to 4.7.0
parent
baa0f226
Pipeline
#993
failed with stages
in 24 minutes and 24 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
main/findutils/APKBUILD
View file @
7db92eee
...
...
@@ -2,20 +2,15 @@
# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Michael Mason <ms13sp@gmail.com>
pkgname
=
findutils
pkgver
=
4.
6
.0
pkgrel
=
2
pkgver
=
4.
7
.0
pkgrel
=
0
pkgdesc
=
"GNU utilities for finding files"
url
=
"https://www.gnu.org/software/findutils/"
arch
=
"all"
license
=
"GPL-3.0+"
depends
=
""
makedepends
=
""
license
=
"GPL-3.0-or-later"
checkdepends
=
"coreutils diffutils dejagnu"
install
=
subpackages
=
"
$pkgname
-doc"
source
=
"https://ftp.gnu.org/pub/gnu/
$pkgname
/
$pkgname
-
$pkgver
.tar.gz
localename-test-fix.patch
findutils-include-sysmacros.patch
source
=
"https://ftp.gnu.org/pub/gnu/findutils/findutils-
$pkgver
.tar.xz
"
options
=
"!checkroot"
...
...
@@ -44,6 +39,4 @@ package() {
rm
-rf
"
$pkgdir
"
/usr/lib
}
sha512sums
=
"41fcd4197c1efbd77f7420e5754e2cf9332dfef19f90c65a8fa1844bb4bc5d529c8393ee0ff979a054e9ac65ff71d7fe3921ea079f9960843412fc9a71f8afd4 findutils-4.6.0.tar.gz
39fc0bc7602dd5300cf0b5488a7d14b6d00e05fedd6067ff45a229e65ff020d0003c0bb8e43807d9874afeb39c1dae6d612182caeb7de76156e1bc6ceb50adfc localename-test-fix.patch
552d48cdb444568ded2a097e2b7b5851d730edb7e58e7b7740a6c6781d0e5b6bb269bb2429f5147f4004a50647ce16705eb390919b4652dcf1dfbded7ebfc03a findutils-include-sysmacros.patch"
sha512sums
=
"650a24507f8f4ebff83ad28dd27daa4785b4038dcaadc4fe00823b976e848527074cce3f9ec34065b7f037436d2aa6e9ec099bc05d7472c29864ac2c69de7f2e findutils-4.7.0.tar.xz"
main/findutils/findutils-include-sysmacros.patch
deleted
100644 → 0
View file @
baa0f226
--- a/gl/lib/mountlist.c 2019-07-31 15:56:05.495945881 +0000
+++ b/gl/lib/mountlist.c 2019-07-31 15:56:43.444754951 +0000
@@ -59,6 +59,7 @@
#ifdef MOUNTED_GETMNTENT1 /* 4.3BSD, SunOS, HP-UX, Dynix, Irix. */
# include <mntent.h>
# include <sys/types.h>
+# include <sys/sysmacros.h>
# if !defined MOUNTED
# if defined _PATH_MOUNTED /* GNU libc */
# define MOUNTED _PATH_MOUNTED
main/findutils/localename-test-fix.patch
deleted
100644 → 0
View file @
baa0f226
--- findutils-4.6.0/tests/localename.c.old 2016-12-31 13:54:43.000000000 +0000
+++ findutils-4.6.0/tests/localename.c 2017-07-30 16:40:47.098541270 +0000
@@ -40,7 +40,7 @@
# if defined __APPLE__ && defined __MACH__
# include <xlocale.h>
# endif
-# if __GLIBC__ >= 2 && !defined __UCLIBC__
+# if defined __linux__
# include <langinfo.h>
# endif
# if !defined IN_LIBINTL
@@ -2692,16 +2692,19 @@
locale_t thread_locale = uselocale (NULL);
if (thread_locale != LC_GLOBAL_LOCALE)
{
-# if __GLIBC__ >= 2 && !defined __UCLIBC__
+# if defined(_NL_LOCALE_NAME)
+ const char *name = nl_langinfo(_NL_LOCALE_NAME(category));
+# if __GLIBC__ >= 2 && !defined __UCLIBC__
/* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
glibc < 2.12.
See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
- const char *name =
- nl_langinfo (_NL_ITEM ((category), _NL_ITEM_INDEX (-1)));
+ if (name[0] == '\0')
+ name = nl_langinfo (_NL_ITEM ((category), _NL_ITEM_INDEX (-1)));
if (name[0] == '\0')
/* Fallback code for glibc < 2.4, which did not implement
nl_langinfo (_NL_LOCALE_NAME (category)). */
name = thread_locale->__names[category];
+# endif
return name;
# elif defined __FreeBSD__ || (defined __APPLE__ && defined __MACH__)
/* FreeBSD, Mac OS X */
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment