From 4b833c6952b08bce9fc917b508756d47532d7842 Mon Sep 17 00:00:00 2001 From: Robert-André Mauchin Date: Jul 23 2019 15:24:55 +0000 Subject: Unused/deprecated --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 853f47d..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/c3294304d93f48a37d3bed1d382882a9c2989f99.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..adeb9b1 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Unused/deprecated diff --git a/golang-googlecode-log4go.spec b/golang-googlecode-log4go.spec deleted file mode 100644 index 3ec5dee..0000000 --- a/golang-googlecode-log4go.spec +++ /dev/null @@ -1,219 +0,0 @@ -%if 0%{?fedora} || 0%{?rhel} == 6 -%global with_devel 1 -%global with_bundled 0 -%global with_debug 0 -%global with_check 1 -%global with_unit_test 1 -%else -%global with_devel 0 -%global with_bundled 0 -%global with_debug 0 -%global with_check 0 -%global with_unit_test 0 -%endif - -%if 0%{?with_debug} -%global _dwz_low_mem_die_limit 0 -%else -%global debug_package %{nil} -%endif - -%define copying() \ -%if 0%{?fedora} >= 21 || 0%{?rhel} >= 7 \ -%license %{*} \ -%else \ -%doc %{*} \ -%endif - -%global provider google -%global provider_sub code -%global provider_tld com -%global repo log4go -%global provider_prefix %{provider_sub}.%{provider}.%{provider_tld}/p/%{repo} -%global import_path %{provider_prefix} -%global rev c3294304d93f48a37d3bed1d382882a9c2989f99 -%global shortrev %(r=%{rev}; echo ${r:0:12}) - -Name: golang-%{provider}%{provider_sub}-%{repo} -Version: 0 -Release: 0.13.hg%{shortrev}%{?dist} -Summary: Logging package similar to log4j for the Go programming language -License: BSD -URL: http://%{provider_prefix} -Source0: https://%{repo}.%{provider}%{provider_sub}.%{provider_tld}/archive/%{rev}.tar.gz - -# If go_arches not defined fall through to implicit golang archs -%if 0%{?go_arches:1} -ExclusiveArch: %{go_arches} -%else -ExclusiveArch: %{ix86} x86_64 %{arm} -%endif -# If gccgo_arches does not fit or is not defined fall through to golang -%ifarch 0%{?gccgo_arches} -BuildRequires: gcc-go >= %{gccgo_min_vers} -%else -BuildRequires: golang -%endif - -%description -%{summary} - -The goal of log4go is to be a robust, configurable, powerful logging package -to empower Go developers to debug their programs more effectively on the fly -and diagnose problems in the field without hampering their effectiveness -during development or hampering the performance of their applications. - -%if 0%{?with_devel} -%package devel -Summary: Logging package similar to log4j for the Go programming language -BuildArch: noarch - -%if 0%{?with_check} -%endif - -Provides: golang(%{import_path}) = %{version}-%{release} - -%description devel -%{summary} - -The goal of log4go is to be a robust, configurable, powerful logging package -to empower Go developers to debug their programs more effectively on the fly -and diagnose problems in the field without hampering their effectiveness -during development or hampering the performance of their applications. - -This package contains library source intended for -building other packages which use import path with -%{import_path} prefix. -%endif - -%if 0%{?with_unit_test} -%package unit-test -Summary: Unit tests for %{name} package -# If go_arches not defined fall through to implicit golang archs -%if 0%{?go_arches:1} -ExclusiveArch: %{go_arches} -%else -ExclusiveArch: %{ix86} x86_64 %{arm} -%endif -# If gccgo_arches does not fit or is not defined fall through to golang -%ifarch 0%{?gccgo_arches} -BuildRequires: gcc-go >= %{gccgo_min_vers} -%else -BuildRequires: golang -%endif - -%if 0%{?with_check} -#Here comes all BuildRequires: PACKAGE the unit tests -#in %%check section need for running -%endif - -# test subpackage tests code from devel subpackage -Requires: %{name}-devel = %{version}-%{release} - -%description unit-test -%{summary} - -This package contains unit tests for project -providing packages with %{import_path} prefix. -%endif - -%prep -%setup -n %{repo}-%{shortrev} -q - -%build - -%install -# source codes for building projects -%if 0%{?with_devel} -install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ -# find all *.go but no *_test.go files and generate devel.file-list -for file in $(find . -iname "*.go" \! -iname "*_test.go") ; do - install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file) - cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file - echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list -done -%endif - -# testing files for this project -%if 0%{?with_unit_test} -install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ -# find all *_test.go files and generate unit-test.file-list -for file in $(find . -iname "*_test.go"); do - install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file) - cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file - echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test.file-list -done -%endif - -%check -%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel} -%ifarch 0%{?gccgo_arches} -function gotest { %{gcc_go_test} "$@"; } -%else -%if 0%{?golang_test:1} -function gotest { %{golang_test} "$@"; } -%else -function gotest { go test "$@"; } -%endif -%endif - -export GOPATH=%{gopath}:%{buildroot}/%{gopath} -#gotest %{import_path} -%endif - -%if 0%{?with_devel} -%files devel -f devel.file-list -%copying LICENSE -%doc README -%{gopath}/src/%{import_path} -%endif - -%if 0%{?with_unit_test} -%files unit-test -f unit-test.file-list -%copying LICENSE -%doc README -%endif - -%changelog -* Tue Apr 30 2019 Jan Chaloupka - 0-0.13.hgc3294304d93f -- Skip tests - resolves: #1675043 - -* Fri Feb 01 2019 Fedora Release Engineering - 0-0.12.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 0-0.11.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 0-0.10.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Aug 02 2017 Fedora Release Engineering - 0-0.9.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0-0.8.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 0-0.7.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Jul 21 2016 Fedora Release Engineering - 0-0.6.hgc3294304d93f -- https://fedoraproject.org/wiki/Changes/golang1.7 - -* Mon Feb 22 2016 Fedora Release Engineering - 0-0.5.hgc3294304d93f -- https://fedoraproject.org/wiki/Changes/golang1.6 - -* Wed Feb 03 2016 Fedora Release Engineering - 0-0.4.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Aug 20 2015 jchaloup - 0-0.3.hgc3294304d93f -- Update spec files to spec-2.0 - resolves: #1250522 - -* Wed Jun 17 2015 Fedora Release Engineering - 0-0.2.hgc3294304d93f -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Wed Sep 24 2014 root - 0-0.1.hgc3294304d93f -- Initial package - - diff --git a/sources b/sources deleted file mode 100644 index 7538742..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -f7643da7d8857b5ab7f43cbbe0fb9804 c3294304d93f48a37d3bed1d382882a9c2989f99.tar.gz