till pushed to perl-Term-Size (el6). "2015-06-08: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Jun 8 18:51:03 UTC 2015


From 44735529812b349574e3429512d1c5809814db4b Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 8 Jun 2015 20:50:56 +0200
Subject: 2015-06-08: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 56a9da9..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Term-Size-0.2.tar.gz
-/Term-Size-0.207.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5009a44
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-06-08: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/perl-Term-Size-0.207-perlio.patch b/perl-Term-Size-0.207-perlio.patch
deleted file mode 100644
index 7871842..0000000
--- a/perl-Term-Size-0.207-perlio.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff --git a/Size.xs b/Size.xs
-index ff585e0..60417ac 100644
---- a/Size.xs
-+++ b/Size.xs
-@@ -21,14 +21,14 @@ MODULE = Term::Size		PACKAGE = Term::Size
- PROTOTYPES: DISABLE
- 
- void
--chars( f = stdin )
--	FILE *f;
-+chars( f = PerlIO_stdin() )
-+	PerlIO *f;
- 
- 	PREINIT:
- 	struct winsize w = { 0, 0, 0, 0 };
- 
- 	PPCODE:
--	if (ioctl(fileno(f), TIOCGWINSZ, &w) == -1)
-+	if (ioctl(PerlIO_fileno(f), TIOCGWINSZ, &w) == -1)
- 		XSRETURN_NO;
- 
- 	XPUSHs(sv_2mortal(newSViv(w.ws_col)));
-@@ -36,14 +36,14 @@ chars( f = stdin )
- 		XPUSHs(sv_2mortal(newSViv(w.ws_row)));
- 
- void
--pixels( f = stdin )
--	FILE *f;
-+pixels( f = PerlIO_stdin() )
-+	PerlIO *f;
- 
- 	PREINIT:
- 	struct winsize w = { 0, 0, 0, 0 };
- 
- 	PPCODE:
--	if (ioctl(fileno(f), TIOCGWINSZ, &w) == -1)
-+	if (ioctl(PerlIO_fileno(f), TIOCGWINSZ, &w) == -1)
- 		XSRETURN_NO;
- 
- 	XPUSHs(sv_2mortal(newSViv(w.ws_xpixel)));
diff --git a/perl-Term-Size.spec b/perl-Term-Size.spec
deleted file mode 100644
index c7cc819..0000000
--- a/perl-Term-Size.spec
+++ /dev/null
@@ -1,108 +0,0 @@
-Name:       perl-Term-Size 
-Version:    0.207
-Release:    6%{?dist}
-# see Copyright
-License:    GPL+ or Artistic 
-Group:      Development/Libraries
-Summary:    Simple way to get terminal size 
-Source0:    http://search.cpan.org/CPAN/authors/id/F/FE/FERREIRA/Term-Size-%{version}.tar.gz
-Url:        http://search.cpan.org/dist/Term-Size
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
-# see http://rt.cpan.org/Public/Bug/Display.html?id=38594
-Patch0:     perl-Term-Size-0.207-perlio.patch
-BuildRequires: perl(ExtUtils::MakeMaker)
-%{?_with_display_tests: BuildRequires: perl(Carp), perl(Exporter) }
-
-# don't "provide" private Perl libs
-%global _use_internal_dependency_generator 0
-%global __deploop() while read FILE; do /usr/lib/rpm/rpmdeps -%{1} ${FILE}; done | /bin/sort -u
-%global __find_provides /bin/sh -c "%{__grep} -v '%{perl_vendorarch}/.*\\.so$' | %{__deploop P}"
-%global __find_requires /bin/sh -c "%{__deploop R}"
-
-%description
-*Term::Size* is a Perl module which provides a straightforward way to
-retrieve the terminal size.
-
-Both functions take an optional filehandle argument, which defaults to
-'*STDIN{IO}'. They both return a list of two values, which are the current
-width and height, respectively, of the terminal associated with the
-specified filehandle.
-
-'Term::Size::chars' returns the size in units of characters, whereas
-'Term::Size::pixels' uses units of pixels.
-
-%prep
-%setup -q -n Term-Size-%{version}
-%patch0 -p1
-
-%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
-make %{?_smp_mflags}
-
-%install
-make pure_install PERL_INSTALL_ROOT=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
-
-%{_fixperms} %{buildroot}/*
-
-%check
-# tests will fail under mock (no terminal size to get!) In particular, tests
-# 2, 3 and 5 fail regardless of what platform they're being complied for under
-# mock.
-%{?_with_display_tests: make test }
-
-%files
-%doc Changes README Copyright
-%{perl_vendorarch}/*
-%exclude %dir %{perl_vendorarch}/auto
-%{_mandir}/man3/*.3*
-
-%changelog
-* Sun Aug 04 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.207-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Wed Jul 17 2013 Petr Pisar <ppisar at redhat.com> - 0.207-5
-- Perl 5.18 rebuild
-
-* Thu Feb 14 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.207-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Fri Jul 20 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.207-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Mon Jun 11 2012 Petr Pisar <ppisar at redhat.com> - 0.207-2
-- Perl 5.16 rebuild
-
-* Fri Jan 13 2012 Petr Ĺ abata <contyk at redhat.com> - 0.207-1
-- 0.207 bump
-
-* Mon Jun 20 2011 Petr Sabata <contyk at redhat.com> - 0.2-9
-- Perl mass rebuild
-- Removing now obsolete Buildroot and defattr
-
-* Wed Feb 09 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Wed Dec 22 2010 Marcela Maslanova <mmaslano at redhat.com> - 0.2-7
-- 661697 rebuild for fixing problems with vendorach/lib
-
-* Thu May 06 2010 Marcela Maslanova <mmaslano at redhat.com> - 0.2-6
-- Mass rebuild with perl-5.12.0
-
-* Fri Dec  4 2009 Stepan Kasal <skasal at redhat.com> - 0.2-5
-- rebuild against perl 5.10.1
-
-* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Thu Mar 26 2009 Chris Weyl <cweyl at alumni.drew.edu> - 0.2-3
-- Stripping bad provides of private Perl extension libs
-
-* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Mon Sep 29 2008 Chris Weyl <cweyl at alumni.drew.edu> 0.2-1
-- initial RPM packaging
-- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.1)
diff --git a/sources b/sources
deleted file mode 100644
index 961ac8b..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-474438fff3f12fca88a23388cc5a7571  Term-Size-0.207.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/perl-Term-Size.git/commit/?h=el6&id=44735529812b349574e3429512d1c5809814db4b


More information about the perl-devel mailing list