The debian-private mailing list leak, part 1. Volunteers have complained about Blackmail. Lynchings. Character assassination. Defamation. Cyberbullying. Volunteers who gave many years of their lives are picked out at random for cruel social experiments. The former DPL's girlfriend Molly de Blanc is given volunteers to experiment on for her crazy talks. These volunteers never consented to be used like lab rats. We don't either. debian-private can no longer be a safe space for the cabal. Let these monsters have nowhere to hide. Volunteers are not disposable. We stand with the victims.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Binary-Only packages



Rob Browning <osiris@cs.utexas.edu> writes:

> What I'd like to have is a simple tool that I could use like this:
> 
>   make-trivial-local-package --name local-program-package --revision 1.2-1 tmp
> 
> to take tmp and make it into a package,
> local-program-package_1.2-1.deb, that installs the files with respect
> to "/".

Something like this:

#!/usr/bin/perl
use Getopt::Long;
GetOptions ("name=s"=>$n, "version=s"=>$v) || die;
$root = $ARGV[0];
mkdir ("$root/DEBIAN") || die;
open (C, "> $root/DEBIAN/control") || die;
print C
"Package: $n
Version: $v
Architecture: i386";
close C || die;
system "dpkg-deb -b tmp ..";


The above is probably full of bugs, but you get the idea.


Guy

--
Please respect the confidentiality of material on the debian-private list.
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
debian-private-REQUEST@lists.debian.org . Trouble? e-mail to Bruce@Pixar.com