From 33a6d2569f677b64b40267429ff4ca713c042da7 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 04 Mar 2012 06:25:40 -0500 Subject: Initial commit. --- diff --git a/build b/build new file mode 100755 index 0000000..473b291 --- /dev/null +++ b/build @@ -0,0 +1,15 @@ +#! /usr/bin/make -f + +fakeroot fakeroot-doc: fakeroot.buildstamp + +.SILENT: fakeroot.buildstamp +fakeroot.buildstamp: + cd src && \ + ./configure --prefix=/usr && \ + make && make DESTDIR=$$(pwd)/../dest install + oh-strip -gl /usr/lib/libfakeroot-0.so + oh-installfiles fakeroot fakeroot-doc + oh-installdocs fakeroot + oh-gencontrol fakeroot fakeroot-doc + oh-buildopk fakeroot fakeroot-doc + touch fakeroot.buildstamp diff --git a/changelog b/changelog new file mode 100644 index 0000000..0c58caf --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +fakeroot (1.18.2-1) + + * Initial release. + + -- P. J. McDermott Sun, 04 Mar 2012 05:32:02 -0500 diff --git a/control b/control new file mode 100644 index 0000000..bff5b60 --- /dev/null +++ b/control @@ -0,0 +1,5 @@ +Source: fakeroot +Version: 1.18.2-1 +Maintainer: "P. J. McDermott" +Build-Depends: make gcc-4.6 libgcc.1 libc-dev +Homepage: http://anonscm.debian.org/gitweb/?p=users/clint/fakeroot.git;a=summary diff --git a/copyright b/copyright new file mode 100644 index 0000000..823edf3 --- /dev/null +++ b/copyright @@ -0,0 +1,63 @@ +Upstream Source +=============== + +Location: + +fakeroot +-------- + + Copyright Ⓒ 1997, 1998, 1999, 2000, 2001 joost witteveen + Copyright Ⓒ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Clint Adams + Copyright Ⓒ 2009 Regis Duchesne + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + +On this system, a copy of the GNU General Public License may be found at +. + +Fakeroot::Stat Perl Module +-------------------------- + +Copyright (C) 2002-2007 THUS plc. + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + +On this system, a copy of the GNU General Public License may be found at +. + + +Distribution Packaging +====================== + +Copyright (C) 2012 Patrick "P. J." McDermott + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +On this system, a copy of the GNU General Public License may be found at +. diff --git a/fakeroot-1.18.2.tar.bz2 b/fakeroot-1.18.2.tar.bz2 new file mode 100644 index 0000000..fd53678 --- /dev/null +++ b/fakeroot-1.18.2.tar.bz2 Binary files differ diff --git a/fakeroot-doc.pkg/control b/fakeroot-doc.pkg/control new file mode 100644 index 0000000..4659134 --- /dev/null +++ b/fakeroot-doc.pkg/control @@ -0,0 +1,11 @@ +Package: fakeroot-doc +Architecture: all +Depends: fakeroot +Description: tool for simulating superuser privileges - documentation + fakeroot provides a fake "root environment" by means of LD_PRELOAD and SysV IPC + (or TCP) trickery. It puts wrappers around getuid(), chown(), stat(), and other + file-manipulation functions, so that unprivileged users can (for instance) + populate .opk archives with root-owned files; various build tools use fakeroot + for this by default. + . + This package provides manual pages for the fakeroot tool. diff --git a/fakeroot-doc.pkg/install b/fakeroot-doc.pkg/install new file mode 100644 index 0000000..0ddb634 --- /dev/null +++ b/fakeroot-doc.pkg/install @@ -0,0 +1 @@ +/usr/share/man diff --git a/fakeroot.pkg/control b/fakeroot.pkg/control new file mode 100644 index 0000000..07fbe97 --- /dev/null +++ b/fakeroot.pkg/control @@ -0,0 +1,10 @@ +Package: fakeroot +Architecture: any +Description: tool for simulating superuser privileges + fakeroot provides a fake "root environment" by means of LD_PRELOAD and SysV IPC + (or TCP) trickery. It puts wrappers around getuid(), chown(), stat(), and other + file-manipulation functions, so that unprivileged users can (for instance) + populate .opk archives with root-owned files; various build tools use fakeroot + for this by default. + . + This package provides the fakeroot tool. diff --git a/fakeroot.pkg/install b/fakeroot.pkg/install new file mode 100644 index 0000000..0324523 --- /dev/null +++ b/fakeroot.pkg/install @@ -0,0 +1,2 @@ +/usr/bin +/usr/lib diff --git a/fakeroot.pkg/postinst b/fakeroot.pkg/postinst new file mode 100755 index 0000000..c4baf40 --- /dev/null +++ b/fakeroot.pkg/postinst @@ -0,0 +1,3 @@ +#! /bin/sh + +ln -s opkg-cl /usr/bin/opkg diff --git a/fakeroot.pkg/prerm b/fakeroot.pkg/prerm new file mode 100755 index 0000000..91527fa --- /dev/null +++ b/fakeroot.pkg/prerm @@ -0,0 +1,3 @@ +#! /bin/sh + +rm /usr/bin/opkg diff --git a/format b/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/format @@ -0,0 +1 @@ +1.0 -- cgit v0.9.1