--- rinse-2.0.1.orig/debian/copyright +++ rinse-2.0.1/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Steve Kemp on +Monday, 16th June 2007. + +It was downloaded from http://www.steve.org.uk/Software/rinse/ + +Copyright 2007-2010 Steve Kemp +Copyright 2011-2013 Thomas Lange + +License: + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under licenses: + + 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 Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in /usr/share/common-licenses/GPL' and + the Artistic Licence in /usr/share/common-licenses/Artistic'. + --- rinse-2.0.1.orig/debian/.cvsignore +++ rinse-2.0.1/debian/.cvsignore @@ -0,0 +1 @@ +files --- rinse-2.0.1.orig/debian/rules +++ rinse-2.0.1/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + make clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + + make install PREFIX=`pwd`/debian/rinse + + dh_installdirs + + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_install + dh_installchangelogs + dh_installdocs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- rinse-2.0.1.orig/debian/watch +++ rinse-2.0.1/debian/watch @@ -0,0 +1,14 @@ +# +# Watchfile for rinse. +# +# +# uscan version number - not the version of the software. +# +version=3 + + +# +# The link to the download location, followed by the regular expression +# to match release tarballs. +# +http://www.steve.org.uk/Software/rinse/rinse-([\d\.]+)\.tar\.gz --- rinse-2.0.1.orig/debian/control +++ rinse-2.0.1/debian/control @@ -0,0 +1,25 @@ +Source: rinse +Maintainer: Thomas Lange +Section: admin +Priority: extra +Standards-Version: 3.9.3 +Build-Depends: debhelper (>= 4.0.0) +Homepage: http://www.steve.org.uk/Software/rinse/ +Vcs-Hg: http://rinse.repository.steve.org.uk/ +Vcs-Browser: http://rinse.repository.steve.org.uk/ + +Package: rinse +Architecture: all +Depends: wget, libterm-size-perl, libwww-perl, perl-modules, rpm +Description: RPM installation environment + This is a tool for bootstrapping a basic RPM-based distribution of + GNU/Linux. + . + It is comparable in purpose to the standard Debian debootstrap utility, + but works upon RPM-based distributions instead. + . + Rinse can setup 32 and 64-bit installations of: + * CentOS + * Scientific Linux CERN + * Fedora Core + * OpenSUSE --- rinse-2.0.1.orig/debian/rinse.install +++ rinse-2.0.1/debian/rinse.install @@ -0,0 +1 @@ +README /usr/share/doc/rinse/ --- rinse-2.0.1.orig/debian/compat +++ rinse-2.0.1/debian/compat @@ -0,0 +1 @@ +8 --- rinse-2.0.1.orig/debian/postinst +++ rinse-2.0.1/debian/postinst @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +# +# Skip, if we are not in "configure" state +# +if [ "$1" != "configure" ]; then + echo "I: Skipping configuration" + exit 0 +fi + +# +# Handle obsolete files. +# +for i in /etc/rinse/*-*.conf; do + rm -f $i +done + +#DEBHELPER# +exit 0 --- rinse-2.0.1.orig/debian/changelog +++ rinse-2.0.1/debian/changelog @@ -0,0 +1,203 @@ +rinse (2.0.1-1) unstable; urgency=low + + * create missing random devices, thanks to Dan Kegel closes: #685640 + * fix broken fedora urls, add urls for fedora 11-14 closes: #693353 + * Makefile: version++ + * copyright, bin/rinse: year++ + + -- Thomas Lange Mon, 28 Jan 2013 17:19:05 +0100 + +rinse (2.0-1) unstable; urgency=low + + * make --arch mandatory + * add option --mirror closes: #663934 + * add support for opensuse 12.1 closes: #661932 + Thanks to Rune Darrud for the patch + * README: list all supported distributions closes: #661934 + * update Standards-Version, no changes needed + * rinse.conf: fix URLs of old opensuse repos closes: #661931 + * copy files to and from the cache only if their size is greater zero + closes: #663936 + * 10-resolv.conf.sh: add localhost to etc/hosts closes: #633079 + + -- Thomas Lange Mon, 28 May 2012 12:30:53 +0200 + +rinse (1.9.1-1) unstable; urgency=low + + * add missing package for CentOS and SLC 6 (closes: 635645) + * rinse.conf: fix wrong URL (closes: #635639) + + -- Thomas Lange Wed, 31 Aug 2011 11:38:27 +0200 + +rinse (1.9-1) unstable; urgency=low + + * add CentOS 6 support + * add RHEL 5 support (closes: #632959) + + -- Thomas Lange Mon, 18 Jul 2011 14:59:10 +0200 + +rinse (1.8.1-1) unstable; urgency=low + + * add missing file slc-6.packages + + -- Thomas Lange Mon, 06 Jun 2011 10:08:22 +0200 + +rinse (1.8-1) unstable; urgency=low + + * control: new maintainer and upstream + * centos-5.packages: add missing lib (closes: #623387) + * centos-5/post-install.sh: install modprobe.conf (closes: #588030) + * new url's for fedora 8-10 (closes: #573390) + * add Scientific Linux Cern 5 support (closes: #620081) + * add SLC 6 support + * add support for packages with i686 in their names (closes: #623474) + + -- Thomas Lange Mon, 16 May 2011 09:49:21 +0200 + +rinse (1.7-2) unstable; urgency=high + + * Install a modprobe.conf when possible. + (Closes: #588030) + + -- Steve Kemp Fri, 27 Aug 2010 22:11:22 +0000 + +rinse (1.7-1) unstable; urgency=low + + * Added missing packages so that Centos 5.x will install. + (Closes: #524486) + * Avoid hardwired mirrors in the post-install scripts. + + -- Steve Kemp Tue, 21 Apr 2009 19:18:17 -0000 + +rinse (1.6-1) unstable; urgency=low + + * Add support for openSuSE 10.1-11.1 + + -- Thayne Harbaugh Fri, 06 Mar 2009 16:35:42 -0700 + +rinse (1.5-1) unstable; urgency=medium + + * Added support for Fedora Core 10 + + -- Steve Kemp Sat, 20 Dec 2008 23:00:32 +0000 + +rinse (1.4-1) unstable; urgency=medium + + * Add the new command line flag "--add-pkg-list". Patch from + Roberto Suarez Soto. + + -- Steve Kemp Sun, 16 Nov 2008 14:00:41 +0000 + +rinse (1.3-2) unstable; urgency=medium + + * Removed several "bashisms" from our scripts + - Thanks for Ubuntu for the patch / feedback. + (Closes: #488356) + + -- Steve Kemp Fri, 27 Jun 2008 15:44:51 +0000 + +rinse (1.3-1) unstable; urgency=medium + + * New upstream release. + - Add support for the first release of Fedora Core 9. + * Updated to standards version 3.8.0. + - No changes + + -- Steve Kemp Fri, 27 Jun 2008 15:44:51 +0000 + +rinse (1.2-1) unstable; urgency=medium + + * New upstream release. + - Support Fedora Core 9 test preview. + - Better caching for FC-8 + - Code ran through spellchecker + pretty formatter + + -- Steve Kemp Wed, 7 May 2008 18:33:33 +0000 + +rinse (1.1-1) unstable; urgency=medium + + * New upstream release. + - Updated handling of Centos5. + + -- Steve Kemp Sat, 30 Apr 2008 18:44:44 +0000 + +rinse (1.0-1) unstable; urgency=medium + + * New upstream release. + - Fixed support for FC 5 & 6. + * Updated standard versions to 3.7.3: + - Moved Homepage: from description to header. + + -- Steve Kemp Sat, 15 Mar 2008 23:24:25 +0000 + +rinse (0.9-1) unstable; urgency=medium + + * New upstream release. + - Add support for Fedora Core 8 (Closes: #450624) + + -- Steve Kemp Tue, 13 Nov 2007 21:16:25 +0000 + +rinse (0.8-1) unstable; urgency=medium + + * New upstream release + - Updated the handling of the bugfix for Centos 5. + - Removed /etc/rinse/*.conf and replaced with a single config file. + + -- Steve Kemp Mon, 12 Aug 2007 00:24:42 +0000 + +rinse (0.7-1) unstable; urgency=low + + * New upstream release + - Working installers for Centos 4 & 5. + + -- Steve Kemp Wed, 8 Aug 2007 18:36:31 +0000 + +rinse (0.6-3) unstable; urgency=low + + * Changed the maintainer address to be my Debian address. + + -- Steve Kemp Tue, 31 Jul 2007 14:11:40 +0000 + +rinse (0.6-2) unstable; urgency=medium + + * Sync up to the latest real 0.6 release: + - Add support for Fedora Core 7. + - Drop the dependency upon 'alien'. + - Added more testing. + + -- Steve Kemp Sun, 29 Jul 2007 00:28:41 +0000 + +rinse (0.6-1) unstable; urgency=medium + + * Initial upload to Debian Sid. (Closes: #434282) + + -- Steve Kemp Sat, 22 Jul 2007 22:37:32 +0000 + +rinse (0.5-1) unstable; urgency=medium + + * v0.5 release: + - *Really* work correctly for --arch=amd64 + - Added 'rinse-unpack' to the distribution. [Not installed] + + -- Steve Kemp Sat, 20 Jul 2007 20:26:38 +0000 + +rinse (0.4-1) unstable; urgency=low + + * v0.4 release: + - Included a manpage + - Work correctly for --arch=amd64 + + -- Steve Kemp Fri, 20 Jul 2007 20:30:58 +0000 + +rinse (0.3-1) unstable; urgency=low + + * New release. + + -- Steve Kemp Mon, 16 Jul 2007 04:51:46 +0000 + +rinse (0.2-1) unstable; urgency=low + + * Initial Debian package. + + -- Steve Kemp Mon, 16 Jul 2007 04:51:46 +0000 +