public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, sys-apps/fwcrv/files/, sys-apps/fwcrv/
@ 2019-10-10 12:28 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2019-10-10 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     55e3adba8a9af40355168dc4dfde127979dd89c9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 10 12:26:13 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 10 12:26:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55e3adba

sys-apps/fwcrv: Remove last-rited pkg

Closes: https://bugs.gentoo.org/693902
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 profiles/package.mask                         |  6 ----
 sys-apps/fwcrv/Manifest                       |  1 -
 sys-apps/fwcrv/files/fwcrv-0.1.0-endian.patch | 47 ---------------------------
 sys-apps/fwcrv/fwcrv-0.1.0.ebuild             | 31 ------------------
 sys-apps/fwcrv/metadata.xml                   |  8 -----
 5 files changed, 93 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index c5981556146..5790fc5d061 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -856,12 +856,6 @@ sys-auth/icmpdn
 # Removal in 30 days.  Bug #693904.
 sys-apps/netboot-base
 
-# Michał Górny <mgorny@gentoo.org> (2019-09-09)
-# Added in 2005 and not bumped since.  Homepage gone.  EAPI 0.  No amd64
-# keyword.
-# Removal in 30 days.  Bug #693902.
-sys-apps/fwcrv
-
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
 # Masked for removal.

diff --git a/sys-apps/fwcrv/Manifest b/sys-apps/fwcrv/Manifest
deleted file mode 100644
index 4a084988233..00000000000
--- a/sys-apps/fwcrv/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST fwcrv-0.1.0.tar.gz 76154 BLAKE2B ceb8827f5dab62820fc68fa9389ecf6810f99a5e668b5a00b0adb0a8a2f480db857501b17702e07104696bb83a1d3b8ef5bfcb8bcc5981765d4206fb917aaff1 SHA512 875762b706effc9a149c1686fc51567bce845e1ea611faf1775c2d4ce87bba5257405b8c9953e042dcc485d9a203930f4dbe0df5f0a0e010bc65bceee9c0bee6

diff --git a/sys-apps/fwcrv/files/fwcrv-0.1.0-endian.patch b/sys-apps/fwcrv/files/fwcrv-0.1.0-endian.patch
deleted file mode 100644
index 565a15736d9..00000000000
--- a/sys-apps/fwcrv/files/fwcrv-0.1.0-endian.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff -ruN src/functions.c /tmp/src/functions.c
---- src/functions.c	2002-11-14 23:46:11.000000000 +0100
-+++ src.new/functions.c	2006-03-22 11:51:03.000000000 +0100
-@@ -59,7 +59,7 @@
- byte ParseCommandLineOptions( int ArgCount, char *ArgValue[], byte *Mode, byte *ReadLength )
- {
-   int i;
--  char *ArgString;
-+  unsigned char *ArgString;
-   byte Node_ID;
-   
-   Node_ID = 0;  // Default Node_ID used is 0
-diff -ruN src/functions.h /tmp/src/functions.h
---- src/functions.h	2001-06-21 01:11:43.000000000 +0200
-+++ src.new/functions.h	2006-03-22 11:47:48.000000000 +0100
-@@ -16,18 +16,29 @@
-  *     byte2 = bits 08-15  (on ix86, bits 16-23)
-  *     byte3 = bits 00-07  (on ix86, bits 24-31)
-  * *****************************************************************************************************/
-+
-+#if __BYTE_ORDER == __BIG_ENDIAN
-+
-+#define QBYTE3( q )  ( (byte) ( q >> 24 ) )
-+#define QBYTE2( q )  ( (byte) ( q >> 16 ) )
-+#define QBYTE1( q )  ( (byte) ( q >>  8 ) )
-+#define QBYTE0( q )  ( (byte) q )
-+
-+#else
-+
- #define QBYTE0( q )  ( (byte) ( q >> 24 ) )
- #define QBYTE1( q )  ( (byte) ( q >> 16 ) ) 
- #define QBYTE2( q )  ( (byte) ( q >>  8 ) )
- #define QBYTE3( q )  ( (byte) q )
- 
-+#endif
-+
- /* Macro pour inverser les octets a l'interieur d'un quadlet */
- #define QSWAP( q )   ( ( q << 24 ) & 0xFF000000 ) + \
-                      ( ( q << 8  ) & 0x00FF0000 ) + \
-                      ( ( q >> 8  ) & 0x0000FF00 ) + \
-                      ( ( q >> 24 ) & 0x000000FF )
- 
--
- /* ******************************************************************************************************
-  *   ParseCommandLineOptions
-  *   Initialisation of the different options passed as arguments on the command line
-

diff --git a/sys-apps/fwcrv/fwcrv-0.1.0.ebuild b/sys-apps/fwcrv/fwcrv-0.1.0.ebuild
deleted file mode 100644
index 3e89e6a21da..00000000000
--- a/sys-apps/fwcrv/fwcrv-0.1.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="FireWire CSR Config ROM Viewer"
-HOMEPAGE="http://www.hugovil.com/en/fwcrv/"
-SRC_URI="http://www.hugovil.com/repository/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc x86"
-IUSE=""
-DEPEND="sys-libs/libraw1394"
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}"/${P}-endian.patch
-}
-
-src_compile() {
-	econf || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die
-	dodoc AUTHORS README src/testdata.txt TODO
-}

diff --git a/sys-apps/fwcrv/metadata.xml b/sys-apps/fwcrv/metadata.xml
deleted file mode 100644
index 56c12441305..00000000000
--- a/sys-apps/fwcrv/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-	<email>base-system@gentoo.org</email>
-	<name>Gentoo Base System</name>
-</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-10 12:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-10 12:28 [gentoo-commits] repo/gentoo:master commit in: profiles/, sys-apps/fwcrv/files/, sys-apps/fwcrv/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox