pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
bcal: Remove, imported in pkgsrc as math/bcal
Module Name: pkgsrc-wip
Committed By: Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By: leot
Date: Sat Dec 15 18:26:49 2018 +0100
Changeset: 2ce3c5259589653804af1f6f503c2ee34df1f292
Modified Files:
Makefile
Removed Files:
bcal/DESCR
bcal/Makefile
bcal/PLIST
bcal/distinfo
bcal/patches/patch-Makefile
Log Message:
bcal: Remove, imported in pkgsrc as math/bcal
Thanks to Sijmen for packaging it!
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=2ce3c5259589653804af1f6f503c2ee34df1f292
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 -
bcal/DESCR | 8 --------
bcal/Makefile | 20 --------------------
bcal/PLIST | 4 ----
bcal/distinfo | 7 -------
bcal/patches/patch-Makefile | 32 --------------------------------
6 files changed, 72 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 4e5c8ac4ab..a35cb3d000 100644
--- a/Makefile
+++ b/Makefile
@@ -227,7 +227,6 @@ SUBDIR+= barrier
SUBDIR+= basepkg
SUBDIR+= bashdb
SUBDIR+= bastard
-SUBDIR+= bcal
SUBDIR+= bcftools
SUBDIR+= beads
SUBDIR+= beanstalkd
diff --git a/bcal/DESCR b/bcal/DESCR
deleted file mode 100644
index f7ad3b5017..0000000000
--- a/bcal/DESCR
+++ /dev/null
@@ -1,8 +0,0 @@
-bcal (Byte CALculator) is a REPL CLI utility for storage expressions,
-unit conversions or address calculations. If you can't calculate the
-hex address offset for (512 - 16) MiB, or the value when the 43rd bit
-of a 64-bit address is set mentally, bcal is for you.
-
-It has a bc(1) mode for general-purpose numerical calculations.
-
-Only 64-bit operating systems are supported.
diff --git a/bcal/Makefile b/bcal/Makefile
deleted file mode 100644
index ad3d6dc68e..0000000000
--- a/bcal/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD$
-
-DISTNAME= bcal-2.1
-CATEGORIES= math
-MASTER_SITES= ${MASTER_SITE_GITHUB:=jarun/}
-GITHUB_TAG= v${PKGVERSION_NOREV}
-
-MAINTAINER= ik%sjmulder.nl@localhost
-HOMEPAGE= https://github.com/jarun/bcal/
-COMMENT= Storage and general-purpose calculator
-LICENSE= gnu-gpl-v3
-
-USE_TOOLS+= gmake
-
-DEPENDS+= bc-[0-9]*:../../math/bc
-
-MAKE_FLAGS+= MANDIR=${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
-
-.include "../../mk/readline.buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/bcal/PLIST b/bcal/PLIST
deleted file mode 100644
index 8f013769ce..0000000000
--- a/bcal/PLIST
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD$
-bin/bcal
-man/man1/bcal.1
-share/doc/bcal/README.md
diff --git a/bcal/distinfo b/bcal/distinfo
deleted file mode 100644
index d3d65329e9..0000000000
--- a/bcal/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-SHA1 (bcal-2.1.tar.gz) = 7d2740ee9abd18370449b4b3e46b8ecac77d7072
-RMD160 (bcal-2.1.tar.gz) = ad91e17d1dd2cf86c670929495eefc0b9cd3e468
-SHA512 (bcal-2.1.tar.gz) = 38965b0f27289e283ed9193c14cd962ec29ed401e8d60e7f012098cb62dacd357d8eac6a5e29f001c0ecf9541fdb55166b0ed2b2ac5c6bc98622244249cff03d
-Size (bcal-2.1.tar.gz) = 34175 bytes
-SHA1 (patch-Makefile) = 10df94f072e4d08e73458f690ec8df1cce356320
diff --git a/bcal/patches/patch-Makefile b/bcal/patches/patch-Makefile
deleted file mode 100644
index d0409b13b7..0000000000
--- a/bcal/patches/patch-Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD$
-
- - Respect LDFLAGS
- - Respect existing LDLIBS
- - Remove default -O3
-
---- Makefile
-+++ Makefile
-@@ -4,20 +4,19 @@ MANDIR = $(DESTDIR)$(PREFIX)/share/man/man1
- DOCDIR = $(DESTDIR)$(PREFIX)/share/doc/bcal
- STRIP ?= strip
-
--CFLAGS ?= -O3
- CFLAGS += -Wall -Wextra -Wno-unused-parameter -Werror
--LDLIBS = -lreadline
-+LDLIBS += -lreadline
-
- SRC = $(wildcard src/*.c)
- INCLUDE = -Iinc
-
- bcal: $(SRC)
-- $(CC) $(CFLAGS) $(INCLUDE) -o bcal $(SRC) $(LDLIBS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDE) -o bcal $(SRC) $(LDLIBS)
-
- all: bcal
-
- x86: $(SRC)
-- $(CC) -m64 $(CFLAGS) $(INCLUDE) -o bcal $(SRC) $(LDLIBS)
-+ $(CC) -m64 $(CFLAGS) $(LDFLAGS) $(INCLUDE) -o bcal $(SRC) $(LDLIBS)
- strip bcal
-
- distclean: clean
Home |
Main Index |
Thread Index |
Old Index