diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /testing/kbuild/0001-define-ALLPERMS-is-missing.patch | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'testing/kbuild/0001-define-ALLPERMS-is-missing.patch')
-rw-r--r-- | testing/kbuild/0001-define-ALLPERMS-is-missing.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/testing/kbuild/0001-define-ALLPERMS-is-missing.patch b/testing/kbuild/0001-define-ALLPERMS-is-missing.patch deleted file mode 100644 index ffe1b757e5..0000000000 --- a/testing/kbuild/0001-define-ALLPERMS-is-missing.patch +++ /dev/null @@ -1,43 +0,0 @@ -From ad40844b8d4ccd3fec48fd1db3d165926d247398 Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Thu, 2 Jan 2014 08:55:33 +0000 -Subject: [PATCH] define ALLPERMS is missing - ---- - src/kmk/kmkbuiltin/chmod.c | 4 ++++ - src/kmk/kmkbuiltin/install.c | 4 ++++ - 2 files changed, 8 insertions(+) - -diff --git a/src/kmk/kmkbuiltin/chmod.c b/src/kmk/kmkbuiltin/chmod.c -index 792a286..8edce38 100644 ---- a/src/kmk/kmkbuiltin/chmod.c -+++ b/src/kmk/kmkbuiltin/chmod.c -@@ -66,6 +66,10 @@ static char sccsid[] = "@(#)chmod.c 8.8 (Berkeley) 4/1/94"; - #include "getopt.h" - #include "kmkbuiltin.h" - -+#ifndef ALLPERMS -+# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */ -+#endif -+ - extern void * bsd_setmode(const char *p); - extern mode_t bsd_getmode(const void *bbox, mode_t omode); - extern void bsd_strmode(mode_t mode, char *p); -diff --git a/src/kmk/kmkbuiltin/install.c b/src/kmk/kmkbuiltin/install.c -index 13bec72..08d8ffe 100644 ---- a/src/kmk/kmkbuiltin/install.c -+++ b/src/kmk/kmkbuiltin/install.c -@@ -127,6 +127,10 @@ extern mode_t bsd_getmode(const void *bbox, mode_t omode); - # define IS_SLASH(ch) ((ch) == '/') - #endif - -+#ifndef ALLPERMS -+# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */ -+#endif -+ - static gid_t gid; - static uid_t uid; - static int dobackup, docompare, dodir, dopreserve, dostrip, nommap, safecopy, verbose, mode_given; --- -1.8.5.2 - |