From 7fe4faa796d3393f6a806c3ebb56c0a2792c1144 Mon Sep 17 00:00:00 2001 From: Jay Freeman Date: Wed, 2 Jan 2008 02:54:43 +0000 Subject: Now serving 100 packages, fixed gzip priority/dependents, and moved subversion to versioning. git-svn-id: http://svn.telesphoreo.org/trunk@8 514c082c-b64e-11dc-b46d-3d985efe055d --- data/cpio/_metadata/description | 2 ++ data/cpio/_metadata/license | 1 + data/cpio/_metadata/maintainer | 1 + data/cpio/_metadata/priority | 1 + data/cpio/_metadata/section | 1 + data/cpio/_metadata/version | 1 + data/cpio/cpio-2.9.tar.gz | Bin 0 -> 977105 bytes data/cpio/make.sh | 6 ++++ data/cpio/static.diff | 64 ++++++++++++++++++++++++++++++++++++++++ 9 files changed, 77 insertions(+) create mode 100644 data/cpio/_metadata/description create mode 120000 data/cpio/_metadata/license create mode 120000 data/cpio/_metadata/maintainer create mode 100644 data/cpio/_metadata/priority create mode 100644 data/cpio/_metadata/section create mode 100644 data/cpio/_metadata/version create mode 100644 data/cpio/cpio-2.9.tar.gz create mode 100644 data/cpio/make.sh create mode 100644 data/cpio/static.diff (limited to 'data/cpio') diff --git a/data/cpio/_metadata/description b/data/cpio/_metadata/description new file mode 100644 index 000000000..005d9a0c9 --- /dev/null +++ b/data/cpio/_metadata/description @@ -0,0 +1,2 @@ +this package isn't described yet +This package, which I'm certain is incredibly interesting, has yet to be described. This is probably because Jay has spent days getting all kinds of bookkeeping issues, like copyright notifications, all in their correct places, and descriptions just aren't the most important thing he could be working on. If this is a problem, please come back later. diff --git a/data/cpio/_metadata/license b/data/cpio/_metadata/license new file mode 120000 index 000000000..af4224931 --- /dev/null +++ b/data/cpio/_metadata/license @@ -0,0 +1 @@ +../../../licenses/gpl-3 \ No newline at end of file diff --git a/data/cpio/_metadata/maintainer b/data/cpio/_metadata/maintainer new file mode 120000 index 000000000..0fa66e077 --- /dev/null +++ b/data/cpio/_metadata/maintainer @@ -0,0 +1 @@ +../../../people/saurik \ No newline at end of file diff --git a/data/cpio/_metadata/priority b/data/cpio/_metadata/priority new file mode 100644 index 000000000..134d9bc32 --- /dev/null +++ b/data/cpio/_metadata/priority @@ -0,0 +1 @@ +optional diff --git a/data/cpio/_metadata/section b/data/cpio/_metadata/section new file mode 100644 index 000000000..f1d43c641 --- /dev/null +++ b/data/cpio/_metadata/section @@ -0,0 +1 @@ +archive diff --git a/data/cpio/_metadata/version b/data/cpio/_metadata/version new file mode 100644 index 000000000..8c2691509 --- /dev/null +++ b/data/cpio/_metadata/version @@ -0,0 +1 @@ +2.9 diff --git a/data/cpio/cpio-2.9.tar.gz b/data/cpio/cpio-2.9.tar.gz new file mode 100644 index 000000000..ebdb4fb10 Binary files /dev/null and b/data/cpio/cpio-2.9.tar.gz differ diff --git a/data/cpio/make.sh b/data/cpio/make.sh new file mode 100644 index 000000000..e100ef1b5 --- /dev/null +++ b/data/cpio/make.sh @@ -0,0 +1,6 @@ +pkg:extract +cd * +pkg:patch +pkg:configure ac_cv_func_obstack=no +make +pkg:install diff --git a/data/cpio/static.diff b/data/cpio/static.diff new file mode 100644 index 000000000..41733b504 --- /dev/null +++ b/data/cpio/static.diff @@ -0,0 +1,64 @@ +diff -r -u tar-1.19/lib/argp-fmtstream.h tar-1.19+iPhone/lib/argp-fmtstream.h +--- tar-1.19/lib/argp-fmtstream.h 2007-09-28 13:11:36.000000000 +0000 ++++ tar-1.19+iPhone/lib/argp-fmtstream.h 2007-12-26 23:04:38.000000000 +0000 +@@ -135,15 +135,15 @@ + const char *__fmt, ...) + __attribute__ ((__format__ (printf, 2, 3))); + +-extern int __argp_fmtstream_putc (argp_fmtstream_t __fs, int __ch); +-extern int argp_fmtstream_putc (argp_fmtstream_t __fs, int __ch); ++static int __argp_fmtstream_putc (argp_fmtstream_t __fs, int __ch); ++static int argp_fmtstream_putc (argp_fmtstream_t __fs, int __ch); + +-extern int __argp_fmtstream_puts (argp_fmtstream_t __fs, const char *__str); +-extern int argp_fmtstream_puts (argp_fmtstream_t __fs, const char *__str); ++static int __argp_fmtstream_puts (argp_fmtstream_t __fs, const char *__str); ++static int argp_fmtstream_puts (argp_fmtstream_t __fs, const char *__str); + +-extern size_t __argp_fmtstream_write (argp_fmtstream_t __fs, ++static size_t __argp_fmtstream_write (argp_fmtstream_t __fs, + const char *__str, size_t __len); +-extern size_t argp_fmtstream_write (argp_fmtstream_t __fs, ++static size_t argp_fmtstream_write (argp_fmtstream_t __fs, + const char *__str, size_t __len); + + /* Access macros for various bits of state. */ +@@ -155,25 +155,25 @@ + #define __argp_fmtstream_wmargin argp_fmtstream_wmargin + + /* Set __FS's left margin to LMARGIN and return the old value. */ +-extern size_t argp_fmtstream_set_lmargin (argp_fmtstream_t __fs, ++static size_t argp_fmtstream_set_lmargin (argp_fmtstream_t __fs, + size_t __lmargin); + extern size_t __argp_fmtstream_set_lmargin (argp_fmtstream_t __fs, + size_t __lmargin); + + /* Set __FS's right margin to __RMARGIN and return the old value. */ +-extern size_t argp_fmtstream_set_rmargin (argp_fmtstream_t __fs, ++static size_t argp_fmtstream_set_rmargin (argp_fmtstream_t __fs, + size_t __rmargin); + extern size_t __argp_fmtstream_set_rmargin (argp_fmtstream_t __fs, + size_t __rmargin); + + /* Set __FS's wrap margin to __WMARGIN and return the old value. */ +-extern size_t argp_fmtstream_set_wmargin (argp_fmtstream_t __fs, ++static size_t argp_fmtstream_set_wmargin (argp_fmtstream_t __fs, + size_t __wmargin); + extern size_t __argp_fmtstream_set_wmargin (argp_fmtstream_t __fs, + size_t __wmargin); + + /* Return the column number of the current output point in __FS. */ +-extern size_t argp_fmtstream_point (argp_fmtstream_t __fs); ++static size_t argp_fmtstream_point (argp_fmtstream_t __fs); + extern size_t __argp_fmtstream_point (argp_fmtstream_t __fs); + + /* Internal routines. */ +@@ -198,7 +198,7 @@ + #endif + + #ifndef ARGP_FS_EI +-#define ARGP_FS_EI extern inline ++#define ARGP_FS_EI static inline + #endif + + ARGP_FS_EI size_t -- cgit v1.2.3