diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-11-07 00:01:16 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-11-07 00:01:16 -0700 |
commit | 94fc7a992c7f3e163b491ce8b248f3c1b4ca2702 (patch) | |
tree | c47e449fd9ee9eee1d599520a87bbfe9023a606a | |
parent | 9859886af54f034e1631736bbf156773566502d0 (diff) | |
download | piny-code-94fc7a992c7f3e163b491ce8b248f3c1b4ca2702.tar.gz piny-code-94fc7a992c7f3e163b491ce8b248f3c1b4ca2702.zip |
Stop using equivs for the metapackage.
-rwxr-xr-x | builddebs | 6 | ||||
-rw-r--r-- | piny/Makefile | 5 | ||||
-rw-r--r-- | piny/debian/changelog | 5 | ||||
-rw-r--r-- | piny/debian/compat | 1 | ||||
-rw-r--r-- | piny/debian/control (renamed from piny.equiv) | 9 | ||||
-rw-r--r-- | piny/debian/copyright | 2 | ||||
-rwxr-xr-x | piny/debian/rules | 4 | ||||
-rw-r--r-- | piny/debian/source/format | 1 |
8 files changed, 25 insertions, 8 deletions
@@ -11,15 +11,13 @@ if ls *.changes > /dev/null 2> /dev/null; then if [ "$PRECLEAN" == "y" ]; then git clean; else exit 1; fi fi -for SOURCE in libpiny pinyadmin; do (cd "$SOURCE"; debuild -tc "$@"); done - -equivs-build -f piny.equiv +for SOURCE in libpiny piny pinyadmin; do (cd "$SOURCE"; debuild -tc "$@"); done echo echo -n "Install packages on this machine? (y/N) " read -n 1 INSTALL echo -if [ "$INSTALL" == "y" ]; then sudo debi *.changes; fi +if [ "$INSTALL" == "y" ]; then for CHANGES in *.changes; do sudo debi "$CHANGES"; done; fi echo echo -n "Upload packages to debian? (y/N) " diff --git a/piny/Makefile b/piny/Makefile new file mode 100644 index 0000000..c1260ee --- /dev/null +++ b/piny/Makefile @@ -0,0 +1,5 @@ +build: + +install: + +clean: diff --git a/piny/debian/changelog b/piny/debian/changelog new file mode 100644 index 0000000..a2f8a36 --- /dev/null +++ b/piny/debian/changelog @@ -0,0 +1,5 @@ +piny (0.3) unstable; urgency=low + + * Initial release of non-equivs version. + + -- Julian Blake Kongslie <jblake@omgwallhack.org> Sat, 06 Nov 2010 23:59:58 -0700 diff --git a/piny/debian/compat b/piny/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/piny/debian/compat @@ -0,0 +1 @@ +7 diff --git a/piny.equiv b/piny/debian/control index f8eaef4..90ae99f 100644 --- a/piny.equiv +++ b/piny/debian/control @@ -1,11 +1,12 @@ -Section: misc -Priority: optional +Source: piny Maintainer: Julian Blake Kongslie <jblake@omgwallhack.org> +Section: admin +Priority: extra Homepage: http://www.piny.be/piny-code/ -Standards-Version: 3.6.2 +Standards-Version: 3.8.4 Package: piny -Version: 0.2 +Architecture: all Depends: pinyadmin Recommends: apache2, cgit, dvipng, gcc, git-daemon-run, graphviz, ikiwiki, libapache2-mod-auth-pam, libapache2-mod-auth-sys-group, libc6-dev, libcgi-formbuilder-perl, perlmagick, texlive-science Description: Metapackage to bring in the piny infrastructure diff --git a/piny/debian/copyright b/piny/debian/copyright new file mode 100644 index 0000000..e4642fb --- /dev/null +++ b/piny/debian/copyright @@ -0,0 +1,2 @@ +Copyright © 2010 Julian Blake Kongslie <jblake@omgwallhack.org> +Licensed under the MIT license. diff --git a/piny/debian/rules b/piny/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/piny/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/piny/debian/source/format b/piny/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/piny/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |