summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-03-04 06:25:40 (EST)
committer P. J. McDermott <pjm@nac.net>2012-03-04 06:25:40 (EST)
commit33a6d2569f677b64b40267429ff4ca713c042da7 (patch)
tree69ec2daf07b6c5040a25135c90cc32e35a7fb103
Initial commit.fakeroot/1.18.2-1
-rwxr-xr-xbuild15
-rw-r--r--changelog5
-rw-r--r--control5
-rw-r--r--copyright63
-rw-r--r--fakeroot-1.18.2.tar.bz2bin0 -> 303775 bytes
-rw-r--r--fakeroot-doc.pkg/control11
-rw-r--r--fakeroot-doc.pkg/install1
-rw-r--r--fakeroot.pkg/control10
-rw-r--r--fakeroot.pkg/install2
-rwxr-xr-xfakeroot.pkg/postinst3
-rwxr-xr-xfakeroot.pkg/prerm3
-rw-r--r--format1
12 files changed, 119 insertions, 0 deletions
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 <pjm@nac.net> 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" <pjm@nac.net>
+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: <http://ftp.debian.org/debian/pool/main/f/fakeroot/>
+
+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
+<file:///usr/share/common-licenses/GPL-3>.
+
+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
+<file:///usr/share/common-licenses/GPL-1>.
+
+
+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
+<file:///usr/share/common-licenses/GPL-3>.
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