From 4d274fd85a83da5a417be6fc3da6ae4d792af160 Mon Sep 17 00:00:00 2001 From: pengyeqing Date: Fri, 10 Jan 2020 15:33:06 +0800 Subject: [PATCH] delete unused file --- lsof.spec | 4 +++- upstream2downstream.sh | 45 ------------------------------------------ 2 files changed, 3 insertions(+), 46 deletions(-) delete mode 100644 upstream2downstream.sh diff --git a/lsof.spec b/lsof.spec index f0ac58d..236feeb 100644 --- a/lsof.spec +++ b/lsof.spec @@ -5,7 +5,6 @@ Summary: A tool for list open files License: zlib and Sendmail and LGPLv2+ URL: https://people.freebsd.org/~abe/ Source0: https://github.com/lsof-org/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz -Source1: upstream2downstream.sh Patch0: PATCH-FIX-OPENEULER-man-page-section.patch Patch6002: 0050-endpoint-pipe-fix-list-the-same-fd-in-a-different-pr.patch Patch6003: 0052-endpoint-pty-bug-fix-list-the-same-fd-in-a-different.patch @@ -47,6 +46,9 @@ install -p -m 0644 Lsof.8 %{buildroot}/%{_mandir}/man1/lsof.1 %{_mandir}/man*/* %changelog +* Fri Jan 10 2020 Yeqing Peng - 4.93.2-3 +- delete unused file + * Mon Sep 30 2019 luhuaxin - 4.93.2-2 - Type: enhancement - ID: NA diff --git a/upstream2downstream.sh b/upstream2downstream.sh deleted file mode 100644 index 247ee29..0000000 --- a/upstream2downstream.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -# -# This script removes non-linux dialects from upstream source package before -# release. There is a problem with copyrights for some UN*Xes ... also .. this -# script merges all to the one normal tarball and rename all to lsof_X.XX-rh. -# -# Usage: ./upstream2downstream -# -# This code is in the public domain; do with it what you wish. -# -# Copyright (C) 2007 Karel Zak -# - -UPSTREAM="$1" -NAME=$(basename $UPSTREAM .tar.bz2) -MYPWD=$(pwd) -TMP=$(mktemp -d) - -echo -echo -n "Extracting upstream code..." -tar -jxf $UPSTREAM -C $TMP -cd $TMP/$NAME -tar xf "$NAME"_src.tar -echo " done." - -echo -n "Moving files to downstream directory..." -mv "$NAME"_src/ "$NAME"-rh -mv README* 00* RELEASE* "$NAME"-rh -echo " done." - -echo -n "Removing non-Linux dialects..." -rm -rf "$NAME"-rh/dialects/{aix,darwin,du,freebsd,hpux,n+obsd,n+os,osr,sun,uw} -echo " done." - -echo -n "Creating final downstream tarball..." -tar Jcf $MYPWD/"$NAME"-rh.tar.xz "$NAME"-rh -echo " done." - -rm -rf $TMP -cd $MYPWD - -echo -echo "Linux-only tarball: $MYPWD/"$NAME"-rh.tar.xz" -echo - -- Gitee