quasselc: drop unmaintained project
authorJosef Schlehofer <pepe.schlehofer@gmail.com>
Mon, 6 Nov 2023 08:45:15 +0000 (09:45 +0100)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Wed, 22 Nov 2023 13:50:35 +0000 (14:50 +0100)
This project [1] has the latest commit from 2017, it seems like we are maintaing this software here, but we don't have enough people to do so.

Let's drop this package.

[1] https://github.com/phhusson/QuasselC

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
libs/quasselc/Makefile [deleted file]
libs/quasselc/patches/001-respect-cflags-ldflags.patch [deleted file]

diff --git a/libs/quasselc/Makefile b/libs/quasselc/Makefile
deleted file mode 100644 (file)
index 7fd7295..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#
-# Copyright (C) 2016 Ben Rosser <rosser.bjr@gmail.com>
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=quasselc
-PKG_SOURCE_DATE:=2017-01-11
-PKG_SOURCE_VERSION:=a0a1e6bd87d3eac68b5369972d1c2035cfe47e94
-PKG_RELEASE:=4
-
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_DATE).tar.gz
-PKG_SOURCE_URL:=https://codeload.github.com/phhusson/QuasselC/tar.gz/$(PKG_SOURCE_VERSION)?
-PKG_HASH:=fe7b48a13c0e6dad81cdae18069d4f5607af64d73a3201f42d79548170dde510
-PKG_BUILD_DIR:=$(BUILD_DIR)/QuasselC-$(PKG_SOURCE_VERSION)
-
-PKG_MAINTAINER:=Ben Rosser <rosser.bjr@gmail.com>
-PKG_LICENSE:=LGPL-3.0
-PKG_LICENSE_FILES:=COPYING.LESSER
-
-PKG_BUILD_PARALLEL:=1
-PKG_INSTALL:=1
-
-include $(INCLUDE_DIR)/package.mk
-include $(INCLUDE_DIR)/nls.mk
-
-MAKE_FLAGS += prefix=$(STAGING_DIR)/usr libdir=$(STAGING_DIR)/usr/lib includedir=$(STAGING_DIR)/usr/include
-MAKE_INSTALL_FLAGS += prefix=/usr libdir=/usr/lib includedir=/usr/include
-
-define Package/quasselc
-    SECTION:=libs
-    CATEGORY:=Libraries
-    DEPENDS:=+glib2
-    SUBMENU:=Instant Messaging
-    URL:=https://github.com/phhusson/QuasselC
-    TITLE:=API to access a Quassel Core in pure C
-endef
-
-define Package/quasselc/description
-  An implementation of the Quassel protocol in pure C.
-endef
-
-define Build/InstallDev
-       $(INSTALL_DIR) $(1)/usr/include/quasselc
-       $(CP) $(PKG_INSTALL_DIR)/usr/include/quasselc/* $(1)/usr/include/quasselc/
-
-       $(INSTALL_DIR) $(1)/usr/lib
-       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libquasselc.so* $(1)/usr/lib/
-       $(LN) libquasselc.so.0 $(1)/usr/lib/libquasselc.so
-
-       $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
-       $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/quasselc.pc $(1)/usr/lib/pkgconfig/
-endef
-
-define Package/quasselc/install
-       $(INSTALL_DIR) $(1)/usr/lib
-       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libquasselc.so* $(1)/usr/lib/
-endef
-
-$(eval $(call BuildPackage,quasselc))
diff --git a/libs/quasselc/patches/001-respect-cflags-ldflags.patch b/libs/quasselc/patches/001-respect-cflags-ldflags.patch
deleted file mode 100644 (file)
index e5c8f61..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -2,11 +2,11 @@ prefix ?= /usr/local
- libdir ?= $(prefix)/lib
- includedir ?= $(prefix)/include
--CFLAGS:=-Wall -g -Wextra $(shell pkg-config glib-2.0 --cflags) -Wswitch-enum -std=gnu11 -O2 -fPIC
-+CFLAGS+=-Wall -g -Wextra $(shell pkg-config glib-2.0 --cflags) -Wswitch-enum -std=gnu11 -fPIC
- SO_VERSION = 0
- VERSION = 0
- INSTALL = install
--LDLIBS:=$(shell pkg-config glib-2.0 --libs) -lz
-+LDFLAGS+=$(shell pkg-config glib-2.0 --libs) -lz
- BOTLIBS := -Wl,-rpath,.
-@@ -15,10 +15,10 @@ lib_objects=setters.o getters.o main.o c
- all: bot libquasselc.so.$(VERSION) quasselc.pc
- libquasselc.so.$(VERSION): $(lib_objects)
--      $(CC) -shared -o $@ -Wl,-soname,libquasselc.so.$(SO_VERSION) $^ $(LDLIBS)
-+      $(CC) -shared -o $@ -Wl,-soname,libquasselc.so.$(SO_VERSION) $^ $(LDFLAGS)
- bot: bot.o display.o libquasselc.so.$(VERSION)
--      $(CC) -o $@ $^ $(LDLIBS) $(BOTLIBS)
-+      $(CC) -o $@ $^ $(LDFLAGS) $(BOTLIBS)
- clean:
-       rm -f *.o bot libquasselc.so.$(VERSION) quasselc.pc