commit:     df3d198848fc2017c42cee4257c2cc95ea6d261c
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 17:53:41 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:53:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3d1988

sci-geosciences/swmm: treeclean

Closes: https://bugs.gentoo.org/819126
Closes: https://bugs.gentoo.org/542002
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 profiles/package.mask                            |  5 ---
 sci-geosciences/swmm/Manifest                    |  1 -
 sci-geosciences/swmm/files/swmm-5.0.022-QA.patch | 14 -------
 sci-geosciences/swmm/metadata.xml                |  5 ---
 sci-geosciences/swmm/swmm-5.0.022.ebuild         | 52 ------------------------
 5 files changed, 77 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f14a60f5c939..0c06a3da2cfa 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -541,11 +541,6 @@ x11-misc/3dfb
 # Removal on 2021-11-20.
 x11-themes/redhat-artwork
 
-# Jakov Smolić <[email protected]> (2021-10-21)
-# No maintainer, EAPI 5, no other distro is packaging this.
-# Removal on 2021-11-20. Bug #819126
-sci-geosciences/swmm
-
 # Sam James <[email protected]> (2021-10-10)
 # Needs upstream build system fixes (currently in progress).
 # Python toggles don't work correctly right now.

diff --git a/sci-geosciences/swmm/Manifest b/sci-geosciences/swmm/Manifest
deleted file mode 100644
index 25a31b604469..000000000000
--- a/sci-geosciences/swmm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST swmm50022_engine.zip 338011 BLAKE2B 
a3fba4a480130903fe576ed1521cb94f54dbf350ec4200d96def10bca6842d55a1de2d17911d35b59acff70d13a31012554ca09b0cb7ac7e60f0f4ebc2e0ea98
 SHA512 
aa424d36c062656611bc6d6e4ced3108b6fd05806bf47ace30b44cc631860423073ad4fcafb523b2bf0ce7c73c5edc4386e5129009984d3d34f34e9260c69006

diff --git a/sci-geosciences/swmm/files/swmm-5.0.022-QA.patch 
b/sci-geosciences/swmm/files/swmm-5.0.022-QA.patch
deleted file mode 100644
index c84d50f5f6b3..000000000000
--- a/sci-geosciences/swmm/files/swmm-5.0.022-QA.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -7,9 +7,10 @@
-        rain.o rdii.o report.o routing.o runoff.o shape.o snow.o stats.o \
-        statsrpt.o subcatch.o table.o toposort.o transect.o treatmnt.o xsect.o
- 
-+LIBS += -lm
- 
- swmm5 : $(objs)
--        cc -o swmm5 -lm $(objs)
-+        $(CC) $(CFLAGS) $(LDFLAGS) -o swmm5 $(objs) $(LIBS)
- 
- swmm5.o       : consts.h macros.h enums.h error.h datetime.h objects.h 
funcs.h text.h globals.h swmm5.h
- climate.o     : headers.h

diff --git a/sci-geosciences/swmm/metadata.xml 
b/sci-geosciences/swmm/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/sci-geosciences/swmm/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>

diff --git a/sci-geosciences/swmm/swmm-5.0.022.ebuild 
b/sci-geosciences/swmm/swmm-5.0.022.ebuild
deleted file mode 100644
index ae8ad8060a90..000000000000
--- a/sci-geosciences/swmm/swmm-5.0.022.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch versionator toolchain-funcs
-
-MY_PV=$(delete_all_version_separators)
-MY_SRC="swmm${MY_PV}_engine.zip"
-DESCRIPTION="Storm Water Management Model-SWMM, hydrology, hydraulics, water 
quality model"
-HOMEPAGE="http://www.epa.gov/ednnrmrl/models/swmm/index.htm";
-SRC_URI="http://www.epa.gov/nrmrl/wswrd/wq/models/swmm/${MY_SRC}";
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-
-S=${WORKDIR}
-
-pkg_setup() {
-       tc-export CC
-}
-
-src_unpack() {
-       unpack ${MY_SRC}
-       # Need to delete Readme.txt, because it is in makefiles.zip
-       rm Readme.txt || die
-       unpack ./makefiles.zip
-       unpack ./GNU_CON.zip
-       unpack ./source*.ZIP
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-QA.patch
-}
-
-src_compile() {
-       # 'sed' command has to accomodate DOS formatted file.
-       sed -i \
-               -e 's;^#define DLL;//#define DLL;' \
-               -e 's;^//#define CLE;#define CLE;' \
-               swmm5.c || die
-       emake
-}
-
-src_install() {
-       newbin swmm5 swmm
-       dodoc Roadmap.txt
-}

Reply via email to