From 3be8aed36828b1aa31583fde355e283165efd371 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 21 May 2022 17:04:40 +0200 Subject: [PATCH] libpaper: dropped --- libpaper/.footprint | 39 ------------------------- libpaper/.signature | 5 ---- libpaper/Pkgfile | 70 --------------------------------------------- 3 files changed, 114 deletions(-) delete mode 100644 libpaper/.footprint delete mode 100644 libpaper/.signature delete mode 100644 libpaper/Pkgfile diff --git a/libpaper/.footprint b/libpaper/.footprint deleted file mode 100644 index cfa71dee0..000000000 --- a/libpaper/.footprint +++ /dev/null @@ -1,39 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/libpaper.d/ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/paperconf --rw-r--r-- root/root usr/bin/run-parts -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/paper.h -drwxr-xr-x root/root usr/lib/ --rwxr-xr-x root/root usr/lib/libpaper.la -lrwxrwxrwx root/root usr/lib/libpaper.so -> libpaper.so.1.1.2 -lrwxrwxrwx root/root usr/lib/libpaper.so.1 -> libpaper.so.1.1.2 --rwxr-xr-x root/root usr/lib/libpaper.so.1.1.2 -drwxr-xr-x root/root usr/sbin/ --rwxr-xr-x root/root usr/sbin/paperconfig -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/paperconf.1.gz -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/defaultpapername.3.gz --rw-r--r-- root/root usr/share/man/man3/defaultpapersizefile.3.gz --rw-r--r-- root/root usr/share/man/man3/paperdone.3.gz --rw-r--r-- root/root usr/share/man/man3/paperfirst.3.gz --rw-r--r-- root/root usr/share/man/man3/paperinfo.3.gz --rw-r--r-- root/root usr/share/man/man3/paperinit.3.gz --rw-r--r-- root/root usr/share/man/man3/paperlast.3.gz --rw-r--r-- root/root usr/share/man/man3/papernext.3.gz --rw-r--r-- root/root usr/share/man/man3/paperprev.3.gz --rw-r--r-- root/root usr/share/man/man3/paperpsheight.3.gz --rw-r--r-- root/root usr/share/man/man3/paperpsname.3.gz --rw-r--r-- root/root usr/share/man/man3/paperpswidth.3.gz --rw-r--r-- root/root usr/share/man/man3/paperwithsize.3.gz --rw-r--r-- root/root usr/share/man/man3/systempapername.3.gz --rw-r--r-- root/root usr/share/man/man3/systempapersizefile.3.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/papersize.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/paperconfig.8.gz diff --git a/libpaper/.signature b/libpaper/.signature deleted file mode 100644 index 53c3c4cd5..000000000 --- a/libpaper/.signature +++ /dev/null @@ -1,5 +0,0 @@ -untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF37spFbjxlLzI6JHBvFmTpCXWrnJ7C27gUgqTjYj0XHhRe/iuhttYaVm35BizcvD5hXNJ3CcIJRwazJGrHQy11AQ= -SHA256 (Pkgfile) = 68db3b58a6ff953d0e994f2e4f17aec03a30b29f55c2deccdcc988853bd4c9ec -SHA256 (.footprint) = 097f1345b54d25dc709ff550f47b41835803e07c3e3bbf59984107a9255f3740 -SHA256 (libpaper_1.1.28.tar.gz) = c8bb946ec93d3c2c72bbb1d7257e90172a22a44a07a07fb6b802a5bb2c95fddc diff --git a/libpaper/Pkgfile b/libpaper/Pkgfile deleted file mode 100644 index 68cedb4e9..000000000 --- a/libpaper/Pkgfile +++ /dev/null @@ -1,70 +0,0 @@ -# Description: Library for handling paper characteristics -# URL: http://ftp.debian.org/debian/pool/main/libp/libpaper/ -# Maintainer: Tim Biermann, tbier at posteo dot de -# Depends on: - -name=libpaper -version=1.1.28 -release=2 -source=(http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.28.tar.gz) - -build() { - cd $name-$version - autoreconf -fi - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --disable-static - make - make DESTDIR=$PKG install - mkdir -vp $PKG/etc/libpaper.d - cat > $PKG/usr/bin/run-parts << "EOF" -#!/bin/sh -# run-parts: Runs all the scripts found in a directory. -# from Slackware, by Patrick J. Volkerding with ideas borrowed -# from the Red Hat and Debian versions of this utility. - -# keep going when something fails -set +e - -if [ $# -lt 1 ]; then - echo "Usage: run-parts " - exit 1 -fi - -if [ ! -d $1 ]; then - echo "Not a directory: $1" - echo "Usage: run-parts " - exit 1 -fi - -# There are several types of files that we would like to -# ignore automatically, as they are likely to be backups -# of other scripts: -IGNORE_SUFFIXES="~ ^ , .bak .new .rpmsave .rpmorig .rpmnew .swp" - -# Main loop: -for SCRIPT in $1/* ; do - # If this is not a regular file, skip it: - if [ ! -f $SCRIPT ]; then - continue - fi - # Determine if this file should be skipped by suffix: - SKIP=false - for SUFFIX in $IGNORE_SUFFIXES ; do - if [ ! "$(basename $SCRIPT $SUFFIX)" = "$(basename $SCRIPT)" ]; then - SKIP=true - break - fi - done - if [ "$SKIP" = "true" ]; then - continue - fi - # If we've made it this far, then run the script if it's executable: - if [ -x $SCRIPT ]; then - $SCRIPT || echo "$SCRIPT failed." - fi -done - -exit 0 -EOF -}